Oracle apex how the region title i want to add one items

hi :
i have one page .this is page have 1)search region 2) report
in search region have the one select list contains the datas like a,b,c,d,e,f etc..
if i selectd the a and click query button in the report region page title ..i want add like REPORT ON a ..if i selected b and click the query it should display the REPORT ON b ....like this i want out put pls ..tell me how will do as soon as possible...

Sure it is possible. See this example:
http://htmldb.oracle.com/pls/otn/f?p=31517:99
There you have a select list and if you click on the button after choosing a value, you will
get a report on it.
Denes Kubicek
http://deneskubicek.blogspot.com/
http://www.opal-consulting.de/training
http://htmldb.oracle.com/pls/otn/f?p=31517:1
-------------------------------------------------------------------

Similar Messages

  • Want to add one new column in Report form

    Hi all,
    I have searched in forum but not able to find the answer.
    I want to add one new column in form 12KST1C. I have added one column PR commitment in left and saved the form, it is showing in form but when i am running the report again then pr commitment column which i have added in form is not coming in report.
    How to activate this form or column?
    Help me....in doing so...

    If you are copying the 12KST1C to Z12KST1C and executing the s_alr_8701333 report, you will not see the new column added to Z12KST1C
    With the new Form Z12KST1C, create a new Report Z12KST1C and assign a new TCODE. Also you have to select all rows and column of form Z12KST1C
    TCODE CJE5
    Select the form Z12KST1C
    Extras--Drildown display --Select Rows and columns
    Select the all colhmns by F9
    Hope this helps.
    Edited by: psconsultant on May 20, 2011 8:42 AM

  • I have Two Icons at the Login screen I want to remove one how do I do that?

    I have Two Icons at the Login screen I want to remove one how do I do that? I am Migrating a PC to a Mac Mini and the migration hung.  I ran it again and I now have two login Icons.  One has all my migrated files and the other does not. I want to remove the one without the files.
    Thanks

    Open System Preferences>Users & Groups, unlock the lock, highlight the one you don't want click on the little minus icon.

  • I have two apple IDs i dont know how that happened but i want to delete one so i can use that information on my itouch

    i have two apple IDs i dont know how that happened but i want to delete one so i can use that information on my itouch

    You can use more than one ID oin the iPod
    I have multiple Apple IDs. Is there a way for me to merge them into a single Apple ID?
    Apple IDs cannot be merged. You should use your preferred Apple ID from now on, but you can still access your purchased items such as music, movies, or software using your other Apple IDs.

  • Want to add one more field in the standard transation xk02 : screen exit

    Dear All ,
    I want to add one field in transation in Xk02 in withholding tax check box.
    run the transation xk02 and select check box Withholding tax and press enter after that you will get the screen having field
    WH Tax Country  in parellel to this i want one more field Country .
    Is there any screen exit available fot this or any other way to proceed .
    Please provide any solution .
    Regards
    Aryan

    use an iplicit enahnecemnt to call a function module in which you can call a screen popu up with the fields you want update them in the database and return back to the main program. If the the two exits available are not helpful to you.
    RFKRRANZ
    SAPMF02K.

  • Want to add one more link in the first screen when user gets into EBP

    Hi All,
    I want to add one more link to the template <b>WELCOME</b> in Internet Service <b>BBPGLOBAL</b>. This is the first screen that the user gets when he logs into EBP.
    The issue is the same screen is different in DEV and TEST environment.
    I verified the code in the template in both systems but they are exactly the same.
    Also, checked the Parameters in the Templates and they too match.
    While going through the code, I found out that MENU_NODE_TAB is used in a repeat loop to verify user has access to the further links.
    But the surprising thing is the code is same in both the systems, but Test evnironment is reflecting the link I want to add in DEV environment.
    Am I missing something??
    Pls let me know.
    Thanks in advance.
    <b>I will reward full points for helpful answers!!</b>
    Regards,
    Sanaa

    Hi,
    In welcome.html there is a ITS code to initialize array with information about transaction (line 87).
    This code is in the loop:
    repeat with idx from 1 to MENU_NODE_TAB-TEXT.dim;
      if( (MENU_NODE_TAB-S_IDENT[idx] == "BBPSC01" && A_GEN_URL<i> == "") ||
          (MENU_NODE_TAB-S_IDENT[idx] == "BBPSC03" && A_GEN_URL<i> == "") || 
          (MENU_NODE_TAB-S_IDENT[idx] == "BBPSC02")                       );
        A_S_IDENT<i>      = MENU_NODE_TAB-S_IDENT[idx];
        A_GEN_URL<i>      = MENU_NODE_TAB-GEN_URL[idx];
        A_OBJECT_ID<i>    = "parent.launchpad.menu.M" & MENU_NODE_TAB-OBJECT_ID[idx] & ".root.name + parent.launchpad.menu.M" & MENU_NODE_TAB-OBJECT_ID[idx] & ".path";
        A_TEXT<i>         = quotFilter(MENU_NODE_TAB-TEXT[idx]);
        A_INTRODUCTION<i> = #WELCOME_SENTENCE6;
        found = 1;
      end;
    end;
    If You want to add this 4 links on begining - extend this array (in line 87):
    <!-- initialize array with information about transaction on startpage -->
    A_S_IDENT[1] = "custom_link1"; A_GEN_URL[1] = "www.google.com"; A_OBJECT_ID[1] = ""; A_TEXT[1] = "google"; A_INTRODUCTION[1] = "google link";
    A_S_IDENT[2] = "custom_link2"; A_GEN_URL[2] = "www.rediffmail.com"; A_OBJECT_ID[2] = ""; A_TEXT[2] = "rediffmail"; A_INTRODUCTION[2] = "redi link";
    A_S_IDENT[3] = "custom_link3"; A_GEN_URL[3] = "www.yahoo.com"; A_OBJECT_ID[3] = ""; A_TEXT[3] = "yahoo"; A_INTRODUCTION[3] = "yahoo link";
    A_S_IDENT[4] = "custom_link4"; A_GEN_URL[4] = "www.greetings.com"; A_OBJECT_ID[4] = ""; A_TEXT[4] = "greets"; A_INTRODUCTION[4] = "greeting link";
    A_S_IDENT[5] = ""; A_GEN_URL[5] = ""; A_OBJECT_ID[5] = ""; A_TEXT[5] = ""; A_INTRODUCTION[5] = "";
    A_S_IDENT[6] = ""; A_GEN_URL[6] = ""; A_OBJECT_ID[6] = ""; A_TEXT[6] = ""; A_INTRODUCTION[6] = "";
    etc.
    <!-- Search for shopping transaction in launchpad -->
    repeat with idx from 5 to MENU_NODE_TAB-TEXT.dim;
    Regards,
    Marcin

  • How the process starts in XI and which one should start first ?

    How the process starts in XI and which one should start first ?

    XI flow :
    1.File picked by the adapter,at the A.E it converts to XML format.
    2.Generate a msg ID for the file and creates XI header to that file  using CPA cache. CPA cache will be having the    information about all the Control(address) data.
    3.Module processor
    4.The file goes to send queue by the adapter engine, that file will be  picked by the internal XI adapter and the file    will be forwarded to the Integration engine.
    5.Pipeline steps follow the Integration Engine.
      Receiver determination, Interface determination, Msg split, Msg  mapping, Logical routing, Receiver aggrement, call adapter
    6.The file will go to receive queue, which was taken and forwarded to the adapter engine.

  • How to add one item when another item get added into the iProcurement Cart

    Hi,
    Please help me to do the following customization in iProcurement Cart:
    Requirement-1:
    1. Login to iProcurement and add one Item ITEM1 to Cart.
    2. Make another Item ITEM2 mandatory or get added automatically when Item ITEM1 gets added into the iProcurement Cart
    OR
    Requirement-2:
    1. Login to iProcurement and add one Item ITEM1 to Cart.
    2. Go to Cart and click Checkout.
    3. While checking out Item ITEM1, we need some validation to make another Item ITEM2 mandatory or get added automatically with Item ITEM1.
    Thanks in Advance,
    SB

    Hi tiff512:
    The way is:
    SAP NetWeaver > General Settings > Check Units of Measurement.
    The help documentation says the following in relation to the creation of new units of measure:
    "If required, define new units of measurement according to the international system of units (SI) with the menu function Unit of meaurement -> Create.
    Here you have to make make specifications for:
    Display (including a descriptive Units of measurement text)
    Conversion (not applicable to units of measurement without dimensions)
    Data exchange (EDI) (optional)
    Application parameters"
    I hope it is helpful to you.
    Regards,
    David

  • How to cancel an order or to remove one item, bought as a guest?

    how to cancel an order or to remove one item, bought as a guest?

    That does not help at all.
    Please explain.  Use sentences please.
    How do you buy something as a guest? 
    You have an iphone?
    You purchased an app?
    You don't want the app?  Simply delete it.  This is covered in the manual.
    If you do not explain what you are talking about, then it is very difficult to help

  • Dropdown and data provider. I want to add an item to my dropdown

    Hi,
    here my problem. I've a downdrop. It is binded to a data provider. It works fine, all the db rows are displayed.
    Now I want to add an item to my downdrop, programmatically. This because, I need to put a new selection named "ALL" into the dropdown.
    This item should be the first in the dropdown list selections.
    I cant' work with an option array, because it is already binded to a data provider, so how can I add an item to my dropdown programmatically?
    Thank you

    No problem... you're helping me!!
    Well, about the data provider I just find the following code, but nothing about the "option" method. If you need I can provide you also the session bean code.
      private void _init() throws Exception {
            pers_categorieDataProvider.setCachedRowSet((javax.sql.rowset.CachedRowSet)getValue("#{SessionBean1.pers_categorieRowSet}"));
            private DropDown dropDownPersCat = new DropDown();
        public DropDown getDropDownPersCat() {
            return dropDownPersCat;
        public void setDropDownPersCat(DropDown dd) {
            this.dropDownPersCat = dd;
        private CachedRowSetDataProvider pers_categorieDataProvider = new CachedRowSetDataProvider();
        public CachedRowSetDataProvider getPers_categorieDataProvider() {
            return pers_categorieDataProvider;
        public void setPers_categorieDataProvider(CachedRowSetDataProvider crsdp) {
            this.pers_categorieDataProvider = crsdp;
        private LongConverter dropDownPersCatConverter = new LongConverter();
        public LongConverter getDropDownPersCatConverter() {
            return dropDownPersCatConverter;
        public void setDropDownPersCatConverter(LongConverter lc) {
            this.dropDownPersCatConverter = lc;
          public Indirizzario() {
          public void init() {
            // Perform initializations inherited from our superclass
            super.init();
            // Perform application initialization that must complete
            // *before* managed components are initialized
            // TODO - add your own initialiation code here
            // <editor-fold defaultstate="collapsed" desc="Managed Component Initialization">
            // Initialize automatically managed components
            // *Note* - this logic should NOT be modified
            try {
                _init();
            } catch (Exception e) {
                log("Indirizzario Initialization Failure", e);
                throw e instanceof FacesException ? (FacesException) e: new FacesException(e);
            // </editor-fold>
            // Perform application initialization that must complete
            // *after* managed components are initialized
            // TODO - add your own initialization code here
         * <p>Callback method that is called after the component tree has been
         * restored, but before any event processing takes place.  This method
         * will <strong>only</strong> be called on a postback request that
         * is processing a form submit.  Customize this method to allocate
         * resources that will be required in your event handlers.</p>
        public void preprocess() {
         * <p>Callback method that is called just before rendering takes place.
         * This method will <strong>only</strong> be called for the page that
         * will actually be rendered (and not, for example, on a page that
         * handled a postback and then navigated to a different page).  Customize
         * this method to allocate resources that will be required for rendering
         * this page.</p>
        public void prerender() {
         * <p>Callback method that is called after rendering is completed for
         * this request, if <code>init()</code> was called (regardless of whether
         * or not this was the page that was actually rendered).  Customize this
         * method to release resources acquired in the <code>init()</code>,
         * <code>preprocess()</code>, or <code>prerender()</code> methods (or
         * acquired during execution of an event handler).</p>
        public void destroy() {
            pers_categorieDataProvider.close();
         * <p>Return a reference to the scoped data bean.</p>
        protected SessionBean1 getSessionBean1() {
            return (SessionBean1)getBean("SessionBean1");
         * <p>Return a reference to the scoped data bean.</p>
        protected RequestBean1 getRequestBean1() {
            return (RequestBean1)getBean("RequestBean1");
         * <p>Return a reference to the scoped data bean.</p>
        protected ApplicationBean1 getApplicationBean1() {
            return (ApplicationBean1)getBean("ApplicationBean1");
    }

  • Want to add an item at top of Pagelayout

    Hi,
    I want to add an item on top of PageLayout(programatically).I have tried it by making pageLayout bean but it adds the item at bottom.Please help me out.
    Thnx

    Hi,
    If you will add the controls programatically then these will be added at the end of the page, there is one workaround for this.
    Create a region and required controls in it as per your need, after using personalization create one stack layout, and set the path of your newly created region to "Extends" Property.
    again do personalizatio reorder your stack Layout to come at the top.
    I hope it will help.
    Regards,
    Reetesh Sharma

  • HT1420 how to cancel an order or to remove one item, bought as a guest?

    how to cancel an order or to remove one item, bought as a guest?

    All sales are final the moment you click buy

  • HT5446 if i order a new imac with 1tb flash is that pcie based to where i could add a 3.5 ssd and does it still have the bracket and sata cable to add one in it

    if i order a new imac with 1tb flash is that pcie based to where i could add a 3.5 ssd and does it still have the bracket and sata cable to add one in it

    Be advices that the newest iMac's are basically SEALED Units and taking it apart in any way, other than removing the Memory slot cover to add more RAM (That is on the 27" model. The 21.5" is completely sealed), will void the warranty on it.
    Not only that but the screen is Glued to the aluminum casing and if you do pry it off with damaging it you'll need new adhesive strips to remount it.
    Not worth the efford or the cost when you can buy mat any other brand computer for less money and do all the upgrading you would ever want without ever voiding the warranty or breaking something in the process.

  • Oracle apex outside the database

    What risks or impacts do you think if I plan to implement APEX outside the production database. Basically having a separate database all together and apex running into that seperate database. But a lot of source data is in the production database. So looking into this situation, what are the risks and concerns you might think of?
    My team is not comfortable implementing apex inside the production database.

    Hi
    >
    they never install anything on production databases, apex installs a lot of its own objects and they want to keep production bare bones.
    >
    I can see no real justoification to back this up. Ideally APEX should be running within the database where the data that it is accessing it resides. The objects that APEX creates are contained within its own schema and it doesn't take up much space at all.
    By separating the APEX install to a different database, you create a whole new level of configuration headaches and things to go wrong.
    >
    my concern is about vendor level support and other issues
    >
    APEX is free as long as the database is sufficiently licensed - you don't need anything additional to have APEX running on a correctly licensed Oracle database.
    It appears that 'they' have decided on a blanket rule through fear of breaking something (probably due to something having gone wrong once in the past). This is not the correct way to work. If they took the time to understand the technology that they are administering, they would see that an APEX installation should have pretty much zero impact on the production database.
    We successfully run 3 APEX instances on the three production systems, each where the relevant data resides - 2 OLTP databases and a Data Warehouse.
    Again, if they can come up with something specific rather than a sweeping statement and a suggestion to do it another way (using db links) with no reasoning or justification - it would be easier to allay their fears.
    Cheers
    Ben

  • I have the photography plan and want to add the complete package so that I have 2 licenses for Photoshop and 1 for everything else.

    I purchased the photography plan for one person, and want to add the complete package for myself.  I don't see where I can add another package online.  It just says I can upgrade the photography one I currently have.

    Hi Jeremy,
    It sounds like just joining Creative Cloud with a different email address/Adobe Id for the full membership would be what you should do rather than upgrading.
    - Dave

Maybe you are looking for

  • Sql problem, pivot question?

    Hi guys, I have an interesting problem and do not manage to find a sollution. I need to create a report, and we call it variance/trending report. let me explain. I have a table that holds all employess with their salaries, every month. currenly my se

  • Restrict access in report based on compnay codes and cost centers

    Hi, We are using a standard report, which is  assigend to a Z transaction and assigend to the role. The report need to be restricted based on the company code and cost center   ? but i could not find any AUTHORITY- CHECK statements in the code ( ther

  • Submit job in user exit

    Hi sap expert, Please guide me for the abap coding. my requirement is when i create outbound delivery note, then press SAVE button, serial number will be automatic proposed. Now , i process as below sequent. 1. using user exit MV50AFZ1 -> FORM USEREX

  • Re: I am new here

    Hi I am also new here. I have a Toshiba Satellite model A205-S55805. Got it for my birthday. It was used, but looks good. Am having a problem with it shutting down while I am working. I have it plugged in so I know its not the battery. Anyone got any

  • Using Latest SATA Raid Drivers When Installing Windows XP?

    Getting my raid 0 setup on my K8N Neo4/SLI board wasn't as easy as it should have been. I ran into a few problem with my raid drivers that came with my system. While I was trying to install Windows XP, the system refused to restart itself even after