project BLF > class Session > method GetDomainsAndCompaniesForUser

Description

Specific method to retrieve domain/company information for a certain user.
The field tcDomainName cannot be filled in on this level, because the information is only available on QadFin level, so this method needs to be extended there.
((this method can be run without a valid login)


Parameters


icUsrLogininputcharacterThe user login code
tDomainsCompaniesoutputtemp-tableList of domains and companies
oiReturnStatusoutputintegerReturn status of the method.


Internal usage


unused


program code (program3/session.p)

assign oiReturnStatus = -98.

empty temp-table tDomainsCompanies.

/* Get all companies linked to the user : UsrCompany */
<Q-1 run UserCompanies (all) (Read) (NoCache)
   (input icUsrLogin, (UserLogin)
    input ?, (CyId)
    input ?, (DomainId)
    output dataset tqUserCompanies) in BUser >

/* Get all domains linked to the user : UsrDomain */    
<Q-2 run UsrDomainByDomainLogin (all) (Read) (NoCache)
   (input icUsrLogin, (UsrLogin)
    input ?, (DomainCode)
    output dataset tqUsrDomainByDomainLogin) in BUser >
        
for each tqUsrDomainByDomainLogin :
    /* for each link to the domain, check the link to companies */
    find first tqUserCompanies where 
               tqUserCompanies.tiDomain_ID = tqUsrDomainByDomainLogin.tiDomain_ID
               no-error.
    if available tqUserCompanies
    then do :
        for each tqUserCompanies where 
                 tqUserCompanies.tiDomain_ID = tqUsrDomainByDomainLogin.tiDomain_ID:
            create tDomainsCompanies.
            assign tDomainsCompanies.tcCompanyCode = tqUserCompanies.tcCompanyCode
                   tDomainsCompanies.tcCompanyDescription = tqUserCompanies.tcCompanyDescription
                   tDomainsCompanies.tcDomainCode = tqUsrDomainByDomainLogin.tcDomainCode
                   tDomainsCompanies.tiCompany_ID = tqUserCompanies.tiCompany_ID
                   tDomainsCompanies.tlIsPrimaryDomain = tqUsrDomainByDomainLogin.tlUsrDomainIsDefault
                   tDomainsCompanies.tcDomainDatabase = tqUsrDomainByDomainLogin.tcDomainDatabase
                   tDomainsCompanies.tlIsPrimaryCompany = (tqUserCompanies.tiCompany_ID = tqUsrDomainByDomainLogin.tiPrimaryCompany_ID)
                   tDomainsCompanies.tiDomain_ID = tqUsrDomainByDomainLogin.tiDomain_ID.
        end.
    end.    
end.

assign oiReturnStatus = 0.


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 = "Session".
create ttContext.
assign ttContext.propertyName = "methodName"
       ttContext.propertyValue = "GetDomainsAndCompaniesForUser".
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/session.getdomainsandcompaniesforuser.i.xsd", ?).
vhParameter = vhInputDS:get-buffer-handle("tParameterI").
vhParameter:buffer-create().
assign vhParameter::icUsrLogin = <parameter value>.

/* 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.