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

call transaction

Former Member
0 Likes
2,098

i need to call transaction se16 with my ztable and show it on the screen can you gaive me an examp PLS>

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,743

i made this

SET PARAMETER ID 'DTB' FIELD 'zloc_mstr' .

CALL TRANSACTION 'SE16' AND SKIP FIRST SCREEN.

but it not making f8 and show all the data

what is the comma

i need to call transaction se16 with my ztable and show it on the screen can you gaive me an examp PLS>

11 REPLIES 11
Read only

Former Member
0 Likes
1,744

i made this

SET PARAMETER ID 'DTB' FIELD 'zloc_mstr' .

CALL TRANSACTION 'SE16' AND SKIP FIRST SCREEN.

but it not making f8 and show all the data

what is the comma

Read only

0 Likes
1,743

did you put the table name in upper case? ie

SET PARAMETER ID 'DTB' FIELD 'ZLOC_MASTR'.

Regards,

Suresh Datti

Read only

0 Likes
1,743

it should work.

change the tablename to upper case.

SET PARAMETER ID 'DTB' FIELD 'ZLOC_MSTR' .

CALL TRANSACTION 'SE16' AND SKIP FIRST SCREEN.

this should take you to the selection screen for the databrowse for tabl ZLOC_MSTR

Regards

Raja

Read only

0 Likes
1,743

I WANT THE STEP AFTER THE SELECTION SCREEN

Read only

0 Likes
1,743

thats not skipping first screen, its skipping two screens. in such a case you cannot use call transaction.

instead in your program call FM

RS_TABLE_LIST_CREATE

pass the table name to parameter TABLE_NAME

'ANZE' to action and leave all the other parameters blank.

and to restrict the data you need to fill table SELTAB

Regards

Raja

Read only

0 Likes
1,743

i tried it but i see only the screen of the paramters

Read only

0 Likes
1,743

what did you pass in SELTAB

if you have passed values to seltab you wont be seeing the selscreen

Regards

Raja

Read only

0 Likes
1,743

i move this

CALL FUNCTION 'RS_TABLE_LIST_CREATE'

EXPORTING

table_name = tabname

  • ACTION = 'ANZE'

where is the SELTAB?????

Read only

0 Likes
1,743

SELTAB is a tables parameter .

check the definition of the FM from se37

Regards

Raja

Read only

0 Likes
1,743

raja

i pass it

data : i_itab like RSPARAMS occurs 0.

CALL FUNCTION 'RS_TABLE_LIST_CREATE'

EXPORTING

table_name = 'ZLOC_MSTR'

ACTION = 'ANZE'

TABLES

SELTAB = i_itab.

and still.

and if i want se16n is this FM too.

Read only

0 Likes
1,743

for SE16N you cannot use this. to start SE16N you can call function SE16N_START. but you cannot by pass the screen to enter selections.

you need to fill i_itab with values.

i_itab-selname = 'I1' .

i_itab-kind = 'S' .

i_itab-sign = 'I' .

i_itab-option = 'EQ' .

i_itab-low = '<filter value>' .

append i_itab .

i_itab-selname I1 refers to the first field you see when you go to se16 and enter your table name and hit enter.

this example is for filtering values based on that first field.

Regards

Raja

Reward points to helpful answers by choosing appropriate radiobuttons