Idoc to XML, namespace is not getting created in output XML

Hi All
My interface is idoc to XML.
I am using graphical message mapping.
In output xml , namespace is not  formed
Can any one tell why namespace is not  created in the XML and
How to add the  namespace to the  output XML .
Kindly help
Regards,
Sheela

Hi,
You can change your external definition to achieve it.  just compare the structure of your xsd with some other normal data type xsd and change accordingly.
Inder

Similar Messages

  • Production version is not getting created using ALE-IDOC

    Hi all,
    Am using BD10 to transfer the material from sending to receving system.All the views are geting sent successfuly accept the production version tab data of MRP4 view.The segment is available in the standard IDOC.But prodction TAB  is not getting created at receving system .Please help to resolve this issue.
    Thank you.

    Hi Sanu,
    BD10 Send Material..
    the reason might be Production tab is not created is the segment is not a mandatory..
    and the data is not populating for that fields.
    if the segment is not madatorty and data is not available for the fields in the segment ..the prodction TAB  will not be created ..
    Regards,
    Prabhudas

  • Problem in ABAP Proxy(sometimes XML Messages are not being created)

    Hi,
    I am trying to send the data from ECC to CRM when post goods issue is done for a delivery from ECC side. I called my proxy method in BADI : DELIVERY_PUBLISH.
    And after calling the method, I used commit work also.
    But the problem is, some times it is working fine. and some times the XML messages are not getting created. When I go in debug, looks everything is fine.
    I am unable to understand why this inconsistency.
    Could you please help me out, do I need to take any more precautions.
    Thanks,
    Sandeep

    You mean you can't find any message in SXMB_MONI of your ECC or is it XI where you can't see message?
    If you have not checked in SXMB_MONI of ECC then may be messages are created but they are going into error and that's why you are not able to see any message in XI.

  • Infotype 1000, Position data IDOC is not getting created via RBDMIDOC

    Hi All,
    We are using PFAL styandard HRMD_A message type,  while executing RBDMIDOC with message type HRMD_A, all the infotypes data IDOC is created except Infotype 1000 Position(S).
    The same is (Infotype 1000, position IDOC is created in dev server) but the same is not getting created in Quality and Prod.
    Can any one suggest the same, what could be the error.
    Thanks.

    Hi,
    You need to check in your filter settings in BD64 for your corresponding distribution model, if you have included IT1000 for PD objects such as O, C, S. After adding this filter group, you have to distribute the source system into the target system (Edit > Model view> distribute). In the target system, you have to generate partner profiles (environment> generate partner profiles).
    Hope it helps,
    Christine

  • File not getting created in Target Directory..........

    Hi All,
               We are trying a IDOC-File scenario & trying to create a XML file on the receiver side........All the mappings have been checked & everything is working fine.It shows success in SXMB_MONI. But the file is not getting created at the target directory..... Checked the component Monitoring and message  monitoring as well, which is also successful...
    What could be the reason of such behaviour, and is there a way to track the where the target file is getting placed?
    Please Help
    Regards,
    Jayashri

    >
    Jayashri Rade wrote:
    > Hi All,
    >            We are trying a IDOC-File scenario & trying to create a XML file on the receiver side........All the mappings have been checked & everything is working fine.It shows success in SXMB_MONI. But the file is not getting created at the target directory..... Checked the component Monitoring and message  monitoring as well, which is also successful...
    i
    Did you check the receiver communication channel in communication channel monitoring?
    Are there any errors?

  • Sub node is not getting created

    Hi Experts
    I have IDOC to SOAP scenario, here the subnode is not getting created in the main node. please help me
    Structure is given below
    Source
    Matmas
          IDOC
              e1m -
    (1...9999 ) occurance
    Target
    Target
    XMLDATA  --- (1.. UNBOUNDED)
         SUBNODE1 ---(1.1)
              SUBNODE2 ---(1.)  -- UNDER SUBNODE1
              SUBNODE3----(0...UNBOUNDED) -- UNDER SUBNODE1.
    Quesion 1.
    now i want XMLDATA node to be repeated as many times as e1m comes from source along with both the subnodes 2 and 3 at target side.
    but i could see only subnode2 is getting created not the subnode3 while testing.
    May i know why is this happening.
    I want the SUBNODE3 also be created.
    Note the occurance of SUBNODE3  is 0.. unbounded
    Question 2:
    I want the SUBNODE3 also to be repeated as many times as e1m node comes from source.
    For example:
    e1m comes twice then the target should be as below
    XMLDATA  --- (1.. UNBOUNDED)    
    SUBNODE1 ---(1.1)
              SUBNODE2 ---(1.)  -- UNDER SUBNODE1
              SUBNODE3----(0...UNBOUNDED) -- UNDER SUBNODE1.
    SUBNODE3----(0...UNBOUNDED) -- UNDER SUBNODE1.
    XMLDATA  --- (1.. UNBOUNDED)    
    SUBNODE1 ---(1.1)
              SUBNODE2 ---(1.)  -- UNDER SUBNODE1
              SUBNODE3----(0...UNBOUNDED) -- UNDER SUBNODE1.
    SUBNODE3----(0...UNBOUNDED) -- UNDER SUBNODE1.
    Regards
    Lara

    Please see the below logic:
    E1MARAM --> XMLNODE
    E1MARAM --> useOneAsMany_customUDF -->SUBNODE3
    E1MARAM/MATNR -->  useOneAsMany_customUDF --> SUBNODE3/MATNR
    E1MARAM/xyzfield -->  useOneAsMany_customUDF --> SUBNODE3/xyzfield
    Source:
    <?xml version="1.0" encoding="UTF-8"?>
    <MATMAS05>
       <IDOC>
          <E1MARAM>
             <MATNR>123</MATNR>
          </E1MARAM>
          <E1MARAM>
             <MATNR>1234</MATNR>
          </E1MARAM>
       </IDOC>
    </MATMAS05>
    Target
    <?xml version="1.0" encoding="UTF-8"?>
    <ns0:MT_Test xmlns:ns0="urn:test-2:test:area">
       <XMLDATA>
          <SUBNODE1>
             <SUBNODE2/>
             <SUBNODE3>
                <MATNR>123</MATNR>
             </SUBNODE3>
             <SUBNODE3>
                <MATNR>1234</MATNR>
             </SUBNODE3>
          </SUBNODE1>
       </XMLDATA>
       <XMLDATA>
          <SUBNODE1>
             <SUBNODE2/>
             <SUBNODE3>
                <MATNR>123</MATNR>
             </SUBNODE3>
             <SUBNODE3>
                <MATNR>1234</MATNR>
             </SUBNODE3>
          </SUBNODE1>
       </XMLDATA>
    </ns0:MT_Test>
    useOneAsMany_customUDF
    for(int i =0;i<var1.length;i++)
       for(int j=0;j<var1.length;j++)
          result.addValue(var1[j]);
        result.addContextChange();
    Hope it helps!

  • Outbound Delivery Not getting created

    Hi Gurus,
    Outbound Delivery Not getting created
    there is a DESADV IDOC that is supposed to create inbound dely, do the GR then create Outbound delivery and shipment (all automized). But this is not happening.
    There is workflow set up that is blocking this...Task no TS95000019 is responsible for passing the values. This will show up in the SAP inbox with error description.  But i am able to see TS95000018 but TS95000019 is not showing up in the workflow log.
    Can anyone let me know what setting is missing in workflow so that this task shows up and i can make the system create outboud delivery and shipment automatically
    Please help
    Sunil

    Sunil
    First check whether that particular task is active in your client.
    For a task to get triggerred you need to activate the triggerring settings.
    Use PFTC T-code, input your task as TS and ID as 95000019
    click on view button
    Then click on " Triggerring Events" tab page.
    View whether your task 95000019 is active. Green light will appear next to it in the left most column. If it is grey or red, then you need to change it to green. Only then it will work. Once this gets triggerred, subsequently it will pass the message to your inbox with correct error message and then only create an outbound delivery.
    Hope this will help you out !
    Regards,
    Syed Nasir

  • Excise invoice should not get created without PGI

    Hi,
    I have a scenario where the billing document is being generated by the customer without PGI after creation of outbound delivery for exports. (This is as per customer's requirement - Copy control maintained in VTFL for the same - copying requirements 11 )
    This creates a situation - excise invoice can be created without PGI - which creates problems for customer. This should not happen.
    Customer wants a check during the excise invoice creation - excise invoice should not get created if PGI has not been done.
    Kindly advise as to how this can be done.
    Regards,
    T Saravanan

    Dear Saravanan
    Two options are there
    -  in your existing routine itself, you can specify the control in such a way that unless the preceding document is PGId
    -  apply excise user exits like J_1I7_USEREXIT_EXCISE_BEF_SAVE to achieve the requirement.
    thanks
    G. Lakshmipathi

  • Invoice is not getting created in Order related billing

    Dear all,
    I am trying to do a Order related billing. After creating the order i am going to VF01 and selecting the billing type i have created and trying to create the invoice. I am getting the error "No billing documents were generated. See log" when i am checking the Log its showing now errors.
    In case if my account determination procedure is wrong, system should allow me to create a Sales invoice and accounting document will not be generated. But in this case even the sales invoice is also not getting created.
    Please suggest me if there are any configuration changes i need to do to overcome this problem.

    Apart from the suggestion already given, also ensure that
    the order is not showing in incomplete log
    the order is not blocked for credit limit
    You can also cross check in VF04 whether system is fetching that sale order.  For information, once you execute VF04, by default, system will check only "Delivery related" check box.  You have to manually select "Order related" check box.
    G. Lakshmipathi

  • File not getting created in a different server

    My requirement.
    I have written a code in the BI system and now need to write an empty file (say a.done)in a directory /interfaces of PI system.
    I wrote using open data set and close data set however the file (a.done) is not getting created in the PI system even though the directory /interfaces exist.
    When I give any directory of that of BI system ,the file(a.done) is getting created i.e the file is getting created on the same server and not on the different server.
    Is there any function module or any other way for the file to get generated in the PI system.
    Please explain with an example.
    Regards,
    Vish

    Try to use  search FTP in se37 or checkout the below FM
    CALL FUNCTION 'EPS_FTP_MPUT'
      EXPORTING
        RFC_DESTINATION            =
    *   FILE_MASK                  = ' '
    *   LOCAL_DIRECTORY            = ' '
    *   REMOTE_DIRECTORY           = ' '
    *   OVERWRITE_MODE             = ' '
    *   TEXT_MODE                  = ' '
    *   TRANSMISSION_MONITOR       = 'X'
    *   RECORDS_PER_TRANSFER       = 10
    *   MONITOR_TITLE              =
    *   MONITOR_TEXT1              =
    *   MONITOR_TEXT2              =
    *   PROGRESS_TEXT              =
    * IMPORTING
    *   LOCAL_DIRECTORY            =
    *   REMOTE_DIRECTORY           =
    *   LOCAL_SYSTEM_INFO          =
    *   REMOTE_SYSTEM_INFO         =
    * TABLES
    *   FILE_LIST                  =
    * EXCEPTIONS
    *   CONNECTION_FAILED          = 1
    *   INVALID_VERSION            = 2
    *   INVALID_ARGUMENTS          = 3
    *   GET_DIR_LIST_FAILED        = 4
    *   FILE_TRANSFER_FAILED       = 5
    *   STOPPED_BY_USER            = 6
    *   OTHERS                     = 7
    IF SY-SUBRC <> 0.
    * Implement suitable error handling here
    ENDIF.

  • Weblogic Domain not getting created in SOA Suite 11g R2

    I have installed the components of SOA Suite 11g R2 (11.1.1.3) on a single Windows XP SP3 machine (32 bit) following recommended procedures. I tried to configure Weblogic server using Domain Configuration utility. After navigating hrough the wizard, no Weblogic server profile is getting created in the doamin folder. Even the WL Admin server is not getting created. The Domain Configuration utility did not throw any errors.
    1) Is this problem related to Oracle repository for SOA suite 11g?
    2) Can the repository schemas (Oracle) hold multiple weblogic SOA domain information?

    Hi,
    Weblogic servers directory do not gets created after domain creation or even managed server configuration. It will present itself only when you start the managed server for the first time, that is when it initializes all security attributes, diagnostic attributes (if configured) , etc..
    Perform server start and then check if it gets created or not.
    ## rank answer if it is helpful ##
    Thanks,
    Ranjan

  • BP not getting created while creating employee

    Hi,
    When I Hire an employee a BP should be created for it. It used to happen earlier in the system but after we moved to another system this is not working.  Can someone please let me know the necessary config for this?
    I've the following settings:
    HRALX   ONUMB  = 2
    HRALX   OSUBG = MD
    The MD number range is from 90000000 to 9999999999. Should this number range be internal or external?
    When I use the HR_SYNC_PERSON report for an employee I get the error as
    "Determination of connections to object 'BP' of 'CP' '50000201' failed"
    "Object of type 'US' with ID '1122' does not exist or is inconsistent"
    "Determination of connections to object 'BP' of 'O' '50000101' failed" etc
    Also I need to upload the employee master data using LSMW and BP does not get created with LSMW also? Is there some specific config while using LSMW?
    Please help.

    Whenever you are uploading employees using LSMW, you need to run program HR_SYNC_PERSON.
    Pls refer to the following thread for further info:
    Assignment: Business partner for person '50000029' is not unique
    Regards,
    Dilek

  • AUC Asset not getting created when Internal Order is created

    Dear Experts,
    While Creating the internal order ( Object Class - Investment Measure)
    AuC (Asset Under Construction) not getting created automaticall . Note Investment profile is already there in the order.
    Following steps below are configured -
    1. Define the AuC Asset Class (with investment measure) - OAOA
    2. Define the Asset Class u2013 for Main Asset - OAOA
    3. Define Investment Profile - OITA
    a. Assign the AuC Asset Class (Step-1) in the investment profile
    4. Assign Investment Profile to Model Order - OITA
    5. Define Order Type (Investment) - KOT2
    a. Settlement Profile - OKO7
    b. Maintain Allocation Structures - OKO6
    Thanks
    Sanjai

    Hi Sreekanth,
    What is the setting needed to create AUC Automatically when an Internal order is created ?
    I have done all the setting, but still when I save Internal order neither AUC asset is getting created.
    So I went to extras selected create AUC and it went to AS01, but when I came back (F3) from AS01 to Internal Order and save , Auc Asset is not getting captured in the settlement rule. I even tried to give manually the AUC Asset in the settlement rule, for which sys is not allowing in the settlement rule.
    Any thoughts are highly appreciated
    Advance Thanks
    Sanjai

  • Accounting doucment not get created for Credit Memo

    Hi
        When creating a cancellation doucment(vf11) for credit memo accounting document not get created.While I go for analysis then it is determining the G/L account.But not getting created the accounting doucment.
    When i select "Release to accounting" then it is giving a message like this:
    "Automatic clearing of billing document 951
    and canc. doc. 90000572 not poss."  as informatiion first
    and then later it is throwing an error message that "maintain correct number range"
    While for the same material or earlier cancellation happened and accounting doucment get created.
    Please help me out;How would i get this solved?
    Thanks in advance

    Hi,
    You may also check for Number Range - Maintainance & Assignment.
    T. Code: SNRO
    Table/ View: RV_BELEG
    Here, Mantain Number Range.
    To Assign,
    T. Code: SM30
    T.Code: Bill_Num (or select if different in your case)
    Assign No. range to your combination of Sales OrgDist.ChannelBill Type i.e. for Cancelled Billing Doc. Type
    To Maintain Number Range for Accounting Documents,
    T. Code: FBN1
    Best Regards,
    Amit

  • SRM PR is not getting created in ECC backend

    Hello Experts,
    We are running SRM 7.0 with SRM-MDM Catalog, we are using SRM for shopping.  We do have PI 7.11 running in the Environment as well.
    We are on ECC 6.0 with Ehp 4.0
    Purchase Order:
    However we can see the PO creating successfully using PI.
    Question, in the SRM table (BBP_FUNCTION_MAP), we see the object type: BUS2012 for ERP 4.0 has adapter name: /SAPSRM/CL_SOA_ADPT_PO_CRT_ERP for when creating PO. Please see teh screen shot.
    is this the reason that we need PI?
    Purchase Requisition:
    PR Creation is not working:
    PR is not getting created in the ERP, PR uses Object type: BUS2105, Adpater CL_BBP_BS_ADAPTER_RQ_CRT_470 for ERP 4.0 System type, can you please tell me if the adapter is correct for ERP 4.0 system type?
    I also have a question to ask:
    1) Where did you see that PR/PO was send to PI System (PI1)? My understanding is that since ERP amd SRM are 2 ABAP Systems, why we cannot send the PR/PO directly to ERP system from SRM? Why do we need a middleware(PI) in between for this process? We should be able to USE BAPI function to do it correct?
    Please advice.
    Thanks
    Kumar

    yes, i could see a PR number with all this additional details as below.
    Table   BBP_PDBEI
    CLIENT                       453                                                              Client
    GUID                         4CAEFA58EB9D005CE1008000AC1C2031                                 Globally Unique identifier
    BE_LOG_SYSTEM                QA1400                                                           Logical System of Logistics Backend
    BE_OBJ_ITEM                                                                                Follow-On Object Item in Back-End System
    BE_OBJECT_TYPE               BUS2105                                                          Follow-On Document Object Type in Back-End System
    BE_OBJECT_ID                 2000000167                                                       Follow-On Document Object ID in Back-End System
    BE_REFOBJ_TYPE                                                                                Reference Object Type in Back-End System
    BE_REFOBJ                                                                                Reference Object in Back-End System
    BE_REFOBJ_ITEM                                                                                Reference Object Item in Back-End System
    BE_REFOBJ_SBITM                                                                               Reference Object Sub-Position in Backend System
    BE_REFOBJ_TYPE2                                                                               Reference Object Type in Back-End System
    BE_REFOBJ2                                                                                Reference Object in Back-End System
    BE_REFOBJ_ITEM2                                                                               Reference Object Item in Back-End System
    BE_REFOBJ_FYEAR2             0000                                                             Reference Document Object - Fiscal Year in Back-End System
    BE_STGE_LOC                                                                                Storage location
    BE_PLANT                     2016                                                             Plant
    BE_BATCH                                                                                Batch Number
    BE_VAL_TYPE                                                                                Valuation type
    BE_MOVE_REAS                 0000                                                             Reason for Movement
    BE_EXPERYDATE                00000000                                                         Shelf Life Expiration Date
    BE_PUR_GROUP                 206                                                              Purchasing group
    BE_PUR_ORG                   2000                                                             Purchasing organization
    BE_CO_CODE                   2000                                                             Company Code
    BE_DOC_TYPE                  CLRQ                                                             Purchase Requisition Document Type
    BE_ACCREQUIRED                                                                                Account Assignment for Logical Backend Required
    BE_SP_STK_IND                                                                                Key for Special Stock Section
    BE_INFO_REC                                                                                Number of purchasing info record
    BE_MOVE_TYPE                 201                                                              Movement type (inventory management)
    BE_PACKNO                    0000000000                                                       Package number
    BE_INTROW                    0000000000                                                       Internal line number for limits
    BE_ITEM_TEXT                                                                                Short Text of a Service Purchase Order Item
    BE_PO_PRICE                  1                                                                Price from Backend
    BE_UNLOAD_PT                 200                                                              Unloading Point in Backend
    BE_DEL_IND                                                                                Deletion Indicator in Backend Documents
    BE_TRACKING_NO                                                                                Requirement Tracking Number
    BE_COND_TYPE                                                                                Condition Key
    BE_COND_STEP                 000                                                              Level Number
    BE_COND_COUNTER              00                                                               Condition counter

