Can we use MessageTransformBean in between XML -- XML scenario !!

Hi Claver Heads,
Small thing in XML to XML transformation. Can we use MessageTransformBean? The reason why I am asking, In my scenario, XML to ABAP proxy, messages are splitting (1:n) everything is working fine. But in splitting messages, first Messages is getting all nodes etc., from split second message on words, Couple of nodes are missing(not coming at all)?
Any solutions for this please?
Thanks
Regards
San

Hi hetal,
Yeah you are 100% correct. This must be context issue. But I don't know how to fix this. The target message is quite big hierarchy, like ProductActivityNotification>ProductActivity>Item>SalesTimeSeries>Item>ValidPeriod>Startdate etc.,
Source XML is getting DTM segment, which is in Header -- comes one time, more than 100 line items to this message. This 100 line items has to go with this date into Startdate etc.,
At present I am getting only one time this into Startdate. Please any clue in this!!
Many Thanks in advance
Kind Regards
San

Similar Messages

  • How can I use home sharing between our iphones (create playlists from both accounts at once)

    How can I use home sharing between our iphones, so that we can create playlists with songs from both of our libraries?  We share a Macbook Pro (separate accounts) and each have the new iphone, but when I have my iphone and try to create a new playlist, I can only grab songs from one account.  Is there a way to create a playlist using both accounts since we are sharing?
    Does it have to be created within iTunes first on our Mac?

    The short answer: because Home Sharing isn't designed for sharing apps, and apps aren't designed to be shared.
    The longer answer:  Think of it like this...
    You download some music in iTunes.  With Home Sharing, another user can listen to it by streaming it over the network.  But the data itself is on your computer.  If you turn off the computer or take it off the network, the other user can't access it.
    But if you send another user the app, they aren't just streaming the data- they installed it on their iOS device.  Because they weren't the one that purchased it, such a transfer could easily be considered "piracy" or "stealing," and nobody likes that (least of all, Apple). 
    When iTunes sees this app, it obviously recognized it, as if saying, "Hey, how did you get this app on your device, if I have no record of you purchasing/downloading it from the iTunes store?"
    post edited to correct spelling errors

  • Can i use home sharing between my computer and my ipad?

    can I use home sharing between my computer and my new ipad (3rd generation)  if so, how.
    Thanks

    You can use it to share the library on your computer to the iPad, not the other way around.
    On the computer, set up homesharing in the advanced menu. On the iPad go to settings > music.

  • Can I use morethen one faces-config.xml

    HI,
    now I am learning jsf, I have a doubt that ,can I use more than on faces-config.xml in one application ? and can we cahange name of faces-config.xml to faces-config-first.xml, and faces-config-second.xml? if it is possible , what should i do?
    Thank&Regards
    satya..

    Why would you want multiple config files? Is it for organization only...
    How would your app. know the when to use a different config file?
    Thanks,
    --Todd                                                                                                                                                                                                                                                                                                                       

  • Can I use home sharing between my iPhone and iPad? Or do I need to use a computer?

    I want to use home sharing between my iPhone and Ipad. So I can use the remote app. But I can't get it to work

    You can use it to share the library on your computer to the iPad, not the other way around.
    On the computer, set up homesharing in the advanced menu. On the iPad go to settings > music.

  • Can i use commit in between pl sql statements

    Hi,
    I have written program unit , in that I used insert statements and after that I used commit command.
    But in runtime it's getting oracle error unable to insert . because I used some non database items and database items
    so that it's coming error.
    But my question is , Can i use commit after executing some statements in program unit procedure.
    Thanks in advance.

    FORMS_DDL restrictions
    The statement you pass to FORMS_DDL may not contain bind variable references in the string, but the
    values of bind variables can be concatenated into the string before passing the result to FORMS_DDL.
    For example, this statement is not valid:
    Forms_DDL ('Begin Update_Employee (:emp.empno); End;');
    However, this statement is valid, and would have the desired effect:
    Forms_DDL ('Begin Update_Employee ('||TO_CHAR(:emp.empno)
    ||');End;');
    However, you could also call a stored procedure directly, using Oracle8's shared SQL area over
    multiple executions with different values for emp.empno:
    Update_Employee (:emp.empno);
    SQL statements and PL/SQL blocks executed using FORMS_DDL cannot return results to Form
    Builder directly.
    In addition, some DDL operations cannot be performed using FORMS_DDL, such as dropping a table
    or database link, if Form Builder is holding a cursor open against the object being operated upon.
    Sarah

  • Can't use UTF-16 encoding with XML Parser for Java v2.

    This is my XML Document:
    <?xml version="1.0" encoding="UTF-16" ?>
    <Content>
    <Title>Documento de Prueba de gestin de contenidos.</Title>
    <Creator>Roberto P     rez Lita</Creator>
    </Content>
    This is the way in which i parse de document:
    DOMParser parser=new DOMParser();
    parser.setPreserveWhitespace(true);
    parser.setErrorStream(System.err);
    parser.setValidationMode(false);
    parser.showWarnings(true);
    parser.parse(
    new FileInputStream(new File("PruebaA3Ingles.xml")));
    I've got this error:
    XML-0231 : (Error) Encoding 'UTF-16' is not currently supported.
    I am using the XML Parser for Java v2_0_2_5 and I am a little
    confused because the documentation says that the UTF-16 encoding
    is supported in this version of the Parser.
    Does anybody know how can I parse documents containing spanish
    accents?
    Thanks in advance.
    Roberto P     rez.
    null

    Oracle just uploaded a new release of V2 Parser. It should
    support UTF-16.
    Yet, other utilities still have some problems with UTF-16
    encoding. Seems we just
    have to wait this one out.
    BTW, I'm trying to use Japanese. We, also, have some problems
    with JServer.
    Roberto P     rez (guest) wrote:
    : This is my XML Document:
    : <?xml version="1.0" encoding="UTF-16" ?>
    : <Content>
    : <Title>Documento de Prueba de gestin de contenidos.</Title>
    : <Creator>Roberto P     rez Lita</Creator>
    : </Content>
    : This is the way in which i parse de document:
    : DOMParser parser=new DOMParser();
    : parser.setPreserveWhitespace(true);
    : parser.setErrorStream(System.err);
    : parser.setValidationMode(false);
    : parser.showWarnings(true);
    : parser.parse(
    : new FileInputStream(new File("PruebaA3Ingles.xml")));
    : I've got this error:
    : XML-0231 : (Error) Encoding 'UTF-16' is not currently supported.
    : I am using the XML Parser for Java v2_0_2_5 and I am a little
    : confused because the documentation says that the UTF-16
    encoding
    : is supported in this version of the Parser.
    : Does anybody know how can I parse documents containing spanish
    : accents?
    : Thanks in advance.
    : Roberto P     rez.
    null

  • Can you use complex DTDs to produce XML in InDesign?

    I'm working on a scientific publication with a DTD similar to that of NLM/Pubmed for upload to our own site and PubMed. We are working with an InDesign/InCopy workflow.  Can InDesign handle this complicated DTD or does it only handle standard XML such as fonts, heads, paragraph tagging?

    This Help topic discusses DTDs in InDesign. This site on Adobe.com also has a section on XML resources. If you're going to be working with XML in InDesign, I recommend A Designer's Guide to InDesign and XML.

  • Which API can be used to write to an XML file(web.xml) programmatically

    Hi,
    I wish to write to the web.xml file programmatically.Could anyone point me to the
    API that is to be used.
    I am aware of the API to be used for extracting the node and the tag values - com.bea.p13n.xml.util.DomHelper
    but this class has only getters and I wish to know which API should be used to set
    the xml nodes.
    It is important and am looking forward to pointers.
    Thanks in advance!
    Regards,
    Shikha

    S. Bajaj
    org.w3c.dom Api
    Deepak
    shikha wrote:
    Hi,
    I wish to write to the web.xml file programmatically.Could anyone point me to the
    API that is to be used.
    I am aware of the API to be used for extracting the node and the tag values - com.bea.p13n.xml.util.DomHelper
    but this class has only getters and I wish to know which API should be used to set
    the xml nodes.
    I am unable to find answer to this.
    Looking forward to pointers and help.
    Thanks in advance!
    Regards,
    Shikha

  • Can't use Face Time between my devices

    I have an iPad 2, an iPhone 4S, &amp; a 4th gen iPod.  Until recently I was able to Face Time between them all.  Now when I try to make a call it says that I'm unavailable.  I have read the generic troubleshooting article &amp; tried all those things.  None of them have worked.  Does anyone have a suggestion for possible solution?

    Can you FT other devices?
    iOS: Troubleshooting FaceTime
    Are you calling an email/phone number not also used for FT on the calling device?

  • Can I use face time between my IPAD and IPOD Touch

    I'm trying to use facetime between my IPAD and my IPOD touch.
    Both have the same appleid, use same email address.
    When  I call the IPAD from the IPOD it says its busy

    Follow the instructions here to add another calling address to one device and delete the common calling address.
    MacMost Now 653: Setting Up Multiple iOS Devices For Messages and FaceTime

  • Why i can't use dynamic link between After effects and Premiere Pro?

    I have installed the Creative Cloud version of After effects and Premiere Pro (only them, no other software of the suite) but i still can´t link them with dynamic link. the option is in grey, and i can't even click on it.
    Some help? please!

    Ok, here goes some information about my hardware and software:
    Allienware M14XR2
    Intel Core i7-3610 QM CPU @ 2.30 GHz
    RAM 8 GB
    Windows 7 Home premium
    NVIDIA GE force 650 M
    I'm working in a Premiere Pro project using 1920x1080 .mov archives, and the project is in the same resolution.
    In Premiere pro, when i go to Archive > Dynamic Link  i only have the option of send it to Encore.
    Is this information enough?
    thanks

  • I want to use multiple windows because I can make them different sizes so what keystroke can i use to cycle between them?

    I use Mac 10.4.11 and Firefox 3.6.23
    I have found the keystrokes to cycle tabs but i want a keystroke to cycle windows in firefox because you cant make multiple tabs different sizes or locations to overlap them on screen

    I use Mac 10.4.11 and Firefox 3.6.23
    I have found the keystrokes to cycle tabs but i want a keystroke to cycle windows in firefox because you cant make multiple tabs different sizes or locations to overlap them on screen

  • Can you use PSE files between windows pc and mac book?

    Can you open and save PSE files on a windows pc and mac book that are on an external HD?

    Yes, The operation works like it is for all other softwares.
    Thanks,
    Garry

  • Can you use migration assistant between 10.4 and 10.8

    I'm trying to use migration assistant to transfer applications and files from a G5 imac running 10.4.11 to a brand new iMac i5 on 10.8.2. Have connected through ethernet cable but machines don't recognise each other!
    Is this an OS problem or a PowerPC vs Intel issue?

    Be careful about trying to migrate applications from a G5 to an Intel mac running Mt. Lion (10.8.x).  They may not work.  Rosetta is no longer supported, so older applications that ran on your G5 may not run at all on your new iMac.  And even some 'universal' apps that ran on 10.4 (Tiger) will not run well if at all on Mt. Lion.
    It would be best if you install current versions of the applications you are interested in, from scrtach, instead of migrating what are now very old versions.

Maybe you are looking for

  • Adobe Bridge CS3 windows error

    Hi, When I open Bridge cs3 on its own after a few seconds the window banner comes up. Adobe bridge has encountered a problem and needs to close.We are sorry for any inconvenience. The same happens if I try to open bridge from within Photoshop cs3 I c

  • Battery problem & Device heating

    My device BB Curve 9360 one month old is having battery charge problem.I cant even use it for half a day.It will dry out within 5 hrs and also the mob is getting heated while using like...reading messages,while talking for some time.Some has asked me

  • How do i erase my personal info off an old computer

    i just bought a new Macbook Pro and need to erase my imformation off my old one can anyone help?

  • Change Master Record  details by Customer or Vendor number

    Hi There i am trying to write a FD for a report where i need to list all the change has been made for the specific vendor or customer and listed down what is been change   fields) and the values as well Input : Vendor /Customer number Output : Date w

  • N97: Impossible to add email accounts

    When I initially set up my Nokia N97, I added several email accounts with no problem.  But now when I need to add an account, it is not possible any more. The Help tells me to go to Messages > Options >Settings > Email > Email accounts and choose Opt