SAP HRIQ_TRANSCRIPT_PROCESS_DATA Function Module for RFC: Check and Complete Data for External Transcript
HRIQ_TRANSCRIPT_PROCESS_DATA is a standard hriq transcript process data SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for RFC: Check and Complete Data for External Transcript 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 transcript process data FM, simply by entering the name HRIQ_TRANSCRIPT_PROCESS_DATA into the relevant SAP transaction such as SE37 or SE38.
Function Group: HRPIQ00TRANSCRIPTRFC
Program Name: SAPLHRPIQ00TRANSCRIPTRFC
Main Program: SAPLHRPIQ00TRANSCRIPTRFC
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:

Function HRIQ_TRANSCRIPT_PROCESS_DATA 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_TRANSCRIPT_PROCESS_DATA'"RFC: Check and Complete Data for External Transcript.
EXPORTING
STUDENT = "Student Object
HEADER_EXT = "External Transcript (Header Data)
* TESTRUN = ' ' "Switch to Simulation Mode for Write BAPIs
IMPORTING
P1719_STRUC = "Transcripts (Header Data)
RETURN_CODE = "
TABLES
* DEGREE_EXT = "Degree/Qualification (Ext. Transcripts)
* SPEC_EXT = "Specialization (External Transcripts)
* SESSION_EXT = "Academic Session (External Transcripts)
* COURSE_EXT = "External Subject
* CODNOTE_EXT = "Coded Note (External Transcript)
* FREETEXT_EXT = "Comments (External Transcripts)
* PT1719_TAB = "Infotype 1719: Table Section for Ext. Transcripts
* RETURN = "Return Parameter(s)
IMPORTING Parameters details for HRIQ_TRANSCRIPT_PROCESS_DATA
STUDENT - Student Object
Data type: HROBJECTOptional: No
Call by Reference: No ( called with pass by value option)
HEADER_EXT - External Transcript (Header Data)
Data type: PIQTRHEADER_EXTOptional: No
Call by Reference: No ( called with pass by value option)
TESTRUN - Switch to Simulation Mode for Write BAPIs
Data type: TESTRUNDefault: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for HRIQ_TRANSCRIPT_PROCESS_DATA
P1719_STRUC - Transcripts (Header Data)
Data type: P1719Optional: No
Call by Reference: No ( called with pass by value option)
RETURN_CODE -
Data type: SY-SUBRCOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for HRIQ_TRANSCRIPT_PROCESS_DATA
DEGREE_EXT - Degree/Qualification (Ext. Transcripts)
Data type: PIQTRDEGREE_EXTOptional: Yes
Call by Reference: Yes
SPEC_EXT - Specialization (External Transcripts)
Data type: PIQTRSPEC_EXTOptional: Yes
Call by Reference: Yes
SESSION_EXT - Academic Session (External Transcripts)
Data type: PIQTRSESSION_EXTOptional: Yes
Call by Reference: Yes
COURSE_EXT - External Subject
Data type: PIQTRCOURSE_EXTOptional: Yes
Call by Reference: Yes
CODNOTE_EXT - Coded Note (External Transcript)
Data type: PIQTRCODNOTE_EXTOptional: Yes
Call by Reference: Yes
FREETEXT_EXT - Comments (External Transcripts)
Data type: PIQTRFREETEXT_EXTOptional: Yes
Call by Reference: Yes
PT1719_TAB - Infotype 1719: Table Section for Ext. Transcripts
Data type: PT1719Optional: Yes
Call by Reference: Yes
RETURN - Return Parameter(s)
Data type: BAPIRET2Optional: Yes
Call by Reference: Yes
Copy and paste ABAP code example for HRIQ_TRANSCRIPT_PROCESS_DATA 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_student | TYPE HROBJECT, " | |||
| lt_degree_ext | TYPE STANDARD TABLE OF PIQTRDEGREE_EXT, " | |||
| lv_p1719_struc | TYPE P1719, " | |||
| lt_spec_ext | TYPE STANDARD TABLE OF PIQTRSPEC_EXT, " | |||
| lv_header_ext | TYPE PIQTRHEADER_EXT, " | |||
| lv_return_code | TYPE SY-SUBRC, " | |||
| lv_testrun | TYPE TESTRUN, " ' ' | |||
| lt_session_ext | TYPE STANDARD TABLE OF PIQTRSESSION_EXT, " | |||
| lt_course_ext | TYPE STANDARD TABLE OF PIQTRCOURSE_EXT, " | |||
| lt_codnote_ext | TYPE STANDARD TABLE OF PIQTRCODNOTE_EXT, " | |||
| lt_freetext_ext | TYPE STANDARD TABLE OF PIQTRFREETEXT_EXT, " | |||
| lt_pt1719_tab | TYPE STANDARD TABLE OF PT1719, " | |||
| lt_return | TYPE STANDARD TABLE OF BAPIRET2. " |
|   CALL FUNCTION 'HRIQ_TRANSCRIPT_PROCESS_DATA' "RFC: Check and Complete Data for External Transcript |
| EXPORTING | ||
| STUDENT | = lv_student | |
| HEADER_EXT | = lv_header_ext | |
| TESTRUN | = lv_testrun | |
| IMPORTING | ||
| P1719_STRUC | = lv_p1719_struc | |
| RETURN_CODE | = lv_return_code | |
| TABLES | ||
| DEGREE_EXT | = lt_degree_ext | |
| SPEC_EXT | = lt_spec_ext | |
| SESSION_EXT | = lt_session_ext | |
| COURSE_EXT | = lt_course_ext | |
| CODNOTE_EXT | = lt_codnote_ext | |
| FREETEXT_EXT | = lt_freetext_ext | |
| PT1719_TAB | = lt_pt1719_tab | |
| RETURN | = lt_return | |
| . " HRIQ_TRANSCRIPT_PROCESS_DATA | ||
ABAP code using 7.40 inline data declarations to call FM HRIQ_TRANSCRIPT_PROCESS_DATA
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.| "SELECT single SUBRC FROM SY INTO @DATA(ld_return_code). | ||||
| DATA(ld_testrun) | = ' '. | |||
Search for further information about these or an SAP related objects