Multiple Groups display ion same line

Hi
I have an XML template where there 4 groups. Currently it is displaying each group on each line. But I want on the same line all of the groups except the first one. How to accomplish this.
current format
G_Buyer: Buyer_name
G_Vendor: Vendor Name
G_Header col 1 col2
G_Line col4 col 4
But I need to display in this format
Buyer: Buyer_name
Vendor_ Name col 1 col2 col3 col4
Please help
Thanks

Hi
I already have the xml grouping and can display in multiple lines. I am not able to display on the same line
<?for-each:/POXPOPAA/LIST_G_C_COMPANY/G_C_COMPANY/LIST_G_BUYER/G_BUYER?><? BUYER?><?for-each:LIST_G_SUPPLIER/G_SUPPLIER?><?VENDOR?><?for-each:LIST_G_PO_NUMBER_RELEASE/G_PO_NUMBER_RELEASE?>
<?PO_NUMBER_RELEASE?><?for-each:LIST_G_SHIPMENT/G_SHIPMENT?><?LINE_NUM?><?end for-each?><?end for-each?><?end for-each?><?end for-each?>
<?xml version="1.0" encoding="UTF-8" ?>
<!-- Generated by Oracle Reports version 6.0.8.28.0 -->
<POXPOPAA>
  <LIST_G_C_COMPANY>
    <G_C_COMPANY>
      <C_COMPANY>ABC LTD</C_COMPANY>
          <LIST_G_BUYER>
             <G_BUYER>
          <BUYER>Buyer f</BUYER>
               <LIST_G_SUPPLIER>
            <G_SUPPLIER>
              <POV_VENDOR_NAME_PAPF_FULL_NAME>name 1</POV_VENDOR_NAME_PAPF_FULL_NAME>
              <VENDOR>name 12</VENDOR>
              <LIST_G_PO_NUMBER_RELEASE>
                <G_PO_NUMBER_RELEASE>
                   <PO_NUMBER_RELEASE>725</PO_NUMBER_RELEASE>
                  <LIST_G_PREPARER_ID>
                   <FULL_NAME> John De </FULL_NAME>
                  </LIST_G_PREPARER_ID>
                  <LIST_G_SHIPMENT>
                    <G_SHIPMENT>
                      <LINE_DESCRIPTION>Other fees and services</LINE_DESCRIPTION>
                       <UNIT_PRICE>1</UNIT_PRICE>
                      <JOIN_RELEASE_ID>-1</JOIN_RELEASE_ID>
                    </G_SHIPMENT>
                  </LIST_G_SHIPMENT>
                  </G_PO_NUMBER_RELEASE>
              </LIST_G_PO_NUMBER_RELEASE>
              <CF_BUYER_FORMULA></CF_BUYER_FORMULA>
            </G_SUPPLIER>
            <G_SUPPLIER>
                       <POV_VENDOR_NAME_PAPF_FULL_NAME>Matte</POV_VENDOR_NAME_PAPF_FULL_NAME>
                       <VENDOR>name 3</VENDOR>
                       <LIST_G_PO_NUMBER_RELEASE>
                         <G_PO_NUMBER_RELEASE>
                            <PO_NUMBER_RELEASE>725</PO_NUMBER_RELEASE>
                           <LIST_G_PREPARER_ID>
                           </LIST_G_PREPARER_ID>
                           <LIST_G_SHIPMENT>
                             <G_SHIPMENT>
                               <LINE_DESCRIPTION>Other fees and services</LINE_DESCRIPTION>
                                <UNIT_PRICE>1</UNIT_PRICE>
                               <JOIN_RELEASE_ID>-1</JOIN_RELEASE_ID>
                             </G_SHIPMENT>
                           </LIST_G_SHIPMENT>
                           </G_PO_NUMBER_RELEASE>
                       </LIST_G_PO_NUMBER_RELEASE>
                       <CF_BUYER_FORMULA></CF_BUYER_FORMULA>
            </G_SUPPLIER>
          </LIST_G_SUPPLIER>
        </G_BUYER>
        </LIST_G_BUYER>
    </G_C_COMPANY>
  </LIST_G_C_COMPANY>
  <COMPANY_NAME>ABC LTD</COMPANY_NAME>
  <COUNT_RECORDS>71</COUNT_RECORDS>
  <CP_BUYER>kumar p</CP_BUYER>
  <CF_BUYER></CF_BUYER>
