User error needs help correction-> repeatable Tag on the attribute custom section

Okay, I v.6111.  Today, I put manually the tag supplier_eq_create on all the existing attributes in our sections for suppliers can add them when we send the EQS. Unfortuately, I accidentally clicked on the reproducible tag instead of Supplier_EQ_Create in some cases in our environment Export/setting in scene.  When I try to remove its repeatable label, I get the error that says "reproducible State of the line can be changed after the outbreak of the line"... we did not really use the reproducible feature of the tag.  I need to know how I can remove this tag with the attributes of active due to human error before importing it to PROD.  The forum can help me?

Best, Beckie

Hi Beckie,

As long as you are sure that nobody use it you can remove this tag with a database script.

As with all scripts, make sure that you back up your data.

With the following script, you can find the lines that contain the reproducible tag of a particular section model

select rowTemplate.* from eaSectionDynamicTagJoins rowTTagjoin
inner join commonEARowTemplate rowTemplate on rowTemplate.pkid = rowTTagjoin.fkEAS
inner join commonLookups tag on tag.pkid = rowTTagjoin.fkTag
inner join commonEASectionTemplate sectionTemplate on sectionTemplate.pkid = rowTemplate.fkSectionTemplate
where tag.Name = 'Repeatable' and langID = 0 and Category = 'EASRowDynamicTag'
and sectionTemplate.id = '';

Tags are related to patterns of row of section customized using the eaSectionDynamicTagJoins table.

You can remove the tag of a specific line by using the following script

delete from eaSectionDynamicTagJoins
where fkEAS = '';

I hope this helps. Let me know if you have any questions,

Dmitriy

Tags: Oracle Applications

Similar Questions

Maybe you are looking for