‎2009 Jun 22 9:06 AM
I am getting a dump as connversion error.
I am using
CALL FUNCTION 'Z_0CS_SPLIT_PATH_FILE'
EXPORTING
path_fil = gv_src_fpath
IMPORTING
e_file = lv_filename
EXCEPTIONS
split_error = 1
OTHERS = 2.
IF sy-subrc <> 0.
lv_filename = 'File name not Recorded!'(m05).
ENDIF.
gv_src_fname = lv_filename.
ENDMODULE. " S
This FM simply splits the name of the file from the path and then assigns it to gv_src_fname.
When i press F5 after this , i get a dump.
Means the values are not being populated to the next module- PAI.
Can anyone suggest what can be done
‎2009 Jun 22 9:08 AM
‎2009 Jun 22 9:11 AM
Runtime Errors DYNPRO_FIELD_CONVERSION
Program ' ' attempted to display fields on screen 0100.
An error occurred during the conversion of this data.
‎2009 Jun 22 9:13 AM
Hello,
Please share the code else it is like firing arrows in the dark.
BR,
Suhas
‎2009 Jun 22 9:14 AM
Hi,
Check the types of the fields which you have used on your screen. Is there some conversion exits needed?
Regards,
Ankur Parab
‎2009 Jun 22 9:31 AM
Hi Malvika,
Try this Function Module.
Please check the data types..
DATA: w_file TYPE dsvasdocid,
l_filename TYPE dsvasdocid.
CALL FUNCTION 'DSVAS_DOC_FILENAME_SPLIT'
EXPORTING
pf_docid = l_filename
IMPORTING
pf_filename = w_file.
Regards,
Amit.