Maybe you are looking for

  • Multiple logins - can they access the same iTunes library?

    I have multiple logins on my Mac with Leopard. Our families iTunes library resides on my account. I set up separate accounts for them to protect my documents and such. However, when they launch iTunes, the library is blank. Can I point them to the li

  • Setup has encountered an error and cannot continue. Contact Adobe Customer Support for assistance.

    I have an iMac that meets system requirements.  I have downloaded CS4 from Adobe and when I try to install it says "Setup has encountered an error and cannot continue. Contact Adobe Customer Support for assistance."  This happens while it is checking

  • Formula Row/Col Custom Heading not appearing on the Grid Cell in FR Studio

    I'm building reports using Financial Reporting Studio Software. When i insert the formula row/column and give a custon heading, it is not reflecting on the GRID. The cell still shows blank. What should i do ? is this a bug?

  • Search and send mail

    i recently upgraded to tiger from panther on my iBook G4. 1. there used to be a drop down in the search box to define where i wanna search: from, to, etc. now it is just a search box. i usually used the search to find mail from a particular sender. h

  • InDesign prints second page 90 degrees to first

    HI! I'm trying to to print a two sided landscape oriented project to a Canon Image Runner. one side prints just fine. The second side prints 90 degrees to the first side. Any ideas for what's going on? THanks