Column displays going down. Need it to go across and group together.

I have an Oracle report I've created and I'm trying to get certain columns of data to display only for the first row and grouped together going horizontally. It's hard for me to explain in words what I need to be done. I could email some screen shots explaining if someone is willing to help me. Thanks in advance!

What about using the report functionality itself?
Create the report as Group Left vendor wise and for the Repeating Frams of field Class_Code set the Print Direction to Across/Down and the Horizontal Elasticity to Variable and for all the Parent Frames same. Then it should work as expected.
Or keep the report tabular and use the formula column as below...
DECLARE
  CURSOR Fetch_Codes IS
  SELECT class_code
  FROM table_name
  WHERE vendor = :vendor;
  vClsCodes table_name.class_code%TYPE;
BEGIN
  FOR Get_Codes IN Fetch_codes LOOP
   vClsCodes:=vClsCodes||Get_Codes.class_code||', ';
  END LOOP;
  RETURN vClsCodes;
END;In the layout editor use this formula column as source of class codes.
-Ammad

Similar Messages

  • My wifi goes down at least once a day and I have to unplug the time capsule and reboot it and then it works fine.  Any idea why this is happening/what I can do to fix it?

    My wifi goes down at least once a day and I have to unplug the time capsule and reboot it and then it works fine.  Any idea why this is happening/what I can do to fix it?

    I was having this problem while still using Mavericks -- it started after a Mavericks update last spring.  During the initial Yosemite beta runs over the summer, it seemed to be fixed, but after the official launch in October, I had all sorts of problems keeping connected.  Its gotten a little better, but still happens to at least one of my devices every day.  Weird that we still cannot figure out why the connection keeps dropping on some devices, but not others, and then the next day, one of the devices that didn't disconnect the previous day will disconnect, but the ones that did disconnect, stay connected.  It's just sloppy, poorly written software for technology that isn't working the way it should.  If you turn off Continuity and Handoff on all your devices, you will probably see that everything stays connected.  With those turned off on all devices, TC stayed connected to everything for over a month.  The day I turned Continuity back on, all the problems started again.  It had something to do with the bluetooth version being used, the wifi routine, and Apple's AirPlay technology not quite getting along with each other.

  • The chat box goes down when i do split keyboard and I can't see what I am typing

    The chat box goes down when i do split keyboard and I can't see what I am typing

    I noticed that you responded to a very old thread about the split keyboard that I was in a couple of years ago and you asked this question about Skype and the spli keyboard.
    I Googled the question and the very first thing that I found form the Skype community was the recommendation to disable the split keyboard or just not use it, like I already stated.
    http://community.skype.com/t5/iOS-iPhone-and-iPad/Problems-in-using-Skype-with-i Pad-Mini/td-p/1376767

  • Hi, I have an iPhone 5s, recently its been a lot hotter than usual, also the battery life is going down a lot faster than usual, and it takes absolutely ages to charge up. There must be a serious problem with the battery, any ideas? thanks

    Hi, I have an iPhone 5s, recently its been a lot hotter than usual, also the battery life is going down a lot faster than usual, and it takes absolutely ages to charge up. There must be a serious problem with the battery, any ideas? thanks

    Apple can replace the battery for $79 US.
    http://support.apple.com/kb/index?page=servicefaq&product=iphone

  • When are the prices for the new Macbook Pro with Retina Display going DOWN!?

    i want to buy it but it but its almost unafordable for me!!! please lower ir down for GODS SAKE!!!

    you can send your opinion right there:
    http://www.apple.com/feedback/macbookpro.html
    i think that too!!
    but i wouldnt buy it because its not upgradable or fixable..
    i dont need 16 Gb right now, but i may need them after three years and its expensive!!
    it is dedicated for professional designers with money, not regular people

  • My battery goes down, even without using the iPad and locking it

    I've got an iPad 2 with the smart cover, but it's battery goes down quite quickly, even without using it and having locked it.

    When the screen is dark, it's still on, unless you've completely powered down.  So, things that can cause battery drain (just to name a few) could include:
    1.  Searching for a WiFi or 3G signal if not locked on to one.......
    2.  Having push on for mail, causes the iPad to seek new mail messages, eating up battery power
    3.  Having location services on can eat up battery power
    If you want to preserve the battery, shut it down when it's not going to be used for a few hours.  And if you've got a WiFi version and you're not in one place, turn WiFi off, so your iPad isn't constantly searching for a WiFi signal.

  • Hierarchy... Column Display Order Help needed

    Hi,
    Please see following query and result
    select lpad(' ',(level-1)*4,'*')||my_desc
    from my_table
    start with parent_id is null
    connect by prior my_id = parent_id
    Main1
    *****Sub111
    *********Sub112
    *****Sub121
    *********Sub122
    *************Sub123
    *****************Sub124
    *********Sub132
    *************Sub133
    *************Sub143
    *****************Sub144
    *****Sub141
    *********Sub142
    *********Sub152
    Main2
    *****Sub211
    *********Sub221
    *************Sub222
    *****************Sub223
    *************Sub232
    *****************Sub233
    *********************Sub234
    *************************Sub244
    *****************Sub252
    *********************Sub253
    *********Sub261
    *************Sub262
    How can I re-write query to get result printed like following?
    Main1*****Sub111*****Sub112
    **********Sub121*****Sub122*****Sub123*****Sub124
    *********************Sub132*****Sub133
    ********************************Sub143*****Sub144
    **********Sub141*****Sub142
    *********************Sub152
    Main2*****Sub211
    **********Sub221*****Sub222*****Sub223
    *********************Sub232*****Sub233*****Sub234
    *******************************************Sub244
    *********************Sub252*****Sub253
    **********Sub261*****Sub262
    Thanks.

    > How can I re-write query to get result printed like following?
    >
    Main1*****Sub111*****Sub112
    **********Sub121*****Sub122*****Sub123*****Sub124
    *********************Sub132*****Sub133
    ********************************Sub143*****Sub144
    **********Sub141*****Sub142
    *********************Sub152
    Main2*****Sub211
    **********Sub221*****Sub222*****Sub223
    *********************Sub232*****Sub233*****Sub234
    *******************************************Sub244
    *********************Sub252*****Sub253
    **********Sub261*****Sub262
    col path for a50
    with t as
    ( select 'Main1' as id, '' as parent from dual union all
      select 'Sub111', 'Main1'  from dual union all
      select 'Sub112', 'Sub111' from dual union all
      select 'Sub121', 'Main1'  from dual union all
      select 'Sub122', 'Sub121' from dual union all
      select 'Sub123', 'Sub122' from dual union all
      select 'Sub124', 'Sub123' from dual union all
      select 'Sub132', 'Sub121' from dual union all
      select 'Sub133', 'Sub132' from dual union all
      select 'Sub143', 'Sub132' from dual union all
      select 'Sub144', 'Sub143' from dual union all
      select 'Sub141', 'Main1'  from dual union all
      select 'Sub142', 'Sub141' from dual union all
      select 'Sub152', 'Sub141' from dual union all
      select 'Main2' , ''       from dual union all
      select 'Sub211', 'Main2'  from dual union all
      select 'Sub221', 'Main2'  from dual union all
      select 'Sub222', 'Sub221' from dual union all
      select 'Sub223', 'Sub222' from dual union all
      select 'Sub232', 'Sub221' from dual union all
      select 'Sub233', 'Sub232' from dual union all
      select 'Sub234', 'Sub233' from dual union all
      select 'Sub244', 'Sub233' from dual union all
      select 'Sub252', 'Sub221' from dual union all
      select 'Sub253', 'Sub252' from dual union all
      select 'Sub261', 'Main2'  from dual union all
      select 'Sub262', 'Sub261' from dual
    select rpad('*', length(base_path), '*') || substr(path, nvl(length(base_path), 0) + 1) as path
      from
      ( select path, flag,
            first_value(substr(path, 1, length(path) - length(id))) over (partition by root,group_no order by rn) as base_path
          from
          ( select id, rn, path, root, case when nvl(next_path, '~') not like path || '%' then 0 end as flag,
                count(case when nvl(next_path, '~') not like path || '%' then 0 end)
                  over (partition by root order by rn range between unbounded preceding and 1 preceding) as group_no
              from
              ( select id, rn, path, root, lead(path) over (partition by root order by rn) as next_path
                  from
                  ( select id, rownum as rn, rtrim(replace(sys_connect_by_path(rpad(id, 10, '*'), '~'), '~'), '*') as path,
                        replace(sys_connect_by_path(decode(level, 1, id), '~'), '~') as root
                      from t
                      start with parent is null
                      connect by parent = prior id
      where flag is not null
    PATH
    Main1*****Sub111****Sub112
    **********Sub121****Sub122****Sub123****Sub124
    ********************Sub132****Sub133
    ******************************Sub143****Sub144
    **********Sub141****Sub142
    ********************Sub152
    Main2*****Sub211
    **********Sub221****Sub222****Sub223
    ********************Sub232****Sub233****Sub234
    ****************************************Sub244
    ********************Sub252****Sub253
    **********Sub261****Sub262
    12 rows selected.

  • Pop up box for Facebook Like widget goes down - need it to go up

    Hi all
    I have put in the Facebook like button onto my website from the Muse Widgets library. My problem is that the widget is at the bottom of my website and when someone likes it the dialog box opens below the the end of the site - how can I make the dialog box open above the widget instead of below?
    Here is a link to the website - it is on the bottom right hand side in the footer - HomeMarcoPina Fragrances and Accessories

    Hi,
    Thank you for sharing the Page url,
    I am afraid, using Muse you cannot change it. But take a look to this link, they are discussing the same thing, using some CSS effect
    css - Facebook Like Widget on Fan page, Comment area out of visible area - Stack Overflow
    css - Move / Position Facebook Like Button Comment Popup - Stack Overflow
    Do let me know if you have any question.

  • Hard Drive Space goes down when I turn on AirPort and go online.

    So, when I turn the AirPort on on my MacBook Pro you can see the hard drive space go down on the bottom of a finder window. When I turn AirPort off the the GB available on the hard drive stays the same. I'm not downloading anything. that I know of. Is some virus downloading in the background that I can't control? I did a full scan with VirusBarrier Express and it says that there are no infected files on the computer. Any help would be greatly appreciated. Thanks!

    Robert Thomas123 wrote:
    when I turn the AirPort on on my MacBook Pro you can see the hard drive space go down on the bottom of a finder window.
    Welcome to Apple's discussion groups.
    Launch the Console utility and look in the "All Messages" category for repeated messages. If you see such messages but you don't understand what they mean, copy a few of them and paste them into a reply to this thread.
    Is some virus downloading in the background that I can't control?
    That's extremely doubtful.

  • Help need to write script min and group by

     I want to see min  first print date on last column  for instance Wild Attire INc  there should be 5/30/2014 for all records and for clear vision optical 2013/11/13 for all records belongs to clear vision optical integration name if only
    one record then keep same like Qball 12/1/2014
    select ISNULL(RQPPrintAmountQpYTD,0)+ISNULL(VLQPPrintAmountQpYTD,0) as [Qualified Volume 2014],isnull(PrintamountallYtd,0)+ISNULL(VLQPPrintamountALLYTD,0) as [Total Volume 2014], integration_id as [Integration ID], integration_name as [Integration Name], left([First Print Date],10) as [First Print Date] from #Po
    Qualified Volume 2014
    Total Volume 2014
    Integration Name
    First Print Date
    0
    1.93
    Qball
    12/1/2014
    34446.98
    277285.35
    Wild Attire, Inc.
    5/30/2013
    522236.08
    530125.78
    Wild Attire, Inc.
    8/22/2013
    3861.06
    40820.82
    Wild Attire, Inc.
    10/24/2014
    2087.14
    20783.46
    Wild Attire, Inc.
    10/30/2014
    1296.95
    24272.81
    Wild Attire, Inc.
    11/26/2014
    1457.96
    1512.71
    Jackeez.com LLC
    12/14/2013
    15.27
    37206.62
    PrintingforLess.com
    4/3/2014
    9109.85
    20631.28
    M.A.I.L., Inc
    12/16/2013
    294.59
    2278.32
    B2SIGN, Inc.
    11/17/2014
    37.71
    151.48
    SpiralScout LLC
    11/25/2014
    93960.2
    94110.38
    Clear Vision Optical
    11/13/2013
    140349.03
    140445.65
    Clear Vision Optical
    1/31/2014
    14898.35
    14898.35
    Clear Vision Optical
    3/18/2014
    790.59
    790.59
    Clear Vision Optical
    5/9/2014

    Hi MarkSubedi,
    Your requirement has been extracted and formatted as below, correct me if there's anything wrong.
    I want to see min first print date on last column. For instance Wild Attire INc,there should be 5/30/2014. And 2013/11/13 for all records belongs to clear vision optical integration name.If only one record then keep same like Qball 12/1/2014.
    Based on my understanding, the below code can help to achieve your requirement.
    DECLARE @Table TABLE
    ([Qualified Volume 2014] NUMERIC(18,2),
    [Total Volume 2014] NUMERIC(18,2),
    [Integration Name] VARCHAR(99),
    [First Print Date] DATE
    INSERT INTO @TABLE VALUES (0,1.93,'Qball','12/1/2014');
    INSERT INTO @TABLE VALUES (34446.98,277285.35,'Wild Attire, Inc.','5/30/2013');
    INSERT INTO @TABLE VALUES (522236.08,530125.78,'Wild Attire, Inc.','8/22/2013');
    INSERT INTO @TABLE VALUES (3861.06,40820.82,'Wild Attire, Inc.','10/24/2014');
    INSERT INTO @TABLE VALUES (2087.14,20783.46,'Wild Attire, Inc.','10/30/2014');
    INSERT INTO @TABLE VALUES (1296.95,24272.81,'Wild Attire, Inc.','11/26/2014');
    INSERT INTO @TABLE VALUES (1457.96,1512.71,'Jackeez.com LLC','12/14/2013');
    INSERT INTO @TABLE VALUES (15.27,37206.62,'PrintingforLess.com','4/3/2014');
    INSERT INTO @TABLE VALUES (9109.85,20631.28,'M.A.I.L., Inc','12/16/2013');
    INSERT INTO @TABLE VALUES (294.59,2278.32,'B2SIGN, Inc.','11/17/2014');
    INSERT INTO @TABLE VALUES (37.71,151.48,'SpiralScout LLC','11/25/2014');
    INSERT INTO @TABLE VALUES (93960.2,94110.38,'Clear Vision Optical','11/13/2013');
    INSERT INTO @TABLE VALUES (140349.03,140445.65,'Clear Vision Optical','1/31/2014');
    INSERT INTO @TABLE VALUES (14898.35,14898.35,'Clear Vision Optical','3/18/2014');
    INSERT INTO @TABLE VALUES (790.59,790.59,'Clear Vision Optical','5/9/2014');
    ;WITH CTE AS
    SELECT [Integration Name],MIN([First Print Date]) [Min First Print Date],COUNT(1) cnt FROM @Table GROUP BY [Integration Name]
    SELECT [Integration Name],CASE WHEN CNT=1 THEN T.[Qball Min First Print Date] ELSE [Min First Print Date] END [Min First Print Date] FROM CTE
    CROSS APPLY (SELECT [Min First Print Date] AS [Qball Min First Print Date] FROM CTE WHERE [Integration Name]=N'Qball') AS T
    ORDER BY CNT,[Integration Name]
    In your case, the data seems from the the statement query in your post. If the statement is fine, the below query can be ready to use.
    ;WITH DataSrc AS
    SELECT ISNULL(RQPPrintAmountQpYTD,0)+ISNULL(VLQPPrintAmountQpYTD,0) as [Qualified Volume 2014],isnull(PrintamountallYtd,0)+ISNULL(VLQPPrintamountALLYTD,0) as [Total Volume 2014], integration_id as [Integration ID], integration_name as [Integration Name], left([First Print Date],10) as [First Print Date] from #Po
    CTE AS
    SELECT [Integration Name],MIN([First Print Date]) [Min First Print Date],COUNT(1) cnt FROM DataSrc GROUP BY [Integration Name]
    SELECT [Integration Name],CASE WHEN CNT=1 THEN T.[Qball Min First Print Date] ELSE [Min First Print Date] END [Min First Print Date] FROM CTE
    CROSS APPLY (SELECT [Min First Print Date] AS [Qball Min First Print Date] FROM CTE WHERE [Integration Name]=N'Qball') AS T
    ORDER BY CNT,[Integration Name]
    By the way, there're some columns don't make any sense if what you'd like is just the min(First Print Date), you can remove them.
    If you have any question, feel free to let me know.
    Best regards,
    Eric Zhang
    TechNet Community Support

  • I need help connecting my iPhone and computer together.

    I need help connecting my iPhone to computer

    Howdy sprinklemk,
    Welcome to Apple Support Communities.
    Take a look at the iPhone User Guide, it answers your question about how to connect your iPhone to your computer and provides additional information that you may find helpful.
    http://manuals.info.apple.com/MANUALS/1000/MA1565/en_US/iphone_user_guide.pdf
    You may need to connect iPhone to your computer in order to complete activation. Connecting iPhone to your computer also lets you sync photos and other content to iPhone from your computer, using iTunes. See Sync with iTunes on page 18.
    To use iPhone with your computer, you need:
    An Internet connection for your computer (broadband is recommended)
    A Mac or a PC with a USB 2.0 or 3.0 port, and one of the following operating systems:
       OS X version 10.6.8 or later
       Windows 8, Windows 7, Windows Vista, or Windows XP Home or Professional with Service Pack 3 or later
    Connect iPhone to your computer. Use the Lightning to USB Cable (iPhone 5 or later) or 30-pin the other device.
    Cheers,
    -Jason

  • Toshiba LCD 46G310U display goes dark

    I have a Toshiba 46" LCD model: 46G310U that when first plugged up has a perfect picture on all inputs. However after a few seconds to a few minutes the display goes dark with a horizontal line across the screen about half way down. The horizontal line will fade out after 25-30 seconds leaving the screen dark(back lights still works). I have replaced the inverter board, the T-Con Board, replaced most of the larger capacitors on the power board, I have even replaced the cables that connects the T-Con board to the main board. If I unplug the tv and leave it unplugged for several minutes when I turn the tv back on, the picture is back and purfect for the first few seconds or up to a couple of minutes, then the screen goes black again. Please any help would be apprecieated. Thanks.

    You may want to find an authorized service provide to repair the TV.
    - Peter

  • I was downloading the latest iTunes and my computer shut off in the middle and now my phone is displaying that it needs to connect to iTunes. iTunes says my phone needs to be restored before it will work with iTunes. HOw do i avoid restoring?

    I was downloading the latest iTunes and my computer shut off in the middle and now my phone is displaying that i need to connect to iTunes and iTunes is telling me that i need to restore my phone before it will work. I have pics that i have not uploaded yet, how do i get around this without restoring my phone? Thanks,

    I have the exact same issue. I havent found our what is causing it either. Multaple re-install attempts with no success. I have to use Windows Media Center to burn audio discs.  Any other advice?

  • Host server live migration causing Guest Cluster node goes down

    Hi 
    I have two node Hyper host cluster , Im using converged network for Host management,Live migartion and cluster network. And Separate NICs for ISCSI multi-pathing. When I live migrate the Guest node from one host to another , within guest cluster the node
    is going down.  I have increased clusterthroshold and clusterdelay values.  Guest nodes are connecting to ISCSI network directly from ISCSI initiator on Server 2012. 
    The converged networks for management ,cluster and live migration networks are built on top of a NIC Team with switch Independent mode and load balancing as Hyper V port. 
    I have VMQ enabled on Converged fabric  and jumbo frames enabled on ISCSI. 
    Can Anyone guess why would live migration cause failure on the guest node. 
    thanks
    mumtaz 

    Repost here: http://social.technet.microsoft.com/Forums/en-US/winserverhyperv/threads
    in the Hyper-V forum.  You'll get a lot more help there.
    This forum is for Virtual Server 2005.

  • Redo Collector Goes down frequently

    Hi,
    Once my Redo Collector has been started after some time it goes down. We tried many times and the Redo collector runns for some few seconds and goes down. Pleas suggest
    Best regards,
    Venkat.S

    Hi Venkat S,
    I have not seen where the REDO collector just dies. I see more cases where the archive log is moved and the REDO collector cannot proceed with capturing the before/after values.
    The REDO collector is using Oracle Streams underneath the covers, so it could be related to a Steams issue. There has to be an error associated with the capture processing dying.
    Thanks.

Maybe you are looking for

  • HDMI TV + MacMini makes big noise in speakers on boottime

    I've got another problem with my Hitachi HDMI TV. I connect Mac-mini to this TV, but when it starts, I hear great noise (just like that which I hear when I try to find TV channel, but I don't) when Mac-Mini boots. Welll tis problem don't happen when

  • File Manager & Bluetooth?

    Hallo. I have searched for a File Manager and a Bluetooth app but cant find any good one. When i hade a undroid phone, there was very good file managers who showed the root of the phone and the bluetooth was great. The only file managers i found for

  • Market price determination with MRN0 including project inventory

    I need to determine the market price of our inventory with the transaction MRN0 (Programm RMNIWE00). Problem: Parts of our material is inventorised in the category "special stock" in mm. We use project inventories for stocks we share ownership with o

  • Howto to get the year timestamp in syslog and logadm files

    5.10 Generic_141414-10 sun4u sparc Howto to get the year timestamp in syslog and logadm We have to keep logs files for a long time, I was exploring logs in /var/adm/secure and noticed that log files over a year old did not have a year time stamp, the

  • Understanding Analytics on updated Folios

    We have an App which has been in the iTunes store for over a year which contains 4 folios. Unlike a publication such as "Wired" magazine, our client does not want previous issues to appear in the app - each updated monthly issue effectively overwrite