cancel
Showing results for 
Search instead for 
Did you mean: 

Not able to print preview or print Smartform after the changes

Former Member
0 Kudos

Hi Experts,

I made a small change to the smartform, saved it and activated it. Transport it to our QAS system for testing.

But while trying to print preview the form i am not able to see any print/print preview. After my debug in the report that calls the form i found that at

call function G_FM_NAME it is not importing any values at all.

There was no change made on report or call function, we only change it on the smartform.

Could somebody tell me what might be the problem.

Thank you

Mamatha

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

i have no clue what your problem is, it would be too much of a guessing.

But i have a way how you can find out what the problem is:

After your "CALL FUNCTION fm_name"

adopt your coding with following:


IF sy-subrc NE 0.
  CALL FUNCTION 'SSF_READ_ERRORS'
          IMPORTING
            errortab = yy_lt_errors.
ENDIF.

this will give you a list of errors if there are any.

Then have a look at that internal table, see the errornumbers and goto SE91 for outputclass "SSFCOMPOSER" and check what the message behind your error class is.

This has helped me quite often.

regards

prakashjasti
Contributor
0 Kudos

Hi

If you have made the changes in Global Parameters.

Call the Smartform Again from the Program

with existing Parameters.

Regards,

Prakash

Sridharnekkanti
Active Participant
0 Kudos

Activate & Generate the smartform. And also Check in the program importing values of the function module CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'. If its not importing any value means there is some problem in the smartform itself.