Sunday, December 19, 2010
Modulpool programs can have 4 events in the flow logic.
- PROCESS BEFORE OUTPUT. (It is also called PBO).
This event is triggered before screen is displaye. - PROCESS AFTER INPUT. (It is also called PAI).
This event is triggered based on user action on screen. - PROCESS ON HELP-REQUEST.(It is also called POH).
It is triggered when u press F1 on screen for screen element .Calling Help Texts from Dialog Modules.
Use below FM to get Help text
- PROCESS ON VALUE-REQUEST.(It is also called POV).
It is triggered when we press F4 on screen for the screen element.
Use below FM to get f4 help for the field.
CALL FUNCTION 'HELP_OBJECT_SHOW_FOR_FIELD' EXPORTING DOKLANGU = SY-LANGU DOKTITLE = TEXT-002 CALLED_FOR_TAB = 'DEMOF1HELP' CALLED_FOR_FIELD = 'FIELD1'.
CALL FUNCTION 'F4IF_FIELD_VALUE_REQUEST' EXPORTING TABNAME = 'DEMOF4HELP' FIELDNAME = 'CARRIER1' DYNPPROG = PROGNAME DYNPNR = DYNNUM DYNPROFIELD = 'CARRIER'.
Followers
Popular Posts
- ABAP - ALV Report example with steps
- ABAP - Step by step tutorial on Smart Forms - Template Node
- ABAP - Sending email with pdf attachment
- SAP Adobe Form - Steps to create simple ADOBE Form and calling it from ABAP Program
- SAP ABAP - CL_ABAP_CHAR_UTILITIES class usage
- ABAP - Multiple value selection from F4 help for SELECT-OPTIONS
- Execute ABAP Report using SUBMIT statement
- ABAP - Select all or Deselect all in ALV or Check box handling in ALV
- Web Dynpro ABAP ALV - ON_CLICK event
- ABAP - Dynamic WHERE clause
in which scenario we will create custom table? please give me some examples?
ReplyDeleteHi Praveen, if standard tables do not serve your purpose, we go for custom table.
ReplyDelete