How to disable a Entire row in a Matrix in Find Mode (User Form)

Hi,
How to disable a Entire row in a Matrix in Find Mode (User Form)
Regards
Jambu

Hi,
   Iam using Bubble event = false in click event but the matrix row
is allow to edit but we cant save the document in Find Mode That is fine.
What is my actual requirement is In find mode matrix Row not allow to enter the data .
For examble In ADD mode i enter the data in Three rows (Item Section - Matrix) and
save the document. Whwn i open the document in find mode the three row is not allow
to editable like the same functionality of PO, sales Order, etc ..
Regards
Jambu

Similar Messages

  • How to return the entire row from a table

    Hi guys,
    Tabl A
    FirstName varchar2(10),
    Age Number,
    Add varchar2(100),
    Table B
    Filedname varchar2(200), -- contains all the fields of table A
    Datatype varchar2(100), -- Contains the datatypes of the filedname
    Length Number -- contains the length of the fileds
    Now how can i return the entire row from table A with the datatype and its length.
    Any help would be appreciated ?
    Here is the query I wrote but it how to take the datatype and its length..
    create or replace procedure disp_table_data
    as
    type r_cursor is REF CURSOR;
    c_A r_cursor;
    er A%rowtype;
    begin
    open c_A for select * from A;
    loop
    fetch c_A into er;
    exit when c_A%notfound;
    dbms_output.put_line(er.FirstName||'--'||er.Age);
    end loop;
    close c_A;
    END;
    /

    Guys,
    I want column value from table A and its corresponding data_type and length from table B. I think I cant do it through joins.
    Any idea would be appreciated ?.
    Example ..
    Tabl A
    FirstName varchar2(10),
    Age Number,
    Add varchar2(100)
    insert into A values('John',24,'Boston');
    Table B
    Filedname varchar2(200), -- contains all the fields of table A
    Datatype varchar2(100), -- Contains the datatypes of the filedname
    Length Number -- contains the length of the fileds
    insert into B values('FirstName','varchar2',10); -- this is coming from table A.
    Output should be like this...
    John,Varchar2,10
    Here (John is the FirstName - coming from table A, Varchar2 is a Datatype and 10 is the Length which are coming from table B ). Only column values are coming from table A , corresponding datatype and length are coming from B.
    Any idea would be appreciated ?
    Thanks.

  • Web DynPro ABAP - Disable a entire row in the Table of the output.

    Hi Web Dynpro Experts,
    Need ur Help.!
    I have a requirement to disable the one row of the table in web dynpro ABAP
    For example . my table is like
    Field1   Field2
    A           Success
    B            Failure
    C            Failure
    I need to allow the User to select the record only if its status is Success,if status is Failure then i should not the allow user to select.
    This enabling and disabling of the rows should be done before displaying on to the Screen.
    Please suggest me ASAP.
    Thanks,
    Akila

    Hi Akila,
    please try this.
    Create a node (Eg: TEST) of type 0-n and 0-1. Take attributes attr1, attr2, flag (of type BOOLEAN). Create a table and give the TEST node as datasource. Now using "Create Binding" create columns for attr1 and atte2. Now, bind the read-only property of the columns with flag attribute.
    Now, in the INIT method, set the table values like this:
    For examle, if you want to disable row having test2,
    ls_test-attr1 = 'A'.
    ls_test-attr1 = 'TEST1'.
    ls_test-flag = ' '.
    append ls_test to lt_test.
    clear ls_test.
    ls_test-attr1 = 'B'.
    ls_test-attr1 = 'TEST2'.
    ls_test-flag = 'X'.
    append ls_test to lt_test.
    clear ls_test.
    ls_test-attr1 = 'C'.
    ls_test-attr1 = 'TEST1'.
    ls_test-flag = ' '.
    append ls_test to lt_test.
    clear ls_test.
    lo_test->bind_table( lt_test ).
    By doing this, 2nd row gets disabled.
    Also, if you already have the internal table with values, based on some condition you can change the value of flag and bind the table to node.
    Hope this helps you, Please let me know in case of any queries.
    Regards,
    Manogna

  • How to create table with rows and columns in the layout mode?

    One of my friends advised me to develop my whole site on the
    layout mode as its better than the standard as he says
    but I couldnot make an ordinary table with rows and columns
    in th layout mode
    is there any one who can tell me how to?
    thanx alot

    Your friend is obviously not a reliable source of HTML
    information.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "Mr.Ghost" <[email protected]> wrote in
    message
    news:f060vi$npp$[email protected]..
    > One of my friends advised me to develop my whole site on
    the layout mode
    > as its
    > better than the standard as he says
    > but I couldnot make an ordinary table with rows and
    columns in th layout
    > mode
    > is there any one who can tell me how to?
    > thanx alot
    >

  • How to color a particular row in a matrix

    Hi All,
    Using SBO, i am having two queries:
    1. Is it possible to color single row, Cell in a matrix or a grid by any way.
    2. And How to copy particular row from 1 matrix to another?. I want this by using drag n drop event of mouse. Only click and right click mouse events are available in SBO. But I want to use mouse down and mouse up events..Please help me, it's urgent.
    Thanks in advance.

    Hi,
    1) No, unfortunately, you cannot colour either a row or a single cell in the current versions of the matrix and grid controls. As a workaround, I use an image column as the first column in my matrices and then put coloured squares in this column for rows that I want to 'highlight'.
    2) You can't drag and drop using the SBO controls. Personally, I use the right-click event and add a menu option to copy the selected rows to the other matrix and it works fine. Click is the Mouse Down event and Item Pressed is the Mouse Up but it is not fully supported on matrices or grids.
    Kind Regards,
    Owen

  • How to disable the first row of an ALV Grid?

    Hi All,
          I am working on a module pool programme. I am displaying ALV grid. I have to give some default values in the first row and disable it. I have to disable the third column and fourth row value. How can i achieve this?
    Help will be appreciated.
    Thanks,
    Ibrahim.

    here is the code i have written....but its not working...
    TYPES : BEGIN OF tp_grid,
            fname(25)   TYPE c,
            reqd,
            seqno       TYPE n,
            tl_styl TYPE lvc_t_styl,
            edit,
            END OF tp_grid.
    DATA : wl_styl TYPE lvc_s_styl.
    DATA : wl_layout TYPE lvc_s_layo.
    DATA : lt_celltab TYPE lvc_t_styl.
      READ TABLE tl_grid INTO wl_grid INDEX 1.
      wl_styl-fieldname = 'TAG NUMBER'.
      wl_styl-style = cl_gui_alv_grid=>mc_style_disabled.
      INSERT wl_styl INTO TABLE lt_celltab.
      INSERT LINES OF lt_celltab INTO  wl_grid-tl_styl index 1.
      MODIFY tl_grid INDEX 1 FROM wl_grid.
      wl_layout-stylefname = 'TL_STYL'.
      CALL METHOD l_initgrid->set_table_for_first_display
        EXPORTING
          is_layout                     = wl_layout
        CHANGING
          it_outtab                     = tl_grid
          it_fieldcatalog               = tl_init_fcat
        EXCEPTIONS
          invalid_parameter_combination = 1
          program_error                 = 2
          too_many_lines                = 3
          OTHERS                        = 4.
    ENDFORM.                    " display_initgrid
    Help will be appreciated....
    Thanks,
    Ibrahim

  • How to disable a particular row in a JTable

    How can a disable only a particular row/column in a JTable.
    I am trying to create an XML Notepad type of application for which I need the row which contains the root element or any element which has a child element to be disabled. How can I achieve this??
    I would be grateful for replies.

    Hi,
    Create your own class which extends TableModel and in that class u override the method
    public boolean isCellEditable( int row, int col)
    As u know the row and col which u want to disable hard code those values in the method.
    Like
    public boolean isCellEditable( int row, int col)
    if( row == 2 and col == 1 )
    return false
    else
    return true
    Hopefully this provides u with a solution.
    Cheers :)
    Nagaraj

  • How to Disable Detail VO Row Edit button in the HGRID

    Hi,
    I have a HGRID with recursion and basing on some criteria i have to disable the Edit button of the master and detail rows.Last row which dont have recursion but that level itself satisifies some criteria and button should be disabled.As there is no level under that the code in rowimpl for VLAccessor is not looping through.
    Can any one tell me please .. how to do this.?
    Thanks
    Soujanya

    This is the code in Roimpl of master VO
    protected Object getAttributeInternal(int index)
    boolean isVLAccessor = (index == getAttributeIndexOf("XVO"));
    OADBTransactionImpl txImpl = (OADBTransactionImpl)getApplicationModule().getTransaction();
    String parentID = (String)txImpl.getTransientValue("ParentID");
    try{
    if (isVLAccessor)
    RowSet rset = (RowSet)super.getAttributeInternal(index);
    Row updateRow=rset.first();
    if(updateRow != null){
    do
    String mode =(String)updateRow.getAttribute(6);
    Number unitId=(Number)updateRow.getAttribute(0);
    int parentMode=getParentUnitMode(unitId.intValue(),parentID);
    if(mode != null && mode.equals("OTHER_UNIT"))
    updateRow.setAttribute(13,"E2");
    }else
    if(parentMod)
    updateRow.setAttribute(13,"E2");
    else
    updateRow.setAttribute(13,"E");
    }while((updateRow = (Row)rset.next())!= null);
    if(rset != null)
    rset.reset();
    return rset;
    }catch(Exception e)
    throw OAException.wrapperException(e);
    return super.getAttributeInternal(index);
    }

  • How to disable check box (row selector) in a tabular APEX report

    I have a tabular report with check boxes that gets populated by a SQL query.  For certain rows, I want to disable (or not render) the check box, depending on the value of one of the columns for that particular row (if the value of a column defined as Date is less than sysdate, I don't want to display the check box for that row).  I tried using the Conditional Display in the Column Attribute section of the check box, but I am unable to access this Date column which is being selected from a view in the source SQL.  I used variable such as :name-of_column, V(':name-of_column'), but always get a NULL value for this Date column in the SQL that I am trying to code in the Conditional Display section.  For this reason, my condition does not work correctly.
    What am I doing wrong?  Is my approach above correct?

    Hi Ajay,
    I don't think you can handle this with a conditional display, as that works on column level rather than row level.
    The way I see it, there are two things you can do:
    1) an sql approach, where youo render the checkbox as part of your query using apex_item.checkbox, check the oracle docs for detailed info on the usage APEX_ITEM
    You'll end up with a query like
    select case when YOUR_DATE_COLUMN < sysdate
                      then null
                      else  apex_item.checkbox2( p_idx => 1
                                                               , p_value => YOUR_DATE_COLUMN
    ,      <rest of your query here>
    from YOUR_TABLE
    2) an JavaScript approach in which you create a dynamic action that check your tabular form date column and, when necessary hides and disables the checkbox for that row.
    First option is more robust, but will require a bit more work. Second option is faster to develop, but might have different effect across various browsers and browser versions.
    Regads,
    Vincent
    http://vincentdeelen.blogspot.com

  • How to disable a single row of a multi-line text item

    I am trying to disable a date and a price on each row where the date is current or in the past (on theory the user can't update reference data that is in effect or past, only data which is not yet in use). It appears that forms 6i will make this an all-or-nothing matter, all rows (for a given text item) are enabled or all rows are disabled - no mixing! I am hoping forms is smarter than that, can someone give me knowledge? note: this is not a problem of enabling or disabling at runtime, I have that figured out, only row-specific application of the concept. here is my code:
    for c1rec in get_fees loop
    :cfee_def_dtl.service_fee := c1rec.service_fee;
    :cfee_def_dtl.eff_date := c1rec.eff_date;
    go_item('cfee_def_dtl.holdx'); -- inncouous field, not visible to user, but navigable
    IF trunc(c1rec.eff_date) <= trunc(sysdate) THEN
    set_item_property('cfee_def_dtl.eff_date',ENABLED,PROPERTY_FALSE);
    set_item_property('cfee_def_dtl.service_fee',ENABLED,PROPERTY_FALSE);
    END IF;
    next_record;
    end loop;

    Hi,
    move the logic in New-Item-Instance trigger and based on your condition
    SET_ITEM_INSTANCE_PROPERTY update_allowed as property_false/true.
    Monica

  • How to disable the Front Row?

    Hi, all.
    I would like to try Media Central for the next few weeks.
    However as soon as I start using the remote control, FR is called.
    I still want to keep the FR, just would like to disable it for time being.
    Any advise will be appreciated.
    mini   Mac OS X (10.4.6)  

    is there another way to open Media Central?? i dont think you can disable Front Row because its like a screensaver you just cant disable it. i mean that Front Row runs in the backround and doesnt show it runs in the Dock. if you do uninstall front row theres a way to get it back i have the link to reinstall Front Row you just need Mac OS X 10.4.5 which i assume you have.
    http://www.versiontracker.com/dyn/moreinfo/macosx/28528
    i hope this helps
    ~ChRiS

  • How to disable spaces entirely in Mountain Lion?

    Hi there,
    I just upgraded to mountain lion from snow leopard – I do not use or like using Spaces, and I've turned off all possible options in "mission control" but I still find that moutain lion is separating my firefox windows and other app windows to different spaces and it's driving me bonkers. I have never needed Spaces, I find just simple Expose to be the perfect solution, no matter how many windows I have running – how can I just completely disable Spaces in Mountain Lion?
    Any insight is greatly appreciated!

    I ran into a problem where sliding my cursor over to the RHS and hesitating "too long" there caused the Desktop to shift Right and reveal the 2nd Desktop that was hiding over there. I don't recall actually creating such a Desktop in the past - but this situation was outrageously annoying because I keep my Dock on the RHS, and apparently while hesitating trying to find a specific item in the Dock, Mountain Lion thought I meant to take it to the 2nd Desktop. This was Unexpected Behavior.
    Similar to _daniel_, I have two large monitors (27" iMac and 27" external) and so Spaces/Multiple Desktops is really not necessary for me now. Even when I had only one monitor, it was a little challenging to use. I understand the concept, and I think it can be useful - I vaguely recall making use of it when all I had was a 20" iMac screen and wanted multiple apps open at the same time. Right now though, it's usefulness is pretty minimal.
    While there is no way to "turn Spaces off", I resolved my issue with the help of silvergc's comment, launching Mission Control and clicking the X in the upper left corner of the 2nd Desktop. No more Desktop-Space-switching for me.
    Thanks to silvergc and _daniel_!

  • How to Disable a entire JSP form based on single value

    Hi,
    My requirement is I have to disbale a JSP form based on getting single value from the drop down box. Please suggust me some ideas.
    Highly aprreciated
    Thanks In advance
    Anbr19

    Well as said by my fellow it could be easily acheived by javscript
    say i'm assuming the dropdown has set of value under a form named SampleForm..
    here is how you do using javascript
    <script language="javascript">
    function disable(txt){
       if(txt == '<Condition Value>'){
           for(var i =0 ; i < document.SampleForm.length ;i++)         
               document.SampleForm.elements.disabled = true;
    </script>
    <form name="SampleForm">
    <select name="dropdown" onchage="disable(this.value)">
    <option value="1">1</option>
    <option value="2">2</option>
    <option value="3">3</option>
    </select>
    </form>
    hope this might help :)
    REGARDS,
    RaHuL

  • Spark datagrid - how can i open entire row for editing?

    Hi,
    I want to create a datagrid with add button. The user can add a row and i want all the editable columns to be opened for editing.
    I can open a single cell for editing by using startItemEditorSession, but how can i do it for multiple columns in the same time?

    redskyventures wrote:
    it seems mine has automatically done so...
    I recommend you turn off the automatic update feature -- It can really cause you a lot of trouble.
    Have you already determined that your coauthor cannot open your file?  If so, I suggest you go backwards, get a copy of the old iBA from him to put on your machine, so you both use the same version.  There's no way to convert iba files to anything, as far as I know.

  • How to disable dangerous options in on screen keyboard in kiosk mode?

    Hello,
    I'm trying to make a kiosk like application based on Windows 7. I run locked down IE in kiosk mode and that's quite OK.
    However when I run the OSK.exe (on screen keyboard) - it has two dangerous buttons: Options (where I can click on "Control whether the On-Screen Keyboard starts when I log on" link and then run Windows explorer, and Help (where I can go to Options, and then
    click on "Read the privacy statement online" link that brings me fresh IE).
    Is there way to disable in OSK those two buttons? 
    For instance, when I run OSK on logon screen it hides the Help button and the dangerous link in the Options button, so it's possible at least for MS. Is it possible for plain customers?
    Thanks in advance,
    Nikolai.
    WBR, Nikolai

    Hi,
    Based on my test and research, I’m afraid that the two options of On-screen Keyboard may not be disabled.
    Instead, you can use
    Tablet PC Input Panel and see how it works.
    Hope this helps.
    Jeremy Wu
    TechNet Community Support

Maybe you are looking for