Non editable inputfield with Matchcode/OVS

Hi,
I have an InputField with an OVS/Matchcode. My problem is that I don't want the user to write manually values inside the InputField, but only to use the OVS.
I've tried to set the field as Disabled (Enabled = False) or as ReadOnly and doing this prevents the user to input manually data inside the field but it also makes the Matchcode/OVS disappear.
Is there a convenient way to solve this problem?
Thank you,
Pietro

Problem solved:
OVS - Is it possible that User can only data through OVS?

Similar Messages

  • Is ID exported PDF considered non-editable? (In the case of view&print embedding permission fonts)

    Hiya!
    I am a graphic designer and I use InDesign 5.5.
    I have a question about font embedding when using the InDesign's export as a PDF in "print" format feature.
    Many fonts allow embedding into digital documents only for the purpose of viewing and printing.
    In addition to this the font EULA's mention that the embedded font may not be used to edit the document.
    Is it possible to create a non-editable PDF with embedded fonts?
    Is choosing PDF export option "print" the key here, or embedding the fonts as a subset?
    Isn't it still possible to edit PDF in Acrobat with touch up text tool? Or use some third party editing program?
    OR Is a PDF file - with fonts embedded as a subset -  non-editable as such, or at least considered to be non-editable enough?
    Or is it just that the file doesn't really have to be non-editable, but it must not be edited...
    How do I ensure that? Do I even need to ensure that?
    Whole thing seems so controversial.
    Hope someone can shed some light into this!!!
    -Ahlax-

    Ahlax,
    There are several separate concepts here.
    First, PDF is really a final form file format. It wasn't designed as an editable format for layout such as InDesign's .indd format ane Word's .doc and .docx formats. Although PDF files may be tagged with contextual metadata, typical content of PDF files contains no context in terms of words, sentences, paragraphs, columns, etc. It is simply graphical objects including text fragments, vector artwork, and raster images at a particular place on a page with specified graphical attributes (color, transparency, etc.). As such producing a full PDF file editor first requires definition of what it actually means to edit such a file given the characteristics of PDF files.
    That having been said, Acrobat and various third party plugins to Acrobat as well as third party applications provide some degree of editability for PDF files, recognizing that such edits are definitely not at the abstractual level that you get with InDesign. You can “touch-up” text, but doing a re-layout is effectively impossible. In most cases, it is better (in terms of time, effort, and resultant quality) to go back to the source document, make the changes there, and then regenerate the PDF.
    Fonts are a totally separate issue. Adobe products will not embed any font into a PDF file unless the font allows for at least preview and print embedding. For PDF forms, Acrobat requires a font to allow editability embedding. However for text touch-up and other edits, Acrobat never uses the embedded font. Such edits are only allowed if the user has the same font actually installed on their system.
    In terms of forcing a PDF file to be totally non-editable, that is done by applying security to the file when you export the PDF file from InDesign (the Security tab) or in Acrobat Pro after PDF creation (go to the Security tab under Document Properties (Ctrl-D) to set such security).
              - Dov

  • Coloum check box  true with non editable.

    i want  that a check box in coloum  is true  with non editable  ...    look at   *****  in como select event.
    is it possible ..
    '// Add a column for  check  Cut value or not
            oColumn = oColumns.Add("chose", SAPbouiCOM.BoFormItemTypes.it_CHECK_BOX)
            oColumn.TitleObject.Caption = "CHECK"
            oColumn.Width = 50
            oColumn.Editable = False
            ' oColumn.Visible = False
            oColumn.DataBind.SetBound(True, "@DOCHECK", "U_check")
    If (pVal.ItemUID = "Mat1") And (pVal.ColUID = "DOno") And (pVal.EventType = SAPbouiCOM.BoEventTypes.et_COMBO_SELECT) And (pVal.Before_Action = False) Then
                oForm = SBO_Application.Forms.Item(FormUID)
                Dim oEdit As SAPbouiCOM.EditText
                Dim oCombo1 As SAPbouiCOM.ComboBox
                Dim qstr As String
                Dim sval As String
                Try
                    oItem = oForm.Items.Item("Mat1") '''''' Matrix
                    oMatrix = oItem.Specific
                    oCheckBox = oMatrix.Columns.Item(5).Cells.Item(pVal.Row).Specific
                    oColumns = oMatrix.Columns
                    colDONO = oColumns.Item("DOno")   '''''' Delivery order no
                    oCombo1 = colDONO.Cells.Item(pVal.Row).Specific
                    sval = Trim(oCombo1.Selected.Value)
                    rs = oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.BoRecordset)
                    qstr = "select U_DoDate ,U_Oqty,U_Bqty from [@DOMAST] where  code = '" & sval & "'"
                    rs.DoQuery(qstr)
                    rs.MoveFirst()
                    '''''''''''''''''''''''''''''   value   come from  from test master
                    If Not (rs.EoF) Then
                        'Do While Not (rs.EoF) = False
                        oEdit = oColumns.Item("DOdt").Cells.Item(pVal.Row).Specific
                        oEdit.String = Format(rs.Fields.Item("U_DoDate").Value, "ddMMyy")  ''''''delivery date
                        oColumns.Item("Oqty").Cells.Item(pVal.Row).Specific.value = rs.Fields.Item("U_Oqty").Value  ''''' Orginal quantity
                        oColumns.Item("Rqtval").Cells.Item(pVal.Row).Specific.value = rs.Fields.Item("U_Bqty").Value ''''' Balance quantity 
                        oCheckBox.Checked = True   ........ i want        it will be true but  non editable ?????*****
             oMatrix.Columns.Item(5).editable=False           
    '''''''''''''  then it will be  non editable that means  edittable  false.  when i put
    oMatrix.Columns.Item(5).editable=False  then check box is not true
    rs.MoveNext()
                    End If
                    oColumns.Item(0).Cells.Item(pVal.Row).Click()
                    oMatrix.clearSelection()
                Catch ex As Exception
                End Try
            End If

    thanks for reply.
    when i am  select some value from combox in matrix there is a coloum  in check box .
    my check box is true. ok its working .
    when i set coloum. editable =false
    then check box is not true.
    If (pVal.ItemUID = "Mat1") And (pVal.ColUID = "DOno") And (pVal.EventType = SAPbouiCOM.BoEventTypes.et_COMBO_SELECT) And (pVal.Before_Action = False) Then
                oForm = SBO_Application.Forms.Item(FormUID)
                Dim oEdit As SAPbouiCOM.EditText
                Dim oCombo1 As SAPbouiCOM.ComboBox
                Dim qstr As String
                Dim sval As String
                Try
                    oItem = oForm.Items.Item("Mat1") '''''' Matrix
                    oMatrix = oItem.Specific
                    oCheckBox = oMatrix.Columns.Item(5).Cells.Item(pVal.Row).Specific
                    oColumns = oMatrix.Columns
                    colDONO = oColumns.Item("DOno")   '''''' Delivery order no
                    oCombo1 = colDONO.Cells.Item(pVal.Row).Specific
                    sval = Trim(oCombo1.Selected.Value)
                    rs = oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.BoRecordset)
                    qstr = "select U_DoDate ,U_Oqty,U_Bqty from [@DOMAST] where  code = '" & sval & "'"
                    rs.DoQuery(qstr)
                    rs.MoveFirst()
                    '''''''''''''''''''''''''''''   value   come from  from test master
                    If Not (rs.EoF) Then
                        'Do While Not (rs.EoF) = False
                        oEdit = oColumns.Item("DOdt").Cells.Item(pVal.Row).Specific
                        oEdit.String = Format(rs.Fields.Item("U_DoDate").Value, "ddMMyy")  ''''''delivery date
                        oColumns.Item("Oqty").Cells.Item(pVal.Row).Specific.value = rs.Fields.Item("U_Oqty").Value  ''''' Orginal quantity
                        oColumns.Item("Rqtval").Cells.Item(pVal.Row).Specific.value = rs.Fields.Item("U_Bqty").Value ''''' Balance quantity 
                                           oCheckBox.Checked = True
                        rs.MoveNext()
                    End If
                    oColumns.Item(0).Cells.Item(pVal.Row).Click()
                    oMatrix.clearSelection()
                Catch ex As Exception
                End Try
            End If

  • I want to make a textfield non editable with blinking cursor,and the text is input from a custom keypad

    I want to make a textfield non editable with blinking cursor,and the text is input from a custom keypad....
    Please Help me.
    I want to make a numpad of my own from which i can set the text but i want the user to tap in between the text..

    You seem to stop the while loop to run the following code, then the program ends. Are you running this using the "continuous run" button????
    You need one big while loop containing the acquisition, then you build up the history data in a shift register. Clicking "save" will save the data, but not stop the loop.
    Why did you place a time-control in the FOR loop??? This is just post-processing so it should just do it without any delays. I don't understand the logic in the FOR loop. You are appending arrays, but then you delete the first element at each iteraction constantly trimming data from the beginning of the appended array. Then you autoindex at the output tunnel heavily duplicating all data. Ths make s no sense!
    Can you explain how you want you data saved?
    Message Edited by altenbach on 12-16-2005 11:20 AM
    LabVIEW Champion . Do more with less code and in less time .

  • Making a link with a non editable area

    Hello I have made this cool looking design in photo shop and
    sliced it up and then somehow made the whole i.e. the images non
    editable enough to use the hotspot to make a link. Is their a way I
    can highlight and drag any area on a web page and make a link? My
    webpage is www.wordfree.net I want to make links for my
    navigation.

    > Is their a way I can highlight and drag any area on a
    > web page and make a link?
    No. Your entire approach is wrong, though, made worse by the
    use of
    ImageReady's HTML....
    <!-- ImageReady Slices (wordfree.net) -->
    <table id="Table_01" width="1281" height="1025"
    border="0" cellpadding="0"
    cellspacing="0">
    Wizard-written HTML is not suitable for production work.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "Yung Blitz" <[email protected]> wrote in
    message
    news:gau96q$qhd$[email protected]..
    > Hello I have made this cool looking design in photo shop
    and sliced it up
    > and
    > then somehow made the whole i.e. the images non editable
    enough to use the
    > hotspot to make a link. Is their a way I can highlight
    and drag any area
    > on a
    > web page and make a link? My webpage is www.wordfree.net
    I want to make
    > links
    > for my navigation.
    >

  • How to design ALV GRID with a column in NON-editable Mode and has F4 Help?

    Hello Friends,
      How to code for ALV GRID, which has a column that takes value only from F4 Help and does not accept any other user input?
    Can I have that column non-editable and yet has F4 Help?
    Please help ASAP.

    Hi,
      The examples in the mentioned programs do not suffice my problem.In these programs. They have made the cell non-editable but you cant even input value through F4 Help.
    I want to make a cell non-editable (which can be changed only through F4 Help), which do not accept user input.

  • Adding an editable row in an non editable table.

    Hi,
    My requirement is to add an Editable row in a table which is in display mode only, i mean i cannot edit the data that is present in the table.
    But if the user presses the Add Row button on the Table Toolbar, a new editable row should be added in the end, so that he can save the new data entered.
    methods tried:
    1: I have used Inputfield as Cell Editors, with their Read only Property check marked, thougt that with the new element created, it would not be Read Only.
    2: Binded the read only property with a context attribute, but still was not able to achieve this functionality.
    3: Tried the above two steps with the "Enabled" property of the Table Coloumn Cell Editors as well, but no result.
    Please give me some pointers on this.
    Regards,
    Ashish

    Hi Ashish,
    The approach you were following was correct, but I am not sure where you have placed the Enabled property attribute in the context.
    Please follow these steps:
    1. The table you are creating should have the enabled property set.
    2. The context with you are binding the table should have an additional attribute say ISENABLED of type boolean.
    3. Bind this attribute with the ENABLED property of all the input enabled fields in your table.
    4. When binding the non-editable data into the table, set this property to ABAP_FALSE for each record. This will make the existing data non editable.
    5. Use the below code for adding a new row and set the ISENABLE property of the added row to ABAP_TRUE.
        elem_table = node_table->create_element( ).
        node_table->bind_element( new_item =  elem_table set_initial_elements = abap_false ).
        stru_table-isenable = abap_true .
        elem_new_row->set_static_attributes( static_attributes = stru_table ).
    Let me know how you go about it.
    Cheers,
    Pratibha

  • Error message from user exit - current screen becomes grayed(non-editable)

    I am working on a Sales Order (VA01/VA02) user exit(USEREXIT_SAVE_DOCUMENT_PREPARE) in MV45AFZZ program. I am validating certain values entered by user in this exit. Based on a condition, I issue a error message e.g. "message e001(ZV) with .....". I expect the processing to interrupt and the system control  returns to the current screen. When there is an error, error message shows up on the status bar, but the current screen is completely grayed out(non-editable), not able to modify the incorrect entries. I keep hitting ENTER but no change to the grayed screen. Is there anything wrong in the way I issue error message?
    I am on ECC6.
    Thanks.

    could you please help me if possible in my senario :-
    I am validating a field(serial number while creating delivery) in standard exit ZXQSMU04 and written a code to display an error message. The functionality is working correctly on validation and displaying the error message. But once the error is getting trigger the serial number field is becoming in gray mode i.e non editable.
    I tried a lot to overcome this issue but not getting success could anyone help me to make the field editable while triggering the error message.
    Please note : Its an exit and not having any message field in export or return table. Also tried with warning and information message.
    Thanks in advance.
    Regards,
    Gautam Kumar

  • How do I save a PDF as non-editable?

    I have a form that I filled out with Adobe Professional 7.0. What options do I select to make sure it saves as non-editable? Thanks for any help.

    Hey David, add some security to it. You can even keep people from printing it if you want to, or even need a password to open it.
    J.R.

  • Field disable or non editable -- goods movements

    Hi team
    your assistace will be highly appreciated.
    I´m working with tx CO11N and after completion of  the requiere data we click on goods movements button and the next  screen  is : "Enter production order confirmation: goods movements" and this shows some fields and what I need is to disable some of them or make them non editable : quantity, storage location and movement type.
    Is it posible through Spro? if yes could you please tell the where.
    I don´t want to create a variant.
    thanks

    I guess Variant is the only option here, atleast thats what my PP consultant had done in my last project.
    There didnt seem to be any other alternative then.

  • Make non-editable sections of webpage?

    I'm designing a site using contribute. I'm wondering if I can
    take a webpage that is already completed and make certain sections
    of it uneditable.... such as the main links, or certain divs... Is
    there a way to do this? Or can this only be accomplished with
    templates?
    Thanks so much for all and any help!

    This is possible to create by handcoding, but you have to
    create editable regions and not non-editable regions.
    Contribute understands the editable region code, also when
    it's not a dreamweaver template (using dreamweaver templates of
    course has a lot of other advantages).
    The code you need looks like this:
    <!-- TemplateBeginEditable name="content"
    -->content<!-- TemplateEndEditable -->
    Place it like this in your page and the lorem ipsum p's are
    non editable, the sentence 'This content is editable...' is
    editable. The head section and title are also editable (convenient
    to adjust meta-tags through contribute):
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN" "
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="
    http://www.w3.org/1999/xhtml">
    <head>
    <!-- TemplateBeginEditable name="doctitle" -->
    <title>Untitled Document</title>
    <!-- TemplateEndEditable -->
    <!-- TemplateBeginEditable name="head" -->
    <meta name="Keywords" content="keywords" />
    <meta name="Description" content="description" />
    <!-- TemplateEndEditable -->
    <meta http-equiv="Content-Type" content="text/html;
    charset=utf-8" />
    </head>
    <body>
    <p>"Lorem ipsum dolor sit amet, consectetur adipisicing
    elit, sed do eiusmod tempor incididunt ut labore et dolore magna
    aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco
    laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure
    dolor in reprehenderit in voluptate velit esse cillum dolore eu
    fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
    proident, sunt in culpa qui officia deserunt mollit anim id est
    laborum."</p>
    <!-- TemplateBeginEditable name="content" -->This content
    is editable...<!-- TemplateEndEditable -->
    <p>"Lorem ipsum dolor sit amet, consectetur adipisicing
    elit, sed do eiusmod tempor incididunt ut labore et dolore magna
    aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco
    laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure
    dolor in reprehenderit in voluptate velit esse cillum dolore eu
    fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
    proident, sunt in culpa qui officia deserunt mollit anim id est
    laborum."</p>
    </body>
    </html>

  • Make the 'ASSIGNMENT FIELD' of particular financial Doc type non-editable

    Hi Experts,
    We have an done an Z development, where we are populating critical data in the 'ASSIGNMENT FIELD OF gl account' of a newly created  financial document type (ZD).This document is created through BAPI.
    Now our requirment is to make this 'Assignment field' non-editable .
    Thanks & Regards,
    Vishal

    Go to OB32
    Select Account type and select table with field name ZUONR and double click
    Uncheck the check box Field can be changed
    Srinivas

  • One row as editable and other row as non-editable in table control

    Hi Experts,
               Is this possible to make one row as editable and another row is non editable in table control?
    My Requirement is
    1st row non editable field
    Customer code, description,amount will come from the previous screen this will be non editable for user.
    2nd row editable
    User has to enter the amount in 2nd row here the customer code description will be empty.
    If 4 customer are there
    1,3,5,7 should be non editable and 2,4,6,8 should be editable..
    Pls help me in this issue..
    Thanks in Advance!

    hI
    This is a simple Module POOL program with only Table control and nothing else
    " This is Tested to Enable one row and disabling the next row
    in TOP Include
    controls : tc type tableview using screen 100.
    DATA : OK TYPE SY-UCOMM.
    DATA : ITAB TYPE TABLE OF SPFLI WITH HEADER LINE.
    in PBO
    PROCESS BEFORE OUTPUT.
      MODULE status_0100.
      LOOP AT itab WITH CONTROL tc.
       MODULE TC_MOD.
      ENDLOOP.
    in PAI
    PROCESS AFTER INPUT.
    MODULE USER_COMMAND_0100.
      LOOP AT itab.
      ENDLOOP.
    MODULE status_0100 OUTPUT.
      SET PF-STATUS 'TEST'.
      SET TITLEBAR 'TEST'.
      DESCRIBE TABLE itab LINES tc-lines.
      IF tc-lines = 0.
        tc-lines = 20.
      ENDIF.
    ENDMODULE.                 " STATUS_0100  OUTPUT
    MODULE tc_mod OUTPUT.
      DATA : mod TYPE i.
      LOOP AT SCREEN.
        mod =  tc-CURRENT_LINE MOD 2  .
        IF mod = 1.
          IF screen-name = 'SPFLI-CARRID'.
            screen-input = 0.
            MODIFY SCREEN.
          ENDIF.
        ENDIF.
      ENDLOOP.
    ENDMODULE.                 " TC_MOD  OUTPUT
    Edited by: Ramchander Krishnamraju on Jan 25, 2011 7:17 AM

  • Making particular rows as non editable before displaying the TABLE

    Hi everyone,
                               I would like to know how to make a particular rows as non editable in UI element "TABLE" before it is displayed . The scenario is :
    On entering the Personnel number, I am getting family dependants in the table. Then, I am selecting any of the family members on some condition and saving each member with the request.
    Next time when i enter the same personnel number, I would like to show the table with already saved request for the family members rows as non editable & other members row as editable.????
    Please provide a feasible solution.

    Hi Pradeep,
    follow as per suggested. if not work use cell variants concept. it will work.
    Please check this wiki...
    http://wiki.sdn.sap.com/wiki/display/WDABAP/WebDynproforABAPCellVariants
    Cheers,
    Kris.

  • How to make VIP flag in transaction code fpp2 as non editable

    Hi everyone,
    Please guide me about:
    How to make VIP flag in T Code FPP2 as non editable only for some particular users?
    Is there any authorization object exists for this flag in FPP2 transaction?
    Actually there are many users who have authorization of transaction fpp2. But we want only some particular users should have authorization of making changes to this flag.
    Please guide with your valuable replies.
    Thanks and Regards

    Hi...MP Vashishth
    try to creat an Authorization Management ...  in customizing...
    Cross-Application Components --> SAP Business Partner --> Business Partner --> Basic Settings --> Authorization Management
    Creat an Grup..and others steps...!
    and when finish clic on Generate and Assin Authorization !!!
    I Hope it Help !
    regards
    Andre Frugulhetti
    Edited by: Andre Frugulhetti on Sep 22, 2009 9:38 PM
    Edited by: Andre Frugulhetti on Sep 22, 2009 9:39 PM