</POXPOPAA>

Similar Messages

  • How would I go about adding multiple rectangles using the same lines of code?

    How would I go about adding multiple rectangles using the same lines of code? I would prefer to just run through a set of code every time I need a polygon. If I just have to create multiple polygon adding statements that's fine but I'd prefer just 1.

    >>How would I go about adding multiple rectangles using the same lines of code?
    You could create a method that creates and returns x number of Rectangle elements:
    public IEnumerable<Rectangle> CreateRectangles(int numberOfRectsToCreate)
    for (int i = 0; i < numberOfRectsToCreate; ++i)
    Rectangle rect = new Rectangle();
    rect.Fill = Brushes.Blue;
    rect.Width = 100;
    rect.Height = 100;
    yield return rect;
    ..and then call this method from anywhere in your code:
    IEnumerable<Rectangle> rects = CreateRectangles(5);
    foreach (Rectangle rect in rects)
    //add to StackPanel or do whatever with the Rectangle elements:
    yourStackPanel.Children.Add(rect);
    >>If I just have to create multiple polygon adding statements that's fine but I'd prefer just 1.
    When adding Point objects to a Polygon you can only add one per call to the Add method but you could call the Add method inside a loop, e.g:
    for(int i = 0; i < 10; ++i)
    //add to StackPanel or do whatever with the Rectangle elements:
    Polygon p = new Polygon();
    p.Points.Add(new Point());
    Please remember to close your threads by marking helpful posts as answer and then start a new thread if you have a new question. Please don't post several questions in the same thread.

  • Adding Multiple Questions On The Same Line

    Hi,
    I am creating my first form from scratch and would like to know how to add multiple quoestions on the same line.  for example
    Home Phone                 Work Phone           Cell Phone                  Email Address
    I know it sounds pretty basic but I seem to be stuck
    Thanks

    Hi,
    Please refer to the following post:
    http://forums.adobe.com/message/5665660
    Regards,
    Brian

  • Want null radio group item on same line with other horizontal radio sels

    I have a 4 selection radio group. They need to go horizontally. And I got that with 4 "columns". If a selection needed to be reversed to null there needs to be a selection for that function. The "display null value" works great for that. But there's just one thing,
    the null selection appears first on a line by itself. On the next line are the rest of the radio selections.
    what's the trick to getting the null selection on the same line as the rest of them? (Ideally at the end).
    I've been looking but I can't find the answer. (We need an faq for this kind of thing.)

    Hi,
    That depends on what you are using to generate the radio buttons.
    If you are using a static list, do something like:
    STATIC2:A;A,B;B,C;C,D;D,None;The "None;" at the end will generate a "None" radio button with a null return value
    If you are using SQL, do something like:
    SELECT ENAME d, EMPNO r
    FROM EMP
    UNION ALL
    SELECT 'None' d, NULL r
    FROM DUALThe second SELECT will append a "None" radio button with a null return value
    In either case, untick the "Display Null Values" option as it is no longer needed. Note that this option creates a separate TR row in the table that contains the radio buttons, so would always appear on a separate row from the other radio buttons.
    Andy

  • Need to get 2 fields displaying on same line, but close together

    hi -- I have 2 related fields that I want to display on the same line -- the first has length of 10, the second length of 20.
    On the same page, I also have some fields that are length 100.
    Let's call my first field ID and my second field NAME. I want NAME to display quite close to ID (maybe about 5 characters apart).
    I have its Begin On New Line = NO in display attritutes, Field = YES, and col and row span = 1.
    But the field of length 100 -- let's call it BIG -- causes problems. NAME displays way out to the right, beyond the end of BIG.
    I've tried setting the column span on BIG to 3 or 4; it helps a bit, but not much.
    I'm not sure how column widths on a page (if there is such a thing) are defined, but I'd like to get NAME displaying in the
    column after ID (or close to it, whatever will help me do this), where the space between ID and NAME is maybe 5 or 10 characters.
    How can I do this?
    Thanks much,
    carol

    hi Denes -- I've looked extensively at your example, and I think I understand conceptually what needs to happen. But I'm not
    quite getting yet. I've been playing around alot with the column span of the various items on my page... I'm wondering if you'd
    take a look at something I posted on apex.oracle.com. (workspace dew_mir, user [email protected], pswd labitu). Application 30636
    Field LOV Display, page 2.
    Of the left fields, Site Name, Site Common Name and Description are col span of 3. Latitude, Longitude, Elevation, Date Time Loaded
    and Date Format are col span of 2. The rest (the short ID fields) are 1.
    Objecttype Name and Lat Name represent the fields I want displaying further to the left. I'd expect Objecttype Name to
    be rendered after the end of the first column, which I would think would be just to the left of the short ID fields. Instead,
    it looks like it starts after the 2 column fields. For Lat Name, I'd expect that to be rendered at the end of the second column,
    which I'd think would be just to the left of the lat/long/elevation fields, but it's after the 3 column fields.
    Clearly there's something I don't understand about how columns are set up.
    Thanks,
    Carol

  • IOS 8 creating multiple group messages with same recipients

    After updating to iOS 8.0, my iPhone 5s has started creating multiple group messages with the same recipients. For example, my phone has created three group threads with the exact same people in it. Different friends' messages go to different threads. It is terrible confusing and annoying. It has done this with several of my group messages. Deleting the duplicate threads have not worked. They keep recreating themselves when certain people text the group.
    Any suggestions? This has been a problem for many of my friends as well.

    Hi hkapn,
    Do you and your wife use the same Apple ID and are connected to the same wifi network?  Your phone ringing to multiple devices is called Continuity and is a feature of iOS8. https://www.apple.com/ios/whats-new/continuity/
    Essentially, it allows you to use your iPhone cellular connection on all of your iOS8 devices: iPhone, iPad, Mac computers with Yosemite.  On some devices the call will look like it is coming through FaceTime, but likely on your wife's iPhone it just looked like a regular call.
    Since your iPhone was "hosting" the phone call through it's own cellular connection, you were able to pick it up after your wife answered, which caused your wife's phone to disconnect.  This is called Handoff and is also a feature of iOS8.
    You can turn off Continuity if you'd like, but you could also look into getting your wife her own Apple ID.  I'm guessing you were sharing one so that you didn't have to make purchases twice.  Also in iOS8, there is a feature called Family Sharing which allows you to link multiple Apple IDs and share purchases (among other things).
    In regards to the group text message issue, as far as I can tell, splitting group messages is NOT a feature.   I agree that there should be an answer to this already!

  • Pages 5.2 multiple styles on the same line

    I am using Pages 5.2 on OSX Mavericks.  I would to use multiple styles on one line for research papers for school.  For instance, I would like to be able to do this:
    in Pages.  However, I have found that I need to create multiple styles to accomplish this same effect, and when I try to employ them, one style takes over the paragraph.  For instance, it will all be black and Times New Roman or red and GentiumAlt or green and SBL Hebrew.  Is there a way to do what I want, or do I need to delay switching over to Pages until some more updates come out?  I really would like to switch completely over now that RTL seems to be fixed, because the interface is so much easier than other word processors, and I confess to being technologically inept.
    Thank you in advance for your help.

    All the templates have Character Styles built into them. The default is always set to "None". But I have to select a Character Style before I can create a new one. What template are you using? Here are a couple of screenshots – before and after. The first shows the + sign grayed out. The second one shows the + sign activated, because I selected a Character Style, hence I can now create a new one.

  • How to import multiple elements into the same line in structure Framemaker (i.e. no carriage return between elements).

    I have a successful import process going now (DTD, EDD, ReadWriteRules, and Template) that imports a number of elements, but each onto a separate line. I now need to import three elements in a row on a single line. How do I set up to do that?

    Dear Wild,
    A container element a structured document can either be a paragraph element, that contains one or more complete FrameMaker paragraphs (elements corresponding to chapters, titles, and list items, for instance, are typically paragraph elements), or a text range element, with content that comprises part of a paragraph. An EDD doesn't need to identify paragraph elements since containers are paragraphs by default. You make an element a text range with a text format rule that specifies TextRangeFormatting.
    In your case, if you have a wrapper element that contains the three elements you want to appear on a single line, in the EDD, add a text format rule for the three inline elements that specifies TextRangeFormatting; specify the formatting of the overall paragraph in the element definition for the wrapper. If you don't have a wrapper, though, the overall paragraph will inherit formatting from whatever the containing element is; the containing element may be the document's root element or a major division such as a chapter or section. If that element's formatting is not what you want here, you can leave the "inline" elements as separate paragraph so that you can specify their formatting, but make the first two run-in heads (which is done in the Placement property of the pagination properties).
    --Lynne

  • Report Template Help - Vertical report with multiple rows on the same line.

    I am tearing my hair out trying to figure a way to do this. I want a vertical report, but with the rows across the page rather than down it.
    e.g.
    ROW1    ROW2    ROW3    ROW4   ROW5
    ROW1    ROW2    ROW3    ROW4   ROW5
    ROW1    ROW2    ROW3    ROW4   ROW5
    ROW1    ROW2    ROW3    ROW4   ROW5
    ROW1    ROW2    ROW3    ROW4   ROW5
    ROW1    ROW2    ROW3    ROW4   ROW5
    ROW1    ROW2    ROW3    ROW4   ROW5
    ROW1    ROW2    ROW3    ROW4   ROW5Has anyone managed to do this?

    Use a custom named column report template. The template could generate either:
    <li> a table with one physical <tt>tr</tt> row, with your "columns" being the logical "rows" of the report rendered as the <tt>td</tt>s within the row
    <li> a list of lists using CSS to render them side-by-side via <tt>float</tt> or <tt>inline-block</tt> (Some examples of similar techniques)

  • Multiple groups of the same genre

    Ok I just synced my Iphone with my library and when I went to my music I selected genres and there are two hip hop/rap catagories. What happened during my sync and can I possibly fix it?

    reset your dock preferences. delete the file homedirectory/library/preferences/com.apple.dock.plist and log out/in. your dock, spaces and exposé will be reset to the defaults. see if the problem goes away.

  • How can I place multiple choice boxes on the same line instead of in a column?

    I know it is possible to place multiple fields on the same line, using drag and drop.
    But to save space, I would like to have 3 or 4 multiple choice boxes next to each other on one line. 
    Is this possible, and if so, how?
    Thanks
    Peter

    You may click on the "+" button to the right of the first multiple choice box to add more in the same line. When you hover over the button, the tooltip says "insert item beside".

  • Cross tab template Formatting. Two Row Groups cannot be on the same line

    Hi
    I have a cross tab template(Vetsriselvan favor) where it has Multiple Row groups. In the RTF template I want them to be on the same line but somehow it works only if they are one below the other. In this template Comp is the First Group Row then Acct is 2nd Group Row and Expense is the 3rd Group Row. Period is the Column. I want all the Group rows start from the same line instead one below the other. Is it possible to do it?
    Comp Acct Expense Period
    &lt;?for-each-group:/BIOFASPRJ/LIST_G_SUMDEPR1PERACCT/ &lt;[?for-each-group@column:G_PERIOD_NAME[./PERIOD_NAME!=''];PERIOD_NAME|mailto:?for-each-group@column:G_PERIOD_NAME[./PERIOD_NAME!=''];PERIOD_NAME]?&gt;
    G_SUMDEPR1PERACCT/LIST_G_COMP_CODE/G_COMP_CODE;./COMP_CODE?&gt; F_comp
    &lt;?for-each-group:./LIST_G_ACCT/G_ACCT [LIST_G_DESCRIPTION/G_DESCRIPTION/LIST_G_PERIOD_NAME/G_PERIOD_NAME/LIST_G_DEPR1/G_DEPR1];ACCT?&gt; &lt;?variable@incontext:G1;current-group()?&gt;acc
    &lt;?for-each-group:./LIST_G_DESCRIPTION/G_DESCRIPTION[LIST_G_PERIOD_NAME/G_PERIOD_NAME/LIST_G_DEPR1/G_DEPR1];DESCRIPTION?&gt;&lt;?variable@incontext:G2;current-group()?&gt;acc

    Upload the template here
    http://apps2fusion.com/forums/viewforum.php?f=60
    or
    Send me the template and xml to fusionDOTobjectATgmail.com

  • There are multiple users with the same display name

    Hi,
    We have a user and when she get an item assigned to her she sees the following alert:
    "There are multiple users with the same display name USERNAME and at least one of them does not have read permissions to some of the files"
    Now I looked in the database and when I run the following query with the username:
     SELECT     
         [ProviderDisplayName]  
        ,[DisplayName]  
        ,[HasDisplayName]  
        ,[Domain]  
        ,[AccountName]  
        ,[UniqueUserId]  
        ,[LastSync]  
      FROM [Tfs_Configuration].[dbo].[tbl_Identity] where displayname like '%USERNAME%'  
    Then I get 2 same usernames back, How can I get rid of one of them ? When I access TFS trough the portal I only find 1 occurence of this user.
    We use VS2013 and TFS2013 update 4
    Best regards

    Hi DSW,  
    Thanks for your post.
    In your query result, please check if these two users have the same Account Name. if they are two different Account Name in result, it indicate there’s two users have the same display name in your AD, please check that two users’ information in
    your AD. We suggest change one user’s display name in AD.  
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • A few days ago my TV show and movie displays went whacky-the shows are no longer in alpha order, there are multiple listings of the same show, the pictures are random-including album covers.  I downloaded latest version.  Any ideas??

    A few days ago my TV show and movie displays went whacky-the shows are no longer in alpha order, there are multiple listings of the same show, the pictures are random-including album covers.  I downloaded latest version & no change.  Any ideas??

    ME TOO.
    I think mine are all still in alphabetical order, but :
    * movies I deleted from my library and told "hide this purchase in the cloud" are showing up again. If I try to play them, I get the "cannot find the file in its proper location, would you like to locate it" error message.
    * for movies that have "iTunes Extras," the extras show up as a separate item, with another copy of the movie artwork. Most of these I believe I had DELETED the "iTunes Extras" anyway.
    * Items are showing up multiple times.
    * A few MUSIC ALBUMS are listed in my Movies section.
    * Some movies (I believe ones that I deleted off my HD but are still in the cloud) are showing random album covers instead of their proper artwork.
    * Just rented a movie, and it didn't show up anywhere in my library. It downloaded properly and completely, was in a suitably labeled folder in my iTunes/Media/Movies section, but didn't show up in any section of the library (or via a library search). Had to manually find it and tell it to open the file using iTunes.
    Running the latest version, even checked for updates. No other changes made lately since the last round of apple software updates. This was wonky before the latest small update to iTunes - now it's even wonkier. And it is very, VERY effing annoying.

  • How to display multiple reports at the same time

    Hi,
    I'm trying to display multiple reports at the same time, each one in separates tabs or windows using Forms 11g 11.1.1.6
    I have a button which has a call to a procedure which makes use of rp2rro library to show the specific reports, for example:
    call_report('report1');
    call_report('report2');
    call_report('report3');
    call_report('report4');
    The main problem is that, just the last report is been displayed.
    Is there some way to display report1, report2 etc in separate tabs or windows ??
    Regards
    Carlos

    You shouldn't have a problem calling different reports at once. As long as you're using Forms 11g they show up in different windows.
    The question is how you are calling the report.
    Here is how I manipulate it.
    After I pass parameters with the ADD_PARAMETER built-in I set some key values (destype, desformat, desname) with the RP2RRO's procedures.
    Finally calling RP2RRO.RP2RRO_RUN_PRODUCT and then WEB.SHOW_DOCUMENT passing the correct procedure parameters the report comes up in a window. If you repeat the above changing the appropriate variables (the report_name in the RP2RRO_RUN_PRODUCT and so on) you can get multiple reports in different windows.

