cancel
Showing results for 
Search instead for 
Did you mean: 

some questions..

Former Member
0 Kudos

Hi All,

i have got some questions...

1.can SOAP be used for JAVA web services..

2.What are the methods used in ABAP mapping

3.there is a purchase order..

and we have got header and then the line items ..

<b>is that for item we specify unbounded(in datatypes) or for header</b>...

<b>as for my knowledge if we go with header..we get redundency...</b>

cheers,

Raghavesh

Accepted Solutions (1)

Accepted Solutions (1)

bhavesh_kantilal
Active Contributor
0 Kudos

Hi,

1 --> Yes. In case of an Interface in XI being exposed as an Webservice, you will generate a WSDL and use this to trigger the webservice from your Client. in case from XI you are going to trigger a webservice, your Webservice will provide a WSDL and you use this to trigger the Webservice from XI.

2--> ABAP mapping how to https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/5c46ab90-0201-0010-42bd-9d0...

It also has an EXECUTE method just like Java mapping.

3--> Not very clear. Can you explain further.

Regards,

Bhavesh

Former Member
0 Kudos

Hi Bhavesh,

for example...

we have got a datatype named test_dt...

which has the structure as below

<b>structure occurence</b>

record 1...unbounded

item1 1

item2

item3

now my question is ...is it for record we should make it as unbounded

or for item

Hope u got my point...

Cheers,

raghavesh

bhavesh_kantilal
Active Contributor
0 Kudos

Hi,

It all depends on the requirements.

Let me give you an example,

<NAME> 1.1.
   <FNAME> 1..1
    <LNAME> 1..1
</NAME>
<ADDRESS> 1.. unbounded
    <AddressDetails> 1...1
</ADDRESS>

In the XML above, a person can have multiple Addresses and so the ADDRESS is unbounded. But, NAME is always 1..1 as a person can always have one Name.

The occurences in Datatype all depend on the actual kind of data that you expect from the source or target.

Regards,

Bhavesh

Former Member
0 Kudos

Hi ,

<i>record 1...unbounded</i>

It means you can have any number of records with multiple items for each record.

Sekhar

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi ,

Check this blog for classes of ABAP mapping.

https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/3161. [original link is broken] [original link is broken] [original link is broken] [original link is broken]

We should have one header and multiple items for one purchase order.

Sekhar