2007 Mar 19 3:37 PM
Hi!
Is possible to visualize a value of default on a field, in the markings out of a search help?
I create a f4 helper using F4IF_INT_TABLE_VALUE_REQUEST.
Thanks,
Umberto
Message was edited by:
Umberto Panico
Hi!
Is possible to visualize a value of default on a field, in the markings out of a search help?
I create a f4 helper using F4IF_INT_TABLE_VALUE_REQUEST.
Thanks,
Umberto
Message was edited by:
Umberto Panico
2007 Mar 20 4:07 AM
Hi Umberto Panico ,
you can do it but it will become a bit tedious.
You need to implement ALV and then pass your data into the container and display it...Then while displaying the list you can invoke the mouse pressed event to choose your default row.
However F4IF_INT_TABLE_VALUE_REQUEST cannot be used....
Hope this solution was helpful
PS : Please award points if helpful.
2007 Mar 20 1:30 PM
Hi,
go through the following Code
TABLES : MARD.
DATA: BEGIN OF IT_MARD OCCURS 0,
WERKS LIKE MARD-WERKS,
END OF IT_MARD.
DATA : T_RETURN TYPE STANDARD TABLE OF DDSHRETVAL WITH HEADER LINE.
parameters : P_WERKS LIKE MARD-WERKS.
AT SELECTION-SCREEN ON VALUE-REQUEST FOR P_WERKS.
SELECT WERKS FROM MARD UP TO 10 ROWS INTO table IT_MARD.
CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
EXPORTING
RETFIELD = 'WERKS'
DYNPPROG = SY-REPID
DYNPNR = '1000'
DYNPROFIELD = 'P_WERKS'
VALUE_ORG = 'S'
TABLES
VALUE_TAB = IT_MARD
RETURN_TAB = T_RETURN
EXCEPTIONS
PARAMETER_ERROR = 1
NO_VALUES_FOUND = 2
OTHERS = 3.
Thanks & regards
Sreenivasulu P
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |