I am having a problem with an error message in a SmartForm. I have tracked the error down to the following function call:
CALL FUNCTION 'SSFCOMP_PROCESS_DOCUMENT' EXPORTING HEADER = %HEADER DOCSTRUC = %DOCSTRUC STARTPAGE = CONTROL_PARAMETERS-STARTPAGE ARCHIV_INDEX_TAB = %ARCTAB MAIL_APPL_OBJECT = MAIL_APPL_OBJ IMPORTING RESULT = %RESULT_PD EXCEPTIONS OTHERS = 1. IF SY-SUBRC <> 0. PERFORM %RAISE. ENDIF.
It is returning with a value, in sy-subrc, of 1. This function call is after an included text is displayed. I have the checkbox "No error if no text exists" checked so I am not sure why I am getting an error. The error message is as follows:
Field ULINE does not exist in form.
I am not using ULINE at all in the form (as the error message states) but I don't understand why/where it is looking for ULINE.
Regards,
Davis