Transformation issue, need to break the lines.

Hi,
i had requirement in which i need to read only headers in file and write it into single file.
so i used transformation activity in which i mapped only header. But my issue is all the header records are written in single line.
I need it in separate lines. Please guide me how to break the lines in xslt

Here there is a post about the same: https://forums.oracle.com/thread/505159
Please, share some sample input, desired output, as well as the XSL you already built, in case you need more help.
Regards
Luis F Heckler

Similar Messages

  • I need to break the install process

    Hi,
    I recently tried to run an archive and install on my G5 Mac - Dual 2ghz - 1 gb ram OSX Version 10.4.11.
    Unfortunately, I am missing the "correct" version of disk 2. As a result, I cannot continue with the install. Nor can I do anything with this drive, since it goes straight into the installer and asks for disk 2.
    I can put the drive in another identical Mac G5 and see all of the data on the drive including the "Previous Versions" folder, and the "new" system folder.
    If I delete the "new" system folder and put it back into Mac-A I get a Kernal panic - missing drivers screen.
    So, either
    A: How do I break the boot process to start over with a different set on the original machine; or
    B: what file do I need to delete from the hard drive (using the second machine) to allow me to restart the process (using a different OS ver.?
    Thanks!

    You really can't break the installation process midstream. You can attempt to fix a mistaken install using an Archive and Install, and combo update back to the version you were at last, but that's dependent on their being enough space on your system*:
    http://www.macmaps.com/diskfull.html
    After an archive and install, you can migrate data back to your new system that is usable. Frequently added drivers and plugins are not usable, but applications may be usable from a previous system.
    This is why it is so important you backup your data before installing anything*:
    http://www.macmaps.com/backup.html
    If you haven't you can backup even a shoddy system and restore elements such as documents, but don't expect anything else to be usable.
    - * Links to my pages may give me compensation.

  • How to break the line in Oracle SQL?

    Hi All,
    I have a long text with comma separated value. I am storing that in to one custom table as it is. But i want to store that with next line i mean split the comma separated line and insert into the table table with next line or new line character.
    For example: My long text is A, B, C, D, E, F
    I need to insert like below in the table.
    A
    B
    C
    D
    E
    F

    We'd also like the reverse functionality: to have the ability to take a single comma-delimited value and treat it as if it were a column in a table. We can take advantage of the TABLE SQL function and PL/SQL function tables to do this quite easily, but first, we must define the result type to be a TABLE type of the largest possible string.
    create or replace type split_tbl as table of varchar2(32767);
    show errors;
    create or replace function split
    p_list varchar2,
    p_del varchar2 := ','
    ) return split_tbl pipelined
    is
    l_idx pls_integer;
    l_list varchar2(32767) := p_list;
    AA
    l_value varchar2(32767);
    begin
    loop
    l_idx := instr(l_list,p_del);
    if l_idx > 0 then
    pipe row(substr(l_list,1,l_idx-1));
    l_list := substr(l_list,l_idx+length(p_del));
    else
    pipe row(l_list);
    exit;
    end if;
    end loop;
    return;
    end split;
    show errors;
    With this function, I can run a query like this:
    SQL> select * from table(split('one,two,three'));
    one
    two
    three

  • Authorization issue - need to know the Role providing this access

    Hi,
    User is facing an authorization issue below:
    "You donot have authorization to display DataSource 2LIS_06_INV, Component MM" and
    "You donot have authorization to display DataSource 2LIS_11_VAITM, Component SD"
    Kindly let me know what Role is missing from the user's profile?
    Thanks and Regards,
    Sachin
    SAP Security Consultant

    Hi Murali,
    It helped.
    I found out the BW Data Support role for the object S_RO_OSOA and when checked it was already in user's profile but the missing part was user Comparision for that role.
    I did user comparision and then user is able to view the below DataSources....
    Thanks for your help, it triggered to find the root cause.
    Thanks
    Sachin

  • Using the enter key to break the line

    Numbers 3.2, any way to edit this keyboard shortcut? It's not convenient to use alt-enter all the time? Such a simple thing to ask, I can't actually believe this app does not have this feature.

    I've looked but am having trouble finding a preference or some other setting in Numbers 2 (the previous version) that allows remapping this key.
    You can easily modify keyboard shortcuts for Numbers 3 for any menu pick just the way you can for any other OS X application via System Preferences > Keyboard > Shortcuts.
    But what you are discussing here is not a keyboard shortcut.  It's entering a specific character into text, not executing a command.  Remapping your keyboard may do the trick for you.  Have you tried?
    SG
    P.S. We're all just fellow users here.  If you wish to communicate with Apple, choose Numbers > Provide Numbers Feedback in your menu.

  • Find Grep And Ignore the line break

    Hi Guys!,
    In my document having the text of "application \nfor you"
    Then, I need to ignore the line break in entire text indesign document.
    please help me!
    Thanks by
    John Peter.

    hi,
    I am find only words
    the line break wherever it is used in the document. so i am ignore the \n
    Document text : \napplication \nfor \nyou      ----this sentence contain many line breaks
    I will find the text of above document text.
    Find what of grep preferences: (application for you)(--here what to do for ignore \n)
    Please help me.
    thanks,
    John peter.

  • How to break the document line items in cross company code document

    Hi,
    Currently the cross company code posting is summing up all the line items and posting as a single line item as long as the line items are having the same tax code.
    The system will break the line items only if there are non-identical tax codes. How can i change this default behaviour to break the line items in all cases?
    http://wikisend.com/download/436966/2.zip

    It is the standard SAP behaviour to sum up all the identical tax code values.

  • Breaking the string into different columns

    Hi Guys,
    I need to break the following string into different columns
    'XXXXX.0001.09011.0001.00002.03.0004.0005.0006.00007.'
    I am trying to write it using instr and substr , but having some issues .
    Is there any other way to do this. If not can someone help me , below is the query that i am working on
    SELECT SUBSTR ('XXXXXX.0001.09011.0001.00002.03.0004.0005.0006.00007', 1, INSTR ('XXXXXX.0001.09011.0001.00002.03.0004.0005.0006.00007', '.', 1) - 1) col1,
    SUBSTR ('XXXXXX.0001.09011.0001.00002.03.0004.0005.0006.00007',
    INSTR ('XXXXXX.0001.09011.0001.00002.03.0004.0005.0006.00007', '.', 1) + 1,
    INSTR ('XXXXXX.0001.09011.0001.00002.03.0004.0005.0006.00007', '.', 1, 2)
    - INSTR ('XXXXXX.0001.09011.0001.00002.03.0004.0005.0006.00007', '.', 1)
    - 1
    ) col2,
    SUBSTR ('XXXXXX.0001.09011.0001.00002.03.0004.0005.0006.00007',
    INSTR ('XXXXXX.0001.09011.0001.00002.03.0004.0005.0006.00007', '.', -1, 2) + 1,
    INSTR ('XXXXXX.0001.09011.0001.00002.03.0004.0005.0006.00007', '.', -1, 1)
    - INSTR ('XXXXXX.0001.09011.0001.00002.03.0004.0005.0006.00007', '.', -1, 2)
    - 1
    ) col3
    from dual
    It is very urgent.
    Thanks in advance.

    npejavar wrote:
    It is very urgent.
    It doesn't look urgent, you could simply read the manuals for instr and substr or describe any issues or errors you are having, or post sample data so people could help you more easily, or format your code so it is more readable, but you don't bother to do any of those things so if it isn't important to you to extend any effort, why would it be important to us?
    If it was really urgent it would be a violation of the conditions of use of these forums.
    http://www.catb.org/esr/faqs/smart-questions.html#urgent
    http://www.oracle.com/html/terms.html
    >
    4. Use of Community Services
    Community Services are provided as a convenience to users and Oracle is not obligated to provide any technical support for, or participate in, Community Services. While Community Services may include information regarding Oracle products and services, including information from Oracle employees, they are not an official customer support channel for Oracle.
    You may use Community Services subject to the following: (a) Community Services may be used solely for your personal, informational, noncommercial purposes; (b) Content provided on or through Community Services may not be redistributed; and (c) personal data about other users may not be stored or collected except where expressly authorized by Oracle

  • How can I change the colour of the line in a chart in Numbers for Ipad?

    I have placed two line charts, one in top of the other, and I need one of the lines to be Red, I can't find a way to do it.
    thanks.

    Hi Jean-Michel,
    If you dig down a few levels from the top-level Polar Plot VI, you will find vi.lib\picture\polarplt.llb\Plot Polar Data.vi. Inside this VI is a VI called "Draw Multiple Lines.vi", which has a "pen" input. This input is currently not wired, so it defaults to a line style of "Solid", and a width of "1". If you take this input and propogate it all the way up to the top-level Polar Plot VI, you can now specify the line width and style of your polar plot.
    I have submitted this as a suggestion, so perhaps we will see it in a future version of LabVIEW.
    -D
    Darren Nattinger, CLA
    LabVIEW Artisan and Nugget Penman

  • How to retrieve the Line item Text

    Hello,
    I need to retrieve the Line item Text in the PO (Material PO text). Can anyone provide me a sample code? i need to display this in a smartform.
    I could not retrive it from the Function Module READ_TEXT.
    Can any one help me regarding this?
    Regards,
    kvsskirankumar

    HI,
    Use function module READ_TEXT to fetch PO line item text by passing id, language, name and object.
    For Ex:-
    CALL FUNCTION 'READ_TEXT'
      EXPORTING
        CLIENT             = SY-MANDT
        id                      = 'F01'
        language          = 'E'
        name                 = << concatenate PO number & line item>>
        object                = EKKO
      tables
        lines                   = g_t_ltext.
    Thanks & Regards
    Sudheer Madisetty

  • Auto fill space to fill the line width

    Hi, i would like to know whether crystal report can do the below alignment.
    I got a field which have few words,i.e. sometimes 4 words, sometimes 5, or 10.
    I want a alignment which can left and right align at the same time
    for example,
    the line have below width, when the words are not enough for a full line, it will automatically add more spaces between the words, so that they can "Left" and "Right" align.
    4 words
    |                                                     |
    do      like        program      bug
    5 words
    |                                                     |
    i    want  no  more  program  bug
    THX

    hi Wong Chi,
    as Dell mentioned above, it's difficult to determine if there's only going to be one line in a field or formula. in order to count the number of lines, you need to use something like this. in that solution where only the number of lines are counted, a fixed width font is also required.
    for your particular case, once you determined the line count is equal to 1, you'd then need to figure out the number of words you have by splitting the text into an array
    split({@yourformulaorfield}, ' ')
    using a space as the delimiter and then you'd need to figure out how many characters you need to pad the line with
    length({@yourformulaorfield})
    and then divide that by the number of words you've got
    numbervar nw:= ubound(split({@yourformulaorfield}, ' '));
    and then replace the existing spaces with the new spacing
    replace({@yourformulaorfield}, ' ', replicatestring(' ', nw))
    by the way, if you're wondering if this is a bug, it's not. ms word uses the same behaviour with single lines as well...i.e. it doesn't justify a single line...at least in my version it didn't.
    -jamie

  • How to make scaleX in mx:LineSeries to scale the lines from both ends

    I'm using LineChart. I need to shrink the line a little so I set scaleX="0.95". It shrinks on right end of the line, but not the left end.
    I was hoping it uses the center as the fixed point and shrinks line from both directions. Is there a way to do it?

    Hi,
    use SeriesZoom Effect.

  • Where is the line tool?

    Help! I'm using Photoshop Elements 9, and I need to use the line tool, but I'm darned if I can find it.
    I know it should be in the upper-left part of the screen, above the tools, but no matter which tool I select
    (including the rectangle tool), there is simply no sign of the line tool. How do I get it to appear?
    Thanks,
    elinwm

    Left click at a starting point, keep holding down the mouse button. press the shift key on the keyboard,  and drag out the first line.
    Repeat for the other 2 sides of the triangle.
    Note that each side is a separate shape layer in the layers palette
    You can also get a straight line by holding down the shift key with the brush tool, or the eraser tool.
    Post back with your progress.

  • How to break a line in resource files?

    I want to read a paragraph from a resource file and show them in Java JTextArea. But the text was shown in one line. How can I break the line?
    For example: This is the resource file:
    about=ABC \n DEFGHT
    I want to break the line after "ABC", but it doesn't work. The text read to Java application is:
    ABC DEFGHT
    They are in one line and the "\n" is lost?

    you can use ascii characters for space instead of using "\n"

  • I need help with the .xinitrc (first time arch user)

    I just installed Arch on a virtual machine and i am following the beginner guide step by step.
    I have reached the point that i enable gnome-session to start automatically when you invoke startx.
    The guide says i need to add the line "exec ck-launch-session gnome-session" in the xinitrc file.
    I tried doing this in the root account and the system just doesnt login to gnome. I tried doing it using the normal user and the files just disappears, and cannot be edited.
    I looked around on the internet and found that typing startx /usr/bin/gnome-session startx gnome, but it doesnot replace startx or starts automatically.
    this is my first time using arch and i would like help.
    Thank you.

    You probably think the file "disappears" because .xinitrc is a "dot" file, which normally doesn't show up in an ls listing. Any file whose name begins with a '.' is a "hidden" file and generally doesn't show up in any listing. 'ls -a' to see it.
    And please note that it is the file .xinitrc - ie, it begins with a period. This is the file that is looked for by X at start up.

Maybe you are looking for

  • Trying to install 10.3 from current 10.2.8 on G3

    We have a G3 which was used in school (daughter teaches 5-6 yr-olds). We want to continue using it for the less exotic functions, but working at its best capability. Mac has 400Mhz Bus 100Mhz, Cache 512, Model says iMac (version =2.2) SDRAM 256 and 6

  • How do I close the white box with a keyhole, gear, and lock that sometimes randomly pops up in the upper left of my screen?

    Every now and then, a weird white box with a keyhole, gear, and lock pops up in the upper left of my screen. I can't seem to close it or move it, and when I try to use another application, it stays there and blocks features. The only way I've found t

  • VPN and D-Link DI-624

    How do i set up my D-Link DI-624 router with VPN. What do i use for my server address and were can i find the server address.

  • IDocs for Park Documents

    Hello All, We are having a legal requirement in Turkey to which fulfill, we need the credit memos coming from one SAP instance as an iDoc, to be posted as Park Documents on the receiving SAP instance. The receiving SAP instance is on 4.5 version. Do

  • Want to connect MDM server

    hi friends, I want to connect MDM server using JCO can you please provide me the sample java code for that. Regards, Venki.