cancel
Showing results for 
Search instead for 
Did you mean: 

SMARTFORMS error : "no graphic found"

Former Member
0 Kudos

I have tried the program in Development and it works well, but when I try it in Test server it doesn't work. It's giving the error "no graphic found". I have checked that the SMARTFORM is there in test server. What am I supposed to do to check what's missing?

Here's my code:

call function fm_name

exporting

lot_txt = lot_txt

EBELN = I_MSEG-ebeln

EBELP = I_MSEG-ebelp

matnr = I_MSEG-matnr

maktx = maktx

importing document_output_info = document_output_info

job_output_info = job_output_info

job_output_options = job_output_options

exceptions formatting_error = 1

internal_error = 2

send_error = 3

user_canceled = 4

others = 5.

I really appreciate any help. Thank you.

-Vera-

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi Vera,

Welcome to SDN.

You need to look at the structure of your form and find a node of type Graphic, this will contain an object uploaded in transaction SE78. It will either be the literal name, or a variable.

If this node contains a literal you need to find this object in SE78 and transport it.

If this is a variable you'll need to find what value is in this variable at runtime (by debugging or similar), then find this in SE78 and transport.

Regards,

Nick

Former Member
0 Kudos

Great! You're right.. it works...

Answers (0)