icMfgDomain | input | character | Controls the process of creating a new row in the MFG/PRO data temp table and assigning the MFG/PRO OID to the buffer. |
icMfgTableName | input | character | Name of the MFG/PRO table name that is currently being processed. This is used to determine which logic to execute within the method in the cases where one business component maps to multiple tables in MFG/PRO. |
icFinancialTableName | input | character | Name of the current financials table being processed, used to determine which logic to execute. |
oiReturnStatus | output | integer | Return status of the method. |
<ANCESTOR-CODE> assign oiReturnStatus = -98. /* * Create a record in the objects temp table. */ <M-1 run AddDetailLine (input 'udd_det':U (icTable), input ? (icParentRowid), output viFcReturnSuper (oiReturnStatus)) in BMfgUserDomainForUser> if viFcReturnSuper <> 0 then assign oiReturnStatus = viFcReturnSuper. if viFcReturnSuper < 0 then return. /* * Ensure that the buffer handle points to the same row as the * row we have just created in the tac_mstr temp table. */ temp-table tudd_det:default-buffer-handle:find-by-rowid(rowid(tudd_det)). if oiReturnStatus = -98 then assign oiReturnStatus = 0.