cancel
Showing results for 
Search instead for 
Did you mean: 

MM01 BDC Recording for SALES ORG 1 -- Tax Data

Former Member
0 Kudos

Hi all

Can you all guide me on the following:

I am trying to create an article using MM01. In the Sales Org View I have to add the Tax Data ( only the Tax Code values 0, 1). The Tax data is in the Table Control. The number of records are always constant so I need to just update one field in reach record. But in the display I am able to see only 2 records. So we need to scroll down/page down to update the other records.

The BDC recording is not capturing the page down action. Can any one please guide me how I can update the below records.

Thanks in advance

VAN

Accepted Solutions (0)

Answers (4)

Answers (4)

reinerschweikert
Discoverer
0 Kudos

For me the function code STNP does not work. I found the Code P+ and that worked for me.
perform bdc_field using 'BDC_OKCODE'
'=P+'.

Former Member
0 Kudos

the function code for next page is STNP in this case,and also FIRST_PAGE is STFP,PREV_PAGE is STPP,LAST_PAGE is STLP.we also met the same problem when create material using BDC.

ferry_lianto
Active Contributor
0 Kudos

Hi Van,

Did you have your codes to set to

BDC_SUBSCR = SAPLMGD1                                2184SUB3
BDC_CURSOR = MG03STEUER-TAXKM(01)
MG03STEUER-TAXKM(01) = '1'
BDC_CURSOR = MG03STEUER-TAXKM(02)
MG03STEUER-TAXKM(02) = '0'

Hope this will help.

Regards,

Ferry Lianto

ferry_lianto
Active Contributor
0 Kudos

Hi Van,

Let's say the table control only can be filled up to 10 line items. If you want to fill up to the next 10 line items, you can press <b>Enter or BDC_OKCODE = /00</b>. The program will open the next new line items.

Hope this will help.

Regards,

Ferry Lianto

Former Member
0 Kudos

Ferry

Thanks for your reply. As per your suggestion I have tried using BDC_OKCODE = /00 to add data to the below. But I am getting an error message saying that filed does not exists in the screen. The page down action is captured by FCODE /00 while recording but when I run the same recording I am getting an error message saying that screen does not contain that filed. 'MG03STEUER-TAXKM

I even tried adding all the values in one screen

'MG03STEUER-TAXKM(01)

'MG03STEUER-TAXKM(02)

'MG03STEUER-TAXKM(03)..

but no luck with that too

FYI We are using 46B here.

Appreciate your help

Van