Define parameters in a LOV

Hi
How can I change the parameters of a LOV? For example the buttons 'find', 'ok' or 'cancel'? It's possible to modify the word 'Find' that appears at the top of it?
Thank you

Tamir-L wrote:
Hi,
How are we supposed to know a) what your code is actually doing and
When running this code in PL/SQL developer when the parameters will popup for population you'll see that there is a list of values for the parameters.I (and many others of us) don't have PL/SQL developer. It's a 3rd party tool, not part of Oracle. Therefore we can't run the code to see what it does.
b) how to achieve that on some other 3rd party tool?
That's exactly my question, How can (if at all) I do the same with TOAD ?Based on your description, I'm not sure if TOAD supports such things. It sounds like something specific to PL/SQL developer.
LOV's are not something in SQL or PL/SQL, so your question does not make sense.If you'll create similer code than you'll understand that LOV can be defined in PL/SQL developer tool in the SQL editor.Only if we have PL/SQL developer. Which we don't.
To make it easier try to run the following code:
select 'Example' from dual
where 'field11' LIKE &<name="LOV A"
hint="Choose a value for field1"
type="string"
default="field11"
ifempty="field11"
list="select distinct 'field11','field11' from dual union all select distinct 'field12','field12' from dual"
description="yes"
*>*
*;*I can't.
To clarify my question once more:
If a sql is running under TOAD and that code have parameters the parameters window will pop once the code is executed.
I would like to know whether I can define a LOV for the parameters.I've never come across this in TOAD.

