cancel
Showing results for 
Search instead for 
Did you mean: 

smartform output

Former Member
0 Kudos

Hi,

My requirement is if the o/p type is ZURA and ATTRIBUTE4 field = RA then the estimated unit price and estimated amount value should not be shown in the o/p of the smartform.So in conditions tab I gave the conditions like this

ZNAST-KSCHL # 'ZURA'

L_KATR4 # 'RA'

If only both these conditions are satisfield then the values for these fields will be shown on the o/p otherwise they should not be shown.

Now when I checked in debugging mode I found this query

IF (

AND ZNAST-KSCHL NE 'ZURA'

AND L_KATR4 NE 'RA' ).

Here ZNAST-KSCHL is showing value ZURA and L_KATR4 is showing no value.Then in this case values should be shown on the o/p b'oz one condition is failing.But these values are not shown in the o/p.

Can anyone suggest me a proper solution for this?

Regards,

Hema

Accepted Solutions (1)

Accepted Solutions (1)

valter_oliveira
Active Contributor
0 Kudos

Hello.

In the place of the text element where you have the conditiom, create a condition:

CREATE->FLOW LOGIC->ALTERNATIVE

There, put the condition,

ZNAST-KSCHL = 'ZURA'

L_KATR4 = 'RA'

Leave the TRUE empty (not writing)

In the ELSE put your text elemtn.

To keep your way, and if # means different:

ZNAST-KSCHL # 'ZURA'

L_KATR4 # 'RA'

OR

ZNAST-KSCHL = 'ZURA'

L_KATR4 # 'RA'

OR

ZNAST-KSCHL # 'ZURA'

L_KATR4 = 'RA'

will work too.

Reward if helpfull.

Best regards.

Valter Oliveira.

Edited by: Valter Oliveira on May 15, 2008 4:09 PM

Answers (1)

Answers (1)

Former Member
0 Kudos

you written condition for

not displaying but you have to given condition for displaying also i.e. you have to create seperate text element

for this condition also but take care of its output options

& some times in conditions if we want to consider any of field value works place or inbetween the two by clicking the or icon

Thanks,

Phani.