How do I put a collection in a readonly report on the fly

How do I put a collection in a readonly report on the fly??
Thanks, examples if you can please.

Doug,
You can simply create a report region and use that to display the records in the collection:
SELECT
  c001,
  c002,
  c003,
FROM
  apex_collections
WHERE
  collection_name = 'YOUR_COLLECTION_NAME'Thanks,
– Scott –
http://spendolini.blogspot.com/
http://sumnertech.com/

Similar Messages

  • I have a 2008 macbook and i lost the start up disk and forgot the password. how can i put it back to factory mode and change the password

    i have a 2008 macbook and i lost the start up disk and forgot the password. how can i put it back to factory mode and change the password

    Check out this article http://gigaom.com/apple/reset-os-x-password-without-an-os-x-cd/

  • I am wanting to publish a website created in iweb via a third party web host. How do I put a password for anyone wishing to visit the mysite?

    I am wanting to publish a website created in iweb via a third party web host. How do I put a password for anyone wishing to visit the mysite?

    You create the usernames and passwords where you host your website. Made with or without iWeb.
    Usually it's done in the controlpanel where you manage your account.
    If you cannot do it there, you'll have to do it yourself. See this post :
    https://discussions.apple.com/message/16014940#16014940
    And what is the purpose of password protection for ANYONE who vistis your site?

  • I'd like to know how can u put letters on caps without holding all times the shift key?

    I'd like to know how can u put letters on caps without holding all times the shift key?

    Settings>General>Keyboard>Enable Caps Lock>On. Then just tap the shift key quickly.

  • How do I put an af:InputText and af:CommandButton on the same line?

    How do I put an af:InputText and af:CommandButton horizontally level with each other in my JSPX page?
    atm they sit on top of each other which is no good. Must I contain each item inside a form or something??

    Hi, you can do it this way:
            <af:panelGroupLayout layout="horizontal">
              <af:inputText label="Label 1"/>
              <af:commandButton text="commandButton 1" id="button1"/>
            </af:panelGroupLayout>Regards,
    Branislav

  • How to create an apex collection to store and loop through the values

    I couldn't find any simple example to do this
    Apex 4.2
    I need to create an apex collection. I have a query that returns multiple roles for a user. I need to check to see if one of my item values is within the collection but am not sure how to do so. So far I have:
    begin
    APEX_COLLECTION.CREATE_COLLECTION (
    p_collection_name => 'ALL_ROLES');
    select count(granted_role) into count from dba_role_privs where upper(grantee) = upper(:APP_USER);
    end;
    How would I store the query results in the collection?

    Trying to understand your code and a better suggestion:
    declare
    is_viewable boolean;
    v_count number;
    l_query varchar2(2000);
    i_counter number(10) :=1;
    begin
    --l_query := 'select granted_role from dba_role_privs where upper(grantee) = upper(:APP_USER)';
    --why do you need a collection, this is a simple select count(1) question
    APEX_COLLECTION.CREATE_COLLECTION_FROM_QUERY (
    p_collection_name => 'ALL_ROLES',
    p_query => l_query,
    p_generate_md5 => 'YES');
    -- You create a collection, but where are you using it?
    -- select count(granted_role) into count from dba_role_privs where upper(grantee) = upper(:APP_USER);
    -- discard the above code
    -- If you want to see  how many elements in a collection
    -- determine # of elements in a collection
    http://docs.oracle.com/cd/E23903_01/doc/doc.41/e21676/apex_collection.htm#CJAFFEAH
    v_count := APEX_COLLECTION.COLLECTION_MEMBER_COUNT ('ALL_ROLES');
    IF :P32_SUBMISSION_DATE IS NOT NULL THEN
      begin
      select count(granted_role) into v_count
         from dba_role_privs
      where upper(grantee) = upper(:APP_USER) and
        granted_role in ('SURVEY_SUID','SURVEY_JOB_SUID');
      exception
      when no_rows_found then
        v_count := 0;
      end;
      if v_count > 0 then
        is_viewable := true;
      else
        is_viewable := false;
      endif;
    else
      is_viewable := false;
    endif;
    return is_viewable;
    end;Thank you,
    Tony Miller
    Ruckersville, VA

  • How to create a Custom Screen for executing a report in the backend ?

    Hello Everyone,
    I have a requirement to develop a Custom Application on the Cloud to capture few fields from user and trigger an execution of a report in the background in CRM. There is no need to display any results after the triggering execution. Just need to show a message that "Background Job was successfully submitted".
    I saw the types of screens available for creation as explained in this link Screen Types, unfortunately none of the screen types works out for me.
    As seen from the requirement, there is no need to store any data send from the UI in backend. So, it doesn't make sense for me to create a Business Object. So I tried creating a Query Object to see if that works out, but query object also requires a BO to execute query on and it also makes result list view mandatory and asks me to pick atleast one field to show in the result list.
    I also tried Mass Data run which doesn't fit the bill.
    So, I'm looking for the best possible UI screen and approach to build a simple custom application with 5-6 fields and an execute button. Please suggest me the best possible option available in the C4C.
    Regards,
    Srikanth

    Hey,
    first of all: if you really need a button, you will need to create your own business object with an action.
    If you just want to trigger the service you could add an extension field of type indicator to any standard Bo and the put logic in the before save of this Xbo. Then you just add the indicator to the UI. But the user would always have to go to this screen I.e. The customer...
    so i guess maybe a custom business object with only one instance, a button, some logic in an action and a generated UI including a workcenters 'backend report execution' is the best way for you!
    cheers
    jens

  • How do I put a photo with a song embedded on the page........

    I finally figured out how to put a song with a photo on top on my iWeb Photo Page. What I can't figure out now is how to arrange all the photos so that this is not on top of any other photo. If I move a photo, another fills the spot. But my song/photo sits on top of a photo. How can I have it have it's own space? Thanks for any help! Judy

    Thank you. I really wanted to place it in the first space before the photos started but apparently that isn't possible. So I put it somewhere else and I think it is ok. Thank you again for replying! That tip helped me to figure out why it kept covering a photo. Judy

  • How do I put a label in a null field in the result set of a group-by query

    I run the query:
    select section, count(*) from nparcel group by section
    and get the result
    section1 100
    section2 200
    section3 300
    400
    I would like to modify the query to put a label, perhaps 'BLANK', in the last returned row. Is that possible and if so how.
    Thanks in advance for helping.

    Hi,
    In SQL*Plus you have some additional options, that apply to all queries until you override them or end the session.
    COLUMN section NULL BLANKapplies only to the column called "section".
    SET NULL BLANKApplies to all columns.

  • How do I put my logo or whatever I want at the end of my movie iDVD6 ?

    I have been making DVD's for people taking their old B&W's and color photos and putting them into iPhoto after working on them in Photoshop, and then transferring straight out of iPhoto into iDVD 6 how can I make a page at the end with my logo who it was made by etc. pretty much like the end credits on a store bought DVD? Pretty new at using iDVD and I haven't seen where anyone has asked this if so I'm sorry just point me the right way please
    Thanks Michael

    How 'bout just making a credit slide in Photoshop and sticking it into iPhoto at the end of the show?
    Or make your own "Credits" slideshow, separate from the main event.

  • How can I put seperate score files onto one page in the Layout?

    I have written some exercises in different keys. They are small files. Each of them are saved individually and cover only part of a page each but I want to lay them out on one single page. I can't work out how. Each file is in a different key. As a short term solution I tried to combine them into one file and then could not work out how to change the key signature. When I insert the #'s and b's the following notes don't move to the right. So that does not work the way I do it. Does someone have a solution, please?
    Cheers,
    ansu

    Thank You, musicspirit, for your support. What you suggested I had done already, but it did not work always only sometimes. ( Like a disfunctional light switch). Maybe I missed some setting or whatever or tried too many things...or..Anyway quite a few things didn't work, I spare you the details. Meanwhile I did disk maintenance and tossed out the files and started again from scratch ( which I wanted to avoid) and everything worked out fine so far. No problems with clef change, etc.
    But to make it look as if I had three songs or three separate exercises on one page I need to create a bigger space between the 3rd and 4th staves and the 6th and 7th staves. I can do this only globally, which means I manage only to increase the space between all the staves. (I hope I am not asking the wrong thing again. Manuals are not always easy for the novice.)

  • How do i put my epub files in my kobo with the new itunes 11?

    I can't put anymore files in my Kobo App since i have the new itunes 11.Any solutions?

    Thankfully there is a way of doing this without iTunes getting in the way.
    Copy the PDF files to DropBox, then on iPad open the DropBox app and open the PDF.
    Then click the Download button and choose Open In .... Kobo
    I can't believe that Apple removed from iTunes 11 the section below Apps for "copy files to these Apps" such as Kobo.
    I've been a great fan of all things Apple since switching from Windows 5 years ago, but tricks like this are putting me off big time, seriously looking at Android for Mobile, and Linux for Laptop now.

  • How do i put one playlist on my ipod and not the entire library

    I have recently purchased the newest ipod nano and downloaded the newest itunes and I cannot seem to find out how to select one playlist to go on my ipod. I don't want the entire library but only 1 of the playlists. How do i do this?
    Thank you!

    If you are using iTunes from version 7 onwards, then when you connect the iPod the summary screen should automatically open.
    If you click on the 'music' tab, you will see the options to:
    "sync music" with either "all songs and playlists" or "selected playlists".

  • How do I put a running total in a Reports 6i Report?

    I need to write a report which shows a running total at the foot of each page. The report is a series of (potentially) multi-page sections each formatted like this:
    Page 1
    ======
    Tom £100
    Dick £150
    Harry £100
    Sub Total £350
    Page 2
    ======
    Peter £200
    Paul £50
    Mary £100
    Total £700
    Lines are of variable height, so I can't predict how many there'll be on a page.
    The help system just tells me to "use a summary field". Yeah, right. Can anybody give me some more detailed instructions?
    -- Chris Hunt

    Thanks for that.
    I didn't really express the problem as well as I might have done, as the Sub-Total needs to be the sum of all the items on the current page and on all preceeding pages. resetting on page just gives you the total for that page.
    I did find a way to do it. First you set up a summary field in the same group as the data lines, summing the amount and resetting on the parent group. This gives you a running total for each row:
    Page 1
    ======
    Tom £100 £100
    Dick £150 £250
    Harry £100 £350
    Page 2
    ======
    Peter £200 £550
    Paul £50 £600
    Mary £100 £700
    You don't actually output this summary field in the prinout (except when debugging :-) ). Now create a summary field at the foot of the page, or in the margin. Set its value to the Max() of the running total summary, resetting on page. That gives you the amount required, assuming all individual amounts are positive.
    If it's possible to have negative amounts, I expect that using Last() instead of Max() for the page summary would do the trick.

  • How do I put a link to my homepage rather than the page where my podcasts reside in my feed?

    I'm working through getting everything to work and now I'm trying to tweek a few things. Specifically where it lists the website I'd like it to link back to the main page rather than the hidden page that drives the feed resides.

    The website link is carried in the 'link' tag and currently links to http://xsnightclub.podbean.com . if you want to change this you will need to look for a setting in Podbean; however some of these online services set the link themselves, to their own page, and won't let you change it - I don't know whether Podbean is one of them.

Maybe you are looking for

  • How to change host to just use "machine name" in URL

    I've installed WebCenter Suite on a MS Windows machine. Due to the ip setup I also had to install the Loopback adapter to get things to work. Now everything seems to run, but the URLs always have my machine name plus the domain it's on. Since I need

  • Standalone ActionScript 3.0 Language Reference display not working

    I am unable to view the majority of the downloadable standalone ActionScript 3.0 Language Reference. The document in question: http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/standalone.zip (link grabbed from http://www.adobe.com/d

  • Entering data into a mySQL database for use with my JDBC program

    does any know what i type on telnet to get mySQL to work on windows 2000? i read check your isp for what to type in for this line, but i use IIS www24:mywww/devshed# mysql -u devshed -p and what do i put for login: devshed Password: ******** it says

  • New Restringed key figure

    Hi experts! We would like to ask if it is possible to create a new calculated key figure within an BEX report in this way. If the key figure is between a range of two key figures calculated, we would like to make it have a value in letters. For examp

  • Blank BW Screen in Portal

    Hi, I have a BEx Query Report published in Portal. I have a strange scenario. The screen is shown blank in Portal for a particular user while the rest have no problems. I have the following information. 1. The user had successfully used this portal's