What is outbound process code for quotation

hi
what is outbound process code for quotation

Process code for outbound processing - Code which identifies the type of data which is to be sent via the IDoc interface.
Use - Using the process code, the IDoc interface finds the application selection module which converts the SAP document into an IDoc.
The process code is only used with applications which perform outbound processing via Message Control (NAST).
Check with tcode WE41
Process code SD12 - QUOTES: Quotation
Regards,
maha

Similar Messages

  • What is the process code for message type FIXEDASSET_CREATE?

    Hi all
    please tell me that what is the process code for
    MESSGAE TYPE = FIXEDASSEt_CREATE,
    FUNCTION MODULE = IDOC_INPUT_FIXEDASSET_CREATE,
    BASIC TYPE = FIXEDASSET_CREATE01 ?
    thanx in advance.......
    Edited by: Prachi Sharma on Jan 11, 2008 7:45 AM
    Edited by: Prachi Sharma on Jan 11, 2008 8:03 AM

    Hi,
    Check the Tcodes WE41 and WE42 for Outbound and Inbound process codes
    Check below Tables as well
    EDE1T
    EDE2T
    EDE5T
    EDE6T
    TEDE5
    TEDE6
    Regards,
    Satish

  • Required Outbound Process Code for MessageType LOIPRO (Basic type-LOIPRO01)

    Hi EDI Gurus,
    I need to know the outbound Process Code for MessageType LOIPRO (Basic type-LOIPRO01).

    Hi,
    there is no process code for MessageType LOIPRO .
    check the below link u will get the clear idea.
    Re: Process Code for Outbound Production Order??
    Reward if helpful.
    Regards,
    Nagaraj

  • What is the process code for Message type FUNDMA

    Hi,
    I am sending CO elements to the distributed server using ALE. Can somebody tell me what is the process code for the message type FUNDMA?
    Thanks
    William

    Check entries of table VEDI_TMSG1. This contains Message types and associated Process codes.
    Hope this helps.
    ashish

  • What is the Process code for IDoc SISCSO01

    Hi all,
    I am using 4.6c version.
    I am going for an outbound IDoc SISCSO01 for sales Order confirmation.
    I want the process code (we41) which suits this IDoc SISCSO01.
    Can you please help to get the process code so that my IDoc can be sent succesfully.
    Best Regards,
    Gangolu

    Hi Gangolu,
    I don't think there is an outbound process code for IDoc type SISCSO01.
    But you can generate the IDoc with this FM <b>MCV_STATISTICS_ALE_OUT_ORDER</b>. But you still need to setup partner profile, distribution model and etc.
    Hope this will help.
    Regards,
    Ferry Lianto
    Please reward points if helpful.

  • Outbound process code for MBGMCR02

    Hello Experts:
        I need to send out material movement (document) information using IDOC. I found MBGMCR02 is a suitable one but the process code is inbound.
        I read some thread, it said you can create a new outbound process code. But I don't know exactly how to do it.
        Can anyone share some advice?
        Thanks a lot.
    Dennis

    Hi Dennis,
    To solve this problem create the outbound process code using the following method:
    Goto txn WE41 : Create a new outbound process code say ZMMGRO and assign your message type MBGMCR to this.
    Also maintain a FM say ZMBGMCR_IDOC_OUPUT which process the IDOC in the outbound side.
    The FM signature should typically look like this:
    ""Local Interface:
    *"  IMPORTING
    *"     VALUE(OBJECT) LIKE  NAST STRUCTURE  NAST
    *"     VALUE(CONTROL_RECORD_IN) LIKE  EDIDC STRUCTURE  EDIDC
    *"  EXPORTING
    *"     VALUE(OBJECT_TYPE) LIKE  WFAS1-ASGTP
    *"     VALUE(CONTROL_RECORD_OUT) LIKE  EDIDC STRUCTURE  EDIDC
    *"  TABLES
    *"      INT_EDIDD STRUCTURE  EDIDD
    *"  EXCEPTIONS
    *"      ERROR_MESSAGE_RECEIVED
    *"      DATA_NOT_RELEVANT_FOR_SENDING
    TABLES: MKPF, MSEG.
    data wa_mkpf type MKPF.
    data it_mseg type TABLE OF MSEG.
    data wa_mseg like LINE OF it_mseg.
    data wa_E1BP2017_GM_HEAD_01 type E1BP2017_GM_HEAD_01.
    data wa_E1MBGMCR type E1MBGMCR .
    data wa_E1BP2017_GM_ITEM_CREATE type E1BP2017_GM_ITEM_CREATE.
    data wa_E1BP2017_GM_CODE type E1BP2017_GM_CODE.
    data wa_E1BP2017_GM_ITEM_CREATE1 type E1BP2017_GM_ITEM_CREATE1.
    data wa_E1BP2017_GM_SERIALNUMBER type E1BP2017_GM_SERIALNUMBER.
    data wa_edidd type edidd.
    Create Control Record **********
    move CONTROL_RECORD_IN to CONTROL_RECORD_OUT.
    control_record_out-direct = '1'.
    control_record_out-serial = sy-datum.
    control_record_out-serial+8 = sy-uzeit.
    Fill Segment data from MKPF & MSEG ******
    clear wa_edidd.
    clear wa_E1MBGMCR.
    move wa_E1MBGMCR to wa_edidd-sdata.
    wa_edidd-segnam = 'E1MBGMCR'.
    append wa_edidd to int_edidd.
    Select single * from MKPF into wa_mkpf where
    mblnr eq OBJECT-OBJKY+0(10)
    and mjahr eq OBJECT-OBJKY+10(4).
    clear wa_edidd.
    clear wa_E1BP2017_GM_HEAD_01.
    wa_E1BP2017_GM_HEAD_01-PSTNG_DATE = wa_mkpf-BUDAT.
    wa_E1BP2017_GM_HEAD_01-DOC_DATE = wa_mkpf-BLDAT.
    wa_E1BP2017_GM_HEAD_01-BILL_OF_LADING = wa_mkpf-FRBNR.
    wa_E1BP2017_GM_HEAD_01-PR_UNAME = wa_mkpf-USNAM.
    wa_E1BP2017_GM_HEAD_01-HEADER_TXT = wa_mkpf-BKTXT.
    move wa_E1BP2017_GM_HEAD_01 to wa_edidd-sdata.
    wa_edidd-segnam = 'E1BP2017_GM_HEAD_01'.
    append wa_edidd to int_edidd.
    SELECT * from mseg INTO TABLE it_mseg where
    mblnr eq OBJECT-OBJKY+0(10)
    and mjahr eq OBJECT-OBJKY+10(4).
    loop at it_mseg into wa_mseg.
    CLEAR wa_edidd.
    CLEAR wa_E1BP2017_GM_ITEM_CREATE.
    wa_E1BP2017_GM_ITEM_CREATE-MATERIAL = wa_mseg-MATNR.
    wa_E1BP2017_GM_ITEM_CREATE-PLANT = wa_mseg-WERKS.
    wa_E1BP2017_GM_ITEM_CREATE-STGE_LOC = wa_mseg-LGORT.
    wa_E1BP2017_GM_ITEM_CREATE-BATCH = wa_mseg-CHARG.
    wa_E1BP2017_GM_ITEM_CREATE-MOVE_TYPE = wa_mseg-BWART.
    wa_E1BP2017_GM_ITEM_CREATE-STCK_TYPE = wa_mseg-INSMK.
    wa_E1BP2017_GM_ITEM_CREATE-SPEC_STOCK = wa_mseg-SOBKZ.
    wa_E1BP2017_GM_ITEM_CREATE-VENDOR = wa_mseg-LIFNR.
    wa_E1BP2017_GM_ITEM_CREATE-ENTRY_QNT  = wa_mseg-MENGE.
    wa_E1BP2017_GM_ITEM_CREATE-ENTRY_UOM = wa_mseg-ERFME.
    wa_E1BP2017_GM_ITEM_CREATE-PO_NUMBER = wa_mseg-EBELN.
    wa_E1BP2017_GM_ITEM_CREATE-PO_ITEM = wa_mseg-EBELP.
    move wa_E1BP2017_GM_ITEM_CREATE to wa_edidd-sdata.
    wa_edidd-segnam = 'E1BP2017_GM_ITEM_CREATE'.
    append wa_edidd to int_edidd.
    endloop.
    ENDFUNCTION.
    Do remember to maintain the message control in WE20 where you maintain this outbound code against your output type.
    Hope this helps!

  • PROCESS CODE  FOR  PURCHASE ORDER

    Hi Friends,
        what is the process code for Purchase order...  because  i need to   creating a  partner profile in WE20 in the inbound side.. if iselect  message type   ORDERS menas.. that related.. process code( for purchase order is not  displaying)..
      can  any of you give me the <b>Message type </b> and that related <b>Process code</b> for <b> purchase order</b>..
    thanks
    Babu

    Hi Babu,
        You will find out the all Process Code from WE41 for Outbound & WE42 for Inbound.
    The Process code for ORDERS: Purchase order is ME10 for Outbound and you can find it out the message type for Inbound from WE42.
    If need more info let me know..
    Cheers
    Veera

  • Process code for inbound credit Memo

    Hi All,
    May know what is the process code for inbound Credit Memo  (Return of Goods)
    Thanks,
    Matthew

    Hi Gautham,
    I checked the IDOC in BD87 tcode and it is saying "Function module not allowed: IDOC_INPUT_ORDRSP".
    I gave ORDR as the process code in the inbound parameters of the receiver system partner profile.
    In the sender system, I gave me10 as the process code. And there the status is 12, so everything is fine over there.
    Vishwa.

  • Outbound process code

    Hi
    I need to create outbound Process code for ME22N T code for outbound IDoc
    I am using we41 T code to create the above
    but i am unable make
    any suggestions plz
    Regards
    Rasheed

    Hi,
    i think you no need to create 'process code' if u r using standard outbound F.M.
    this is the way you can check the corresponding standard <b>'Process Code'</b>.
    If you know any F.M or Message type or Basic type, then from WE57 you can find the corresponding process code.
    Goto WE57 and make use <b>position button</b> and u will get one popup screen and then press <b>F4</b> on any field then it will open the other screen in that screen make search for process code by giving the input values in Ctr+F search.
    <b>How to create Process code for outbound.</b>
    -Goto WE41- select change mode- then press 'new entries' button, then u will get one screen in that give name and discription for new 'Process code' and assign corresponding F.M, select the radio buttons of 1-process with ALE service and 2-process with F.M.
    then press Save button it will ask the <b>customer request not workbech request save under customer request.</b>
    This is the way how to create process code.
    <b>Reward with points if useful.</b>
    Regards,
    Vijay

  • Process Code for Outbound Production Order??

    Does anybody know the Process Code for Outbound Production Order??
    BASIC Type : LOIPRO01
    Message Type : LOIPRO
    Regards,
    Ravi

    Hi Everybody.
    There's no standard process code for LOIPRO Outbound Idocs.
    This Idocs are threated as master data info, and could only be automatically generated by Data Distribution Model.
    BD64.
    Anyway, you can define your own Outbound Process Code in WE41 using CLOI_MASTERIDOC_CREATE_LOIPRO FM.
    You can choose.
    Regards.
    Albert.

  • Function Module for Outbound process code

    Hi,
    I have a scenario in which i have to send MBGMCR02 Idoc from SAP to XI.
    I created a new Outbound process code and now I have to code the function module that populates data into the segments.
    Does anyone have sample code for this, i.e code to put in the finction module of an outbound process code?

    hi...
    please find the below code.
    *& Report  ZPROGRAM11
    REPORT  ZPROGRAM11.
    tables : likp,vbuk,vbfa,ibin,vbap,vbak,kna1.
    types : begin of iy_tab,
             vbeln type vbfa-vbeln,
            vbelv type vbfa-vbelv,
           posnv type vbfa-posnv,
           end of iy_tab.
    types : begin of iy_tab1,
    vbeln type vbuk-vbeln,
    wbstk type vbuk-wbstk,
    end of iy_tab1.
    types : begin of iy_tab2,
    vbeln type vbak-vbeln,
    kunnr type vbak-kunnr,
    vkorg type vbak-vkorg,
    vtweg type vbak-vtweg,
    spart type vbak-spart,
    end of iy_tab2.
    data : i_ibase type ib_ibase.
    data : i_kunnr type vbak-kunnr.
    data : it_tab type table of iy_tab with header line,
      it_tab1 type standard table of iy_tab1 ,
      wa_tab1 type iy_tab1,
      it_tab2 type standard table of iy_tab2 ,
      wa_tab2 type iy_tab2.
    data : t_edidd type standard table of edidd .
    data : t_edidc type  edidc.
    data : t_edidc1 type standard table of edidc .
    data : wa type edidd.
    data : wa1 type e1edl20.
    data : wa2 type zibase.
    data : wa3 type e1edl32.
    data : wa4 type e1edl44.
    data : wa5 type e1edl37.
    data : wa6 type e1edl28.
    data : wa7 type e1edl30.
    data : wa8 type e1edl24.
    data : wa9 type e1adrm1.
    data : begin of it_tab3 occurs 10,
           vbeln type iy_tab-vbelv,
           posnr type iy_tab-posnv,
           i_ibase type ib_ibase,
           end of it_tab3.
      types :    begin of iy_tab4 ,
            valfr type ibin-valfr,
            ibase type ibin-ibase,
           amount type ibin-amount,
           unit type ibin-unit,
           end of iy_tab4.
           data : it_tab4 type standard table of iy_tab4,
                  wa_tab4 type iy_tab4.
      data : begin of it_tab5 occurs 10,
             vbeln type vbfa-vbelv,
             posnr type vbfa-posnv,
             ibase type ibib-ibase,
             valfr type ibin-valfr,
             amount type ibin-amount,
             unit type ibin-unit,
             matnr type vbap-matnr,
             kunnr type vbak-kunnr,
             vkorg type vbak-vkorg,
             vtweg type vbak-vtweg,
             spart type vbak-spart,
             name1 type kna1-name1,
             end of it_tab5.
          types : begin of iy_tab6,
                 vbeln type vbap-vbeln,
                 posnr type vbap-posnr,
                 matnr type vbap-matnr,
                end of iy_tab6.
          data : it_tab6 type standard table of iy_tab6,
                 wa_tab6 type iy_tab6.
    types : begin of iy_tab7,
            kunnr type kna1-kunnr,
            name1 type kna1-name1,
            end of iy_tab7.
    data: it_tab7 type standard table of iy_tab7,
          wa_tab7 type iy_tab7.
          data : wa_table type ytable1.
    selection-screen: begin of block b1 with frame title text-t00.
    parameters: p_vbeln type vbfa-vbeln.
    selection-screen: end of block b1.
    start-of-selection.
      select vbeln vbelv posnv  from vbfa into table it_tab
      where vbeln = p_vbeln.
      if sy-subrc eq 0.
            loop at it_tab.
        select vbeln wbstk from vbuk into table it_tab1
          for all entries in it_tab
        where vbeln = it_tab-vbeln.
            endloop.
      endif.
      loop at it_tab1 into wa_tab1.
        if wa_tab1-wbstk = 'C'.
          loop at it_tab.
            call function 'IBSD_CREATE_IBASE'
              exporting
                i_vbeln                     = it_tab-vbelv
                i_posnr                     = it_tab-posnv
                i_as_sold                   = '0'
                i_as_build                  = '0'
                i_capid                     = '0'
              I_CHANGE                    = ' '
               i_commit                    = 'X'
              I_COMMIT_WAIT               = ' '
             importing
               e_ibase                     = i_ibase
             exceptions
               order_not_found             = 1
               position_not_found          = 2
               nothing_to_do               = 3
               too_much_to_do              = 4
               missing_authorization       = 5
               foreign_lock                = 6
               others                      = 7
            if sy-subrc <> 0.
              message id sy-msgid type sy-msgty number sy-msgno
                      with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
            else.
              move it_tab-vbelv to it_tab3-vbeln.
              move it_tab-posnv to it_tab3-posnr.
              move i_ibase to it_tab3-i_ibase.
              append it_tab3.
              if sy-subrc eq 0.
               select valfr ibase  amount unit from ibin into table it_tab4
                  for all entries in it_tab3
                  where ibase = it_tab3-i_ibase.
                 if sy-subrc eq 0.
                   select vbeln posnr matnr from vbap into table it_tab6
                     for all entries in it_tab3
                     where vbeln = it_tab3-vbeln and posnr = it_tab3-posnr .
                     if sy-subrc eq 0.
              select vbeln  kunnr vkorg vtweg spart from vbak into table it_tab2
                for all entries in it_tab
                  where vbeln = it_tab-vbelv.
              sort it_tab2 by vbeln.
              delete adjacent duplicates from it_tab2 comparing all fields.
             if sy-subrc <> 0.
               select kunnr name1 from kna1 into table it_tab7
                 for all ENTRIES IN it_tab2
                 where kunnr = it_tab2-kunnr.
                 endif.
               endif.
               endif.
               endif.
               endif.
          endloop.
        else.
          exit.
       if sy-subrc eq 0.
       endif.
        endif.
      endloop.
      loop at it_tab3.
        move it_tab3-vbeln to it_tab5-vbeln.
        move it_tab3-posnr to it_tab5-posnr.
        move it_tab3-i_ibase to it_tab5-ibase.
        if sy-subrc eq 0.
          read table it_tab4 into wa_tab4 with key ibase = it_tab3-i_ibase.
          move wa_tab4-valfr to it_tab5-valfr.
          move wa_tab4-amount to it_tab5-amount.
          move wa_tab4-unit to it_tab5-unit.
          if sy-subrc eq 0.
            read table it_tab6 into wa_tab6 with key  vbeln = it_tab3-vbeln posnr = it_tab3-posnr.
            move wa_tab6-matnr to it_tab5-matnr.
            if sy-subrc eq 0.
              read table it_tab2 into wa_tab2 with key vbeln = it_tab3-vbeln.
              move wa_tab2-kunnr to it_tab5-kunnr.
              move wa_tab2-vkorg to it_tab5-vkorg.
              move wa_tab2-vtweg to it_tab5-vtweg.
              move wa_tab2-spart to it_tab5-spart.
              if sy-subrc eq 0.
                read table it_tab7 into wa_tab7 with key kunnr = wa_tab2-kunnr.
                move wa_tab7-name1 to it_tab5-name1.
                append it_tab5.
                endif.
              endif.
          endif.
          endif.
         append it_tab5.
          endloop.
        loop at it_tab5.
          move it_tab5-vbeln to wa_table-vbeln.
           move it_tab5-kunnr to wa_table-kunnr.
            move it_tab5-vbeln to wa_table-vbeln.
             move it_tab5-ibase to wa_table-ibase.
              move it_tab5-matnr to wa_table-matnr.
               move it_tab5-valfr to wa_table-valfr.
                move it_tab5-unit to wa_table-unit.
                 move it_tab5-amount to wa_table-amount.
                  move it_tab5-vkorg to wa_table-vkorg.
                   move it_tab5-vtweg to wa_table-vtweg.
                    move it_tab5-spart to wa_table-spart.
                    move it_tab5-name1 to wa_table-name1.
                    insert ytable1 from wa_table.
                    endloop.
    *INSERT ytable1 FROM TABLE it_tab5.
        loop at it_tab5.
        wa1-vbeln = it_tab-vbeln.
        wa1-vkorg = it_tab5-vkorg.
        wa-segnam = 'E1EDL20'.
        wa-sdata = wa1.
        wa-hlevel = 2.
        append wa to t_edidd.
      loop at it_tab3.
        wa2-i_ibase = it_tab5-ibase.
        wa2-i_qty = it_tab5-amount.
        wa2-i_dat = it_tab5-valfr.
        wa-segnam = 'ZIBASE'.
        wa-sdata = wa2.
        wa-hlevel = 3.
        append wa to t_edidd.
               endloop.
    wa9-name1 = it_tab5-name1.
    wa-segnam = 'E1ADRM1'.
    wa-sdata = wa9.
    wa-hlevel = 3.
    append wa to t_edidd.
        wa-segnam = 'E1EDL28'.
        wa-sdata = wa6.
        wa-hlevel = 3.
        append wa to t_edidd.
        wa-segnam = 'E1EDL30'.
        wa-sdata = wa7.
        wa-hlevel = 4.
        append wa to t_edidd.
        wa3-kunnr = it_tab5-kunnr.
        wa-segnam = 'E1EDL32'.
        wa-sdata = wa3.
        wa-hlevel = 5.
        append wa to t_edidd.
        wa8-meins = it_tab5-unit.
        wa8-vtweg = it_tab5-vtweg.
        wa8-spart = it_tab5-spart.
        wa-segnam = 'E1EDL24'.
        wa-sdata = wa8.
        wa-hlevel = 3.
       append wa to t_edidd.
        wa-segnam = 'E1EDL37'.
        wa-sdata = wa5.
        wa-hlevel = 3.
        append wa to t_edidd.
        wa4-vbeln  = it_tab5-vbeln.
        wa4-posnr = it_tab5-posnr.
        wa4-matnr = it_tab5-matnr.
        wa-segnam = 'E1EDL44'.
        wa-sdata = wa4.
        wa-hlevel = 4.
        append wa to t_edidd.
        endloop.
        t_edidc-mandt = sy-mandt.
        t_edidc-direct = '1'.
        t_edidc-rcvpor = 'A000000062'.
        t_edidc-rcvprt = 'LS'.
        t_edidc-rcvprn = 'O2C_ASSET'.
    t_edidc-rcvpfc = 'LS'.
        t_edidc-sndpor = 'SAPSIT'.
        t_edidc-sndprt = 'LS'.
        t_edidc-sndprn = 'T90CLNT090'.
    t_edidc-sndpfc = 'LS'.
        t_edidc-mestyp = 'DELVRY'.
        t_edidc-idoctp = 'DELVRY03'.
    *t_edidc-rcvpfc = 'LS'.
    t_edidc-sndpfc = 'LS'.
        t_edidc-cimtyp = 'ZDELVRY03'.
        append t_edidc to t_edidc1.
        call function 'MASTER_IDOC_DISTRIBUTE'
                                   exporting
                                     master_idoc_control                  = t_edidc
                                 OBJ_TYPE                             = ''
                                 CHNUM                                = ''
                                   tables
                                     communication_idoc_control           = t_edidc1
                                     master_idoc_data                     = t_edidd
                                  exceptions
                                    error_in_idoc_control                = 1
                                    error_writing_idoc_status            = 2
                                    error_in_idoc_data                   = 3
                                    sending_logical_system_unknown       = 4
                                    others                               = 5
        if sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
          else.
          CALL FUNCTION 'DB_COMMIT'
          CALL FUNCTION 'DEQUEUE_ALL'
          EXPORTING
            _SYNCHRON       = ' '
          COMMIT WORK.
        endif.
         endloop.

  • Process code for Outbound IDOC type MBGMCR03

    Hi Friends,
    I have a requirement,  where in Goods receipt IDOC data from ECC 6.0 needs to be sent to the external system through XI, for that require a process code. Can you all suggest the process code for the outbound IDOC for Goods Receipt.
    Thanks in Advance,
    Meghna.

    Hi,
    Goods Movement is genarally inbound.
    You may have to write your own process code for MBGMCR03.
    Regards,
    Shakthi.

  • Process Code for Outbound Idoc

    Hi All,
    We need to find out the Process Code for an Idoc.
    Note : We dont have access to WE41, WE20 ,BD51.
    Could you please suggest any alternatives.
    Thanks,
    Sanjeet

    Hi Gautham,
    Thanks for ur reply.
    But still we hv not *** to the solution.
    We have available information as following:
    Basic Type : DESADV01
    Extension Type : EXTDES03
    Message type : DESADV
    Partner NUmber : XXXXXX
    Partner Type : KU
    I checked in Table TMSG1 and i got more than one similar process codes for the same message type.
    Actually I have the generated Idoc number and we are trying to reach to the FM which populates the Idoc segments.
    So if we get the process code, we can reach to FM.
    Thanks,
    Sanjeet

  • Creation of Process code for output type

    Hi,
    Could someone help me out in defining processcodes for output types.
    Thanks in advance,
    Yaseen

    Hi Yaseen,
    The Tr.code WE41 and WE42 are also used for maintaining process codes.
    To maintain process codes in WE41 or WE42, Go to these Tr.Codes and Click on the Change button. Then click on "new entries" button to create your new process code.
    FYI, Outbound process codes are stored in SAP Table TEDE1 and inbound process codes are stored in SAP Table TEDE2.
    Hope this helps.
    Rgds,
    Sam Raju
    Message was edited by: Sam Raju

  • Process code for 869(EDI ) Order Status Inquiry Message type.

    Hi Gurus,
                       Please can any one help in providing Process Code for 869 Order Status Inquiry Message type.
    Thanks,
    Sudhakar

    Hi Everybody.
    There's no standard process code for LOIPRO Outbound Idocs.
    This Idocs are threated as master data info, and could only be automatically generated by Data Distribution Model.
    BD64.
    Anyway, you can define your own Outbound Process Code in WE41 using CLOI_MASTERIDOC_CREATE_LOIPRO FM.
    You can choose.
    Regards.
    Albert.