Maybe you are looking for

  • Object no longer exist

    Hi All, I am using select a query. For eg. select columns from a,b where a.col1=b.col1 and a.col2=b.col2 and a.col3=b.col3 it throws "*ORA-08103: object no longer exists*" error for the first time. But when i comment a join condition a.col2=b.col2 th

  • How to I get a pop-up window to not be full sized window? I accidentally maximized and can't undo it.

    I accidentally clicked "maximize" icon on a Salesforce.com pop-up reminder (the pop-up appeared right when I was going to click something else on the page). Now pop-up reminders come up as full-size web pages and I want them to go back to being the s

  • CPU Mounting problem

    Hi all i need some help for my m8 as he can not post on the forum. ok he has just got a new CPU for his PC now the problem is as he was fitting it he broke one of the clips that fits the CPU to the MOBO and the PC is now over heating due to the CPU n

  • Batch creation at co11n and co15

    Hi, I wann create auto batch creation at the time of order confirmation i.e. at co11n and co15, can anyone tell step by step wht confg shd i require? kindly assist

  • Problems installing Cocoon 1.8.2 under Weblogic 6.0sp2

    Hi all, In order to install Cocoon 1.8.2, I have created a new WebLogic server for it, listening on port 7003. I have achieved to show the Cocoon.xml test page successfully, but trying the samples the exception page is shown. Any help? Thanks in adva