PR_RECRUIT_WEB03 is a standard ABAP INCLUDE available within your SAP system (depending on your version and release level). Below is the basic information available for this SAP report including which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC. Also check out the submitted Comments related to this SAP report or see any standard documentation available.
If you would like to execute this report or see the full code listing simply enter PR_RECRUIT_WEB03 into the relevant SAP transactions such as SE38 or SE80
This report can be called from another progam/report simply by using the ABAP SUBMIT statement, see below for example ABAP code snipts of how to do this.
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
HR_GET_JOBS CALL FUNCTION 'HR_GET_JOBS' DESTINATION 'B2B1' EXPORTING username = 'mingram' password = 'mark' * url = 'http://Demo2.hiresystems.com/xmldata.cfm'
HR_GET_VACANCY_DETAIL call function 'HR_GET_VACANCY_DETAIL' EXPORTING positionid = t750x-objid begindate = '19000101' enddate = '99991231' IMPORTING personnelarea = werks personnnelsubarea = btrtl employeegroup = persg employeesubgroup = persk.
SCROLLING_IN_TABLE CALL FUNCTION 'SCROLLING_IN_TABLE' EXPORTING entry_to = job_desc_tc-lines loops = desc_line_count ok_code = code entry_act = job_desc_tc-top_line last_page_full = ' ' overlapping = overlap IMPORTING entry_new = job_desc_tc-top_line.
SCROLLING_IN_TABLE CALL FUNCTION 'SCROLLING_IN_TABLE' EXPORTING entry_to = applicant_tc-lines loops = line_count ok_code = code entry_act = applicant_tc-top_line last_page_full = ' ' overlapping = over IMPORTING entry_new = applicant_tc-top_line.
SCROLLING_IN_TABLE CALL FUNCTION 'SCROLLING_IN_TABLE' EXPORTING entry_to = courses_tc-lines loops = line_count ok_code = code entry_act = courses_tc-top_line last_page_full = ' ' overlapping = over IMPORTING entry_new = courses_tc-top_line.
HR_POST_JOBS CALL FUNCTION 'HR_POST_JOBS' DESTINATION 'B2B1' EXPORTING username = 'mingram' password = 'mark' url = lv_url * IMPORTING * RETURN = TABLES data = lt_data text = vacancy_text.
HR_POST_REQUISITIONS CALL FUNCTION 'HR_POST_REQUISITIONS' DESTINATION 'B2B1' EXPORTING username = 'mingram' password = 'mark' url = lv_url TABLES data = req text = vacancy_text.
HR_PREPARE_NEW_EE * call function 'HR_PREPARE_NEW_EE' * exporting * firstname = jobs-CANDIDATEFIRSTNAME * lastname = jobs-CANDIDATELASTNAME * street = jobs-ADDRESS1 * scndaddressline = jobs-ADDRESS2 * city = jobs-CITY * state = jobs-STATE * zipcode = jobs-ZIP * country = jobs-COUNTRY * telephonenumber = jobs-HOMEPHONE * personnelarea = werks * personnelsubarea = btrtl * employeegroup = persg * employeesubgroup = persk.
SO_NEW_DOCUMENT_SEND_API1 CALL FUNCTION 'SO_NEW_DOCUMENT_SEND_API1' EXPORTING document_type = 'RAW' document_data = doc_chng put_in_outbox = 'X' TABLES object_content = objcont receivers = reclist EXCEPTIONS too_many_receivers = 1 document_not_sent = 2 operation_no_authorization = 4 OTHERS = 99.
HR_CHANGE_JOB_STATUS CALL FUNCTION 'HR_CHANGE_JOB_STATUS' destination 'B2B1' EXPORTING username = 'mingram' password = 'mark' url = 'http://demo2.hiresystems.com/updatestatus.cfm'
TRANSFER_NAMES_TO_FIELDS call function 'TRANSFER_NAMES_TO_FIELDS' exporting selectfield = f4_fieldname tables fields = f4_fields namelist = f4_list_of_fields exceptions wrong_format_given = 1 others = 2.
HELP_VALUES_GET_NO_DD_NAME call function 'HELP_VALUES_GET_NO_DD_NAME' exporting selectfield = f4_fieldname titel = f4_title importing ind = f4_index tables fields = f4_fields full_table = f4_months exceptions full_table_empty = 1 no_tablestructure_given = 2 no_tablefields_in_dictionary = 3 more_then_one_selectfield = 4 no_selectfield = 5 others = 6.
TRANSFER_NAMES_TO_FIELDS call function 'TRANSFER_NAMES_TO_FIELDS' exporting selectfield = f4_fieldname tables fields = f4_fields namelist = f4_list_of_fields exceptions wrong_format_given = 1 others = 2.
HELP_VALUES_GET_NO_DD_NAME call function 'HELP_VALUES_GET_NO_DD_NAME' exporting selectfield = f4_fieldname titel = f4_title importing ind = f4_index tables fields = f4_fields full_table = f4_states exceptions full_table_empty = 1 no_tablestructure_given = 2 no_tablefields_in_dictionary = 3 more_then_one_selectfield = 4 no_selectfield = 5 others = 6.
HR_QUERY_KANISA call function 'HR_QUERY_KANISA' destination 'B2B1' exporting loc = state_text qual = skill url = 'http://207.104.132.241/skyline2/TrainingCatalog/FAASAP.asp'
CAT_CHECK_RFC_DESTINATION call function 'CAT_CHECK_RFC_DESTINATION' exporting RFCDESTINATION = 'B2B1' importing rfc_subrc = p_retcode.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.