2007 Jul 03 6:03 AM
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, 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 -
2007 Jul 03 6:30 AM
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.
2007 Jul 03 6:51 AM
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
| User | Count |
|---|---|
| 3 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |