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

Regarding List display.

Former Member
0 Likes
742

I have developed one alv and then after displaying i click on alv field then after i displayed a write statement report using submit till here is fine. i use user command with selfield value for alv and report display. now my requirement is now on this normal write statement report when i click on any field then after it should display another report using submit statement.

1.alv

2.click on alv field display another report .

till here fine no problem.

3.now prob arise after clk on this 2nd report i have to display another report using submit stmt.but at line-seletion is not triggering.

Thanks in Advance please help me.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
715

Hi,

Catch the get cursor &

-


Passing value of perner to Memory ID u2018Memo1u2019

Export pernr to MEMORY id 'Memo1'.

Now submit to the program

Submit Prog_name AND RETURN .

-


Now we are importing u2018it_tableu2019 from Prog_name based on the value of pernr

Import it_table from MEMORY id 'ABC' .

Now we have to add Export parameter code in target program (Prog_name).

INITIALIZATION.

import pernr from memory id 'Memo1' .

-


After the internal table is appended we need to export it to again memory id (Memo1)

END-OF-SELECTION.

export it_table to memory id 'Memo1' .

Thanks,

Krishna

I have developed one alv and then after displaying i click on alv field then after i displayed a write statement report using submit till here is fine. i use user command with selfield value for alv and report display. now my requirement is now on this normal write statement report when i click on any field then after it should display another report using submit statement.

1.alv

2.click on alv field display another report .

till here fine no problem.

3.now prob arise after clk on this 2nd report i have to display another report using submit stmt.but at line-seletion is not triggering.

Thanks in Advance please help me.

4 REPLIES 4
Read only

Former Member
0 Likes
715

Fort that you can following code with write statement

at line selection.

get cursor feild (your feild).

then submit your report

endat.

Read only

Former Member
0 Likes
715

Hi,

Did you use the HIDE statement.. to get the values

Read only

Former Member
0 Likes
716

Hi,

Catch the get cursor &

-


Passing value of perner to Memory ID u2018Memo1u2019

Export pernr to MEMORY id 'Memo1'.

Now submit to the program

Submit Prog_name AND RETURN .

-


Now we are importing u2018it_tableu2019 from Prog_name based on the value of pernr

Import it_table from MEMORY id 'ABC' .

Now we have to add Export parameter code in target program (Prog_name).

INITIALIZATION.

import pernr from memory id 'Memo1' .

-


After the internal table is appended we need to export it to again memory id (Memo1)

END-OF-SELECTION.

export it_table to memory id 'Memo1' .

Thanks,

Krishna

Read only

Former Member
0 Likes
715

Hi ,

You need to use HIDE statement in your program.

When you double click the line , you need to use this statement to save variables in memory for further use.

You can use this variables for your next select statement . Please search in Google or SDN for example and code accordingly.