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

urgent

Former Member
0 Likes
490

Hi Experts,

i have a doubt in BDC Table Control

I have a requirement in the BDC for a Transaction codes MB1c, MR22 which contain Table Control .There are three screens for these transactions. . I am new to table control so kindly provide Step by step Process and the logic of the code with as possible as briefly

Thanks

Hi Experts,

i have a doubt in BDC Table Control

I have a requirement in the BDC for a Transaction codes MB1c, MR22 which contain Table Control .There are three screens for these transactions. . I am new to table control so kindly provide Step by step Process and the logic of the code with as possible as briefly

Thanks

3 REPLIES 3
Read only

Former Member
0 Likes
455

For MB1C you can use BAPI instead of BDC

Read only

Former Member
0 Likes
455

Hi Bhabu,

Go thur these

http://help.sap.com/saphelp_erp2005/helpdata/en/fa/097119543b11d1898e0000e8322d00/frameset.htm

http://www.sapbrain.com/TUTORIALS/TECHNICAL/BDC_tutorial.html

http://www.sap-img.com/abap/learning-bdc-programming.htm

http://www.sap-img.com/bdc.htm

http://www.sap-img.com/abap/learning-bdc-programming.htm

http://www.sapdevelopment.co.uk/bdc/bdchome.htm

http://www.planetsap.com/bdc_main_page.htm

<b>

Table Control in BDC</b>

Refer the link:

http://www.sap-img.com/abap/bdc-example-using-table-control-in-bdc.htm

The concept is easy: it has to indicate the index of the table control in the field name, so if you have to populate the first record of table control:

BDC-FIELDNAME = <FIELDNAME>(01).

If you fill the second row:

BDC-FIELDNAME = <FIELDNAME>(02).

and so....

Now the problem is usually on how many records you have to load, because u can fill only the rows of table control available in the screen, If you have more records than it can be displayed yuo have to simulate the command to go next page.

The number of recod can be displayed can depend on pc resolution and many program haven't command to go to next page (in this case it could be impossible create a BDC program9.

A way to create a bdc program resolution indipendent is to work on the first and second row.

- Place the first hit in the first row of bdc;

- Place the second insert in the second row of bdc;

- Place the last hit to the top of table control;

- Place the next hit in the second row;

- Place the last hit to the top of table control;

- Place the next hit in the second row;

- .... and so

For more info: Search in SDN with TABLE CONTROL IN BDC.

Will get a lot of related links.

Reward points if this Helps.

Manish

Read only

Former Member
0 Likes
455

HI,

Look at the below thread, The thread talks about the BDC for MB1C

The below will give an idea baout the BDC with a table Control

http://www.sap-img.com/abap/bdc-example-using-table-control-in-bdc.htm

http://www.sap-img.com/abap/question-about-bdc-program.htm

Regards

Sudheer