Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

'SSFCOMP_PROCESS_DOCUMENT' Error

Former Member
0 Likes
2,431

Hi ABAPER,

I have created one interface and inside that I called four Smart forms. All the smart forms are displaying.

One smartform is not displaying.I debugged and found out that 'SSFCOMP_PROCESS_DOCUMENT' function

module having one error the sysub-rc is not 0 here for this smartform. So can you please tell that how will I solve this error.

Thanks in Advance.

Thanks and Regards

Deepa

3 REPLIES 3
Read only

Former Member
0 Likes
1,167

Hi

U should past the message error too

U can get the error by fm SSF_READ_ERRORS:

CALL FUNCTION <smartform>
      .......  
    EXCEPTIONS
      .......
    IF SY-SUBRC <> 0.
       CALL FUNCTION 'SSF_READ_ERRORS'
            IMPORTING
                 ERRORTAB = IT_ERRORLIST.
     ENDIF.

Max

Read only

RaymondGiuseppi
Active Contributor
0 Likes
1,167

First read this document [Checking and Testing a Smart Form|http://help.sap.com/saphelp_nw70/helpdata/EN/4b/83fb5bdf8f11d3969700a0c930660b/frameset.htm], look for Runtime Errors.

Regards,

Raymond

Read only

Former Member
0 Likes
1,167

Thanks!!!!!!!!1