Hola,
necesito que un campo de una dynpro ( que incorpora matchcode).
sea invisible o no segun un requerimiento.
gracias
necesito que un campo de una dynpro ( que incorpora matchcode).
sea invisible o no segun un requerimiento.
gracias
[FONT=Courier New]PROCESS BEFORE OUTPUT.[/FONT] [FONT=Courier New] MODULE oculta_campos_0100.[/FONT]
[FONT=Courier New]MODULE oculta_campos_0100.[/FONT] [FONT=Courier New][FONT=Courier New] LOOP AT screen.[/FONT][/FONT] [FONT=Courier New] [FONT=Courier New] IF screen-group1 EQ 'A' AND <tu condición se cumple>.[/FONT] [FONT=Courier New] screen-active = 0.[/FONT] [FONT=Courier New] ELSE.[/FONT] [FONT=Courier New] screen-active = 1.[/FONT] [FONT=Courier New] ENDIF.[/FONT] [/FONT][FONT=Courier New][FONT=Courier New] MODIFY screen.[/FONT][/FONT] [FONT=Courier New] [FONT=Courier New] ENDLOOP.[/FONT] [FONT=Courier New]ENDMODULE.[/FONT][/FONT]
Comentario