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
601

Hi,

When i double click a line in my report. I shud call Transaction 'SE16', Skipping 2 screens.

Passing : 1. table name in the first screen AND

2. PO number in the second Screen.

How shud i go about it.

Thanks in advance.

Hi,

When i double click a line in my report. I shud call Transaction 'SE16', Skipping 2 screens.

Passing : 1. table name in the first screen AND

2. PO number in the second Screen.

How shud i go about it.

Thanks in advance.

5 REPLIES 5
Read only

Former Member
0 Likes
558

i don;t think it is possible using call transaction to skip 2 screen.

betetr u do the recording of that transaction and paas the value as u do in the bdc.

Read only

0 Likes
558

Is there any other possibility other than BDC recording, to skip 2 screens.

Read only

Former Member
0 Likes
558

Hi,

You can use SUBMIT program instead of using CALL TRANSACTION..

Ex..If you want to display PO header table..

you can use

SUBMIT /1BCDWB/DBEKKO..

Thanks,

Naren

Read only

Former Member
0 Likes
558

hi

Here I am giving some code

first of all declare two varibles to hold the filed and its value

Data: F_NAM(10), V_FVAL(40).

while displaying the record in the list hold the value with hostspot and with hide keywords

then in the case statement to call the tcode write the logic

here is some example piece of code for that

GET CURSOR FIELD V_FNAM VALUE V_FVAL.

SET PARAMETER ID 'FILEDNAME' FIELD V_FVAL.

CALL TRANSACTION 'SE16' AND SKIP FRIST TWO SCREENS.

i thinks this piece of code would be helpful for u

if u find it useful mark the points

~~Guduri

Read only

Former Member
0 Likes
558

Hi Sherly

Please try using FM: <b>RFC_READ_TABLE</b> to extract the entry from the database table and display accordingly. You can restrict the fields to be displayed too.

Hope this helps you.

Kind Regards

Eswar