cancel
Showing results for 
Search instead for 
Did you mean: 

Conditional graphic.

Former Member
0 Kudos

I need to add a graphic if and only if a particular field has a determinate value.

I don't see any options when including the graphic about when it should appear, so I've tried to put a window on top of it, and filling it white in case I don't want to show the graphic. But the graphic overrides the window, and appears anyway. What can I do for the window to be put on top of the graphic?

Thank you.

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

In my case, what worked was:

BITMAP 'FGOPC' OBJECT GRAPHICS ID BMAP TYPE BMON.

Former Member
0 Kudos

SAPscript, Smartforms or Adobe forms?

In Smartforms the graphic node has a Conditions tab (like every other node type) here you can define a condition which must be met for the graphic to be displayed.

In SAPscript put an IF statement around your INCLUDE statement.

In Adobe forms, I don't know.

Regards,

Nick

Former Member
0 Kudos

It is SAPScript. Please, how that INCLUDE satement would be?

Former Member
0 Kudos

Something like

/: IF &FIELDNAME& EQ &ANOTHER_FIELD&

/: INCLUDE GRAPHIC_NAME

/: ENDIF

Regards,

Nick