Custom report layout question...can't find any answers anywhere

I am trying to build a report in Portal, using the custom report layout. The report displays like so, before I do any customization:
COLUMN1 COLUMN2 COLUMN3
COLUMN1 COLUMN2 COLUMN3
COLUMN1 COLUMN2 COLUMN3
COLUMN1 COLUMN2 COLUMN3
where COLUMN1 is the same value, always per report; COLUMN2 and COLUMN3 vary.
What I want is:
COLUMN1
COLUMN2 COLUMN3
COLUMN2 COLUMN3
COLUMN2 COLUMN3
COLUMN2 COLUMN3
In the report layout editor, Body section, this is what I see:
<TD ALIGN="LEFT"><#COLUMN1.FIELD#></TD>
<TD ALIGN="LEFT"><#COLUMN2.FIELD#></TD>
<TD ALIGN="LEFT"><#COLUMN3.FIELD#></TD>
so #COLUMN1.FIELD# must be some kind of array, but I am not finding any documentation anywhere on how to reference the individual values. All I need is the very first value of the COLUMN1 variable. Once I have that value, I can put it where I need it, but I can't get at that value, just the array.
I have searched portal center, the app server documentation, html documentation. I have googled everything I could think of, but came up with nothing. I found a similar question on this forum, but no one responded with an answer. Any help would be greatly appreciated.

Helen,
The best way for your case is to use a content folder and customize it whichever way you like.
however, your question is about reports. the problem in reports is this that you have to use just one single query and the layout of the results of this query are displayed in a peculiar way.
anyway. something similar but not exactly the same as what you wanted do is the following.
use a query like the following: (with a union in between)
SELECT COLUMN1,NULL , NULL ,NULL ,NULL
FROM my_source_table
WHERE myCriteria LIKE 'SoAndSo%'
UNION
SELECT NULL,COLUMN2 , COLUMN3, COLUMN4, COLUMN5
FROM my_source_table
WHERE myCriteria LIKE 'SoAndSo%'
---------- Now, have the following codes in the layout segments:
<!--- header --->
<table border="0" cellpadding="1" cellspacing="1" width="20%" align="center">
<!--- body --->
<tr align="center">
<td><table border="0" cellpadding="1" cellspacing="0" width="30%" align="center">
<tr align="center">
<TH><#COLUMN1.FIELD#></TH>
</tr>
</table>
</td>
<TD class="report_cell" ALIGN="LEFT"><#COLUMN2.FIELD#></TD>
<TD class="report_cell" ALIGN="LEFT"><#COLUMN3.FIELD#></TD>
<TD class="report_cell" ALIGN="LEFT"><#COLUMN4.FIELD#></TD>
<TD class="report_cell" ALIGN="LEFT"><#COLUMN5.FIELD#></TD>
</tr>
<!--- footer --->
<TR><TD></TD></TR>
this should produce a report with a table structure (you may see the whole if you give BORDER="1" in the main table tag). Within this table, the first column of the first row should be showing top-leftmost column value once (COLUMN1 value) and then the next rows would show last four column values as a table block on the right-bottom part.
with kind regards,
naqvi

