Description
Controls the process of loading data from the qaddb database into the business component. This method is part of the Generic MFG/PRO update infrastrcuture.
Parameters
icMfgDomain | input | character | The MFG/PRO Domain currently being processed. Required when extracting information from MFG/PRO for a table that belons to a domain. |
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. |
Internal usage
unused
program code (program/bmfguserdomainforuser.p)
<ANCESTOR-CODE>
assign oiReturnStatus = -98.
/*
* Create a query to extract the UserDomain data from the MFG/PRO database into the objects
* tudd_det temp table that holds the objects data
*/
assign
vcTableKeys = tUserDomain.tcUsrLogin + chr(2) + tUserDomain.tcDomainCode.
<M-2 run DataLoad (input ? (icRowids),
input vcTableKeys (icPkeys),
input ? (icObjectIds),
input ? (icFreeform),
input True (ilKeepPrevious),
output viFcReturnSuper (oiReturnStatus)) in BMfgUserDomainForUser>
if viFcReturnSuper <> 0 then assign oiReturnStatus = viFcReturnSuper.
if viFcReturnSuper < 0 then return.
/*
* Synchronize the static buffer and the buffer handle to ensure that
* both are pointing to the same record. First we find the tpj_mstr
* record using the static temp table and then we execute the same
* find-first against the temp table buffer handle.
*
* We need to execute both of these queries because the two buffers
* do not automatically synchronize when a dynamic/static fins are
* executed.
*/
find first tudd_det
where tudd_det.udd_domain = tUserDomain.tcDomainCode And
tudd_det.udd_userid = tUserDomain.tcUsrLogin
no-error.
if not available tudd_det then do:
assign vcMessageText = trim(substitute(#T-5'Cannot find the static record for the replication based on the key &1.':255(45624)t-5#, tUserDomain.tcDomainCode + "/":U + tUserDomain.tcUsrLogin)).
oiReturnStatus = -3.
<M-3 run SetMessage (input vcMessageText (icMessage),
input '':U (icArguments),
input '':U (icFieldName),
input '':U (icFieldValue),
input 'E':U (icType),
input 3 (iiSeverity),
input '':U (icRowid),
input 'QadFin-5122':U (icFcMsgNumber),
input '':U (icFcExplanation),
input '':U (icFcIdentification),
input '':U (icFcContext),
output viFcReturnSuper (oiReturnStatus)) in BMfgUserDomainForUser>
return.
end. /* if not available tudd_det */
assign
vcWhereClause = "where udd_domain = ":U + <M-8 EnQuote (input tUserDomain.tcDomainCode (icToQuote)) in BMfgUserDomainForUser> +
" and udd_userid = ":U + <M-7 EnQuote (input tUserDomain.tcUsrLogin (icToQuote)) in BMfgUserDomainForUser>.
temp-table tudd_det:default-buffer-handle:find-first(vcWhereClause) no-error.
if error-status:error then do:
assign vcMessageText = trim(substitute(#T-6'Cannot find the dynamic record for the replication based on following key: &1':255(45741)t-6#, tUserDomain.tcDomainCode + "/":U + tUserDomain.tcUsrLogin)).
oiReturnStatus = -3.
<M-4 run SetMessage (input vcMessageText (icMessage),
input '':U (icArguments),
input '':U (icFieldName),
input '':U (icFieldValue),
input 'E':U (icType),
input 3 (iiSeverity),
input '':U (icRowid),
input 'QadFin-5123':U (icFcMsgNumber),
input '':U (icFcExplanation),
input '':U (icFcIdentification),
input '':U (icFcContext),
output viFcReturnSuper (oiReturnStatus)) in BMfgUserDomainForUser>
return.
end. /* if error-status:error */
if oiReturnStatus = -98
then assign oiReturnStatus = 0.