cancel
Showing results for 
Search instead for 
Did you mean: 

SAP VC - Hide multiple characteristics (invisible)

Former Member
0 Kudos

Hi all,

How can I hide more than 1 characteristic?

I am using a procedure which looks like that:


( $self.INVISIBLE = 'CHAR_A' )

IF ( NOT SPECIFIED $Self.CHAR_B ) ,


( $self.INVISIBLE = 'CHAR_C' )

IF ( NOT SPECIFIED $Self.CHAR_D )


Result:

The first statement in the code is ignored. CHAR_A is always visible.

The second statement works fine. CHAR_C is invisible if CHAR_D is not specified.


f I change the sequence in the code, it’s the other way round:


( $self.INVISIBLE = 'CHAR_C' )

IF ( NOT SPECIFIED $Self.CHAR_D ) ,


( $self.INVISIBLE = 'CHAR_A' )

IF ( NOT SPECIFIED $Self.CHAR_B )


Result:

he first statement in the code is ignored. CHAR_C is always visible.

Now only CHAR_A is invisible if CHAR_B is not specified.


I checked the following link. But it seems setting more than one characteristic invisible doesn’t work.

http://scn.sap.com/docs/DOC-66822


Can anyone help please?


Thanks. Regards, Daniel

Accepted Solutions (1)

Accepted Solutions (1)

Flavio
Active Contributor
0 Kudos

Hi Daniel,

Looks like your INVISIBLE characteristic is Single Value.

Please make sure you create that reference characteristic to SCREEN_DEP - INVISIBLE with Multiple Value flag set:

I do believe it will then work.

Thanks and regards,

Flavio

Former Member
0 Kudos

Hi Flavio,

you were absolutely right. It works.

Thanks for your quick response.

Regards,

Daniel

Flavio
Active Contributor
0 Kudos

Hi Daniel,

You are welcome! I'm happy that it's working

Thanks and regards,

Flavio

Answers (0)