Similar Messages

  • How to define parameters in a FORM portlet

    Is there a way to define parameters in a form portlet? I am trying to create a form with the "OmniPortlet-Simple Parameter Form" functionality so that I can have dynamic LOVs instead of hard-coded ones.

    Are you trying to create this with a normal portal form?
    If that is the case then, it is not possible to have parameters in forms. (I mean, you will not be able to dynamically change the LOV).
    Thanx,
    Chetan.

  • Error in Defining parameters for DB2 while installing IDES on Windows 2003

    Hello,
    I am facing DB2/LUW:V9:RDBMS:DB2/LUW:WINDOWS_X86_64.* While Installing IDES on 64 bit windows 2003 with DB2 V9., At the time of defining parameters, the SAPInst is not taking the Package Location for the Database parameter and giving me this error.
    The set of database DVDs does not contain the DVDs for Windows and I have also downloaded 51032045_3      DB2 9 LUW Windows Server on x64 64bit - Full Install from marketplace but its of no use as well.
    Please help me out with the correct database setup file or any other work around ASAP.
    Many Thanks !!!
    Amit

    Hi,
    You can download from this path.... My Company's Application Components"........ Complimentary Software".......... DB2/UDB" DB2 FOR LUW 9.7
         51039450      DB2 LUW 9.7 FP2SAP RDBMS Windows x64
         51039451      DB2 LUW 9.7 FP2SAP RDBMS Client
    OR
    51040240  DVD DB2 LUW 9.7 FP3SAP RDBMS WINDOWS
    51040241  CD DB2 LUW 9.7 FP3SAP RDBMS client
    Thanks
    Siva

  • Hi all, I am getting following error while define parameters

    Hi all,
    I am new in xmlp report development, when I define parameters in report, while running report I am getting following error
    Calling XDO Data Engine...
    java.sql.SQLException: ORA-00936: missing expression
         at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java(Compiled Code))
         at oracle.jdbc.ttc7.TTIoer.processError(TTIoer.java(Inlined Compiled Code))
         at oracle.jdbc.ttc7.Oall7.receive(Oall7.java(Compiled Code))
         at oracle.jdbc.ttc7.TTC7Protocol.doOall7(TTC7Protocol.java:1986)
         at oracle.jdbc.ttc7.TTC7Protocol.parseExecuteDescribe(TTC7Protocol.java:880)
         at oracle.jdbc.driver.OracleStatement.doExecuteQuery(OracleStatement.java:2580)
         at oracle.jdbc.driver,
    here is my Data template file
    <?xml version="1.0" encoding="windows-1252"?>
    <dataTemplate name="A_TEST" description="A_TEST" Version="1.0">
    <parameters>
    <parameter name ="p_order_number" dataType="number" />
    <parameter name ="p_from_date" dataType="VARCHAR2" />
    <parameter name ="p_to_date" dataType="VARCHAR2" />
    </parameters>
    <dataQuery>
    <sqlStatement name="ROW">
    <![CDATA[SELECT    SELECT oola.line_number, TRUNC (oola.schedule_ship_date) mks_schedule_date
          ,oola.request_date mks_earliest_ship_date
          ,oola.schedule_arrival_date mks_in_house_date
          ,oola.ordered_item mks_cust_p_no, oola.cust_po_number cust_po_no
          ,fnd.description customer_rep, oehead.order_number
      FROM oe_order_lines_all oola, oe_order_headers_all oehead, fnd_user fnd
    WHERE fnd.user_id = oehead.created_by
       AND oehead.header_id = oola.header_id
       AND oehead.order_number = :p_order_number
       AND oola.schedule_ship_date >= ':p_from_date'
       AND oola.schedule_ship_date <= ':p_to_date']]>
    </sqlStatement>
    </dataQuery>
    </dataTemplate>

    I dont see nay issue other than
    :p_from_date'
    No need for quote ' ', use :p_from_date

  • How to define  parameters with radio button

    HI
      How to define  parameters with radio button, but that radio button should display in front of the variable name not after variable name. and under that radio button variable I hve to define parameters, select-options and some other radiobutton varibles.
            I don't know how to paste figures here, otherwise i will provied u the figure for more details.
    Regards.

    PARAMETERS : r1 RADIOBUTTON GROUP radi.
    Go to --> text elements --> selection text
    R1    <your text>
    You can change the program selection screen lay out in screen painter (se51) .
    screen number for your selection screen is 1000.
    Regards,
    Santosh reddy
    Edited by: Santosh Reddy on Dec 9, 2008 11:21 AM

  • Passing user defined parameters in oracle reports thru command line

    Hi All
    We are currently using Reports 6i with Oracle 10g 10.2.0.4.0
    I would like to know that is it possible to pass user defined parameters values while calling report from command line.
    For Example: I am using following coding to call report from command line.
    for /f "tokens=1-3 delims=/ " %%a in ('date /t mm/dd/yyyy -1') do (
    set mm=%%b
    set dd=%%a
    set yyyy=%%c)
    rwrun60 report=c:\reports\banks.rdf userid=express/test@test_rs2 destype=FILE desname=c:\reports\banks%dd%%mm%%yyyy%.pdf desformat=PDF BACKGROUND=NO BATCH=YES
    The report contains some user defined parameter which is using in where condition of reqport query.
    Select * from banks
    where id = :Bank_ID
    Now I want to Pass value for :Bank_Id from command line (like we pass parameter list while calling report with run_product), how it is possible?
    Thanks
    Hassan

    Hi guys
    Fortunately I am able to perform the required task as I just added the report parameter field as follows:
    rwrun60 report=c:\reports\banks.rdf userid=express/test@test_rs2 destype=FILE desname=c:\reports\banks%dd%%mm%%yyyy%%h%%mi%%ss%%ts%.pdf desformat=PDF BACKGROUND=NO BATCH=YES ERRFILE=c:\reports\error.log LOGFILE=c:\reports\joblog.log bank_id='MCB'
    bank_id is the report parameter using in where clause.
    Regards,
    Hassan

  • How to Pass User-defined Parameters from Forms to Reports

    Hi!I am trying to launch an existing report from a form then spool it into a PDF file. I have been successful in passing the report properties using SET_REPORT_OBJECT_PROPERTY built-in and I am also able to launch the report using RUN_REPORT_OBJECT built-in. My problem is, I cannot seem to pass the user defined parameters from my form to the report eventhough I am using the same variable names.
    this is a part of my code:
    repid := Find_Report_Object('ACPPRACS');
    Set_Report_Object_Property(repid, REPORT_EXECUTION_MODE,BATCH);
    Set_Report_Object_Property(repid, REPORT_DESTYPE,FILE);
    Set_Report_Object_Property(repid, REPORT_DESNAME,'C:\TMP\ACS01.PDF');
    Set_Report_Object_Property(repid, REPORT_DESFORMAT,'PDF');
    Set_Report_Object_Property(repid, REPORT_OTHER,'PF_NBO_CD='&#0124; &#0124;'"'&#0124; &#0124;:acs.nbo&#0124; &#0124;'"');
    v_rep := RUN_REPORT_OBJECT(repid);
    Hope you can help me soon. Thanks!

    first of all u will create a paramlist
    then add_paramter to this list
    and then pass this list to the report
    by using run_product.
    i think this is all.
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Jenny ([email protected]):
    Hi!I am trying to launch an existing report from a form then spool it into a PDF file. I have been successful in passing the report properties using SET_REPORT_OBJECT_PROPERTY built-in and I am also able to launch the report using RUN_REPORT_OBJECT built-in. My problem is, I cannot seem to pass the user defined parameters from my form to the report eventhough I am using the same variable names.
    this is a part of my code:
    repid := Find_Report_Object('ACPPRACS');
    Set_Report_Object_Property(repid, REPORT_EXECUTION_MODE,BATCH);
    Set_Report_Object_Property(repid, REPORT_DESTYPE,FILE);
    Set_Report_Object_Property(repid, REPORT_DESNAME,'C:\TMP\ACS01.PDF');
    Set_Report_Object_Property(repid, REPORT_DESFORMAT,'PDF');
    Set_Report_Object_Property(repid, REPORT_OTHER,'PF_NBO_CD='| |'"'| |:acs.nbo| |'"');
    v_rep := RUN_REPORT_OBJECT(repid);
    Hope you can help me soon. Thanks!<HR></BLOCKQUOTE>
    null

  • How to define parameters in custom reports registration

    dear experts
    In my custom report i need to register some parameters and i did so earlier on .. but this time i need some kind of constant lov feild in my report parameters and i cant able to do that .. lets suppose i have parameter on flow status and it is 'SHIPPED' or 'CLOSED' . if i want to see data based on 'SHIPPED' lines, i want to select 'SHIPPED' from my lov, otherwise 'CLOSED' and one more condition may be BOTH for that i use '%' with LIKE ...
    Right now i m using charector 10 constant in concurrent > program > define.
    And when my report run it ask value for my parameter and i have write the exact value ..other wise it not run .. i want to creat fix lov feild for input parameter .
    Do suggust me .. how can i do that .
    regards
    anwer

    You can create a new value set by following the steps:
    Go to Application Developer -> Validation -> Set and create a new value set by giving:
    1. Value set name
    2. Type
    3. Size
    4. Validation type -> select as independent
    Save the changes
    Then go to Application Developer -> Validation values and query for your value set that you created in your previous step.
    Then add the values 'SHIPPED','CLOSED','BOTH' on the list and save changes.
    Then go to concurrent program -> define and query for your concurrent program and change the value set for that parameter to the one you created.
    Then run the report by selecting a value from the LOV.
    For Both you can use something like this:
    a.flow_status:= NVL(:P_flow_status, a.flowstatus)Dont use LIKE operator as it my slow down the report execution in case if the reoprt is huge

  • How to pass parameters to a Lov's Query?

    Hi friends,
    [Apps R12]
    I'm trying to extend the a ProjectLOVVO (for OTL, in example) and the extension would consist on modifying the Lov Query adding in the where clause a comparison with certain fields of the page....
    How can I retrieve a value in the page , a field/item, form_value, or similar and put it in the Lov's query? Is there any direct way to reference it..? Is it necessary to do any special mapping? What about those "bind variables", .. I don't know exactly how to use them.. and if this could be a purpose for their use..
    Thanks for any comment.

    Hi Prasanna,
    thanks for he coment, but.. I think It really doesn't exists the LOV Region Item you mention...
    I mean, the "real" case is:
    In OTL, inside Create timecard page (+/oracle/apps/hxc/selfservice/timecard/webui/TcActivitiesPG+) I want to restrict the Project LOV query (ProjectLOVVO) to add the project manager in the LOV (well, it can be done adding to the from & where clauses the per_all_people_f and pa_project_players) but, for this, is necessary to check the dates.... so It's necessary to add in the where clause a check for the "period", that is a data in a poplist on the screen... [I wasn't be able to locate where is that period stored]
    Also, as a Time card is for a person.. I need too to retrieve the person_id for that person (this person could not be the one who has connected... because you can create a timecard for another user) so.. I see this information on screen at the top, where it appears the "Time Entry:" label... but.. how to locate it into page? and.. are you sure it can be mapped to include it in the LOV query? (It would be necessary to use it as I've seen in others lov's queries.. where it seems to appear parameters/variables/mapping named as :1 ,:2 ... :number... , I don't know how to add it)
    Any detail step would be very appreciated.
    Thanks a lot.!!

  • Infosets -  How to define Parameters

    I have created an infoset on tables KEKO and CKIS.   In the definition I would like to select the data based on some constant criteria.   For instance Costing date from KEKO-KADAT is less then the current date and Costing date to KEKO-BIDAT GE the current date. 
    Can some explain to me how and where to do this and the code necessary to do it.

    PARAMETERS : r1 RADIOBUTTON GROUP radi.
    Go to --> text elements --> selection text
    R1    <your text>
    You can change the program selection screen lay out in screen painter (se51) .
    screen number for your selection screen is 1000.
    Regards,
    Santosh reddy
    Edited by: Santosh Reddy on Dec 9, 2008 11:21 AM

  • How to define parameterized methods in ALBPM

    Hi,
    I am using ALBPM 6.0.
    Scenario:
    I am calling a method B (in the same object) from method A where I want to pass arguments to method B. How do I do that as the method properties can set to return type, but cannot be parameterized
    Please help
    Thanks in advance
    Jayant ([email protected])
    Edited by jayantbit at 01/24/2008 5:48 AM

    Hi Jayant,
    You've got a few options to pass in/out arguments into and out of a method from another method in the same BPM Object:
    1. you could create in arguments (from the BPM Object's variable tab) and pass them in this way
    2. if the information you're passing in is something you might want to persist for a while, consider setting an attribute of your BPM Object and then simply invoking the method. The method could then access the attributes since they're the same object.
    3. as you probably know, if you just have one value to pass out of a method, you should set a "return type" in the properties panel of the method. If you need more than one variable set for the returned values consider "out" args (opposite of #1 above) or setting attributes (#2) on the way out of the method.
    hth,
    Dan

  • Execute command with defined parameters

    Hi,
    I have a firefox addon, "Image Assistent", which enables you to open images with an image viewer. The only possibility is gThumb, which I do not like. So one makes a symbolic link. I have made one so it uses Feh. But I want Feh to be executed as "feh -ZF --hide-pointer". How do I do this?
    I made a tiny script feh.sh with "feh -ZF --hide-pointer" as content, but this lacks what image it should open. An alias doesnt work. So how can I get feh to open with said parameters?
    Thanks

    Use this as script
    #!/bin/sh
    feh -ZF --hide-pointer "$*"

  • Parameters of LOV

    Dear All
    i have LOV exist in AbcVO and i can pass Parameters to this LOV using View Criteria takes some bindings , and i can do this by putting the column name in the value field for every bindings for my current VO.
    my question now, my value will come from another VO, how to pass anotherVO.column in the value field of the binding instead of column of my current VO?
    thanks
    Edited by: Oracle ITself on Mar 14, 2011 7:29 AM

    Hi,
    the expression below is defined on a bind variable used in a VC. It looks up the AM and a ViewObject instance defined therein. It then reads the DepartmentId from the current row
    adf.source.applicationModule.findViewObject('departmentsInLocation').currentRow.DepartmentId
    The View Objects are not at all dependent.
    Frank

  • LOV with Query Bind Parameters

    Hi,
    I have a number of LOVs which have Query Bind Parameters. These LOVs display correctly but when I select a row they do not return values back to the fields in the calling page.
    I get the following message in the OC4J servers:
    DEBUG (LovItemBean) -No row selected in LOV. If you did select a row, then the LOV is probably based on a read-Only ViewObject that is not based on an EntityObject. If this is the case, make sure at least one attribute is marked as key attribute, and you have called setManageRowsByKey(true) in the create method of your ViewObjectImpl java class
    The VO that the LOV is based on is based on an entity object and one of the attributes is marked as key attribute.
    When I remove the Query Bind Parameters the LOV returns successfully into the field.
    Thanks,
    Gavin

    Gavin,
    We just hit this issue ourselves and fixed it. The fix will be included in first patch release, planned for first half of september.
    As a work around, you can remove the "Refresh" property (or set it to "ifNeeded") in the page definition for the applyBindParams InvokeAction, as well as the corresponding Iterator binding immediately below the InvokeAction.
    Steven Davelaar,
    JHeadstart Team.

  • User-defined Report Parameters

    I am creating a report in Reports Developer 6i and deploying it to the Web in a pdf format. I need to pass user-defined parameters to the report without hard-coding the parameter values in the http call. Is there a way to do this?
    Thanks,
    Jenny

    1) Create user defined parameters in builder
    2) While running in web give paramform=yes. This will cause paramform to be displayed and user can enter the values
    Thanks
    The Oracle Reports Team

Maybe you are looking for

  • How can I use a certain identity for a certain folder?

    I have defined different identities from whom I can choose the one I want when writing an email. Is there a possibility to define a certain identity for a certain folder so that when answering a mail in that folder this identity will be choosen autom

  • OIM 11g - How to get modified data on a reconciliation event

    Hi, We're running OIM 11.1.1.5.2 with Ad (9.1.1) , exchange ( 9.1.1.7), dbum (9.1.0.4) and dbat (9.1.0.5) connectors. When we run reconciliation we can get the recon data on the event management tab of the advanced administration console, but, update

  • IPad iCloud Back-Up

    Hi Guys, My iPad has not backed-up to iCloud for over 6 weeka now, just keep getting the message now and again telling me how long its been since the back up...but if i try doing it, an error message comes up....iPhone works fine, but for some reason

  • Cannot Copy and Paste anything in "Code" screen

    Hi - something happened, not sure what I did but pressed some button on the keyboard or combo of buttons, and first when I press F8 to open up the files - instead of opening up an external window it locks it in also I cannot paste anything when in "c

  • Settlement of customer project--without COPA

    Hi guru's, We do not have COPA in place here...so how to settle our project. please provide me any revlevant doc regarding settlement from the config as well as execution of settlement point of view. I need to sit with my CO consultant. My counter pa