How to call the parameter of the 101 on page 1 page

Greetings,

I wanted to call the parameter on the page "P101_USERNAME" to connect to page 1.
Cust_user is a table where I m authticating my username and password, Authtication is doing well, but I want the client code in the table cust_user of the specific client to display after the connection on page 1. that i wrote query on page 1 "cust_id SELECT FROM cust_user WHERE UPPER (USER name) = UPPER(:P101_USERNAME), but it shows nothing, if I'm harcore specific username instead of: p101_username it works very well for example"cust_id SELECT FROM cust_user WHERE (USERNAME) = UPPER ('test'), '

Please drivers me how to get the value of the text field (p101_username-login page) to page 1, it is the first page after login.

Like I said earlier, use APP_USER.
Go Page 1 now.

See you soon,.

Tags: Database

Similar Questions

  • How to call the procedure type table

    Hi I have the below requirement

    Created in the sub table type

    CREATE or REPLACE the TYPE char_type IS the TABLE OF VARCHAR2 (4000);

    create or replace procedure test_proc_type (p_type char_type) is

    Start

    I'm looping 1.p_type.count

    dbms_output.put_line (p_type (i));

    end loop;

    end;

    How to call the procedure with parameter as a type!

    SQL> create or replace type  char_type as table of varchar2(4000)
      2  /
    
    Type created.
    
    SQL> create or replace procedure test_proc_type (p_type char_type)
      2  is
      3  begin
      4    for i in 1..p_type.count loop
      5      dbms_output.put_line (p_type(i) ) ;
      6    end loop;
      7  end;
      8  /
    
    Procedure created.
    
    SQL> set serveroutput on
    SQL>
    SQL> exec test_proc_type(char_type('A','B','C','D','E'))
    A
    B
    C
    D
    E
    
    PL/SQL procedure successfully completed.
    
    SQL>
    
  • How to call the setting menu of the BIOS on HP DV4 1540us netbook?

    Hi all

    How to call the setting menu of the BIOS on HP DV4 1540us netbook?

    F2 does NOT an on-screen BIOS setting.

    Is there another trick?  Or, perhaps, defining the procedure step by step to start the BIOS?

    TIA

    Power on the laptop and all logo HP being displayed, press F10.

  • How to call the web service?

    Hello

    I want to know how to call the web service from my application HTML5 & javascript.

    Please help me find this detail as what I can access easily. and I want to access web services online (a method of it) I'm not concered with how background Web service takes place.

    I just want that when you call a web service method, I will return the result.

    Please try this out for a WebService call

    var xmlhttp;
    xmlhttp = new XMLHttpRequest();
    xmlhttp.open("get","your url",true);
    xmlhttp.setRequestHeader("Accept","application/json");
    xmlhttp.setRequestHeader("Content-type", "application/json");
    xmlhttp.onreadystatechange=function() {
     if (xmlhttp.readyState==4) {
      if (xmlhttp.status == 200) {
        console.log(xmlhttp.responseText);
      }
     }
    }
    xmlhttp.send();
    

    This will display the result of the invocation of webservice. The url is the application that you deploy and the type can be get/post. If xmlhttp.send (post) takes argument for the display of the data. You can call it by clicking a button in HTML.

  • How to call the java function with javascript setting in mobile adf?

    How to call the java function with javascript setting in mobile adf?

    The ADF Mobile utility container API can be used from JavaScript or Java.

    Application container API - 11 g Release 2 (11.1.2.4.0)

  • How to call the stored procedure when I press the button

    Hello

    I want to know how to call the procedure/SQL statement when I press the button using callable statement.

    can someone give me it please link who knows the steps to do this.

    Thanks in advance,
    SAN

    Hello

    read this good example http://www.baigzeeshan.com/2010/05/calling-plsql-procedure-and-function-in.html

    ~ Abhijit

  • How to call the variables of the scene inside movieClips

    How to call the variables of the scene inside movieClips

    One way would be to use "MovieClip (root)" to target variables in the main timeline... MovieClip (root) .someVariable = someValue;

  • How to call the javascript function in ADF

    I have the javascript function stored in a .js file external (try to reuse in another application). How can call the javascript function for an event of ADF faces component. I need to I am a newbie to ADF, all ideas are appreciated.

    Kind regards
    Surya

    Published by: sgodavar on Sep 24, 2010 11:44

    Include JavaScript to the jsff/jspx as page:

    Call it like:

    Type = "dblClick" / >
    Amit

  • How to call the function (function Build-in user) in Pro * C program

    We have developed the application Pro * C program.
    TimesTen version is "TimesTen release 11.2.1.5.0 (64-bit, Linux/x86_64) (tt112150:53308) 2010-03 - 04 T 20: 39:30Z.

    We would like to develop Pro * C program you are using PL/SQL.

    We have a few questions.
    How to call the function (function Build-in user) in Pro * C program?

    #########
    TEST
    #########

    ttisql:
    Command > create or replace FUNCTION F_SAMPLE (i_str IN VARCHAR2)
    > BACK NUMBER
    > o_number NUMBER;
    > START
    > select i_str
    > in o_number
    > double;
    >
    > O_number RETURN;
    >
    > EXCEPTION
    > Others THEN
    > RETURN 0;
    > END;
    > /.
    display errors
    The function is created.
    Order > show errors
    No errors.
    Command >
    Command > set serveroutput on;
    Command > declare
    > number of num1;
    > start
    > num1: = F_SAMPLE ('A');
    > DBMS_OUTPUT. PUT_LINE ("F_SAMPLE" |) ' ' || NUM1);
    > end;
    > /.
    F_SAMPLE 0

    PL/SQL procedure successfully completed.

    Command >


    Pro * C case:

    EXEC SQL BEGIN DECLARE SECTION;
    number of num1;
    EXEC SQL END DECLARE SECTION;

    EXEC SQL EXECUTE
    Start
    : num1: = F_SAMPLE ('A');
    end;
    END-EXEC;

    Make sure to install:
    Error on line 146, column 3, file plsqlPROC.pc:
    Error on line 146, column 3 in file plsqlPROC.pc
    number of num1;
    .. 1
    PCC-S-02201, encountered the symbol "num1" when expecting one of the following conditions:


    Thank you.

    GooGyum

    There are two problems with your variable declaration:

    1. the name of the variable and type are thew misplacement autour.

    2. you may not use a host variable type.

    If you change this to:

    EXEC SQL BEGIN DECLARE SECTION;
    int num1;
    EXEC SQL END DECLARE SECTION;

    Then it will work very well.

    Chris

  • How to make the top sites page appears when I open a new tab? Why have I not of "buttons" to pin a top site of the page tab?

    When I open a new tab, NO best sites don't show up... shows just a search engine box. I have Firefox 33.0. Why is there no 'pin' button when I opened a new page? How to make the top sites page appears when I open a new tab?

    Here is some additional information on the configuration of the new tab page:

    (1) in a new tab, type or paste Subject: config in the address bar and press ENTER. Click on the button promising to be careful.

    (2) in the search above the list box, type or paste newtab and make a pause so that the list is filtered

    (3) double-click the preference browser.newtab.url and enter your favorite page:

    • (Default) page thumbnails = > subject: newtab
    • Blank tab = > subject: empty
    • Built-in Firefox homepage = > topic: welcome
    • Any other page = > full URL of the page

    Press Ctrl + t to open a new tab and check that it worked. Fixed?

    Some traps:

    If Firefox will not let you change this setting: you can have what is called SearchProtect on your system.

    Firefox if allows you to save your changes, but he doesn't know: one of your extensions may be the substitution of her. You can consult, disable and/or remove extensions on the addons page:

    "3-bar" menu button (or tools) > Add-ons > in the left column click on Extensions

    If the modification works during your session, but during the next startup is leads to: you could have a user.js file in your personal settings Firefox (your Firefox profile folder). This article describes how to track down and delete the file: How to fix preferences that will not save.

    A little luck?

  • How to stop the Firefox update page to load whenever I run the FF 3.6.16 application

    How to stop the Firefox update page to load whenever I run the application FF 3.6.16. I use it on an iMac G5 ALS.

    See the following for a few suggestions:

  • I have a purple yahoo page and a page of yahoo to blue color. I can't understand how to remove the purple color page.

    I have a purple yahoo page and a page of yahoo to blue color. I can't understand how to remove the purple color page.

    original title: pages of Yahoo

    Hello

    I suggest you contact Yahoo! help for assistance.

    http://help.Yahoo.com/l/us/Yahoo/helpcentral/helpcentral_contactus.html

    See you soon.

  • How to get the top users page?

    Hello

    How to build the top users page with which users are more recently logged_in to the application? Similar to the picture here

    at.bmp

    --

    Thank you.

    Venky_prs wrote:

    How to build the top users page with which users are more recently logged_in to the application? Similar to the picture here

    Create a report of region using a query like:

    select
        user_name
      , max(access_date) most_recent
    from
        apex_workspace_access_log l
    where
        authentication_result = 'AUTH_SUCCESS'
    and application_id = :app_id
    group by
      user_name
    

    Use of the ' 16 hours ago" number / Date Format MOST_RECENT column.

  • How to count the number of pages on the spread

    How to count the number of pages on the spread

    #include "ILayoutControlData.h".

    #include "ILayoutUIUtils.h".

    #include "ISpread.h".

    InterfacePtr layoutData (Utils()-> QueryFrontLayoutData());

    If (layoutData)

    {

    UIDRef spreadRef is layoutData-> GetSpreadRef();.

    InterfacePtr activeSpread (spreadRef, UseDefaultIID ());

    Int32 count is activeSpread-> GetNumPages();.   Number of pages of active propagation.

    }

  • Documaker: How to set the overflow by page 2

    Hi Experts,

    I want to put the overflow of 2 per page.
    Overflow works, but a part of the production is superimposed on 1 page.
    I can't set the overflow by 2 pages?

    1 formA (contains Subform1)
    2 Subform1 (contains Subform2)
    3 Subform2

    Subform2 has 2 pages (pages 1/2).

    Subform1 on proforma is the overflow setting when the trigger by XML.
    Search mask (counter)!: / xxx, data, repetition, repetition

    Subform2 on Subform1 offers which are always repeated 3 times.
    Reference:
    Documaker: How to define repeated 3 times exceeding always.

    For example, there are 2 types (Type 'X', type there "") in "Repeat".
    In the test, sample output is as follows.
    I want 12 pages output, but output data are 11 pages because PAGE 6 superimposes itself on 1 page.
    (1), (2), (3) East County. (Always 3 times a 'Repeat')

    PAGE 1: TypeX (1) - page1
    PAGE 2: TypeX (1) - page 2
    PAGE 3: TypeX (2) - page 1
    PAGE 4: TypeX (2) - page 2
    PAGE 5: TypeX (3) - page 1
    PAGE 6: TypeX (3) - page2 is encroaching TypeY (1) - page1
    PAGE 7: Typical (1) - page 2
    PAGE 8: Typed (2) - page 1
    PAGE 9: Typed (2) - page 2
    PAGE 10: Typed (3) - page 1
    PAGE 11: Typed (3) - page 2

    Please tell us how to set the overflow by page 2.

    Thank you

    It always seems that you have your typed page (1) configured to use an absolute origin and defined on the same page as your another subform.
    If your know you will have to TypeX and typed elements and you want the TypeY to start on a new page, then you must go back to the provision of origin in DMStudio and create a new page and start the subform to TypeY on its own page.
    By definiing two subforms on the same page of the form and each giving origin start to ABS 0, you say that the two elements can co-exist on the same page. That might be true if they are mutually exclusive where you would have only one or the other. But if you can have both, you can't have the second subform have an absolute origin. Otherwise, he will always overlap all that exists on the page where you set trigger.

Maybe you are looking for

  • iPhone

    Hi all. I have an iPhone6 (10.0.2) and I'm not trying to load PDFs to iBooks emails out. My problem is that I can't find the "save the PDF in iBooks to." I open the PDF file the emails off and go to the download icon, but the "save the PDF in iBooks

  • Combining unlimited minutes in the world with the United Kingdom 100 minutes

    I'm subscribing to unlimited minutes in the world, but I also call a lot of UK mobile phones which are not covered. Is it possible also to buy the United Kingtom 100 minutes and if so, with the combination recognize that fixed UK are not deducted fro

  • Windows server 2008 boot mgr missing

    window Server 2008 boot mgr missing

  • Maximum hard drive size in the Lenovo 3000 N100

    I have Lenovo 3000 N100 It came with 100 GB hard drive 5400 RPM What is the maximum hard disk that can be used. Is it possible to only 5400 RPM or 7200 RPM? Thanks for the answer Abraham

  • How to burn audio files to CD for playback in a portable CD player

    having a voice, record, engraved on a c.d.. How can I convert a file I can re - burn on a CD to be played on a player portable c.d. one of our staff created a record on his computer of voice and it burned to a CD, this CD will not play on a player po