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 SE16 passing table name

Former Member

Hello All,

I want to call the transaction SE16 from my program by passing a table name. and i wnat to show the user directly the selection screen of that table.

can any one help?

Thank you.

Best Regards,

Amarender Reddy B

4 REPLIES 4

Former Member
0 Kudos

Hi,

Create your own screen through se51 and in its PBO write a code for the selection screen of your table.

Call this scren from your Z program.. Like CALL SCREEN '0001'.

Regards

Mudit

Former Member

Hi

Try this

PARAMETERS : P_TABLE TYPE DATABROWSE-TABLENAME.

SET PARAMETER ID 'DTB' FIELD P_TABLE.

CALL TRANSACTION 'SE16' AND SKIP FIRST SCREEN.

Regards

former_member188685
Active Contributor
0 Kudos

you can use this Function module SE16N_INTERFACE, here you can pass the selection-fields, directly you get the output with the selected entries.

Former Member
0 Kudos

thanks vijay