project QadFinancials > class BMfgGLCalendar > method LoadMfgData

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


icMfgDomaininputcharacterThe MFG/PRO Domain currently being processed. Required when extracting information from MFG/PRO for a table that belons to a domain.
icMfgTableNameinputcharacterName 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.
icFinancialTableNameinputcharacterName of the current financials table being processed, used to determine which logic to execute.
oiReturnStatusoutputintegerReturn status of the method.


Internal usage


QadFinancials
method BMfgGLCalendar.ProcessDomainToMfg


program code (program/bmfgglcalendar.p)

<ANCESTOR-CODE>
        
    /* ====================================================== */
    /* Set the return status to unexpected system error (-98) */
    /* ====================================================== */
    assign oiReturnStatus = -98.
    
    /* ======================================================================== */
    /* Create a query to extract the cost center data from the MFG/PRO database */
    /* into the objects tcc_mstr temp table that holds the objects data         */
    /* Get the CostCentreCode From MFG/PRO that we need to update.              */
    /* ======================================================================== */
    assign vcTableKeys = icMfgDomain + chr(2) +
                         string(tGLCalendar1.GLCalendarYear) + chr(2) + 
                         string(tGLCalendar1.GLCalendarPeriod).
    <M-2 run DataLoad (input  '':U (icRowids), 
                   input  vcTableKeys (icPkeys), 
                   input  '':U (icObjectIds), 
                   input  '':U (icFreeform), 
                   input  true (ilKeepPrevious), 
                   output viFcReturnSuper (oiReturnStatus)) in BMfgGLCalendar>
    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 tcc_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 finds are      */
    /* executed.                                                             */
    /* ===================================================================== */
    find first tglc_cal
         where tglc_cal.glc_domain = icMfgDomain
           and tglc_cal.glc_year   = tGLCalendar1.GLCalendarYear
           and tglc_cal.glc_per    = tGLCalendar1.GLCalendarPeriod
        no-error.
    if not available tglc_cal
    then do :
        assign  vcMessageText  = trim(substitute(#T-5'Cannot find the static record for the replication based on following key: &1':255(45703)t-5#, 
            icMfgDomain + "/":U + string(tGLCalendar1.GLCalendarYear) + "/":U + string(tGLCalendar1.GLCalendarPeriod)))
                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-5086':U (icFcMsgNumber), 
                     input  '':U (icFcExplanation), 
                     input  '':U (icFcIdentification), 
                     input  '':U (icFcContext), 
                     output viFcReturnSuper (oiReturnStatus)) in BMfgGLCalendar>
        Return.                     
    end. /* if not avail */ 
    assign
        vcWhereClause = "where glc_domain = ":U + <M-7 EnQuote  (input  icMfgDomain (icToQuote)) in BMfgGLCalendar> + " ":U + 
                        "and glc_year = ":U + string(tGLCalendar1.GLCalendarYear) + " " +
                        "and glc_per = ":U + string(tGLCalendar1.GLCalendarPeriod).
    
    temp-table tglc_cal: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 the key &1':255(49210)t-6#, 
            icMfgDomain + "/":U + string(tGLCalendar1.GLCalendarYear) + "/":U + string(tGLCalendar1.GLCalendarPeriod)))
                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-5087':U (icFcMsgNumber), 
                     input  '':U (icFcExplanation), 
                     input  '':U (icFcIdentification), 
                     input  '':U (icFcContext), 
                     output viFcReturnSuper (oiReturnStatus)) in BMfgGLCalendar>
        Return.                     
    end. /* if error-status:error */               
    
    /* ====================================================== */
    /* Set the return status = OK                             */
    /* ====================================================== */
    if oiReturnStatus = -98 
    then assign oiReturnStatus = 0.