My sceen 200 is called from a button in screen 100.
At PROCESS AFTER INPUT.(screen 200)PROCESS ON VALUE-REQUEST.
FIELD LT_TABLE-LGORT
MODULE f4help.
Code:
SELECT SINGLE LGORT
FROM MARD
WHERE MATNR EQ @LT_TABLE-MATNR
AND WERKS EQ @LT_TABLE-werks
INTO @IT_FINAL.
CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
EXPORTING
RETFIELD = 'LGORT'
VALUE_ORG = 'S'
TABLES
VALUE_TAB = IT_FINAL
RETURN_TAB = IT_RETURN.
WRITE IT_RETURN-FIELDVAL TO LT_TABLE-LGORT.
REFRESH IT_FINAL.
But it is not opening.
If I simply call the perform ,it will open automatically...
How can I fix this?
Thank You in advance
Request clarification before answering.
Is the field name in the dynpro definition actually 'LT_TABLE-LGORT' and, if yes, is this field defined in some TABLE CONTROL?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
| User | Count |
|---|---|
| 10 | |
| 5 | |
| 5 | |
| 5 | |
| 4 | |
| 2 | |
| 2 | |
| 2 | |
| 1 | |
| 1 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.