cancel
Showing results for 
Search instead for 
Did you mean: 

urgent related to Mesage types and proxy

Former Member
0 Kudos

Hello,

My outbound interface related message type structure is like this....

message type name : MSg1

Msg1

x

y

Z

(under z)

a

b

c

ok,Now in generating the proxy how to populate this structure.

For example ...

if Msg type is emp_profile_msg

Emp_name

Empno

Department_name

we use this code

REPORT zblog_abap_proxy.

DATA prxy TYPE REF TO zblogco_proxy_interface_ob.

*

CREATE OBJECT prxy.

DATA it TYPE zblogemp_profile_msg.

TRY.

it-emp_profile_msg-emp_name = 'Sravya'.

it-emp_profile_msg-empno = '80101'.

it-emp_profile_msg-DEPARTMENT_NAME = 'NetWeaver'.

CALL METHOD prxy->execute_asynchronous

EXPORTING

output = it.

commit work

.

CATCH cx_ai_system_fault .

DATA fault TYPE REF TO cx_ai_system_fault .

CREATE OBJECT fault.

WRITE 😕 fault->errortext.

ENDTRY.

if message type consists structure inside strucutre ..then how to populate those sructure

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

hI,

Similarly you have to give it as extending it

it-emp_profile_msg-DEPARTMENT_NAME -Field Name

Refer below link for programming tips with ABAP proxy with the structure

http://help.sap.com/saphelp_nw04/helpdata/en/3e/a35c3cff8ca92be10000000a114084/content.htm

http://help.sap.com/saphelp_nw04/helpdata/en/14/555f3c482a7331e10000000a114084/frameset.htm

http://help.sap.com/saphelp_nw04/helpdata/en/c9/74246d8ad2447799063d39013e9a11/content.htm

Thanks

swarup