project BLF > class BDocumentLink > method SaveDocumentList

Description

update document properties
(without updating contents)


Parameters


icBusinessComponentinputcharacterBusiness component name of the parent object
iiObjectIdinputintegerIdentity value of the parent object
tDocumentPropertiesinputtemp-table
oiReturnStatusoutputintegerReturn status of the method.


Internal usage


unused


program code (program3/bdocumentlink.p)

if icBusinessComponent = "" or
   icBusinessComponent = ?  or
   iiObjectId          = 0  or
   iiObjectId          = ?
then do:
    <M-1 run SetMessage
       (input  trim(#T-10'Parent object is missing.':100(475)t-10#) (icMessage), 
        input  '' (icArguments), 
        input  '' (icFieldName), 
        input  '' (icFieldValue), 
        input  'S' (icType), 
        input  3 (iiSeverity), 
        input  '' (icRowid), 
        input  'BLF-65':U (icFcMsgNumber), 
        input  '' (icFcExplanation), 
        input  '' (icFcIdentification), 
        input  '' (icFcContext), 
        output viFcReturnSuper (oiReturnStatus)) in BDocumentLink>

    assign oiReturnStatus = -1.
    return.
end.

/* ============================================================ */
/* Do not run standard DataLoad, but only load document headers */
/* without document contents (for performance reasons)          */
/* ============================================================ */
<M-12 run ClearData  (output viFcReturnSuper (oiReturnStatus)) in BDocumentLink>

if viFcReturnSuper <> 0
then assign oiReturnStatus = viFcReturnSuper.

if viFcReturnSuper < 0
then return.

empty temp-table tFcDynRel.
create tFcDynRel.

assign tFcDynRel.tcFcTo      = "DocumentLink"
       tFcDynRel.tcFcRel     = "for each DocumentLink where"                       +
                               "         DocumentLink.DocumentLinkComponent   = '" + icBusinessComponent + "' and" +
                               "         DocumentLink.DocumentLinkInternal_ID = "  + string(iiObjectId)
       tFcDynRel.thFcBuffer  = buffer t_oDocumentLink:handle
       tFcDynRel.thFcIBuffer = buffer t_iDocumentLink:handle
       tFcDynRel.thFcSBuffer = buffer t_sDocumentLink:handle.

<M-13 run StartPersistence
   (output vhFcComponent (ohPersistence), 
    output viFcReturnSuper (oiReturnStatus)) in BDocumentLink>

if viFcReturnSuper <> 0
then assign oiReturnStatus = viFcReturnSuper.

if viFcReturnSuper < 0
then return.

<M-14 run ReadData
   (input  tFcDynRel (tDynRel), 
    input  {&TARGETPROCEDURE} (ihClass), 
    output viFcReturnSuper (oiReturnStatus)) in persistence>

if viFcReturnSuper <> 0
then assign oiReturnStatus = viFcReturnSuper.

if viFcReturnSuper < 0
then return.

<M-16 run Calculate  (output viFcReturnSuper (oiReturnStatus)) in BDocumentLink>

if viFcReturnSuper <> 0
then assign oiReturnStatus = viFcReturnSuper.

if viFcReturnSuper < 0
then return.

for each tDocumentProperties:
    find first tDocumentLink where
               tDocumentLink.DocumentLinkDescription = tDocumentProperties.tcDocumentLinkDescription
               no-error.

    if available tDocumentLink
    then do:
        assign tDocumentLink.DocumentLinkDate         = tDocumentProperties.ttDocumentLinkDate
               tDocumentLink.DocumentLinkOpenDocument = tDocumentProperties.tlDocumentLinkOpenDocument
               tDocumentLink.DocumentLinkSize         = tDocumentProperties.tiDocumentLinkSize
               tDocumentLink.tc_Status                = "C".

        delete tDocumentProperties.
    end.
end.

if can-find(first tDocumentProperties)
then do:
    for each tDocumentProperties:
        <M-7 run SetMessage
           (input  trim(#T-11'Document not found. ($1)':100(476)t-11#) (icMessage), 
            input  tDocumentProperties.tcDocumentLinkDescription (icArguments), 
            input  '' (icFieldName), 
            input  '' (icFieldValue), 
            input  'E' (icType), 
            input  3 (iiSeverity), 
            input  '' (icRowid), 
            input  'BLF-66':U (icFcMsgNumber), 
            input  '' (icFcExplanation), 
            input  '' (icFcIdentification), 
            input  '' (icFcContext), 
            output viFcReturnSuper (oiReturnStatus)) in BDocumentLink>
    end.

    assign oiReturnStatus = -1.
    return.
end.

<M-8 run ValidateBC  (output viFcReturnSuper (oiReturnStatus)) in BDocumentLink>

if viFcReturnSuper <> 0
then assign oiReturnStatus = viFcReturnSuper.

if viFcReturnSuper < 0
then return.

<M-15 run AdditionalUpdates  (output viFcReturnSuper (oiReturnStatus)) in BDocumentLink>

if viFcReturnSuper <> 0
then assign oiReturnStatus = viFcReturnSuper.

if viFcReturnSuper < 0
then return.

<M-5 run DataSave  (output viFcReturnSuper (oiReturnStatus)) in BDocumentLink>

if viFcReturnSuper <> 0
then assign oiReturnStatus = viFcReturnSuper.

if viFcReturnSuper < 0
then return.


Sample code: how to call this method through RPCRequestService (QXtend Inbound)

define temp-table ttContext no-undo
    field propertyQualifier as character
    field propertyName as character
    field propertyValue as character
    index entityContext is primary unique
        propertyQualifier
        propertyName
    index propertyQualifier
        propertyQualifier.

define dataset dsContext for ttContext.

define variable vhContextDS as handle no-undo.
define variable vhExceptionDS as handle no-undo.
define variable vhServer as handle no-undo.
define variable vhInputDS as handle no-undo.
define variable vhInputOutputDS as handle no-undo.
define variable vhOutputDS as handle no-undo.
define variable vhParameter as handle no-undo.

/* Create context */
create ttContext.
assign ttContext.propertyName = "programName"
       ttContext.propertyValue = "BDocumentLink".
create ttContext.
assign ttContext.propertyName = "methodName"
       ttContext.propertyValue = "SaveDocumentList".
create ttContext.
assign ttContext.propertyName = "applicationId"
       ttContext.propertyValue = "fin".
create ttContext.
assign ttContext.propertyName = "entity"
       ttContext.propertyValue = "1000".
create ttContext.
assign ttContext.propertyName = "userName"
       ttContext.propertyValue = "mfg".
create ttContext.
assign ttContext.propertyName = "password"
       ttContext.propertyValue = "".

/* Create input dataset */
create dataset vhInputDS.
vhInputDS:read-xmlschema("file", "xml/bdocumentlink.savedocumentlist.i.xsd", ?).
vhParameter = vhInputDS:get-buffer-handle("tParameterI").
vhParameter:buffer-create().
assign vhParameter::icBusinessComponent = <parameter value>
       vhParameter::iiObjectId = <parameter value>.

vhParameter = vhInputDS:get-buffer-handle("tDocumentProperties").
vhParameter:buffer-create().
assign vhParameter::<field-name-1> = <field-value-1>
       vhParameter::<field-name-2> = <field-value-2>
       ...

/* Connect the AppServer */
create server vhServer.
vhServer:connect("-URL <appserver-url>").

if not vhServer:connected()
then do:
    message "Could not connect AppServer" view-as alert-box error title "Error".
    return.
end.

/* Run */
assign vhContextDS = dataset dsContext:handle.

run program/rpcrequestservice.p on vhServer
    (input-output dataset-handle vhContextDS by-reference,
           output dataset-handle vhExceptionDS,
     input        dataset-handle vhInputDS by-reference,
     input-output dataset-handle vhInputOutputDS by-reference,
           output dataset-handle vhOutputDS).

/* Handle output however you want, in this example, we dump it to xml */
if valid-handle(vhExceptionDS)
then vhExceptionDS:write-xml("file", "Exceptions.xml", true).

if valid-handle(vhOutputDS)
then vhOutputDS:write-xml("file", "Output.xml", true).

/* Cleanup */
vhServer:disconnect().
assign vhServer = ?.

if valid-handle(vhInputDS)
then delete object vhInputDS.

if valid-handle(vhOutputDS)
then delete object vhOutputDS.

if valid-handle(vhExceptionDS)
then delete object vhExceptionDS.