Custom idoc
-
Author
suryaredi123 -
Category
Documents
-
view
111 -
download
22
Embed Size (px)
description
Transcript of Custom idoc
ALE-IDOC Scenario using Custom IDOCBy SachinDabhadeAim: Transfer the data from one system to another using user customized IDOC.
Sender System:Server: 172.25.8.185Client: 200Data from Z table: zsach1ReceiverSystem:Server: 172.25.9.198Client: 800Data from Z table: zsach1Data is fetched from Z table on the sender system and inserted it in the Z table of Receiver system using ALE/IDOC.Settings on the Sender EndTable Creation T Code SE11. The table contains data that is to be sent to Receiver.ALE ConfigurationT-Code SALEDefining Logical System200 is our sender800 is our receiverAssigning Client to Logical System200 is our sender800 is our receiverDefining Target System for RFC Calls (Tcode SM59)Click on R/3 Connections and then Create TABStep 1Step 2Save and test the connection.Defining Port
The sender system is connected to the receiver system through this Port.Continued...ALE-IDOC Scenario using Custom IDOC...PreviousDefining Partner ProfilesThe partner for client 200(Sender) is the client 800 (Receiver)Since this is a sender we have to define only Outbound Parameters in this case.Here you can see the Message type is Z message type.2.Maintaining Distribution Model ( TCode BD64 )Create newDistribution Model
Add Message TypeNow Distribute this Model ViewDistribute it from EditModel ViewDistributeContinued...ALE-IDOC Scenario using Custom IDOC...PreviousDefining the Z Segment typeTcode WE31
Defining the Basic TypeT Code WE30Click on NewThis will take you to next screen as followsHere you have connected the basic type to the segment type.Enter again and this will take you to screen as follows This shows the relation between the basic and the segment types.Next you need to make the entry of the segment in the system table.Tcode : WE81Next is the following entry which is required.
Here you are specifying the message type and the basic type and the release version.This is all about the configuration you need to do on the sender side.Now on the sender side you also need a program that will fetch the required data, couple it in the IDOC format and post it.Here is a small piece of code that could be useful.*&---------------------------------------------------------------------**&Report ZSACH_CUST_IDOC **& **&---------------------------------------------------------------------**& **& **&---------------------------------------------------------------------*report zsach_cust_idoc .parameters :p_logsys like tbdlst-logsys.data :gen_segment like edidd-segnam value 'ZSACH'.data :control_dat like edidc,gen_data like z1hdr .tables :zsach1.data: begin of inttab occurs 0,lname type z1hdr-lname,fname type z1hdr-fname,end of inttab.data :int_edidd like edidd occurs 0 with header line,int_edidc like edidc occurs 0 with header line.select * from zsach1 into corresponding fields of table inttab.ifsy-subrc ne 0.message 'no data' type 'I'.exit.endif.control_dat-mestyp = 'ZSACH'.control_dat-idoctp = 'ZSACH'.control_dat-rcvprt = 'LS'.control_dat-rcvprn = p_logsys.
loop at inttab.gen_data-lname = inttab-lname.gen_data-fname = inttab-fname.* GEN_DATA-SSN = INTTAB-SSN.* GEN_DATA-DOB = INTTAB-DOB.int_edidd-segnam = gen_segment.int_edidd-sdata = gen_data.appendint_edidd.endloop.call function 'MASTER_IDOC_DISTRIBUTE'exportingmaster_idoc_control = control_dat* OBJ_TYPE = ''* CHNUM = ''tablescommunication_idoc_control = int_edidcmaster_idoc_data = int_ediddexceptionserror_in_idoc_control = 1error_writing_idoc_status = 2error_in_idoc_data = 3sending_logical_system_unknown = 4others = 5 .ifsy-subrc 0.message id sy-msgid type sy-msgty number sy-msgno.else.loop at int_edidc.write :/ 'IDOC GENERATED',int_edidc-docnum.endloop.commit work.endif.Continued...ALE-IDOC Scenario using Custom IDOC...PreviousSettings on the receiver side.The ALE configuration is same as we did it on the sender side. Please refer to earlier pages.The receiver specific differences are mentioned below.T-Code SALE200 is our sender800 is our receiverStepsDefining Logical System (Same as sender)Assigning Client to Logical System (Same as sender)Defining Target System for RFC Calls (Tcode SM59) (Same as sender)Defining Port(Same as sender)Defining Partner Profiles Here we are accepting the data from Sender system. Hence we need to configure it asInbound.Click on thesign above to go to next screen.Here the message type is to be created again as it was created on the sender side.The following steps are repeated, as done on the sender side, on the receiver endTcode WE30Tcode WE31Tcode WE82Tcode WE81Here on the receiver end, we need to specify a process code at the time of defining the partner profile.Process code is something that has the logic defined about what to be done after receiving the IDOC.In our case, on receipt of the IDOC, we are updating the Z Table. i.e Inserting the data from the IDOC into the Z Table.Creating a Process CodeTcode WE42The logic associated is coded in theFunction Modulewhich is specified in the Identification Field above.Also the processing type is selected asProcessing by Function Moduleas above.The function Module is specified in the following screen.To have your function Module in the above drop down list, the entry is to be made using the following transactionTCode BD51Once the entry is done here, the function module appears in the drop down list in the previous stage.Continued...ALE-IDOC Scenario using Custom IDOC...PreviousAlso it is important to make the following entryTcode WE57Function Module will look something as below:
Source Codefunctionz_idoc_input_sach .*"----------------------------------------------------------------------*"*"Local interface:*" IMPORTING*" VALUE(INPUT_METHOD) LIKE BDWFAP_PAR-INPUTMETHD*" VALUE(MASS_PROCESSING) LIKE BDWFAP_PAR-MASS_PROC*" VALUE(NO_APPLICATION_LOG) LIKE SY-DATAR OPTIONAL*" VALUE(MASSSAVEINFOS) LIKE MASSSAVINF STRUCTURE MASSSAVINF*" OPTIONAL*" EXPORTING*" VALUE(WORKFLOW_RESULT) LIKE BDWF_PARAM-RESULT*" VALUE(APPLICATION_VARIABLE) LIKE BDWF_PARAM-APPL_VAR*" VALUE(IN_UPDATE_TASK) LIKE BDWFAP_PAR-UPDATETASK*" VALUE(CALL_TRANSACTION_DONE) LIKE BDWFAP_PAR-CALLTRANS*" TABLES*" IDOC_CONTRL STRUCTURE EDIDC*" IDOC_DATA STRUCTURE EDIDD*" IDOC_STATUS STRUCTURE BDIDOCSTAT*" RETURN_VARIABLES STRUCTURE BDWFRETVAR*" SERIALIZATION_INFO STRUCTURE BDI_SER*" EXCEPTIONS*" WRONG_FUNCTION_CALLED*"----------------------------------------------------------------------includembdconwf.data :it_emp_data like zsach1 occurs 0 with header line.data :gen_data like zsach1 .workflow_result = c_wf_result_ok.data : counter type int4.select count( * ) from zsach1 into counter.counter = counter + 1.loop at idoc_contrl.ifidoc_contrl-mestyp ne 'ZSACH'.raisewrong_function_called.endif.cleargen_data.refreshit_emp_data.loop at idoc_data where docnumeqidoc_contrl-docnum.ifidoc_data-segnam = 'ZSACH'.gen_data = idoc_data-sdata.it_emp_data-mandt = counter.it_emp_data-lname = gen_data-lname.it_emp_data-fname = gen_data-fname.counter = counter + 1.appendit_emp_data.else.message 'ERROR' type 'I'.endif.endloop.endloop.insert zsach1 from table it_emp_data.*****call function 'EDI_DOCUMENT_OPEN_FOR_EDIT'exportingdocument_number = idoc_data-docnumimportingidoc_control = idoc_contrltablesidoc_data = idoc_dataexceptionsdocument_foreign_lock = 1document_not_exist = 2document_not_open = 3status_is_unable_for_changing = 4others = 5.call function 'EDI_CHANGE_DATA_SEGMENTS'tablesidoc_changed_data_range = idoc_dataexceptionsidoc_not_open = 1data_record_not_exist = 2others = 3.data t_itab_edids40 like edi_ds40 occurs 0 with header line.clear t_itab_edids40.t_itab_edids40-docnum = idoc_data-docnum.t_itab_edids40-status = '51'.t_itab_edids40-repid = sy-repid.t_itab_edids40-tabnam = 'EDI_DS'.t_itab_edids40-mandt = sy-mandt.t_itab_edids40-stamqu = 'SAP'.t_itab_edids40-stamid = 'B1'.t_itab_edids40-stamno = '999'.t_itab_edids40-stapa1 = 'Sold to changed to '.*t_itab_edids40-stapa2 = t_new_kunnr.t_itab_edids40-logdat = sy-datum.t_itab_edids40-logtim = sy-uzeit.append t_itab_edids40.call function 'EDI_DOCUMENT_CLOSE_EDIT'exportingdocument_number =idoc_data-docnumdo_commit = 'X'do_update = 'X'write_all_status = 'X'tablesstatus_records = t_itab_edids40exceptionsidoc_not_open = 1db_error = 2others = 3.endfunction.Continued...ALE-IDOC Scenario using Custom IDOC...PreviousRunning the ApplicationSender systemExecute the program we created earlierChecking the IDOCT Code WE02Checking the data on the Receiver endTcode: WE02
The IDOC has arrived hereChecking the DataDouble click on the IDOC
Checking the DatabaseThis way, the data has come to the receiver end successfully.