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

Using CALL transaction

Former Member
0 Likes
687

Hi ,

I have created a program Z1 .

Now ,I would like to call a Custom report output Z2 from ALV of Z1.

I,e .When i click a document no , it should show the output for the particular document no from Z2.

I tried using

set parameter id 'CON' field t_output-contract. ( I have defined parameter id for the 'Z' field in the customised table which is used to access data in the report Z2)

call transaction 'ZVXXX' and skip first screen.

however, instead of selecting single record, I am getting the output for entire records .

I tried iusing SUBMIT program , but in this case instead of showing the report output the program takes me to the selection screen of z2 and then after executing the report i get the single record.

Can you help me.

Thanks

4 REPLIES 4
Read only

Former Member
0 Likes
660

Did you try Export.. to memory/Import .. from memory option?

Read only

0 Likes
660

Yes I tried that .

Read only

Former Member
0 Likes
660

Try:


SUBMIT Z2
  WITH p1 = whatever
  WITH etc
  AND RETURN.

Rob

Read only

0 Likes
660

Thanks Rob,

But I have already tried that option.