Idoc DEBMAS06 in ECC 6.0

Hi,
I have the follow problem: i have an idoc DEBMAS06 in status 51 with mesagge BP00 022.
The value of field GBDAT ( field of error)  20090701.
Before the upgrade from 4.6 to 6.0 the  idocs were in status 53 (OK status).
Where is the problem?
Thanks.

Hello Biago,
Could you ableto change this field. what is the reason behind this field.
how do you fix it
Ramu

Similar Messages

  • Multiple Idocs (DEBMAS06) into one single file

    Hi All,
    Multiple Idocs(DEBMAS06) are sent from SAP in bulk to be sent to FTP server via XI...(Cannot use Append the file as The structure is with Header,Detail(all the idoc details) and Trailer)
    I have seen different threads which speaks about the same,
    But Please suggest me the best approach to proceed with this kind of scenario...
    Multiple IDocs -> XI -> Flat file which is speaking about BPM and also Packaging(SAP note 814393)
    and https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/30ea2fdf-f047-2a10-d3a2-955a634bde6b
    (How Tou2026 Send Multiple IDocs Within One XI Message)
    I prefer not to use BPM... but if required then....
    Please suggest me which is the best approach to proceed with it..
    Thanks and Regards,
    Sridhar Reddy

    Hi ,
    I had tried the scenario Multiple IDOC's coming from R/3 and send all of them into a Single File
    But it did not work...
    Of course i changed as Micahel mentioned in
    The specified item was not found.
    (Collect and make pack size to 50) but still the idocs are posting as 50 messages in XI and 50 files are being created ...
    But as per his remarks we need customization which is very difficult...
    And also i checked Michaels blog
    The specified item was not found.
    But this is dicussing reverse of my scenario...
    and finally i am thinking of going with the stefens weblog...
    Collecting IDocs without using BPM
    Can any one please suggest any other best way to handle this...
    Instead of going for BPM i am implementing as Stefen suggested ... This is because we have many such interfaces where SAP sends collective idocs....
    Regards,
    Sridhar Reddy
    Edited by: sridhar reddy kondam on Oct 22, 2008 6:20 AM

  • User Eixts / BADI  for the cutomer master IDOC (DEBMAS06)

    Hi All,
    We have requirement to extend the customer master IDOC 'DEBMAS06' to add the address fields i.e (ADRC-STR_SUPPL3,STR_SUPPL4,STR_SUPPL5). Can any one tell me the suitable EXITs or BADI's to populate street3, street4 and stree5 to the customer master. Otherwise can any one tell me how to over come this problem.
    Thanks in advance
    K N C

    Hi Naveena,
    Create a segment with the fields you have hased for and thenextend it and write the code
    Create the project in the enhancement" VSV00001      User exit  Customer and vendor distribution  Receipt/issue
    Crearte the code as follows in the function exit(   EXIT_SAPLVV01_001) under tthe include as follows:
    I have create a zcustomer as the segment so wrote the code according to that.
    DATA: WA_ZCUSTOMER TYPE ZCUSTOMER.
    DATA: LS_DATA     TYPE EDIDD,
          LS_E1KNA1M  TYPE EDIDD,
          LS_SEGMENT  TYPE ZCUSTOMER,
          LV_COUNT    TYPE I.
    DATA: L_KUNNR   TYPE CHAR10.
    DATA: L_ADRNR   TYPE KNA1-ADRNR.
    CHECK MESSAGE_TYPE = 'DEBMAS'.
    CHECK IDOC_TYPE    = 'DEBMAS06'.
    *IDOC_CIMTYPE = 'ZCUSTOMER'.
    READ TABLE IDOC_DATA INTO LS_DATA WITH KEY SEGNAM = 'E1KNA11'.
    IF SY-SUBRC = 0.
      LOOP AT IDOC_DATA INTO LS_DATA FROM SY-TABIX.
        IF LS_DATA-SEGNAM NE 'E1KNA11'.
          EXIT.
        ELSE.
          LV_COUNT = SY-TABIX + 1.                            "Get the segment position as per IDoc Defn.
          READ TABLE IDOC_DATA INTO LS_DATA WITH KEY SEGNAM = 'ZCUSTOMER'.
          IF SY-SUBRC NE 0.
            READ TABLE IDOC_DATA INTO LS_E1KNA1M WITH KEY SEGNAM = 'E1KNA1M'.
            IF SY-SUBRC = 0.
              L_KUNNR = LS_E1KNA1M-SDATA+3(10).               "Customer No.
              SELECT SINGLE ADRNR FROM KNA1 INTO L_ADRNR      "Address no.
                 WHERE KUNNR = L_KUNNR.
              IF SY-SUBRC = 0.
                SELECT SINGLE STR_SUPPL3 LOCATION CITY2 FROM ADRC INTO WA_ZCUSTOMER
                  WHERE ADDRNUMBER = L_ADRNR.                 "Required fields
                IF SY-SUBRC = 0.
                  LS_SEGMENT-STR_SUPPL3 = WA_ZCUSTOMER-STR_SUPPL3.
                  LS_SEGMENT-STR_SUPPL4  = WA_ZCUSTOMER-STR_SUPPL4.
                  LS_SEGMENT-STR_SUPPL5      = WA_ZCUSTOMER-STR_SUPPL5.
                ENDIF.
              ENDIF.
            ENDIF.
    Edited by: Farhy Farhy on Sep 24, 2010 12:19 PM

  • Sending IDOC from SAP ECC to SAP MII

    Hello,
    Issue while configuring.
    I have configured the RFC Destination in the Netweaver message listener and when i check the connection in SM59 I got  error as timeout during allocate of registered program and I have attached the screenshot of the error page.
    I would request a reply asap.
    Thanks,
    Praveen

    Hi Praveen,
    First, I would suggest that you identify what version, and SP, of MII and ECC.  Also the NW version and SP if applicable.
    Second, use this custom Google search and terms MII, IDoc Listener, and perhaps SM59.  There are many discussions on IDoc Listeners going back a number of years.  Many of the issues with IDoc Listeners have not changed in most of that time, so look at the older ones as well.  I presume that you found and are using my How to Send an IDoc from SAP ECC to the SAP MII IDoc Listener (MII 12.1 to ECC 6.0) to set up your Listener?  If not, you should review your configuration and setup procedure against it.
    I have not looked at MII 14.0 or 15.0, but understand that the configuration of Listeners really has not changed since MII 12.1.  So the document is still applicable.
    Third, roughly 90% of the problems experienced with IDoc Listeners involve multiple uses of the self registering ProgID.  Deleting it in one place, generally does not work.  Use it in one place only.  Create a new ProgID for each separate Listener (either type) on each separate MII instance for each ECC instance.  Save yourself a lot of headaches.  Never, ever reuse ProgIDs!!!
    Fourth, most of the other issues involve a PI/XI system in the middle.  Those are a bit more complicated since they rely on getting the connection configuration set up properly in PI.  Since I am not that familiar with PI systems (most times it is not involved with the Listeners), I generally have to get other experts involved.  Sometimes a CSS ticket is required.
    Regards, Mike
    SAP P&I Technology RIG

  • "An IdocException occurred" while posting Idocs from SAP ECC to SAP PI AEX

    Hi all,
    While sending Idocs from SAP ECC to SAP PI 7.4 AEX, we are experiencing this issue at SAP ECC-SM58
    Only a particular Idoc type is having this issue.
    Below are the checks done before posting this query:
    1. Pushed other Idocs from the SAP ECC to PI and all were getting exchanged successfully.
    2. Reloaded the meta data in PI for  the particular Idoc type in issue.
    3. Checked the RFC destinations in SAP ECC, RFC connection test is also working fine.
    4. Unicode option enabled in the SAP ECC RFC destination pointing to PI-AEX
    5. Restarted the inboundRA service in PI AEX.
    Is there anything still missing. What could be root cause of this issue.
    If anyone has encountered it before, pleases share the resolution.
    Thank you
    Younus

    Hi Amit,
    Thanks for the reply. Log viewer doesn't provide much help on the error.
    The error desc says
    "JRA]serverExceptionOccurred. Server XI_IDOC_DEFAULT_SID, Managed_Application_Thread_58, connectionId=5-ip address|sapgw20|XI_IDOC_DEFAULT_SID, Exception: com.sap.conn.jco.JCoException: (104) JCO_ERROR_SYSTEM_FAILURE: An IDocException occurred"
    regards,
    Younus

  • ** How to send 2 IDocs DEBMAS06, ADRMAS03 only if both contains data?

    Hi Friends,
    My scenario is like below. Whenever create a new customer or change an existing customer (XD01/XD02), we distributes the IDoc DEBMAS06 & ADRMAS03 from one SAP system to other SAP system through XI.
    The present scenario  is if DEBMAS06 IDoc gets failed (due to some reason) and ADRMAS03 created successfully it will be distributed to XI and processed successfully and reaches the target system. But, the customer wants only when both IDocs created successfully, the XI should process the message.
    To achieve this,
    1) Both IDocs are exported and the occurrences of  IDoc node changed to  0..1 .
    2) Now the DEBMAS06 IDoc segment occurrence is 0..1 likewise ADRMAS03 IDoc segment occurrence is 0..1. Both are imported in External Definitions.
    3) Created Message Mapping - Source Side 2 Messages (DEBMAS.DEBMAS06) & (ADRMAS.ADRMAS03). Likewise, the target side the same 2 messages.
    4) We put the condition by checking IDoc Node and tested that it is working fine. (DEBMAS06-E1KNA1M-KUNNR is not initial then only ADRMAS03 IDoc will be created. Likewise, ADRMAS03-E1ADRMAS-OBJ_ID is not initial then only DEBMAS06 IDoc will be created.)
    5)  We created 4 Message Interfaces and one interface mapping. Source Side 2 Interfaces are there : DEBMAS06_OUT, ADRMAS03_OUT. Target Side 2 interfaces DEBMAS06_IN, ADRMAS03_IN. The mapping program created in Step 4 is used . Consistency is checked. It is OK. Tested the mapping. Fine.
    Now, how do we configure receiver determination in Integration Directory Side ? Because, Sender Side 2 interfaces are there ?
    Kindly reply me friends about the ID configuration briefly for the above design.
    Thanking you.
    Kind Regards,
    Jegathees P

    Hi,
    You have 2 sender interfaces, so you will need to have a BPM which will collect these 2 IDOCs in 2 receive steps and map them to target interfaces.......in BPM you can have a wait step to collect the IDOCs and if in this time the IDOCs didnot arrive, you can cancel the BPM process, so stopping these IDOCs to reach target system.
    Regards,
    Rajeev Gupta

  • ** Not able to import IDoc from SAP ECC system

    Hi Friends,
    I am not able to import the IDoc from SAP ECC system in IR. I have checked that, hostname, client, server no. everthing is correct. I checked in SLD also. Host Name is correct.
    While import (after giving the user name and password), I am getting the following error.
    Problems to reach R3 System
    What could be the probelm ?
    Kindly help me friends.
    Thanking you.
    Kind regards,
    Jegathees P.

    Hi,
    Just counter check following step
    1. Go to SWCV definition tab select radio button for Import of RFC....
    2. In Connection Data for Import from SAP System maintain correct System and correct Client.
    3. Make sure you maitain ECC system in Central SLD.
    4. In Import Screen check at the top of the screen have SAP System, is that system from where you want to import the IDOC.
    With Regards
    Sunil

  • How to Post Idoc's from ECC to SCM

    Dear Friends,
    This is Shalini Shah.
    how to post the Idoc(MATMAS05)
    from ECC to SCM-APO.
    please give me the details on this topic.
    Regards,
    ShaliniShah

    Please see the Wiki page details mentioned in this [sticky|Wiki page for SCM-APO; thread at the beginning of the forum.
    Refer to the [CIF|https://wiki.sdn.sap.com/wiki/display/SCM/CIF] Wiki page for details on setting up and using CIF. I am not aware of the IDOC details but if it material master (as SB has mentioned) then your best option of transferring the master data from ECC to SCM / APO will be to use the CIF.
    After intial CIF settings are maintained (see details inthe CIF Wiki page) you will need to create Integration Models and activate them for transferring the data.
    Somnath

  • Convert IDOC DEBMAS06 to a new BAPI

    Hi,
    I need to use a BAPI for Customer Creation. Currently we are using an IDOC: DEBMAS06. I checked the STD bapis available but they do not update all the fields from KNA1, like e.g.: flds in structure SI_KNA1 (General Data...).
    Can anyone tell me how can I achieve this using BAPI, do I have to create a new BAPI?...
    Regards,
    KK

    hi kaustubh,
    BAPI_CUSTOMER_CREATEFROMDATA
    BAPI_CUSTOMER_CREATEFROMDATA1
    check these threads..
    Re: Bapi to create customer master
    BAPI for Customer Creation
    BAPI - create customer
    Re: Customer Master
    hope this helps,
    do reward if it helps,
    priya.

  • Extended IDOC DEBMAS06 (MSG-Type DEBMAS) can't be filled using user EXIT

    Hi,
    I'm having a problem trying to fill an additional created segment (extension) for the IDOC DEBMAS06.
    This IDOC is generatede from an ALE szenarion
    and I need additional fields to fill using my extension.
    With CMOD I created a new project using the enhancement VSV00001 (User exit  Customer and vendor distribution  Receipt/issue) to fill the additional field but, no way.
    My extension segment will not appear onto this user exit.
    I tried to search new exits, tried to make additional settind using ALE customizing but again now way, this onw extended segment will not come up in the user exit.
    Please Help !
    Many thanks
    Gaspare

    What do you mean by "My extension segment will not appear onto this user exit."? It will not be there, you will have to fill it and append it to the EDIDD table. In thh user exit, you will append the records for segment zzzzz(your extended segment) at the appropriate place.
    Say the standard IDOC has the structure like below
    A
    --B
    --C
    D
    and you added extended segment at the same level as B and C. In that case, you have to append the new segment records at the end.
    If you added your segment as a child segment of B, then you will have to insert the records into the EDIDD table before the C segment.
    Srinivas

  • Extend a customer to a new company code (IDoc DEBMAS06)

    Hi,
    I'm experienceing problems when I try to add company code data (segment E1KNB1M) and sales data (segment E1KNVVM) to an incoming IDoc of basic type DEBMAS06. The customer is to be extended into two company codes and correlating sales areas.
    I have implemented notes 802008 and 895885 and now I get the error message "No batch input data for screen SAPMF02D 0310" when I check in WE02.
    I have narrowed down the problem to billing details on sales data. The problem is that the field account assignment group (KNVV-KTGRD) is emptied on the last run of sales data processing. The value is there earlier but then vanishes mysteriously. Has anyone a tip on how to get around this problem?
    I would most apprechiate any help in this matter.
    Best regards,
    Fredrik Skild

    Hi Muthuraman Govi  and Sanjeev,
    in fact I can see in backend in transaction KS03 (show cost center) there in the F4s, which comp.code + controll area combinations are valid and have indeed cost centers assigned.
    So I have a new valid comp.code and a new valid cont.area.
    The new comp.code belongs to the new contr. area.
    In SRM I set the BUK attribute as described by Sanjeev (I had that already done). Still, if it is like you say, why do I get an error in EBP when trying to buy products from the new plant in the new company code...
    Is there any more config.work necessary in backend or SRM?
    kind regards, matthias

  • How can I include Customer Hierarchy in Customer master IDoc -DEBMAS06 ?

    Hi,
    I am generating Customer master IDoc using basic message type DEBMAS06. But when I include customer hierarchy data while creating customer master, it is not included in any of the segments. The segment containing the data from KNVH is not included in standard.
    How do I include this hierarchy data in the IDoc? If I create a segment, under which basic segment should it  be included and how to update the data in the segment?
    Can anybody help?
    Points assured.
    Best Regards,
    Rajendra

    Hi
       You can use LSMW :-
    1) Create a project , sub project and an object.
    2) execute it from 1 st screen to enter the object.
    3) You will find proces steps.
    4) In Maintain Object Attributes  choose Program Name RFBIDE00.
    or I-DOC or the way you want the input to be.
    5) You can proceed from there following the instruction..

  • IDoc Errors in ECC

    Hi Experts,
    what kind of IDoc Errors can occur in ECC for the scenario :
    ECC sending <b>PO</b> to Ariba(E-commerce hub, using third party adapter) and in receiving back <b>Order confirmation</b> from it.
    Thank you,
    <b>MK</b>

    Hi,
    This depends on the design and landscape and also Disaster Recovery or High Availability Plan.
    some hints:
    1. Connection Problem: Because of timeout , unavailability of the Receiver system.
    2. Data Problem may cause you the error in IDoC posting [ probably functional/Business Team should look into this]
    3. User ID and Password Maintenance - it may hit sometimes
    4. If any pre-requisite process is required to process this IDoC, then problem in the pre-requisite process will lead the problem
    these all kind of problems you may face..
    Rgds , Moorthy

  • Succesful IDOC acknowledgements from ECC

    Dear MDM gurus,
    What is the best way to handle acknowledgements from ECC (INTO MDM) for inbound IDOCS from MDM (MDM->XI->ECC).
    We want it such that when an IDOC gets posted into ECC succesfully,it should send an acknowledgement signal back to MDM saying that IDOC was received properly.
    Thanks.

    HI Mugdha,
    I have a concern on the Acknowledgement (ALEAUD) Idoc. I have implemented this scenario wherein DEBMAS IDoc is posted from MDM -PI - ECC and ECC sends back the acknowldgement using ALEAUD Idoc.
    However, in PI (SXMB_MONI) there is no separate message entry created for this acknowledgment. The ALEAUD acknowldgement message details is attached to the original DEBMAS message which was triggered from MDM - PI - ECC. Due to this, PI interface created is not able to read the acknowledgement message and process it to post/dump the target file onto the MDM Port.
    I tried triggering and ALEAUD Idoc manually using PI - RWB which generated a separate message for ALEAUD Idoc in sxmb_moni and then my target file was created in MDM (But this is just a manual way of testing the PI interface).
    Can you advice on how this concern can be dealt with?
    Thanks in advance,
    Elizabeth.

  • PO Rejection - ORDSP Idoc Errors in ECC with different process codes

    Hi All,
    We were testing the Scenario where the Supplier rejects a PO line item as part of the PO Collaboration. On rejecting the PO in SNC, it trigerred an ROC XML with AcceptanceStatusCode == RE. The same was passed on from XML to Idoc in the IDoc segment E1EDP01, field ACTION = "003".
    However, such ORDSP Idocs was failing on the ECC side during Inbound processing with the following errors:
    1. Acknowledgment for PO item 4400000XXX 00010 contains quantity variance: Message no. ME794
    2. Price unit 0 from IDoc differs from unit of purchase order 1: Message no. ME729
    3. Order price unit differs from unit EA from purchase order: Message no. ME728
    4. Order units differ : Message no. ME791
    5. Material number differs from that of ordered material : Message no. ME790
    Note : We dont get these errors for a normal confirmation. It happens only with Rejection.
    The deletion indciator could not be set in the ECC PO line item even after manually correcting the above errors in the Idoc and posting it.
    Then based on this SDN Post: [PO rejection in SNC does not update the items in MM with ORDRSP;, we changed the WE20 settings. i.e., for ORDSP Idoc changed the Process code from ORDR to ORDR_SUS. After this change, the the above errors were eliminated and the the rejection data was also updated on the ECC PO by setting a deletion indicator. But we are having the following issues:
    1. Though both the confirmation & rejection data are getting transferred successfully, the Idocs remain in status 52 (Application document not fully posted).
    2. The message in the status record is "Rejection of PO item 4400000XXX 00010 with reason: Message no. ME749
    3. Came across these 2 related SAP Notes:
       a. #1087422 : But this is not applicable as the note states that this error will occur only if we delete the PO line item before hand in ECC.
    b. # 66192 : This note suggets a custom solution. But actually all the info from the ORDSP Idoc are getting processed successfully (Rejection & Confirmation send in the same Idoc). Only the status of the Idoc (Status = 52) is concerning us.
    Looking forward for inputs / suggetions from those who have used the Rejection functionality in SNC without custom development.
    Regards,
    Bharath

    Hi Bharath
    Rejections is handled like that only, can you please check whether note 1529579 is helpful
    It is standard behavior, as it expects other segments to fill, but never the less the PO will be updated properly, its only problem
    with the status of the idoc....nothing wrong in the data updation. The above note should be handy.
    Regards
    Vinod

Maybe you are looking for

  • Connect MacBook to 2 displays: TV and desktop

    Hi, so I've had my MacBook connected to my desktop monitor for a while now and everything's worked perfectly. I'm trying to also connect the Macbook to a Polaroid 23" HDTV. I got all the cords that I think i needed and I attached everything and nothi

  • InDesign CS4: Missing Toolbars and Missing Plug-In

    Currently running InDesign CS4, version 6.0 on a Macbook Pro. I was just using the program last night with no issues. Upon opening InDesign today, Adobe Updater popped up at launch; I installed updates. Now when I open a new document in InDesign, the

  • Report Painter - Need help & assistance

    Hi, I have been assigned a project where I need to use the Report Painter to copy the report behind transaction code IP31 (maintenance plan costing) and modify the copy in the report painter (according to modification requests/technical specs.) How d

  • To execute external command using   RFC_REMOTE_exec

    Hi i want to execute the ext command using RFC_REMOTE_EXEC . i have used like below in WINDOWS XP: data: v_cmnd(120) type C VALUE 'dir C:\SAP\rfcsdk\bin >RFEXEC -D ESM_R'. call function 'RFC_REMOTE_EXEC' destination D_DESTI exporting command = v_cmnd

  • Export to Excel Fails with "Internet Explorer cannot display the webpage"

    We have a couple of report servers all hosted internally on VMs.  They are all SSRS 2008 R2. For all of these, when viewing the reports remotely in IE, they run fine.  However when we try to export them to excel, a new tab opens in IE, but the tab ju