Maybe you are looking for

  • Over riding "inbuilt audio" for the audio out put in the easy set up?

    Hi all. I just got hold of Final Cut express and I can not get audio to come out of my external audio interface( MOTU 2408 III). I have noticed that the default setting in the easy set up is for inbuilt audio. How do I over ride this? Thanks, Spigg P

  • Enable Smart Lists

    Hi, the HP 9.3.1 documentation show this option: • Display missing values as blank-Leave data form cells empty where data does not exist. If this option is not selected, empty cells display the text "#missing." • Enable account annotations -Enable us

  • Ipad not listed find iPhone

    Our family has 2 iPads, 2 iPhones and 1 iPod touch. One of the iPads is not listed in devices in find my iPhone app. This app is on all devices we own. In the app on my phone it lists "this device" but on the ipad that's missing the "this device" is

  • Erase & Sync songs to iPod

    Hey everyone, I'm new to the forums. How can I erase & sync songs from my laptop to my iPod Video(5th gen)? The first time I connected my iPod to my laptop iTunes asked me if I wanted to erase & sync but I clicked cancel because I needed to edit iTun

  • Safari Crashing in Snow Leopard

    Safari is continuously crashing in 10.6.8.  Crash report below.  I looked at some of the older support threads but cannot locate the 32-bit option and i just did a fresh install of Safari with hopes that the crashing would stop (which it has not).  A