importJournals method in SOAP web service with request and response PAYLOAD
Import Journals
ImportJournals method in SOAP web service with request and response PAYLOAD
Service WSDL URL: https://servername/fscmService/JournalImportService?WSDL
Code: REQUEST PAYLOAD
REQUEST PAYLOAD:-
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:typ="http://xmlns.oracle.com/apps/financials/generalLedger/journals/desktopEntry/journalImportService/types/" xmlns:jour="http://xmlns.oracle.com/apps/financials/generalLedger/journals/desktopEntry/journalImportService/" xmlns:jour1="http://xmlns.oracle.com/apps/flex/financials/generalLedger/journals/desktopEntry/journalLineGdf/">
<soapenv:Header/>
<soapenv:Body>
<typ:importJournals>
<typ:interfaceRows>
<!--Optional:-->
<jour:BatchName>SOAP JV 90001</jour:BatchName>
<!--Optional:-->
<jour:BatchDescription>TESTING</jour:BatchDescription>
<!--Optional:-->
<jour:LedgerId>300000001520052</jour:LedgerId>
<!--Optional:-->
<jour:AccountingPeriodName>Mar-22</jour:AccountingPeriodName>
<!--Optional:-->
<jour:AccountingDate>2022-03-31</jour:AccountingDate>
<!--Optional:-->
<jour:UserSourceName>Manual</jour:UserSourceName>
<!--Optional:-->
<jour:UserCategoryName>Balance Sheet Close</jour:UserCategoryName>
<!--Optional:-->
<jour:ErrorToSuspenseFlag>false</jour:ErrorToSuspenseFlag>
<!--Optional:-->
<jour:SummaryFlag>false</jour:SummaryFlag>
<!--Optional:-->
<jour:ImportDescriptiveFlexField>N</jour:ImportDescriptiveFlexField>
<!--Zero or more repetitions:-->
<jour:GlInterface>
<!--Optional:-->
<jour:LedgerId>300000001520052</jour:LedgerId>
<!--Optional:-->
<jour:PeriodName>Mar-22</jour:PeriodName>
<!--Optional:-->
<jour:AccountingDate>2022-03-31</jour:AccountingDate>
<!--Optional:-->
<jour:UserJeSourceName>Manual</jour:UserJeSourceName>
<!--Optional:-->
<jour:UserJeCategoryName>Balance Sheet Close</jour:UserJeCategoryName>
<!--Optional:-->
<jour:GroupId>90001</jour:GroupId>
<!--Optional:-->
<jour:Segment1>11</jour:Segment1>
<!--Optional:-->
<jour:Segment2>99999</jour:Segment2>
<!--Optional:-->
<jour:Segment3>9999</jour:Segment3>
<!--Optional:-->
<jour:Segment4>999</jour:Segment4>
<!--Optional:-->
<jour:Segment5>5201217</jour:Segment5>
<!--Optional:-->
<jour:Segment6>99</jour:Segment6>
<!--Optional:-->
<jour:Segment7>99</jour:Segment7>
<!--Optional:-->
<jour:Segment8>9999</jour:Segment8>
<!--Optional:-->
<jour:CurrencyCode>INR</jour:CurrencyCode>
<!--Optional:-->
<jour:EnteredCrAmount currencyCode="INR">100</jour:EnteredCrAmount>
<!--Optional:-->
<jour:AccountedCr>100</jour:AccountedCr>
<!--Optional:-->
</jour:GlInterface>
<jour:GlInterface>
<!--Optional:-->
<jour:LedgerId>300000001520052</jour:LedgerId>
<!--Optional:-->
<jour:PeriodName>Mar-22</jour:PeriodName>
<!--Optional:-->
<jour:AccountingDate>2022-03-31</jour:AccountingDate>
<!--Optional:-->
<jour:UserJeSourceName>Manual</jour:UserJeSourceName>
<!--Optional:-->
<jour:UserJeCategoryName>Balance Sheet Close</jour:UserJeCategoryName>
<!--Optional:-->
<jour:GroupId>90001</jour:GroupId>
<!--Optional:-->
<jour:Segment1>11</jour:Segment1>
<!--Optional:-->
<jour:Segment2>99999</jour:Segment2>
<!--Optional:-->
<jour:Segment3>9999</jour:Segment3>
<!--Optional:-->
<jour:Segment4>999</jour:Segment4>
<!--Optional:-->
<jour:Segment5>5201218</jour:Segment5>
<!--Optional:-->
<jour:Segment6>99</jour:Segment6>
<!--Optional:-->
<jour:Segment7>99</jour:Segment7>
<!--Optional:-->
<jour:Segment8>9999</jour:Segment8>
<!--Optional:-->
<jour:CurrencyCode>INR</jour:CurrencyCode>
<!--Optional:-->
<jour:EnteredDrAmount currencyCode="INR">100</jour:EnteredDrAmount>
<!--Optional:-->
<jour:AccountedDr>100</jour:AccountedDr>
<!--Optional:-->
</jour:GlInterface>
</typ:interfaceRows>
</typ:importJournals>
</soapenv:Body>
</soapenv:Envelope>
Code: RESPONSE PAYLOAD
<env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:wsa="http://www.w3.org/2005/08/addressing">
<env:Header>
<wsa:Action>http://xmlns.oracle.com/apps/financials/generalLedger/journals/desktopEntry/journalImportService/JournalImportService/importJournalsResponse</wsa:Action>
<wsa:MessageID>urn:uuid:e73932c7-c67b-4d96-a60d-72ca7b2806ba</wsa:MessageID>
</env:Header>
<env:Body>
<ns0:importJournalsResponse xmlns:ns0="http://xmlns.oracle.com/apps/financials/generalLedger/journals/desktopEntry/journalImportService/types/">
<result xmlns="http://xmlns.oracle.com/apps/financials/generalLedger/journals/desktopEntry/journalImportService/types/">0</result>
</ns0:importJournalsResponse>
</env:Body>
</env:Envelope>
Comments
Post a Comment