cancel
Showing results for 
Search instead for 
Did you mean: 

custom infotype with subtypes

Former Member
0 Kudos

Hi ,

i have created a custom infotype with 2 subtypes. i should hide certain fields depending on the subtype selected.

i know that the following logic needs to be implemented in the PBO.

IF p9234-subty = 'park1'.

loop at screen.

IF screen-name = 'P9234-Z_PARK' "z_park is the screen field name

screen-active = 0.

MODIFY SCREEN.

ENDIF.

endloop.

ENDIF.

i used this code in the flow logic after the PROCESS BEFORE OUTPUT. statement. i am getting an error saying IF statement is not defined. should i use this logic anywhere else .can anyone help me with this. Thank you.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

raja,

please not that you will need to call a module and write the logic in that module.

You should not be writing this directly in the flow loogic screen of se 51 -screen painter editor.

Answers (0)