Hi All,
I using this FM VIEW_MAINTENANCE_CALL to display the value from the VIEW.
I have case like before displaying, i have selection screen with two input values, where as i will pass some intput value in the selection screen with delivery number.
so automatically i will update the table and the view will be displayed with the selection screen value.
for thi i have written the logic as below
LOOP AT GT_YFTZ_DEL INTO WA_DELVIEW.
WA_DELVIEW-ZBEXP = P_ZBEXP.
WA_DELVIEW-ZUPDATE = P_DATE.
UPDATE YFTZ FROM WA_DELVIEW.
ENDLOOP.
CALL FUNCTION 'VIEW_MAINTENANCE_CALL'
EXPORTING
ACTION = 'U'
VIEW_NAME = LV_VIEW_NAME
TABLES
DBA_SELLIST = LT_SELFIELD
EXCL_CUA_FUNCT = lt_excluded_function
EXCEPTIONS
OTHERS = 15
.
no the problem is with out updating the value into the table YFTZ i need to display the selection screen value in the maintaince view. Once the user click the save button then only the value should get updated in the database table.
Please help me to solve this issue.
Regards,
Vijay