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

At parameter field double click..

Former Member
0 Likes
966

Hi, all

There is code such as lower part.

- Source -

REPORT double_click_sample.

TABLES : vbak.

PARAMETERS : p_vbeln like vbak-vbeln.

Execute after code with upside.

If input so number in p_vbeln field, and do double click, VA03 wants to do to be executed.

For reference, is double click that is not execution.

Is this possible?

best regards

- ZieSeong -

Hi,

by using the programing statements we capyure selected field VBELN on

BASIC LIST.

To pass individual output fields or additional information from a line to the corresponding processing block during an interactive event, use these statements:

<b>HIDE</b>

The HIDE statement is one of the fundamental statements for interactive reporting. You use the HIDE technique when creating a basic list. It defines the information that can be passed to subsequent detail lists.

<b>READ LINE</b>

Use the statements READ LINE and READ CURRENT LINE to read data from the lines of existing list levels. These statements are closely connected to the HIDE technique.

<b>GET CURSOR</b>

Use the statements GET CURSOR FIELD and GET CURSOR LINE to pass the output field or output line on which the cursor was positioned during the interactive event to the ABAP program.

GET CURSOR FIELD <f> [OFFSET <off>]
                     [LINE <lin>] 
                     [VALUE <val>] 
                     [LENGTH <len>].

AT LINE-SELECTION.

by using the GET CURSOR FIELD <F> VALUE <f1> statement you capture the value of the field VBELN.

after that store that value in SAP memory for later using by using 
<b>SET PARAMETER ID '   ' VALUE '    ' . "here pass id and value.
CALL TRANSACTION <transaction-name>.</b>

regards,

Ashok Reddy

2 REPLIES 2
Read only

Former Member
0 Likes
617

Hi,

It is not possible to go to VA03 when we double click on Selection screen field but it is possible when we double click on a record in output using CALL TRANSACTION.

Read only

Former Member
0 Likes
617

Hi,

by using the programing statements we capyure selected field VBELN on

BASIC LIST.

To pass individual output fields or additional information from a line to the corresponding processing block during an interactive event, use these statements:

<b>HIDE</b>

The HIDE statement is one of the fundamental statements for interactive reporting. You use the HIDE technique when creating a basic list. It defines the information that can be passed to subsequent detail lists.

<b>READ LINE</b>

Use the statements READ LINE and READ CURRENT LINE to read data from the lines of existing list levels. These statements are closely connected to the HIDE technique.

<b>GET CURSOR</b>

Use the statements GET CURSOR FIELD and GET CURSOR LINE to pass the output field or output line on which the cursor was positioned during the interactive event to the ABAP program.

GET CURSOR FIELD <f> [OFFSET <off>]
                     [LINE <lin>] 
                     [VALUE <val>] 
                     [LENGTH <len>].

AT LINE-SELECTION.

by using the GET CURSOR FIELD <F> VALUE <f1> statement you capture the value of the field VBELN.

after that store that value in SAP memory for later using by using 
<b>SET PARAMETER ID '   ' VALUE '    ' . "here pass id and value.
CALL TRANSACTION <transaction-name>.</b>

regards,

Ashok Reddy