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

FEW DOUBTS

Former Member
0 Likes
881

PLEASE HELP EXPERTS,

1. what is table maintenance generator.

2. how to handle table control in bdc. explain in detail.

3. what is the table which contain TEXTS.

4. WHAT IS THE EVENT TRIGGERED AT VALIDATIONS ON SCREEN.

THANKX

BALEEQ.

PLEASE HELP EXPERTS,

1. what is table maintenance generator.

2. how to handle table control in bdc. explain in detail.

3. what is the table which contain TEXTS.

4. WHAT IS THE EVENT TRIGGERED AT VALIDATIONS ON SCREEN.

THANKX

BALEEQ.

6 REPLIES 6
Read only

Former Member
0 Likes
845

Hi

1. Using Table maintenance generator u can perform DDL, DML commands on more than one rows.

4. At selection-screen on Fieldname.

Regards

Haritha

Read only

0 Likes
845

hi,

1. Table Maintenance

useful links

www.sap-img.com/basis/useful-sap-system-administration-transactions.htm

help.sap.com/saphelp_nw04s/helpdata/en/67/86b160415811d1893d0000e8323c4f/content.htm

4. at selection-screen on p_field.

Regards,

Richa.

Read only

Former Member
0 Likes
845

1. what is table maintenance generator.

It's a program, generated by the system, to load/update/delete the records of a table

2. how to handle table control in bdc. explain in detail.

It has to indicate the number of tc line, so if it needs to update a field of second line:

BDC_FIELD = <FIELNAME(2)>.

3. what is the table which contain TEXTS.

You can see only header data in table STXH

4. WHAT IS THE EVENT TRIGGERED AT VALIDATIONS ON SCREEN.

AT SELECTION-SCREEN for selection-screen

PROCESS PAI for dynpro

Max

Read only

Former Member
0 Likes
845

1. Table maintenance generator automatically generates user-dialogs to allow a user to maintain entries in database tables. These user-dalogs can be accessed using SM30/31 or you can create a parameter transaction

to call them.

Check the link...

http://help.sap.com/saphelp_webas610/helpdata/en/67/86b0f5415811d1893d0000e8323c4f/frameset.htm

2. For handling Table controls in BDC, give a dynamic reference to the looping fields in your program.

e.g. see the sample code:

l_cnt = w_cnt + 1.

concatenate: 'RF02D-KTONR(' l_cnt ')' into l_ktonr,

'KNVP-PARVW(' l_cnt ')' into l_parvw.

perform bdc_dynpro using 'SAPMF02D' '0324'.

perform bdc_field using 'BDC_CURSOR'

l_ktonr.

perform bdc_field using 'BDC_OKCODE'

'=ENTR'.

perform bdc_field using l_parvw

i_sptab-parvw.

perform bdc_field using l_ktonr

i_sptab-ktonr.

perform bdc_dynpro using 'SAPMF02D' '0324'.

perform bdc_field using 'BDC_CURSOR'

'KNVP-PARVW(01)'.

perform bdc_field using 'BDC_OKCODE'

'=UPDA'.

perform bdc_transaction using 'XD02'.

3. Texts in SAP are generally language-dependent and are therefore maintained in separate text tables. As per generic convention, text tables names are appended with "T". But this may not be so hard and fast.

4. Validations on selection screen can get triggered using any of the following events:

*At Selection-Screen

*At selection-screen on field

and so on..

Message was edited by: Akriti

Message was edited by: Akriti

Read only

former_member404244
Active Contributor
0 Likes
845

Hi Baleeq,

1>Table maintainance generator is nothing but to give authorizations and also how u want to maintain whether single step or two step maintainence.generally one step maintainence is maintained.

2>You have to record pagedown for handling the table control.

3>Search for tables starting with 'T'.

4>For classical report

1>at selection-screen

2>at selection-screen on field

3>at selection-screen on value-request

4>at selection-screen output

Read only

Former Member
0 Likes
845

3.

STXH for header

STXT items

but you can NOT use these tables to read the text. its stored in Byte format.

you have to use READ_TEXT function module

Regards

srikanth