Excluir un boton de una screen.


/ Published in: ActionScript
Save to your folder(s)



Copy this code and paste it in your HTML
  1. **** Crear una tabla para almacenar los valores de botones a excluir (y una workarea).
  2.  
  3. types: begin of typ_butt_exclude,
  4. fcode like rsmpe-func,
  5. end of typ_butt_exclude.
  6.  
  7. * Structure for buttons to be excluded from screen
  8. data: t_butt_exclude type standard table of typ_butt_exclude with
  9. non-unique default key initial size 10,
  10. s_butt_exclude type typ_butt_exclude.
  11.  
  12. **** Como usarlo en el PF status
  13.  
  14. set pf-status k_pf_screen9000 excluding t_butt_exclude.
  15.  
  16.  
  17. **** Ejemplo de como rellenar la tabla
  18.  
  19. "Exclude button creation
  20. clear s_butt_exclude.
  21. move 'CHNG' to s_butt_exclude-fcode.
  22. append s_butt_exclude to t_butt_exclude.

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.