cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

INPUT Parameter of INBOUND ABAP PROXY

former_member70391
Contributor
0 Kudos
1,505

Hello Friends,

We have created the inbound proxy via SPROXY and we have implemented the class ZACCL_MI_VENDOR_MASTER_PROXY_I for the same. Now In the structure tab of ABAP Proxy I can see the following structure of the INPUT.

INPUT-MT_VENDOR_MASTER_PROXY -VENDOR -VENDOR_DETAIL -RECORD_TYPE.

Now in the record_type we are passing a single parameters C or N. i.e if i is N then new and if it C then change.

In my class implementation i am doing the followin check.

CASE input--MT_VENDOR_MASTER_PROXY -VENDOR -VENDOR_DETAIL -RECORD_TYPE. WHEN 'N'.

CALL METHOD me->create_vendor

EXPORTING

input = input

IMPORTING

title = title

it_recp = it_recp

it_contenttext = content_text.

WHEN 'C.

CALL METHOD me->change_vendor

EXPORTING

input = input

IMPORTING

title = title

it_recp = it_recp

it_contenttext = content_text.

but I am getting following error message.

input-MT_VENDOR_MASTER_PROXY-VENDOR-VENDOR_DETAIL-RECORD_TYPE is unknown.

Could you please help me on this issue.

Thanks & Regards,

Nagaraj

View Entire Topic
former_member70391
Contributor
0 Kudos

Sorry Guys..I solved the issue but forgot to close the thread.