SAP HRIQ_FRAME_TRANSCRIPT Function Module for Format Transcript Data
HRIQ_FRAME_TRANSCRIPT is a standard hriq frame transcript SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Format Transcript Data processing and below is the pattern details for this FM, showing its interface including any import and export parameters, exceptions etc. there is also a full "cut and paste" ABAP pattern code example, along with implementation ABAP coding, documentation and contribution comments specific to this or related objects.
See here to view full function module documentation and code listing for hriq frame transcript FM, simply by entering the name HRIQ_FRAME_TRANSCRIPT into the relevant SAP transaction such as SE37 or SE38.
Function Group: HRPIQ00TRANSCRIPT
Program Name: SAPLHRPIQ00TRANSCRIPT
Main Program: SAPLHRPIQ00TRANSCRIPT
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function HRIQ_FRAME_TRANSCRIPT pattern details
In-order to call this FM within your sap programs, simply using the below ABAP pattern details to trigger the function call...or see the full ABAP code listing at the end of this article. You can simply cut and paste this code into your ABAP progrom as it is, including variable declarations.CALL FUNCTION 'HRIQ_FRAME_TRANSCRIPT'"Format Transcript Data.
EXPORTING
IM_STUDENT = "Work Area for Database PCH
IM_KEYSTRUC_SEL = "
IM_EDITMODE = "
IM_P1719_ALL = "Table Type for Structure P1719
IM_HRT1719_ALL = "Table Type for DB Table HRT1719
IM_DIALOGMODE = "
IM_BUFFERMODE = "
IMPORTING
EX_P1719_NEW = "
EX_KEY_CHANGED = "
EX_PT1719_NEW = "
EX_EXIT_CODE = "Exit Code
EXCEPTIONS
IMPORT_DATA_INCONSISTENT = 1
IMPORTING Parameters details for HRIQ_FRAME_TRANSCRIPT
IM_STUDENT - Work Area for Database PCH
Data type: OBJECOptional: No
Call by Reference: Yes
IM_KEYSTRUC_SEL -
Data type: HRIPKEYOptional: No
Call by Reference: Yes
IM_EDITMODE -
Data type: FCODEOptional: No
Call by Reference: Yes
IM_P1719_ALL - Table Type for Structure P1719
Data type: P1719_TOptional: No
Call by Reference: Yes
IM_HRT1719_ALL - Table Type for DB Table HRT1719
Data type: HRT1719_TOptional: No
Call by Reference: Yes
IM_DIALOGMODE -
Data type: CHAR4Optional: No
Call by Reference: Yes
IM_BUFFERMODE -
Data type: FLAGOptional: No
Call by Reference: Yes
EXPORTING Parameters details for HRIQ_FRAME_TRANSCRIPT
EX_P1719_NEW -
Data type: P1719Optional: No
Call by Reference: Yes
EX_KEY_CHANGED -
Data type: FLAGOptional: No
Call by Reference: Yes
EX_PT1719_NEW -
Data type: PT1719_TOptional: No
Call by Reference: Yes
EX_EXIT_CODE - Exit Code
Data type: CHAR4Optional: No
Call by Reference: Yes
EXCEPTIONS details
IMPORT_DATA_INCONSISTENT -
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for HRIQ_FRAME_TRANSCRIPT Function Module
The ABAP code below is a full code listing to execute function module POPUP_TO_CONFIRM including all data declarations. The code uses the original data declarations rather than the latest in-line data DECLARATION SYNTAX but I have included an ABAP code snippet at the end to show how declarations would look using the newer method of declaring data variables on the fly. This will allow you to compare and fully understand the new inline method. Please note some of the newer syntax such as the @DATA is not available until a later 4.70 service pack (SP8), which i why i have stuck to the origianl for this example.| DATA: | ||||
| lv_im_student | TYPE OBJEC, " | |||
| lv_ex_p1719_new | TYPE P1719, " | |||
| lv_import_data_inconsistent | TYPE P1719, " | |||
| lv_ex_key_changed | TYPE FLAG, " | |||
| lv_im_keystruc_sel | TYPE HRIPKEY, " | |||
| lv_im_editmode | TYPE FCODE, " | |||
| lv_ex_pt1719_new | TYPE PT1719_T, " | |||
| lv_ex_exit_code | TYPE CHAR4, " | |||
| lv_im_p1719_all | TYPE P1719_T, " | |||
| lv_im_hrt1719_all | TYPE HRT1719_T, " | |||
| lv_im_dialogmode | TYPE CHAR4, " | |||
| lv_im_buffermode | TYPE FLAG. " |
|   CALL FUNCTION 'HRIQ_FRAME_TRANSCRIPT' "Format Transcript Data |
| EXPORTING | ||
| IM_STUDENT | = lv_im_student | |
| IM_KEYSTRUC_SEL | = lv_im_keystruc_sel | |
| IM_EDITMODE | = lv_im_editmode | |
| IM_P1719_ALL | = lv_im_p1719_all | |
| IM_HRT1719_ALL | = lv_im_hrt1719_all | |
| IM_DIALOGMODE | = lv_im_dialogmode | |
| IM_BUFFERMODE | = lv_im_buffermode | |
| IMPORTING | ||
| EX_P1719_NEW | = lv_ex_p1719_new | |
| EX_KEY_CHANGED | = lv_ex_key_changed | |
| EX_PT1719_NEW | = lv_ex_pt1719_new | |
| EX_EXIT_CODE | = lv_ex_exit_code | |
| EXCEPTIONS | ||
| IMPORT_DATA_INCONSISTENT = 1 | ||
| . " HRIQ_FRAME_TRANSCRIPT | ||
ABAP code using 7.40 inline data declarations to call FM HRIQ_FRAME_TRANSCRIPT
The below ABAP code uses the newer in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. Please note some of the newer syntax below, such as the @DATA is not available until 4.70 EHP 8.Search for further information about these or an SAP related objects