Hi
I’m trying to do a migration in IFS 10.7, where I need the migration to start lead time calculation with Routing_Head_Leadtime_API.Modify_Manuf_Leadtime
This method only has one attribute called ATTR_
With help of debug console I can see that IFS runs this code:
DECLARE
-- p0 -> i_hWndFrame.dlgManufLeadTimeCalc.lsTempAttr
p0_ VARCHAR2(32000) := 'CONTRACT'||chr(31)||'ÅSEDA'||chr(30)||'PART_NO'||chr(31)||'377081-10002'||chr(30)||'LEADTIME_BASIS'||chr(31)||'3'||chr(30)||'BATCH_FLAG'||chr(31)||'N'||chr(30)||'DAILY_CAPACITY'||chr(31)||'AVERAGE'||chr(30)||'NO_ROUTING_OPTION'||chr(31)||'UNMODIFIED'||chr(30)||'ROUTING_REVISION'||chr(31)||'1'||chr(30)||'BOM_TYPE'||chr(31)||'Manufacturing'||chr(30)||'ALTERNATIVE_NO'||chr(31)||'*'||chr(30)||'ORDER_SIZE'||chr(31)||'4580'||chr(30)||'UPDATE_LEAD_TIME'||chr(31)||'Update also expected'||chr(30);
BEGIN
IFSAPP.Log_SYS.Init_Debug_Session_('en');
IFSAPP.Routing_Head_Leadtime_API.Modify_Manuf_Leadtime (p0_ );
----------------------------------
---Dbms_Output Section---
----------------------------------
Dbms_Output.Put_Line('p0_ -> i_hWndFrame.dlgManufLeadTimeCalc.lsTempAttr');
Dbms_Output.Put_Line(p0_);
----------------------------------
END;
To be able to use it I must of course change part_no and lot size according to my parts in the migration job.
But how do I create an attribute string in the migration job?