Hi Everyone, I want implement multi-file layout by XI.

This is simple scenario. but, I didn't get the idea how to design.
This is RFC to File Scenario.
RFC has headers and items. like under function,
ZABC_FUNCTION
  TABLES
     T_HEADERS
     T_ITEMS
But I want make the file. like this,
H,1,ABC
I,2,1,100
H,1,BCD
I,2,1,5
H,1,KKK
I,2,1,43
I,2,2,20
over layout means,
Header character identity, Number identity, Header Description
Item character identity, Number identity, Item Sequence Number, Item Quantity
RFC data is :
HEADERS
  ABC
  BCD
  KKK
ITEMS
  ABC,100
  BCD,5
  KKK,43
  KKK,20
so, I know that using file content conversion. and read the online document. and I search this sdn homepage like forums, Blogs, and Help.
But I don't know how to.
So I will wait your good answer. Thank you.
Best Regards,
John

Hi,
there are a few ways you can do it
one would be to use a BPM and inside your message mapping
create one message per header (1:N mapping) - (one for ABC one for KKK)
then inside file adapter use append mode and all messages
will append to the file (starting with header and then lines)
and you will have a structure as you've specified 
Regards,
michal

Similar Messages

  • Hi Everyone, Just wanted to seek your assistance. We're using and Adobe InDesign CS6. The XMedia UI Plugin for it, will it allow you to open .xml files in InDesign or that plugin is just used for Importing XML? Thanks in advance.

    Hi Everyone, Just wanted to seek your assistance. We're using and Adobe InDesign CS6. The XMedia UI Plugin for it, will it allow you to open .xml files in InDesign or that plugin is just used for Importing XML? Thanks in advance.

    I've moved your question to the InDesign forum.

  • Multi File upload

    I want to develop a functionallity for MultiFile Upload, is it directly supported in JSF 2.2 or i have to use some other implementation of JSF such as RichFaces or ICEFaces.

    Hello,
    Why don't you just make a portal form for them ?
    Making a portal form based on the table (the one holding the BLOBs)
    will generate multi files upload automatically
    Is this what u need ?

  • Bug in Multi-File Search and Replace in RH6?

    I'm using the 6.0 trial, and one thing I want to be able to
    do is to replace the variables I put in using JavaScript with the
    new feature variables in 6.0. So, I went in to multi-file search
    and replace, and searched for:
    <script
    language=JavaScript>document.write(varProduct)</script>
    I copied this code directly from a topic, and pasted it into
    the Search tool.
    I don't even care whether I can successfully copy the code
    from my new variable for use as the replacement text; I'd be happy
    if the multi-file search would simply find all occurrences of my
    original code so I don't miss any during conversion to 6.0.
    It keeps coming up as not found, and this concerns me
    greatly. Has anyone else experienced this? Is it a known bug? Does
    anyone have a workaround?
    Thanks!

    Hi robowriter
    I'm assuming you are using the wondrous little applet known
    as Multi-File Find and Replace.
    Unfortunately, this little beastie is like a cat. It
    frequently has a fussy tummy and loves to hork up furballs. Well,
    not exactly. Really what it does is fail to properly handle
    anything with a line break. So you need a tool that does do this.
    Fortunately, one exists! It is called FAR (Find And Replace). Oddly
    enough, it was also written by a fellow Microsoft Help MVP named
    Rob Chandler. (Rob lives in Australia)
    You can download a trial version of FAR from the FAR page.
    Click here to visit
    the FAR page
    Cheers... Rick

  • File Layout  add column

    Dear SDN,
    EP6.0 SP11
    I am in the process of KM implementaion and adding one column version to view the file.
    Name   size   rating    annecdote   modified  versioned
    when I look in file context details and able to see the file version. it shows current, 1,...
    now I want to display current value say 2 or 3 in file layout screen. I have added one column using presentaion but value is not appearing.
    Is there any setting is required to get the value?
    Regards,
    Sanjeev

    Hi,
    I gone through your requirement for the report. In the report selection screen -- Settings -- Input "Sort Variant " as 0010  .....(Co. code / asset class / location) this is SAP Standard delivery.
    This adds the column "location" as required. ..... so, there is not requirement here for additional ABAP coding.
    <<Text removed by moderator>>
    Thanks,
    Damodar
    Edited by: Matt on Jan 22, 2009 11:57 AM

  • Best way to implement a standard layout across application

    What is the best way to implement a standard layout across the application?  For example, I am converting an HTML/ColdFusion site to Flex and I need to keep the look of the existing site in the new Flex app.  I need a standard layout on every screen in the new app with a standard header, footer and left nav bar.  Do I need to add that code to every screen in the app or can I just create on layout file and call that into every screen?  Thanks!

    There a few that will help you, look for Form and validator.
    Sincerely,
    Michael
    El 16/05/2009, a las 14:01, lee704 <[email protected]> escribió:
    >
    Thanks.  Are there sample data entry apps in the Tour de Flex samples?
    >

  • Automating multi-file Flash using XML file "run list"

    I've created a multi-file interactive Flash "demo" for a client. It's very much like a website (though he's not using it as a website) in the way that it is laid out in that there is a main index page which can then direct you to different product categories, which you can click on to see. Each "page" contains product (or product category) information, photos, block diagrams, etc. There is nothing animated in the Flash.
    My client also wants to be able to set it up so that the demo runs automatically from a configurable XML file. My ActionScript skills are pretty limited, but I've been able to using ActionScript 3 to load and read the XML file. Using a 'for' loop, I am able to read the XML file and return the path of each Flash file and the duration that each file should be displayed (my client requested that he be able to configure the duration of each page as well).
    I've set up a loader for each movie clip and a timer for the display duration. Unfortunately, the thing that is throwing me off is that when I attempt to load the movie clip (as the last item in the for loop), it reads the entire XML file, returns all of the clips and durations (I'm using trace to see this) before it loads the movie clip. As a result, the only movie clip that is loaded is the last one read from the XML file.
    As I said, I'm not very good at ActionScript, so everything that I've managed to cobble together has been from internet tutorials.
    This is my code:
    var xmlLoader:URLLoader = new URLLoader();
    xmlLoader.addEventListener(Event.COMPLETE, xmlLoaded);
    var mcLoader:Loader = new Loader();
    mcLoader.contentLoaderInfo.addEventListener(Event.INIT, playClip);
    var mcCurrent:MovieClip = new MovieClip();
    stage.addChild(mcCurrent);
    var xml:XML;
    function playClip(e:Event):void
        trace("Function:playClip");
        stage.removeChild(mcCurrent);
        mcCurrent = MovieClip(mcLoader.content);
        mcLoader.unload();
        stage.addChild(mcCurrent);
    function xmlLoaded(e:Event):void
        trace("Function: xmlLoaded");
        xml = new XML(e.target.data);
        var cl:XMLList = xml.clip;
        for(var i:uint=0; i<cl.length(); i++)
            trace("Begin 'for' loop");
            trace("variable 'i' is" + i);
            var clipPath = cl[i].@path;
            var delay = cl[i].@duration;
            trace("Clip path is " + clipPath);
            trace("Display for " + delay);
            mcLoader.load(new URLRequest(clipPath));
    xmlLoader.load(new URLRequest("filerunlist.xml"));
    I removed the timer event because it, like everything else was getting repeated before anything got loaded, so I wanted to figure out out to get the clip loader (mcLoader) to load the movie clip for each file before I figured out where to put the time to ensure that each clip is displayed for the appropriate duration. I suspect that the timer event needs to occur in the 'playClip' function, but would take advice on that as well.
    Thanks to anyone that can help me figure this out.

    What you need to do in the xml parsing function is to simply store all of the data into an array.  You will then use that array one element after another via whatever timer control you set up, accessing each file in the order they are stored in the array.  You will not do any loading in that function, just data storage, and when you are done, the last line in that function, outside of the loop, will trigger whatever function you have that will start processing the first item in the array.
    Example, storing data objects in the array...
    var clipData:Array = new Array();   // store your xml data here
    var clipToShow:uint = 0;                   // use this later in the showClip function
    function xmlLoaded(e:Event):void
        trace("Function: xmlLoaded");
        xml = new XML(e.target.data);
        var cl:XMLList = xml.clip;
        for(var i:uint=0; i<cl.length(); i++)
            clipArray.push( { clipPath: cl[i].@path, delay: cl[i].@duration } );
        showClip();
    function showClip(){
         // do whatever to process loading clipArray[clipToShow].clipPath
         // and using clipArray[clipToShow].delay for starting whatever timer is involved
         // the timer event handler function will call this function when it is executed
         clipToShow += 1;   // increment the counter for the next clip in line
    If you are not comfortable/familiar with the object approach, then you could also store the clip and delay data in two separate arrays.

  • Implementation of file log

    I have a problem. I want to implement a file log, but I am not sure exactly how.
    The file log should be placed in a scrollpane and be updateable. If the program detects a new file, the file should appear in the log window. Each file shold be logged with filename, size etc. but also a small image representing the type of the file. It is also vital that the new files appears topmost in the file log. The file log should also not show more than a specified amount of files (about 100), older files should not appear in the log.
    Does anyone have some implementation advice for this? Table, Panels in a GridbagLayout, JEditorPane...?
    Thanks
    Tobias

    Yeah I'll help you out a little bit.
    I have a problem. I want to implement a file log, but
    I am not sure exactly how.
    The file log should be placed in a scrollpane and be
    updateable. If the program detects a new file, the
    file should appear in the log window. Each file sholdForget the UI part of this for a minute.
    When you say "program detects a new file..." how exactly do you expect that two happen?
    There are two ways this can happen. One is that the OS notifies you when a new file is created/modified/deleted. As far as I know, java does not and without implementing some native code cannot receive updates like that. Number two is that you can periodically scan whatever directories you're interested in (or drive(s)) by calling File.list() on a File object that represents a directory and compare it to a copy you made earlier. In this case you've got to select things like what directories you're going to monitor, how often you're going to scan for changes, etc.
    be logged with filename, size etc. but also a small
    image representing the type of the file. It is also
    vital that the new files appears topmost in the file
    log. The file log should also not show more than a
    specified amount of files (about 100), older files
    should not appear in the log.
    Does anyone have some implementation advice for this?
    Table, Panels in a GridbagLayout, JEditorPane...?
    Thanks
    Tobias

  • RFC to multi file scenario

    Hi,
    I have to carry out a RFC to multi-file scenario. The requirement is that Error generating on whatever part XI will handle have to be reported. Is this possible in this scenario? What can be the mechanism?
    I want to report these errors via a mail to an e-mail id.
    Since i haven't done this scenario, i would appreciate if some link for carrying this out step-by-step is given.Also tell me what configuration for receiving RFC has to be done on XI and R/3.

    Hi Arpit
    <b>go through these blogs for the querry</b>
    <b>For email alerts</b>
    /people/aravindh.prasanna/blog/2005/12/24/configuring-scenario-specific-e-mail-alerts-in-xi-ccms-part-2
    /people/aravindh.prasanna/blog/2006/02/20/configuring-scenario-specific-e-mail-alerts-in-xi-ccms-part-3
    /people/sap.user72/blog/2005/01/14/alert-management--improving-monitoring-of-your-landscape
    /people/michal.krawczyk2/blog/2005/09/09/xi-alerts--step-by-step
    You have to do SMTP Configuration for EMail and SMS.....
    http://help.sap.com/saphelp_nw04/helpdata/en/af/73563c1e734f0fe10000000a114084/content.htm
    Thanks !!

  • Requirements for file to multi file scenario

    Hi,
    Please tell me what are the System Requirements(of XI System) for running of file to multi-file scenarios.
    Also are there more requirements for some other similar scanarios.

    refer  this blog
    /people/sravya.talanki2/blog/2005/08/16/configuring-generic-sender-file-cc-adapter
    1. If u want to split the file coming from the sender, the u will have to use multi-mapping.
    /people/jin.shin/blog/2006/02/07/multi-mapping-without-bpm--yes-it146s-possible
    2. If u want to send the same file to all the receivers then it would be better to go for configuring multiple receivers in the same receiver determination step.
    Questions are welcome here!!
    <b>Also mark helpful answers by rewarding points </b>
    Thanks,
    Abhishek Agrahari

  • 2008 1099 forms and file layout

    Has anyone heard anything from SAP on new file layout and forms for 2008 1099 reporting?   Note 1249174 states it is available 1st week in Dec.

    Hi Cintia,
    I attempted to implement the note via SNOTE.  I get the message 'cannot be implemented' probably because the attachment is a zipped file and not an R/3 object of some sort. I then downloaded the zip file to my desktop.  The zip file contains two .p6b files.  What txn do you use to import the files? SMARTFORMS?
    Thanks,
    Tess

  • Retain multi-page layout when exporting to PDF

    I have created a multi-page layout, I want to export this to PDF but retain the multi-page view so the client can easily understand how it will look. Currently it exports to single pages rather than the nice 3 page spread I have created.

    Actually it seems it doesn't need to be created as facing pages, as long as you have the doc set not to shuffle and you've dragged the pages together into a single unit. Check the "Spreads" box in the export dialog.

  • I just want to share files

    I'm upgrading because we need an application that only runs on the server.
    But I just want to share files and we're all friends so when I create a document someone else should be able to modify it and not get a message that it's read-only. I made the user account and I made a group. I put all the users in the same group but I still not able to collaborate.
    Multi-user for multi security, but we just want to get work done!

    You need to add an Access Control List (ACL) entry to the share point on which your group needs read & write access:
    1. Enable ACLs for the volume that houses the share point (shared folder): Click Sharing in Workgroup Manager, then click All. Locate the volume and check "enable access controls on volume," then click Apply.
    2. Click Share Points and select the desired share point. In the ACL list in the Access section, click the Users & Groups button and drag your group into the list. Choose "Read & Write" from the pop-up menu and verify that the inherit settings apply to all child files and folders as well as the parent (inherited will be no). Apply changes.
    3. If you already have files or folders in the share point, mount that share point on a client computer and copy each file/folder off, delete it, then copy it back to the share point. This way, it will inherit the ACL information you set in step 2. From now on, new files created in the share point (or copied to it) will inherit the privileges set in step 2.
    For more information, please see: http://discussions.apple.com/thread.jspa?messageID=648307&#648307
    --Gerrit

  • Jdev:Row level control in multi-row layout

    Hi,
    I have a multi-row layout wherein I am displaying 10 rows. I have an "Add Rows" button. When I click on "Add Rows", I want a new row to come up which is in editable mode.
    But when I am doing it, all the 10 rows also become editable.
    Is there any way to enable only the new row in Jdeveloper?
    Any inputs will be of great help.
    Thanks,
    Ashu.

    Hi Frank,
    The screen is a search page,( and Construction Mode property of region is autoCustomizationCriteria) The columns in the table are either Message text input or lov input and we have made them non editable using OAMessageTextInputBean (or OAMessageLovInputBean). All column are set read only as false initailly. We have tried making the columns editable and try to give the read only property dynamically (using a transient column) but that option is also not working. Please advise.
    Regards,
    Ashu.

  • How should implement multi-thread in single-threaded Operating system using

    How should implement multi-thread in single-threaded Operating system using java?
    Java supports "Multi-threading".Is there is any way run the multiple threads (Implementing multi threading) using java in a Single-threaded Operating system (That is the operating system does not support for multi-threading).

    Previous questions from OP suggest they are using J2ME, so the question might be possible.
    806437 wrote:
    How should implement multi-thread in single-threaded Operating system using java?
    What is the actual question/problem?
    A java app doesn't do threads or not do threads. It uses classes. The VM does threads.
    So if you have a platform that does not have threads and you want to support the thread class then the VM, not a java app, must provide some pseudo mechanism, such as green threads, to support that.
    If your question is about java code and not the VM then you must build a task engine and insure that the tasks are of short enough duration that it is an effective use for your system.

Maybe you are looking for