Hi All!!!
here is the code i'm using in a Field-Exit al the VF01 to test de FM 'DYNP_VALUES_READ'.
********************************************************
data : table like DYNPREAD occurs 0 .
CALL FUNCTION 'DYNP_VALUES_READ'
EXPORTING
DYNAME = 'SAPMV60A'
dynumb = '6105'
tables
dynpfields = table.
CALL FUNCTION 'GUI_DOWNLOAD'
EXPORTING
filename = 'c:\testfieldexit.txt'
filetype = 'ASC'
TABLES
data_tab = table.
output = 'E0001'.
*********************************************************
the download doesn't work. the file downloaded is 0 byte, so there are no info at the table 'Table'.
please if someone realise what i'm doing wrong, tell me!!!
points will be rewards for help as a gratefulness!!
thank in advance!