Application Development 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: 

call transaction

Former Member
0 Kudos

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

Former Member
0 Kudos

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

11 REPLIES 11

Former Member
0 Kudos

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

0 Kudos

did you put the table name in upper case? ie

SET PARAMETER ID 'DTB' FIELD 'ZLOC_MASTR'.

Regards,

Suresh Datti

0 Kudos

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

0 Kudos

I WANT THE STEP AFTER THE SELECTION SCREEN

0 Kudos

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

0 Kudos

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

0 Kudos

what did you pass in SELTAB

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

Regards

Raja

0 Kudos

i move this

CALL FUNCTION 'RS_TABLE_LIST_CREATE'

EXPORTING

table_name = tabname

  • ACTION = 'ANZE'

where is the SELTAB?????

0 Kudos

SELTAB is a tables parameter .

check the definition of the FM from se37

Regards

Raja

0 Kudos

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.

0 Kudos

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