Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

bdc

Former Member
0 Likes
538

Hi.

Please explain this code. what will (02) do .

PERFORM bdc_field USING 'RV45A-MABNR(02)'

itab-mabnr.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
520

Hi Prajwal,

The particular screen(transaction) for which this BDC has written, must be having table control in it.

So this (02) refer the second line.

Reward points if useful.

Regards,

Atish

6 REPLIES 6
Read only

Former Member
0 Likes
521

Hi Prajwal,

The particular screen(transaction) for which this BDC has written, must be having table control in it.

So this (02) refer the second line.

Reward points if useful.

Regards,

Atish

Read only

Former Member
0 Likes
520

That is second line item in table control,suppose if you are uploading 3rd line of material number

then

PERFORM bdc_field USING 'RV45A-MABNR(03)'

itab-mabnr.

I hope you got it

Thanks

Seshu

Read only

0 Likes
520

Thanks friends . and what will this code do

PERFORM bdc_field USING 'BDC_OKCODE'

'= POAN'.

Read only

0 Likes
520

=POAN is function code

suppose if you go sales order ,if you press enter button,ENT2 will be the Function code

when you see ok_code in bdc then it will be function code

I guess =POAN will be table control Insert function code

Thanks

Seshu

Read only

0 Likes
520

Hi Prajwal,

Every action on the screen (lets say pressing a push button on the screen) has the OK CODE associated with it.

This is the OK code for some action. As what this action exactly means can only be find out by recording the BDC for that transaction using SHDB.

Regards,

Atish

Read only

0 Likes
520

thanks friends