‎2007 Jul 14 4:32 AM
Hi.
Please explain this code. what will (02) do .
PERFORM bdc_field USING 'RV45A-MABNR(02)'
itab-mabnr.
‎2007 Jul 14 4:40 AM
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
‎2007 Jul 14 4:40 AM
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
‎2007 Jul 14 4:40 AM
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
‎2007 Jul 14 4:59 AM
Thanks friends . and what will this code do
PERFORM bdc_field USING 'BDC_OKCODE'
'= POAN'.
‎2007 Jul 14 5:05 AM
=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
‎2007 Jul 14 5:05 AM
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
‎2007 Jul 14 5:22 AM