Skip to Content
0
Former Member
Mar 15, 2010 at 06:49 PM

PERFORM <form> in program <prog> :: break-point

66 Views

Is it possible to put a break point in the called form? Here's what I've tried.

The break point is reached, the message doesn't popup and the passed value isn't affected.

/*	 	---------------------------
/*	 	Ed Baker Mar 15, 2010 test insert
/:	 	PERFORM POPUPSCRIPT IN PROGRAM ZEJB_ZZMEDRUCKPO_US
/:	 	USING &LFA1-TELFX&
/:	 	CHANGING &LFA1-TELFX&
/:	 	ENDPERFORM

Program

FORM popupscript
  TABLES
    in_par    STRUCTURE itcsy
    out_par   STRUCTURE itcsy .

  DATA: lcl_inpar TYPE itcsy.

  READ TABLE in_par INTO lcl_inpar INDEX 1.
  lcl_inpar-value = '999-999-9999'.

  APPEND lcl_inpar TO out_par.

  MESSAGE i000(zstd) WITH 'Popup Reached: '  lcl_inpar-name .
ENDFORM .                    "popupscript