Maybe you are looking for

  • Sound clip to edit profanity???

    Folks- I feel like this might be the wrong place to ask this question, but I've going nuts trying to locate the standardized "beep" that is so commonly used to edit profanity in television shows. I figured it would be somewhere in the studio package

  • Contrast/brightness calibration issue

    Hello I have an Apple Studio Display 17-inch CRT with a VGA connection to a recently installed Radeon 9800; and before that an ATI Rage 128. For a long time now I have not been able to calibrate contrast or brightness in Display Calibration Assistant

  • None of the uninstalling add-ons methods worked, have 7 disabled extensions with no uninstall button

    Firefox updated to FF6.0 basically all of my installed add-ons were disabled because they are not compatible with FF6.0. All of the disabled add-ons do not have uninstall buttons. There were no folders in the install/extension folder. Globally, there

  • Using FOP from Oracle PL/SQL

    Hello, I'm trying to use Oracle XML DB features in order to get a PDF document and Apache FOP is a very good tool. Can anybody give some code example about FOP from an oracle database (10g) ?? Thanks... Lionel

  • What do I do when my MacBook Air is running but the screen won't turn on?

    I have had my MacBook Air less than a year and have been using it daily and have had no problems with it until this morning. I opened it and expected my login screen to appear as it usually does and the screen remained black. The computer is running