Blurd,transparent messagebox with some values to be selected

I have seen many times that if we give any command on web page then a blurd and transparent type messagebox comes on screen with some values in it and screen .
When we select any value on that messagebox that values goes on next page.
I dont know how to proceed for such transparent window.
anybody please help.
thanks and regards

Are you sure this has something to do with Java?
(Javascript.is.not.Java)
db

Similar Messages

  • A filter value for Query is set with some value automatically

    Hello SAP sourcing Guru!
    I created a query which has several filters.
    Some of Filter's type is VLV.
    When I preview the query somehow the filter values are already set with some value even though I did not set the default value.
    For example, filter name is Region and there are four regions: Asia, NA, Europe, and SA.
    I want to select one of them from drop-down menu. But Asia was already selected when I clicked the preview button for the query. I want to see "Please Select" instead of Asia from drop-down menu. I did not select "Prefill value from cache" for the filter. I made the filter Optional only. I did not set Default Value either for the filter.
    Any clues?
    Thank you for your response in advance.

    Hi,
    In the Default value field of the filter prompts, you need to mention the Class Reference ID of the corresponding field. E.g., if you have Contract document phase as a filter, then in that if you want to display a blank or none value, then you should use null:2016.
    Similarly for vlv type, the system has a value 616. Hence if you want to display a None value insteead of Asia, use the following in the Default value field:
    0:616:null.
    The way to find the class reference ID is to goto the RG > Class Reference > Look for the field that you are attempting to default on.
    Hope this helps,
    Vikram

  • Submit a report program with same selection screen with some values exclude

    Dear All,
    I have to  submit a stndard report program from a copied zprogram with same slection screen values ,
    and in some slect-options some values will be excluded depending upon the zprogram.
    How to make it.
    I mean when i submit , same selction screen values should go along with , depending upon some condions i have to exclude some values .
    for ex: selection screen from a to b
    posting date should go same
    but may be along with it i have to pass movem,ent type <> 202 to the submit screen ,.
    how to do this?

    Hi Rajendra
    >What if i have to pass the movement type also 200 to 250 , with 202 and 203 exluded .
    Use BT ( between ) operator for 200 to 250 :
    lr_move_type-sign = 'I'.
    lr_move_type-option = 'BT'.
    lr_move_type-low = '200'.
    lr_move_type-high = '250'.
    COLLECT lr_move_type.
    And use NE ( not equal )  operator to exclude 202 and 203 :
    lr_move_type-sign = 'I'.
    lr_move_type-option = 'NE'.
    lr_move_type-low = '202'.
    COLLECT lr_move_type.
    lr_move_type-low = '203'.
    COLLECT lr_move_type.
    It works just this way.
    > Secondly,
    >
    > If i have the selction sreen same in both the screen , is it possible to pass the same values as it is with out writing one by one selct-option and parameter?
    No I don't think there is way to do it without writing one by one
    but you may not specify for empty select-options.
    Edited by: Bulent Balci on Aug 21, 2010 11:46 AM

  • When we execute   transcation selection-screen should come with some values

    hi gurus,
    My requirement is whenever user executes a particular transaction,
    selection screen should appear with some values by default.
    can you suggest me in solving this problem.
    its urgent.
    thanks,
    Bhanu.R

    Hi,
    for that do like:
    A transaction with a variant can have its own transaction code, which you can then use to execute the transaction with the appropriate variant.
    To create a variant transaction, proceed as follows:
    Choose Goto ® Create vari. trans. from the initial transaction variant maintenance screen.
    Enter a transaction name and corresponding short text. Transaction type Variant transaction is already set. The following screen already contains default values for the name of the calling transaction, the variant name, and the client-specific or cross-client variant checkbox.
    Save your entries.
    Example:
    Variant ABC has been defined for transaction Z000. We now want to create the variant transaction ZVAR.
    Name of the new transaction: ZVAR
    Name of the calling transaction: Z000
    Name of the variant: ABC
    Transaction ZVAR starts transaction Z000 with variant ABC.
    If the variant specified for a variant transaction does not exist (in the current client), then the calling transaction will be started without variant.
    Regards,
    Renjith Michael.

  • Need a Tcode Similar to CJR2 with some restrctions in the selection scr

    Hello Experts,
    I need a Tcode which is Similar to CJR2 but with some restrictions in the selection screen.
    CAN ANYONE THROW A LIGHT HOW TO ACHIVE THIS.
    Thanks a lot in advance.
    Regards,
    Vasanth M

    Hello Experts,
    I have tried with the Transaction Variant. It works but I want to make display only for the version,Starting and closing period and Year. Other fields should be open for input(Cost Element and WBS element)
    But the transaction variant is making DISPLAY ONLY for all the fields.
    Please tell me a suggestion how I could achieve it.
    Thanks a lot in advance.
    Best Regards,
    Vasanth M

  • Need a Tcode Similar to CJR2 with some restrictions in the selection scr

    Hello Experts,
    I need a Tcode which is Similar to CJR2 but with some restrictions in the selection screen.
    CAN ANYONE THROW A LIGHT HOW TO ACHIVE THIS.
    Thanks a lot in advance.
    Regards,
    Vasanth M

    Hello Experts,
    I have tried with the Transaction Variant. It works but I want to make display only for the version,Starting and closing period and Year. Other fields should be open for input(Cost Element and WBS element)
    But the transaction variant is making DISPLAY ONLY for all the fields.
    Please tell me a suggestion how I could achieve it.
    Thanks a lot in advance.
    Best Regards,
    Vasanth M

  • Calling html from java with some values

    Hello friends,
    I can call a HTML file from java.I want to pass some values from java class file to that html file.Anybody help me how to pass parameters?
    Runtime.getRuntime().exec("rundll32 url.dll,FileProtocolHandler http://localhost:8080/jcoDemo/dp.html");
    is one i am using for calling html file
    thanks

    Just add GET query parameters to the URL.
    Besides, if you were using Java 1.6 or newer, then rather use [Desktop#browse()|http://java.sun.com/javase/6/docs/api/java/awt/Desktop.html#browse(java.net.URI)] instead of Runtime#exec(). It is crossplatform while your runtime approach works in Mircosoft Windows systems only.

  • I need some syntax help with reading some values from a selected row in an Access form.

    My goal:  to extract the data from 4 fields in a datasheet row and place them in another form.
    My problem:  I can only get the field values from the first row of the datasheet.
    I have tried using the Form_Click event as the location for the code I've tried.  This seems to be the right place, but apparently referring to the desired fields by their names with Me. in front just references the first record in the datasheet, not
    the one I've selected.
    Should I just read the source form's recordset using the Currentrecord value somehow?  I could use some direction on that.
    Thank you.
    Marj Weir

    It's generally considered good forum etiquette to post back a description of the solution which you've reached.
    The normal control for a multi-valued field is a combo box rather than a text box, but unless it is necessary for you to use a  multi-valued field, i.e. your database is interfacing with SharePoint in the very limited context in which this feature is necessary,
    I'd advise that you model the many-to-many relationship type in the time-honoured way by means of a table which resolves the relationship type into two one-to-many relationship types, and use a subform to show the data.  You can alternatively use a multi-select
    list box or a text box which shows a value list.  You'll find examples of all three methods in StudentCourses.zip in my public databases folder at:
    https://onedrive.live.com/?cid=44CC60D7FEA42912&id=44CC60D7FEA42912!169
    If you have difficulty opening the link copy its text (NB, not the link location) and paste it into your browser's address bar.
    Ken Sheridan, Stafford, England

  • Query data with some value & display in datatable at page

    hi,
    I have bean and when user enter some page i use datatable to display some data from oracle:
    <h:dataTable id="dt1" value="#{GetDataOracle.rep_tcok_pl2_connects}" var="item" bgcolor="#F1F1F1" border="10" cellpadding="5" cellspacing="3" width="70%" dir="LTR" frame="hsides" rules="all" summary="This is a JSF code to create dataTable." >i want to first user defined start date and end date of report, type it into the form and later click submit and display report.
    I know how to do that not using framework, please tell me how to do that in JSF?
    I have main Controller servlet and my Bean is sth like this:
    package logic;
    import java.util.ArrayList;
    import java.util.List;
    import javax.naming.*;
    import java.sql.*;
    import exception.NoConnectionException;
    * @author pawel
    public class GetDataOracle {
    Connection con = null;
    Statement ps = null;
    ResultSet rs = null;
    private List perInfoAll = new ArrayList();
    private List rep_dws_wnioski_wstrzymane_cnt = new ArrayList();
    private List rep_dws_wnioski_wstrzymane_graph = new ArrayList();
    private List rep_tcok_ppi_connects = new ArrayList();
    private List rep_tcok_pl_connects = new ArrayList();
    private List rep_windyk_hip_umowa_to_call = new ArrayList();
    private List rep_tcok_pl2_touchpoint_count = new ArrayList();
    private List rep_tcok_pl2_connects = new ArrayList();
    public List getperInfoAll() {
        int i = 0;
        try {
        con = Database.createConnection();
        ps =    (Statement) con.createStatement();
        rs = ps.executeQuery("select sso, fname, sname, lev, last_login, login_count from stg123054130.oraclereports_user order by sname");
        while(rs.next()){
          perInfoAll.add(i,new getUsersData(rs.getString(1),rs.getString(2),rs.getString(3),rs.getString(4),rs.getString(5),rs.getString(6)));
          i++;
        } catch (NamingException e) {
            e.printStackTrace();
            throw new NoConnectionException(); 
        } catch (SQLException e) {
            e.printStackTrace();
            throw new NoConnectionException(); 
        } catch (NullPointerException e) {
            e.printStackTrace();
            throw new NoConnectionException();  // obsluga bledy na wypadek jesli braknie wolnych polaczen do bazy
        } finally {
        try {
            if(con != null)
            con.close();
        } catch (SQLException e) {
            e.printStackTrace();
        } catch (NullPointerException e) {
            e.printStackTrace();
            throw new NoConnectionException();  // obsluga bledy na wypadek jesli braknie wolnych polaczen do bazy
    return perInfoAll;
    public class getUsersData {
    String sso;
    String fname;
    String sname;
    String lev;
    String last_login;
    String login_count;
    public getUsersData(String sso, String fname, String sname, String lev, String last_login, String login_count) {
        this.sso = sso;
        this.fname = fname;
        this.sname = sname;
        this.lev = lev;
        this.last_login = last_login;
        this.login_count = login_count;
    public String getsso() {
        return sso;
    public String getfname() {
        return fname;
    public String getsname() {
        return sname;
    public String getlev() {
        return lev;
    public String getlast_login() {
        return last_login;
    public String getlogin_count() {
        return login_count;
    }How should i send to my Bean info that i want data where:
    select sso, fname, sname, lev, last_login, login_count from stg123054130.oraclereports_user
    where last_login > to_date('20091101','YYYYMMDD')
    order by sname;
    ?

    Hi 404116,
    Here's another method :
    1. After you have queried the Block-3 <Subject Block> you have the Student-id from Block-2 which you can use to query the Block-1.
    -- I will use the following code to query the Block-1
    1. Check the Block Status of Block-1. As you have queried the Block-3 and Not Block-1, the Block Status of Block-1 should not be 'QUERY'.
    2. If status of Block-1 is not 'QUERY' And
    status of Block-2 is 'QUERY'
    Then
    /* The query process is reverse from Block-3 first */
    2a. Use the Set_Block_Property Built-In to define the Where Condition for the Block-1.
    Where column to Query = : Block-2.Student Id
    2b. Remove the Relation between Block1 and Block-2 at Run Time.
    2c. Go_Block ('Block-1');
    Clear_Block (No_Validate);
    Execute_Query;
    And Remember,
    1. To remove the Where Condition set in Block-1 when you query from Block-1 first
    2. And re-define the MD relation from Block-1 to Block-2
    -- Shailender Mehta --

  • Slow Query only with some values??????

    I have this tables:
    Vehicles: id_vehicle, id_customer, registration_number, model, ... (2.000.000 of records) (1.500.000 distinct id_customer)
    Insurance-Customers-Vehicles: id_insurance, id_customer, id_vehicle ... (4.500.000 of records)
    Insurance: id_insurance, date_insurance, ...
    Customers: id_customer, name, surname, ..
    QUERY:
    select
    vh.id_vehicle,
    vh.id_customer,
    vd.model,
    vd.registration_number
    from Insurance-Customers-Vehicles vh
    left join Vehicles v on (vh.id_vehicle = v.id_vehicle and vh.id_customer = v.id_customer)
    inner join Vehicles vd on (vh.cod_vehiculo = vd.cod_vehiculo)
    where vh.id_customer = 123456
    and vh.id_vehicle is null
    I execute this query because I want to obtain Vehicles that have been associated with a customer but I don’t want to obtain the vehicle-customer on Insurance-Customers-Vehicles table if it’s now associated to the vehicle-customer on vehicles table.
    This query is very fast at 99% of the time (less than 1 second), but when a client has many vehicles associated (more than 50) on Insurance-Customers-Vehicles table the query is very slow and takes between 10 and 20 seconds ...
    Insurance-Customers-Vehicles
    Please, How can I improve it?????
    Thanks in advance!!!!!
    Operation     Object Name                              Rows     Bytes     Cost     Object Node     In/Out     PStart     PStop
    SELECT STATEMENT Optimizer Mode=CHOOSE                         3             12                                          
      NESTED LOOPS                                        3       498       12                                          
        FILTER                                                                
          NESTED LOOPS OUTER                                                                
            TABLE ACCESS BY INDEX ROWID     Insurance-Customers-Vehicles     3       408       6                                          
              INDEX RANGE SCAN     IND_INSCUVEH_ID_CUSTOMER          3             3                                          
            TABLE ACCESS BY INDEX ROWID     VEHICLES               1       13       2                                          
              INDEX UNIQUE SCAN     PK_VEHICLES                    1             1                                          
        TABLE ACCESS BY INDEX ROWID     VEHICLES                    1       17                                                
          INDEX UNIQUE SCAN     PK_VEHICLES                         1             1                  

    I think there is something logically wrong with this query.
    You left join the vehicle table, however you already know that id_vehicle is NULL.
    I'm not sure what it should achieve, maybe you should replace this join with an EXISTS sub select, maybe you can remove this join completely.
    Try to find an example where your query gives a different result than this one. And explain me why the result is different.
    select vh.id_vehicle,
          vh.id_customer,
          vd.model,
          vd.registration_number
    from Insurance-Customers-Vehicles vh
    inner join Vehicles vd on (vh.cod_vehiculo = vd.cod_vehiculo)
    where vh.id_customer = 123456
    and vh.id_vehicle is null;Message was edited by:
    Sven W.

  • How to exclude values in report selection ?

    Hello experts,
    I am in NW 2004S BI 7.0 .
    My requirment is to exclude some values in the selection screen of a report in BEX.
    for examaple, out of 200 employees, i want to execute the report only for 198 employees and to exclude two guys.
    Is there any way to achive this in the new version of BEX ?
    Regards,
    Ravi

    Hello Ravindra,
    if you have values fixed for a query to be excluded, you can always restrict the infoobject with these values and click the exclude option when restricting. On the restriction screen where you move values from left to right pane, right click on the values and say "exclude"
    2. if you want to exclude values during run-time, create variables on that object with user input option. during run-time(i.e while query execution), in the selection screen (i.e values input screen for that infoobject), you can exclude these values.
    Hope this helps..
    thanks,

  • How to Refer the Selected value in a Select List

    I have a page item which is a select list. I have a button in my region which when clicked will call a process. This process takes the current value of my page item as a parameter. However, when I select a value from the Select list and click on the button, the page item is still submitting the earlier value, it is not getting updated with the value I selected in the select list. Can someone tell me how I can get the page item value to be updated with the value I selected from the choice list? I tried calling a javascript function from the element attribute of this select list onchange="javascript:setValue(this);") and was trying to set the value of another hidden page item with the value of this select list but then the function is not getting called as well. My function code is something like
    function setValue(pThis)
    for (var i = 0; i < pThis.options.length; i++) {
    if (pThis.options[ i ].selected){
    result= pThis.options;
    html_GetElement('P2_HIDDEN').value = result;
    P2_HIDDEN is my hidden page item

    970829 wrote:
    I have a page item which is a select list. I have a button in my region which when clicked will call a process. This process takes the current value of my page item as a parameter. However, when I select a value from the Select list and click on the button, the page item is still submitting the earlier value, it is not getting updated with the value I selected in the select list.
    How do you know this? Have you used Debug mode to track what is happening when the button is pressed? This will show any changes to item values in session state during page submit and page show processing.
    Can someone tell me how I can get the page item value to be updated with the value I selected from the choice list?
    This should happen automatically with a select list item, if the button is correctly defined to perform a page submit. It will not happen if the button performs a redirect. What action is defined to occur when the button is pressed?
    I tried calling a javascript function from the element attribute of this select list onchange="javascript:setValue(this);") and was trying to set the value of another hidden page item with the value of this select list but then the function is not getting called as well. My function code is something like
    function setValue(pThis)
    for (var i = 0; i < pThis.options.length; i++) {
    if (pThis.options[ i ].selected){
    result= pThis.options;
    html_GetElement('P2_HIDDEN').value = result;
    P2_HIDDEN is my hidden page item
    As detailed above, this should be completely unnecessary, however as an aside, html_GetElement is a very out of date method of accessing an item. What version of APEX are you using? (Always specify which version you're using when you ask a question, to allow us to determine the most appropriate solution to the problem.)

  • Form bean with int property and netui:select tag

    Hi,
    I've recently started using WebLogic 8.1 for a client project. There's
    been a bit of a learning curve, but I've been able to find most of my
    answers in the docs or on the dev2dev site. This one, though, I've been
    unable to manage.
    I have a database table, call it foo. In it I have columns for id
    (numeric) and name (string). I created a database control to read that
    data:
    select id, name
    from foo
    I then want to use this data to populate a select list in a form, which
    is going to be used to submit new records for another table. For the data:
    id     name
    1     Foo
    2     Bar
    3     Bletch
    I want to generate a select list (this is the output HTML, not the netui
    tags):
    <select name="foo">
    <option value="1">Foo</option>
    <option value="2">Bar</option>
    <option value="3">Bletch</option>
    </select>
    My first question is what the best way to do this is. I was able to get
    this working by creating a database control, which returns an array of a
    custom Foo class. I then pass that array into a utility method which
    converts it into a Map, and pass that map to the netui:select tag in the
    optionDataSource attribute. This works, but it seems rather roundabout,
    so I'm wondering if there's a better way to do it, without needing the
    conversion utility method in the middle. I tried playing around with
    the control, I tried using different netui tags (I thought I could do it
    with a repeater and netui:selectOption tags, but that didn't work), and
    nothing else worked.
    The second problem arose when I was tying the result to a Form Bean. I
    created a bean with all the data that I was reading from the form, and
    at first, I just made everything in the form bean be a String. For this
    select, though, the values are ids, so I thought I'd just make them be
    ints in the form bean instead. However, when I did that, WL decided
    that it wanted to add in a default option with a value of 0:
    <select name="foo">
    <option value="1">Foo</option>
    <option value="2">Bar</option>
    <option value="3">Bletch</option>
    <option value="0" selected>0</option>
    </select>
    I've tried to find a way to get rid of that 0, and I can't. Is there a
    way to prevent it from sticking in a default value like that? Or do I
    have to just leave it as a String in the form bean to get it to work the
    way I want?
    Thanks in advance for your help.
    Joe Robins                    Tel: 212-918-5057
    Thaumaturgix, Inc.               Fax: 212-918-5001
    19 W. 44th St., Suite 810          Email: [email protected]
    New York, NY 10036               http://www.tgix.com
    thau'ma-tur-gy, n. the working of miracles.

    wrt your 2nd problem, in the jpf, for the form bean, are you declaring your id
    like this:
    private int id;
    if so, try declaring it w/ a valid value, like:
    private int id = 1;
    -tanya
    Joe Robins <[email protected]> wrote:
    Hi,
    I've recently started using WebLogic 8.1 for a client project. There's
    been a bit of a learning curve, but I've been able to find most of my
    answers in the docs or on the dev2dev site. This one, though, I've been
    unable to manage.
    I have a database table, call it foo. In it I have columns for id
    (numeric) and name (string). I created a database control to read that
    data:
    select id, name
    from foo
    I then want to use this data to populate a select list in a form, which
    is going to be used to submit new records for another table. For the
    data:
    id     name
    1     Foo
    2     Bar
    3     Bletch
    I want to generate a select list (this is the output HTML, not the netui
    tags):
    <select name="foo">
    <option value="1">Foo</option>
    <option value="2">Bar</option>
    <option value="3">Bletch</option>
    </select>
    My first question is what the best way to do this is. I was able to
    get
    this working by creating a database control, which returns an array of
    a
    custom Foo class. I then pass that array into a utility method which
    converts it into a Map, and pass that map to the netui:select tag in
    the
    optionDataSource attribute. This works, but it seems rather roundabout,
    so I'm wondering if there's a better way to do it, without needing the
    conversion utility method in the middle. I tried playing around with
    the control, I tried using different netui tags (I thought I could do
    it
    with a repeater and netui:selectOption tags, but that didn't work), and
    nothing else worked.
    The second problem arose when I was tying the result to a Form Bean.
    I
    created a bean with all the data that I was reading from the form, and
    at first, I just made everything in the form bean be a String. For this
    select, though, the values are ids, so I thought I'd just make them be
    ints in the form bean instead. However, when I did that, WL decided
    that it wanted to add in a default option with a value of 0:
    <select name="foo">
    <option value="1">Foo</option>
    <option value="2">Bar</option>
    <option value="3">Bletch</option>
    <option value="0" selected>0</option>
    </select>
    I've tried to find a way to get rid of that 0, and I can't. Is there
    a
    way to prevent it from sticking in a default value like that? Or do
    I
    have to just leave it as a String in the form bean to get it to work
    the
    way I want?
    Thanks in advance for your help.
    Joe Robins                    Tel: 212-918-5057
    Thaumaturgix, Inc.               Fax: 212-918-5001
    19 W. 44th St., Suite 810          Email: [email protected]
    New York, NY 10036               http://www.tgix.com
    thau'ma-tur-gy, n. the working of miracles.

  • Initialize some fields in material master with default values

    Hi,
    I would like to initialize some fields in material master MM01 with default values.
    for exemple in the view MRP1 there is a field MRP type I would like to initialize PD in the field as default value.
    but when I go to the technical information there is no parameter id that I can use in SU3.
    Do you know how I can the initialize the field those don't have parameter ID?
    thank
    Dede

    Dear Glenn,
    This is possible in SAP for this use T code MMD1 and create MRP profile and assign this MRP profile while creating material using MM01 in the organisation level put this created MRP profile. The values you maintained in this profile get copied to the material by default.
    To maintain MRP profile go to MMD1->give your profile name...........> click on  selection screen push button--->give here profile description--->select what MRP  field which u want to make fixed one/default. if make fixed later you can not change--
    >click on data screen 1 push button and maintain your value and save
    sree

  • How to find String associated with some long value.

    My requirement is to know the String associated with the long value, for ex 23423423 is having some value like 'skljflsjf'. Can any body findout soln for the same.
    Thanks
    ~ Chethangowda.

    My requirement is to know the String associatedwith
    the long value, for ex 23423423 is having somevalue
    like 'skljflsjf'. Can any body findout soln forthe
    same.
    Hum... I'm not 100% sure, but it seems the answeris:
    dgjldkgjfkljg
    Please, don't thank me before you confirm thething.
    Regards.Oooohhhh! That explains it! I guess I must've missed
    the part where he said he wants it translated to
    trollish. How stupid of me.You're absolutely not to blame... to be honest, if I had not read the OP 3-4 times carefully, I would not have found the solution.

Maybe you are looking for