Similar Messages

  • Very Strange error and can't find any answer anywhere in the net

    I created a login form (see below).
    If I use the regular HTML form and form fields for the username, password and submit button I don't get any problem viewing my form
    But if I use cfform and cfinput form fields I get this error.
    Here is my cfform codes:
    cfform name="login" action="/login/checkLogin.cfm" method="post">
      cfinput type="text" name="username" size="25" required="Yes" message="Please enter your username">
      cfinput type="password" name="password" size="25" required="Yes" message="Please enter you password">
       cfinput type="submit" value="Sign In">
    /cfform>
    When I launch this page I get this error and I don't understand what this means and what am I supposed to do, please help!
    Total Time Avg Time Count Template
    1 ms 1 ms 1 /opt/coldfusion10/cfusion/wwwroot/CFIDE/administrator/templates/secure_profile_error.cfm
    0 ms 0 ms 1 top level /home/space/users/www/webdocsec/login/login.cfm
    19 ms   STARTUP, PARSING, COMPILING, LOADING, & SHUTDOWN
    20 ms   TOTAL EXECUTION TIME
    red = over 250 ms average execution time
    Exceptions
    10:08:08.008 - Template Exception - in : line -1
         Attribute validation error for tag CFINPUT.

    Using cfform
    To start with, leave cfform aside. You will find in the documentation that most developers are abandoning Coldfusion's native UI tags, for example, cfform, cfgrid, and so on. They are outdated and occasionally perform erratically. If you wish to validate forms, use a Javascript library such as jQuery.
    Implementing Site-Wide Error Handler
    By default, there is no site-wide error handler configured. It is advisable to create your own. Then register the path of the page in the Coldfusion Administrator.
    As the name implies, it is a CFM page which ColdFusion runs when it encounters an error on your site. Creating your own enables you to present a simple, customized, user-friendly page to your visitors.
    Alternatively, you may choose to implement a Secure Profile. This is available in the Administrator, on the page Security => Secure Profile.
    When you check the box, you configure Coldfusion to automatically implement all the security measures listed in the table. That includes Coldfusion's own the Site-Wide Error Handler. It is the system file, /CFIDE/administrator/templates/secure_profile_error.cfm.

  • I have checked around the internet, but still can't find any answers. How can I prevent incoming mail from interrupting the music I am listening to on my iPhone? That 1-second muting function drives me insane, especially when a lot of mail is coming in.

    I have checked around the internet, but still can't find any answers. How can I prevent incoming mail from interrupting the music I am listening to on my iPhone? That 1-second muting function drives me insane, especially when a lot of mail is coming in.

    If you want to hear your music on iPhone without interruption, switch Settings > Airplane Mode: ON.

  • Simple question but can't find an answer anywhere

    This must surely be a very easy question for someone to
    answer (although I can't find an answer from any tutorial or
    forums, despite lots and lots of Google searching).
    I want to create a link from one SWF file to another (when
    these two files are 'stand alonE', not online). How do I it?
    I've managed to use Actionscript to create links to a website
    and another scene within the same SWF, so I'm surprised that this
    is proving so much more difficult.
    The script I have that's not working is:
    lesson1_btn.onRelease = function (){
    gotoAndStop("lessons.swf");
    (BY THE WAY Before you recommend I put everything online,
    this is for coursework and it specifies that the whole thing must
    be stand-alone.)
    Could the problem be with my Flash Player or the way I'm
    vieiwng the SWF? It doesn't work in test mode but neither does it
    work when I open the SWF directly from it's location.

    I'm not sure what you're doing with the
    gotoAndStop("lessons.swf"); command - whether lessons.swf is
    a scene or a frame label. If its a scene, then I think you need a
    frame number as well. (actually I don't know - I don't use this
    function)
    But you
    might want to take a look at the comments at the bottom of
    this page, I think - not sure if its relevant, but it seems like it
    could be :
    http://livedocs.adobe.com/flash/8/main/00001733.html#135769

  • HT204389 Is Siri available for 4th generation Ipod's? I can't find the answer anywhere. (Please no mean comments either)

    I can't find the answer to my question anywhere and I just simply want to find out. Please, because it is the Christmas season, PLEASE do not leave me negative comments. I'm only wanting to find out for sure if I can get Siri on my 4th generation Ipod touch. Thank You!

    http://www.apple.com/ios/siri/
    *Siri is available in Beta only on iPhone 4S, iPhone 5, iPad (3rd generation), and iPod touch (5th generation) and requires Internet access. Siri may not be available in all languages or in all areas, and features may vary by area. Cellular data charges may apply.

  • HT4623 When does my score show an increase I can't find the answer anywhere!

    When does bejeweled diamonds show an increase in my score I can't find any reference to this?

    Try contacting the developer of the app

  • The 'Get Information' button in my printer driver dialog is grayed out.  This happened when I upgraded my mac (and macbook).  Can't find any help anywhere.

    I recently upgraded both my imac and macbook pro to a new mac mini and macbook air.  I have a networked (via airport extreme) canon ipf6100 printer that had been working great from my older computers (all running current mountain lion).  The new computer's printer driver setups went well and the dialog says its online and ready.  The problem is the 'Get Information' button in the 'Main' driver panel is grayed out.  The driver cannot read the printer's configuration (i.e. roll or sheet paper) and therefore cannot print correctly.  I have tried re-installing the driver (current one from Canon's website) and have tried connecting the printer to USB directly with the same result.  I have not been able to find any help on this anywhere.  Any help would be greatly appreciated.
    thanks,
    -jim

    Hi Jim, no idea really, but...
    Mac OS X: About the Reset Printing System feature ...
    http://support.apple.com/kb/HT1341?viewlocale=en_US
    10.5/10.6/10.7 instructions...
    In System Preferences>Fax & Print, Right click or Control+click on the Printers list Sidebar, choose Reset Printing System.
    if you hold option and click the "-" tab it resets the printing system.
    http://www.macosxhints.com/article.php?story=20031215144430486
    Safe Boot from the HD, (holding Shift key down at bootup), run Disk Utility in Applications>Utilities, then highlight your drive, click on Repair Permissions.
    Any devices that previously appeared in your Printer List and Fax List will need to be added again after resetting the printing system.
    Resetting the printing system in Mac OS X 10.5.x+++
    To use the Reset Printing System feature in Mac OS X 10.5.x, follow these steps:
    Choose System Preferences from the Apple menu.
    Choose Print & Fax from the View menu.
    Control-click on list of printers on the left side of the window, then choose "Reset printing system" from the contextual menu. If you don't see a list of printers, Control-click on the text "Click + to add a printer or fax" and select "Reset printing system..."
      As an alternative, if you currently have one or more printers listed, you can Option-click the "-" (Remove printer) button.
    http://support.apple.com/kb/ht1341
    Reboot.

  • I have (5) eMacs, (2) 1GHz, (1) 1.25GHz, and (2) 1.42GHz,  running, 10.4.11, can I purchase, just one Leopard upgrade to service, all of my computers? I really appreciate your, assistance, in this, I can't find the answer, anywhere. Thanks.

    I, have (5) eMacs, (2) 1 GHz, (1) 1.25GHz, and, (2) 1.42 GHz, Will, I be, able to purchase, A, single copy of, Leopard, to upgrade all my eMacs? I've, tried, to, find, the, answer, to, this, on my own, but to no avail. Any assistance, on this, would be appreciated. Thanks, in advance!

    Your biggest problem will be finding a retail copy of the Leopard install DVD. Finding a Family Pack will be even harder.
    Mac OS X 10.5 Leopard installation system requirements
    http://support.apple.com/kb/TA24950
    Leopard is no longer available at the Apple Store but may be available by calling Apple Phone Sales @ 1-800-MY-APPLE (1-800-692-7753).
    If you can't obtain a retail install DVD from Apple, look on eBay or Google the installer part numbers to possibly find at an on-line store. Here's what to look for:
    MB427Z/A  Leopard 10.5.1 install DVD
    MB576Z/A  Leopard 10.5.4 install DVD
    MB021Z/A  Leopard 10.5.6 install DVD (single user)
    MB022Z/A  Leopard 10.5.6 install DVD (5-user family pack)
    Installing Mac OS X 10.5 Leopard
    http://support.apple.com/kb/HT1544
    Mac OS X 10.5 Leopard Installation and Setup Guide
    http://manuals.info.apple.com/en/leopard_install-setup.pdf
    After you install the base 10.5, download & install the 10.5.8 combo update at http://support.apple.com/downloads/Mac_OS_X_10_5_8_Combo_Update
    The DVD should look like this
    Caution - Leopard does not support classic mode. So, if you currently open OS 9 apps in classic mode, you won't be able to do this if you upgrade to Leopard.
     Cheers, Tom

  • A Very, Very  Simple Question..... Can't Find an Answer Anywhere.........

    In the built-in Photos App, i'd like to show my photos in a particular sequence, in other words, i'd like to control the order of photos in any folder....... i can't seem to sort them, not in the ipad, nor in itunes on my home mac. i have tried numbering them, i can't seem to get any kind of control.
    i'd like to show portfolios of work, in a particular sequence in each set.
    any ideas???
    TIA!
    -Josef

    i have tried numbering them, i can't seem to get any kind of control.
    An interesting question. Mine seem to be in the same order as my photo managing application -- Aperture. In my case, I have left them in their default order (alpha-numeric names assigned automatically by their time stamp). Since you say changing the name does not work, you might try altering their physic order in the managing program or, if that doesn't work, try changing the time/date info as either may be used as the basis for their order for iTunes syncing of the iPad. Unfortunately, the iPad does not always seem to update its data base when changes are made. (E.g., multiple iBooks cover changes made in iTunes don't seem to be updated after the initial change.) Therefore, even if changing the name, date, or physical order does re-write the info as far as iTunes is concerned, it may not be reflected on the iPad. (I.e., you may have to run your tests on albums being sync'd to the iPad for the first time.)

  • Quick Backup Question - Can't Find the Answer

    I need to restore my phone with an old backup to get some (read 300+) photos of my newborn that were lost.
    I tried restoring the phone, but the only backup in the drop down was from a sync that caused the problem in the first place.
    I was able to find a backup folder under library in the finder that I think could fix the problem, but I can't seem to figure out how to actually use that backup file.
    What is my next step to backup my phone with that old file, hopefully restoring the lost photos, and returning my wife from the abyss she currently resides in?

    As I posted in your other thread, only one backup is kept (usually, unless you manually archive them).
    A 'backup' consists of a folder with a UID (a long, seemingly meaningless name), stored in ~/Library/Application Support/MobileSync/Backup. How many folders do you have in there? If there is more than one (and you only have one iPhone/iPod Touch), then you have 'extra' backups. Check the date modified for the folder to determine the date of the backup.
    Within the backup folder are some .plist files and many .mdbackup files. It is possible to extract files from the backup, for skilled users. However, if the modified date/time of the folder is the date/time of the last sync, the pics are gone because they were overwritten.
    FYI, the process to recover data from the backup involves running a python script from the terminal, then parsing the resulting SQLite database. If those concepts have meaning for you, then you might be able to at least have a look at the backup. But, I really think those pics were overwritten by the more recent backup.
    Very sorry!

  • Slideshow with filmstrip plz help, can't find the answer anywhere!

    Hi, I'm def not a website designer but need to do 1 up for myself and am trying to keep it pretty basic.
    I'm using 2 widgets, a menu and the slideshow with filstrip. The slideshow worked fine for me but my dropdown menu would always be under it so you couldn't see some of the ones to click on. To fix this I played with the z-index and it finally worked when I added a z-index of -1 to the slideshow. However now the slideshow is simply that a slideshow. I can no longer go forward or backwards or pause nor can I click on the thumbnails to go directly to those images.
    Does anyone know what Im doing wrong. Either to get this going or to remove the z-index so the slideshow works but have a way to get my drop down menu then still infront of the slideshow? Its almost as if I need my menu infront of the slideshow but the slide show controls in front of the menu and I have no idea what I'm doing.
    Please if you have any ideas or suggestions I would love any help possible, I'm going insane here! :S Thank-you all so much in adance!

    sorien,
    You can run dual monitors.
    The following combinations are possible in DualView mode:
    digital monitor (onboard DVI) + analog monitor (onboard VGA)
    digital monitor (onboard DVI) + TV (onboard TV out)
    As GeForce 6150 has only one RAMDAC (Random Access Memory Digital/Analog Converter), the following combination is not possible:
    analog monitor with a DVI to VGA adapter (onboard DVI) + analog monitor (onboard VGA)
    analog monitor (onboard VGA) + TV (onboard TV out)
    Take Care,
    Richard

  • I can't find this answer anywhere, whats the best way to tune my beats audio on my hp dv6t?

    I have an HP dv6t with beats. i think its a dv6t...the tone settings look like this... but on mine i have 4kHz then 1kHz again, insted of what the picture has...? please tell me the best way to tune all this for rap/hip-hop music and the numbers for the bass, def, center, space, and focus THANKS!!!  if i repeated a previous post by someone else please let me know where its at and ill delete this post...
    This question was solved.
    View Solution.

  • TomTom and the iPhone - I CAN'T FIND AN ANSWER ANYWHERE

    1) Will the new TomTom app work with the iPhone 3G as well as the 3GS?
    2) If it will work with the iPhone 3G as well, will it require internet connectivity? Or will it have the maps onboard and use the built-in GPS chip? In other words, can I use it in the middle of nowhere?
    Thanks!

    1) I'm sorry for being rude
    2) If I was a developer, I'd want it to use the built-in normal GPS and not rely at all on cell phone tower connectivity. You're right, it says the maps are inside, but I guess I'm worried that it will for some reason still require there to be a cell phone tower signal. I only say that because at no point during the WWDC and nowhere on the site does it stress that the software can be used without cell tower connectivity. I would think they would've at least mentioned that fact if it were true. I mean, it's been a year with the iPhone 3G with a built-in standalone GPS chip, and no map software that uses it.
    Also, the dashboard device has its OWN GPS chip in it. I'm worried that maybe you have to have that device in order to use the software outside of tower connectivity.
    Message was edited by: Maliathtaibootho

  • Trying to update to iTunes 10.5, keep getting message "iTunes has an invalid signature. It will not be installed". Others are also posting this problem but can't seem to find any answers

    Trying to update to itunes 10.5, keep getting message "iTunes has an invalid signature. It will not be installed". Others are also posting a similar problem but can't find any answers.

    Please can anyone help on this

  • ICal reports that it can't find server, and lots of data from several years ago is trying to get attention.  Cannot bring up calendar in any view to use. also keeps loading unused calendar websites from long ago.  I can' remove them. what to do?

    iCal reports that it can't find server, and lots of data from several years ago is trying to get attention.  Cannot bring up calendar in any view to use. also keeps loading unused calendar websites from long ago.  I can' remove them. what to do?

    UPDATE: I had 36 Safari windows open and minimized on the dock from my last session; 20 of those windows failed to open b/c Safari "couldn't find the server"; I just went to the URL bar of all 20 pages and clicked return, and all 20 pages loaded perfectly, without dropping any images or losing formatting. This is a puzzle!!!

Maybe you are looking for

  • How to export the text edit data to excel file without splitting the data in excel file?

    how to export the text edit data to excel file without splitting the data in excel file? I have a requirement in SAP HR where in the appraiser can add comments in the area given and can export that to excel file. Currently the file is getting exporte

  • Opening files in Ps CS5

    In Photoshop CS5, why can't I open files?

  • Add-AzureAccount - Account1 Ids do not match

    I have been using Azure as a part of my MSDN subscription for a while. I used Azure Powershell to log on to my account and e.g. move data to the blob storage. Everything worked fine. Today I have been assigned to a new subscription. Additionally to m

  • Icon Creating Problem

    I just created a cool icon by myself, but when I exported it and modified it to use as an icon, it was too small... I double-clicked on it and it opened in Preview very large, but the display of it is so small. Is there a way to make it bigger withou

  • Problem with c7 software update....

    The problem is when I try to install updates for my nokia c7 through sw update I got always a messaged saying the the update failed I tried the soft reset thing but still the same problem is present I also used OVI Suite in my pc .. but it tells that