E9.2 Assistance with XML requirements for BSSV SalesOrderManager [oracle.e1.bssv.JP420000]

EDouglas

Member
Calling BSSV SalesOrderManager (oracle.e1.bssv.JP420000) and have the complete XML, but would like an Example of the minimal tags required to create a Sales Order.

(i.e., BusinessUnit, CustomerPO, ItemNumber, Quantity....)

There are several areas of the XML that could contain ItemNumber, etc., and I would like to narrow it down to only the required tags.

of Note; I do not have access to Oracle Support Docs, so recommending links in that regard is not a viable option.

Currently, I am receiving the following error message;

<ns0:Fault xmlns:ns0="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://www.w3.org/2003/05/soap-envelope">
<faultcode>ns0:Server</faultcode>
<faultstring>java.lang.NullPointerException</faultstring>
</ns0:Fault>

Any help would be greatly appreciated,

Eric
 
I attach a example EDouglas:

XML:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:orac="http://oracle.e1.bssv.JP420000/" xmlns:java="java:oracle.e1.bssv.JP420000.valueobject" xmlns:java1="java:oracle.e1.bssv.util.J0100010.valueobject" xmlns:java2="java:oracle.e1.bssv.util.J4100010.valueobject">
   <soapenv:Header/>
   <soapenv:Body>
      <orac:processSalesOrderElement>
         <java:Header>
            <java:Processing>
               <java:ActionType>1</java:ActionType>
               <java:ProcessingVersion>ZJDE0001</java:ProcessingVersion>
            </java:Processing>
            <java:BusinessUnit>A02101</java:BusinessUnit>
            <java:Company>00201</java:Company>
            <java:SoldTo>
               <java:Customer>
                  <java1:EntityId>50210000</java1:EntityId>
               </java:Customer>
            </java:SoldTo>
            <java:ShipTo>
               <java:Customer>
                  <java1:EntityId>50210000</java1:EntityId>
               </java:Customer>
            </java:ShipTo>
          
                      <!--Zero or more repetitions:-->
            <java:Detail>
               <java:Processing>
                  <java:ActionType>1</java:ActionType>
               </java:Processing>
               <java:BusinessUnit>A02101</java:BusinessUnit>
               <java:Product>
                  <java:Item>
                     <java2:ItemId>938808</java2:ItemId>
                  </java:Item>
               </java:Product>
               <java:QuantityOrdered>5</java:QuantityOrdered>
            </java:Detail>
         </java:Header>
      </orac:processSalesOrderElement>
   </soapenv:Body>
</soapenv:Envelope>

Enjoy :)
 
Back
Top