Fields appear as "Read Only" in an Int.Form called from a WD

Hi Experts!
I am having a doubt in an Adobe Int.Form, that is called from a WD application.
The fields that are in my Form, always appear as a "read only". It is not possible to modify anything there.
Here, I describe the steps that I follow.
I create a very simple WD application. In its WD View, exist an unique Object (Adobe Interactive Form).
In that object, I set the properties:
"Data source": a context variable type "my structure". "My structure", is a simple structure with a couple or three fields, let´s say PERNR, BUKRS, WERKS... It is linked to the Form Interface (ABAP DICTIONARY-BASED INTERFACE). So in this way, the link between my WD and the AdobeInt.Form is working.
"PDF Source": a context variable type XSTRING.
"Template Source": here I have set my Int.Form. Currently, it only contains a couple of fields
"Enabled": True.
"Read Only": False.
In the AdobeForm, I have drag & droped those 2 or 3 fields, save it, and activate it. I guess nothing more is needed, for my test.
And at last, in the View´s method WDDOINIT, I am reading one of those fields, let´s say the employee number (PERNR), and I set by hardcoding its number (let´s say -> 00000001).
Until here, everything seems to work fine. When I launch the WD test, the Adobeform appears, at the moment, with only one of my fields (Employee - PERNR), and its value is filled in with '00000001'.
But now, I would like to write something by myself. And when I try to do it, it is not possible! Field PERNR, is displayed as a "READ ONLY".
Someone knows what is happening here? I guess it should be possible, to activate as a "EDITABLE" that field in my Form.
So here is my doubt.
Am I doing anything wrong? Or am I doing any mistake?
Thank you very much in advance!

Finally I think I have found the problem.
In the View where I am printing the ADOBEFORM, it is needed this code under the method WDDOMODIFYVIEW.
method WDDOMODIFYVIEW .
  DATA: LV_INTERACTIVE_FORM   TYPE REF TO CL_WD_INTERACTIVE_FORM,
             LV_METHOD_HANDLER     TYPE REF TO IF_WD_IACTIVE_FORM_METHOD_HNDL.
  LV_INTERACTIVE_FORM ?= VIEW->GET_ELEMENT( 'INT_FORM' ). "   adobeform object in view
  IF LV_INTERACTIVE_FORM IS NOT INITIAL.
      LV_METHOD_HANDLER ?= LV_INTERACTIVE_FORM->_METHOD_HANDLER.
      LV_METHOD_HANDLER->SET_LEGACY_EDITING_ENABLED( ABAP_TRUE ).
      LV_METHOD_HANDLER->SET_HIDE_NAVIGATION_PANEL( ABAP_TRUE ).
      LV_METHOD_HANDLER->SET_DISABLE_PRINT_BUTTON( ABAP_TRUE ).
      WD_THIS->M_METHOD_HANDLER ?= LV_INTERACTIVE_FORM->_METHOD_HANDLER.
      WD_THIS->M_METHOD_HANDLER->SET_HIDE_TOOLBARS( ABAP_TRUE ).
    ENDIF.
endmethod.
Regards,
Carles

Similar Messages

  • Hello all,  I bought an iPhone 5 in the US and brought it back to Brasil. Now I'm trying to use Siri, but once I press the "home" button "voice control" appears and it only works for me to call my contacts. The manual guide tells me to go to Settings Gene

    Hello all,
    I bought an iPhone 5 in the US and brought it back to Brasil. Now I'm trying to use Siri, but once I press the "home" button "voice control" appears and it only works for me to call my contacts. The manual guide tells me to go to Settings>General>Siri. At the General menu "Siri" doesn't appear. What should I do to set Siri up if it doesn't appear at settings>general?
    Thank you,
    Melanie.

    Go to Settings>General>Restrictions and make sure Siri is set to On.

  • Reading only customer or modal wage type from rt

    Hi expertise,
    I need youe help regarding reading only customer or modal wage type
    from rt. in sap payroll.
    Regards.
    Priyaranjan

    Hi,
        Use these two function modules to get the wage type from Rt Table
      FM 'CU_READ_RGDIR'  -> to get the sequence number we use this function module .
    FM 'PYXX_READ_PAYROLL_RESULT'
    That sequence number is passed over here
    regards
    Arun VS

  • Field Validation on Read Only Field

    I'm trying to create a pop up error box if a field contains null values. The problem is that the field I'm trying to do the validation on is a read-only field. It's the Account field on the Contact Object or Module. It won't allow me to include validation. The goal here is to have a POP UP ERROR box come up if someone does not select a value for that field. Making it required doesn't generate a popup box, it only has a small "required" text next to the field which can be easily missed by a user. Any ideas?

    Hi !
    I found the way to do what you wan't, but it sounds a bit strange for me...
    You have to put a field validation on the Account Id field. I made some tests to know what is in the AccountId field when it's blank and i see that the value is "No Match Row Id" !!
    So your validation rule must be simply
    *<> "No Match Row Id"*
    It worked for me, the error message appears... But I think this is something we have to report to Oracle...
    Hope this will help, feel free to ask more !
    Max

  • User-entered field treated as read-only

    I created a large form in version 7. I brought it into version 8 to work on it some more. I believe this may be related to going from 7 to 8...
    I have lots of numeric fields in rows and columns. All the fields are User Entered - Optional. When I view it in Preview, one field in the middle will not allow entry. It's as if the field were Read Only. I go back to Design mode and the field is still listed as User Entered. This occurs on a few pages.
    Anyone else had this problem? Any suggestions?

    My office uses Times New Roman as a standard font for all our forms, I dragged several of the most used standard objects into a blank form, altered them to fit our standards and then dragged them back into the standard tab. Much easier than going through the process each and every time you need to pull a field in, fyi. You can also put a script into a field and put it into either the custom tab or create your own tab for personal objects, I find this saves me huge time by not having to re-type scripts over and over.

  • Render button ok but fields displayed as read-only(solved)

    Dear JHeadstart,
    I'm trying to solve the next situation.
    I'm Using a form with 'Same Page?' checked.
    I'm rendering an add-button: when a row is not found I display the add button and when a row is found, the add button is not displayed.
    This works well with the EL expression: #{bindings.<viewobject>InputDate.inputValue eq null} in the 'Insert allowed EL expression'. For if now row is found this field is null.
    But when I press the add button I only get readonly fields where I'm hoping for inputfields to fill so I can insert a new row in the table.
    In the jspx file I find, the EL expression I used, back for every field in the form.
    The form is based on a VO based on 2 entity objects. One is always updateble (here I want to have the inputfields) and one is read-only.
    I've also tried the EL: #{!((bindings.<viewobject>Iterator.currentRowIndexInRange!=-1 and bindings.<viewobject>Iterator.findMode!='true'))} which is used to render the value="#{nls['NO_ROWS_FOUND']}" in de jspx file.
    but with the same results.
    So what can I do to make those fields insertable?
    Help will be appreciated!
    regards,
    Marcel.
    After some more googling I found:
    http://download-east.oracle.com/docs/html/B25947_01/bcvoeo009.htm#BABJEEFA
    Section 7.9.3 got me on track.
    In my create() the InputDate field was filled (sic).
    When I used another field in the EL, it worked.
    Message was edited by:
    user571204

    Finally I think I have found the problem.
    In the View where I am printing the ADOBEFORM, it is needed this code under the method WDDOMODIFYVIEW.
    method WDDOMODIFYVIEW .
      DATA: LV_INTERACTIVE_FORM   TYPE REF TO CL_WD_INTERACTIVE_FORM,
                 LV_METHOD_HANDLER     TYPE REF TO IF_WD_IACTIVE_FORM_METHOD_HNDL.
      LV_INTERACTIVE_FORM ?= VIEW->GET_ELEMENT( 'INT_FORM' ). "   adobeform object in view
      IF LV_INTERACTIVE_FORM IS NOT INITIAL.
          LV_METHOD_HANDLER ?= LV_INTERACTIVE_FORM->_METHOD_HANDLER.
          LV_METHOD_HANDLER->SET_LEGACY_EDITING_ENABLED( ABAP_TRUE ).
          LV_METHOD_HANDLER->SET_HIDE_NAVIGATION_PANEL( ABAP_TRUE ).
          LV_METHOD_HANDLER->SET_DISABLE_PRINT_BUTTON( ABAP_TRUE ).
          WD_THIS->M_METHOD_HANDLER ?= LV_INTERACTIVE_FORM->_METHOD_HANDLER.
          WD_THIS->M_METHOD_HANDLER->SET_HIDE_TOOLBARS( ABAP_TRUE ).
        ENDIF.
    endmethod.
    Regards,
    Carles

  • OS 10.5 Sharing – Files appear as "Read Only" – SOLUTION!

    I have been having problems with sharing files between two macs since upgrading to 10.5 Leopard. Files and catalogs were available on both machines and both were set to "read & write" however files would only open as "read only" and files could not be saved between macs.
    After an entire day of trying to find an answer (and talking to Apple Care for hours) I have found the solution. And it's a very simple fix. The UUID needs to be changed on the computer giving you trouble.
    Here's the solution from the original post below:
    In OS X 10.5, you can change the UUID for your account by going to the "Accounts" system preferences and clicking the lock to authenticate. Then right-click (control-click) your account name and select "Advanced Options." Then click the "Create New" button next to the UUID field, and a new number will be generated. This should be done on the computer that you cannot properly connect to, and not on the computer you are connecting from. All this will do is provide a new identifier for your account when you are logging in remotely, and should clear problems with authentication and permissions mismatches.
    Hope this helps!
    Here's the original post from MacFixIt (I am including the entire post so that anyone searching for these phrases or error messages can find it quickly):
    Apple Discussion poster "Thomas Kranz1" writes:
    "I am suddenly getting this message when I try to copy a file from my new MacBook Pro to my PowerBook running 10.4.9. 'You may need to enter the name and password for an administrator on this computer to change the item named [file I am trying to transfer] (stop, continue). I hit continue and get the error message: 'The item [that I am transferring] contains one or more items you do not have permission to read. Do you want to copy the items you are allowed to read?' I say continue and get the error: 'The operation cannot be completed because you do not have sufficient privileges for some of the items.' My network was working fine until today. I can copy fine to all other computers on my network. But not this one."
    When OS X transfers data between computers, you first log into the remote system and mount a readable or writable sharepoint from the remote system. Then when you transfer files they should be given ownership and permissions based on the account you're using on the remote computer (not the current computer). This ensures you can access the files anytime and from anywhere as long as you use the same credentials to log into the computer containing them.
    When problems with permissions in file transfers occur, you should first check your sharepoints to ensure the account you are using has read-and-write access to the share. To do this, open the "Sharing" system preferences and select the "File Sharing" service. Then ensure the sharepoint is listed in the "Shared Folders" list and then give the username you're logging in with both "Read & Write" permissions. If you are logging in from a PC, then click the "Options" button and enable "Share files and folders using SMB" and then select the account you wish to use to log in. Clicking "Done" should allow you to log into the system using the specified credentials.
    If the system keeps presenting insufficient privileges errors even after supplying appropriate credentials, the problem may be with how the computer is authenticating the account being used. For network directory authentication, OS X uses a "Universally Unique Identifier" or "UUID" number to identify user accounts, and if there is a problem with the UUID not matching, you may still be able to log in locally to the remote computer but may have permissions problems when using the same credentials remotely. Apple started implementing network directories that use UUIDs in OS X 10.3, and in 10.5 they're required, since Apple changed from the NetInfo authentication technologies to "Open Directory," which is built for network directory authentication and implements UUIDs.
    In OS X 10.5, you can change the UUID for your account by going to the "Accounts" system preferences and clicking the lock to authenticate. Then right-click (options-click) your account name and select "Advanced Options." Then click the "Create New" button next to the UUID field, and a new number will be generated. This should be done on the computer that you cannot properly connect to, and not on the computer you are connecting from. All this will do is provide a new identifier for your account when you are logging in remotely, and should clear problems with authentication and permissions mismatches.
    For people having problems with copying files to a 10.4 machine, it may help to ensure ownership on the shared resource is properly set. To do this, launch the terminal and type the following command, followed by a single space:
    sudo chown -R `id -un`
    NOTE: The command uses "grave accent" marks (`), which is the character under the "tilde" next to the "1", and not apostrophes or single-quotes.
    After this has been typed (with the space following it), drag the shared folder to the terminal and the full path to the folder should complete. Then press enter and supply your password to complete the command. When this has been run, try copying the files again.

    David,
    Of course the files are checked in; otherwise I wouldn't be able to create a configuration on them and base a workarea on the configuration in order to download the files.
    Here's my problem: I check-in and out files while developing a release. A release for me is a set of (checked-in) objects and folders grouped in a checked-in configuration.
    Once I'm finished I want to download the release. In order to do this I base a 'DOWNLOAD' workarea on the configuration that represents the release.
    Then I download the DOWNLOAD workarea; and have all files in the release on my file system. But I do not want them to be READ-ONLY !!, since the folders and files that make up my application have to be moved and copied around a couple of servers using FTP scripts and this is a whole lot more complicated when the files and folders are read-only.
    If this cannot be disabled than Oracle SCM is a lot less attractive for our way of doing SCM... although I have been able to adjust all my Java FTP classes so that write-access is enabled on all file and folders after download and before publishing the application to all servers.
    By the way I use the Java API of Oracle SCM to download the contents of the DOWNLOAD workarea.
    Regards,
    Rinse Veltman
    CIBER Solution Partners

  • MS Windows "Custom Folders" appears as Read Only in Mac

    Hi,
    I'm new to Mac, and started copying my old PC data to an external drive, so I could access it in my MacBook, before reformating my PC.
    I copied a lot of folders (around 100 Gb) and noted that some folders are "read only" in that external drive. I remembered my unix time checking for chmod/chwon attributes, but I didn't see anything different from read/write folders. I could note just one thing. This "read only folders" are folder that, in my PC, had "Custom Icons", or "Custom images" attached to it.
    I tried a lot of chmod/chwon combinations, but Terminal always said I have no right (or something like that, I don't remember now), so I gave up and copied from "Shared Folders", FTP or "one by one", and now it appears to be Ok.
    Does anyone already saw this issue? If yes, is there a way to "force" that folder to be read/write? I tried using Finder to Find folder/files that were readonly (so I could identify each one), but I din't find the option. Anyone knows how?
    Thanks in advance.
    Alessandro Fragnani

    alefragnani wrote:
    Hi,
    The external drive is already formated in FAT32. Only my old PC is formated with NTFS, and the problem itself is while accessing theses files/folder in the external drive, not the PC (I'm not accessing the PC directly).
    FAT32 file system can't handle unix permissions and any file on such a drive will be listed as having full read+write access for everyone. However, if a file is read only in windows, it will be locked in OS X and there is absolutely no way to unlock it from OS X side short of reformatting the drive. You need to log into windows and unlock or delte the file from there.

  • XML form field should be read only.

    Hi All,
    Can we have a field in a XML form which is read only and the number in field should be incremented every time a new form is created.
    Is this possible.If yes can someone please guide me how.
    Thanks,
    Nikhil Pai

    Hi Nikhil,
    Do u want this property to come in the Edit form also, or only on the show form?
    If its only on show form,
    1. Keep a text file in KM with a starting number say 1000.
    2. While creating the XML form, a KM Service listening to resource creation only in the folders,
    will update a property and also edit the text file and replace the number by 1001.
    So in the show form u will have a unique number for each XML form.
    Regards
    BP

  • Read only column in tabular form

    There is a not null column ( say SEQ) in a tabular form that is getting an auto value from other process. 2 more columns need user input on each row.I need to make this column(SEQ) as read only.
    If I make this column (SEQ) as standard report column then when I submit the newly added row , I always get ORA-20001 error- can not insert NULL into SEQ.. even though I can see there is a value there. Switch ithe column back to text field, the insert went just fine .
    How do you solve this read only column issue ?
    Thanks a bunch for your help.
    Tai

    thank you for your reply.
    Nope, SEQ is not the first column. Primary Key is and I leave the pK alone.
    When I press ADDROW button , tabular form is like the following: ( table alreay has 2 rows), I auto populate SEQ column and I like to make this SEQ column display only.
    -- represents checkbox
    PK      SEQ      col1           col2
    --     1     890          test1
    --     2     675          test2
    --     3     

  • Making a JSP Form read only based on the form value present in DB

    I need suggestions/examples as i am newbie into java stream.
    I have two JSP pages 'Add Page' and 'Edit Page' .
    Add Page -> In add Page,I have many text boxes,select drop-downs options. In one select drop-down I have values as Locked and open .I can save this page contents in DB by entering those form values.
    Edit Page -> In eidtPage,once saved in DB, based on 'select drop-down- Locked and open' If it is locked i have to make all the fields (text boxes and select drop downs) as read only and if it is open i have to make it editable.
    I am taking all the values from DB,setting to 'form bean' and then setting up the values in session and forwarding it to JSP page to populate there .I am using beehive net UI tages in JSP. Please help me out.

    Not sure I'm following what you want, but this might help:
    In your select tag, put something like an 'onchange' event that calls a javascript function. In the javascript function it you add code to enable or disable your other fields based on the item selected from the drop down box.
    To determine what item was selected in a select tag, you write something like the following. I'm not sure of the exact syntax. You can look it up in a javascript book:
    var optionSelected = document.forms[0].selectTagName.options[document.forms[0].selectTagName.selectedIndex].value;
    To enable or disable a textfield, search for this in google:
    'jquery disable input'

  • Re:read only propery of interctive forms..

    Hello Experts,
        Can you suggest me  how to make the fields read only dynamically in an interactive form using javascript...
    Regards,
    udaya.

    You may need any JavaScript to do this.
    In Designer you can setup the signature field in that way, that all fields will be locked after signing.
    Look here:
    Link: http://forums.adobe.com/message/3121870?tstart=2

  • Why no Read Only / Edit prompt when opening document from a hyperlink (link)?

    I have a page that I've added hyperlinks to that point to documents in a document library.
    If I click on a link to an Excel file, it doesn't give me the Read Only / Edit option. Instead, I get Open/Save/Cancel, and if I open it, I can't save it to the doc library, because it's
    opened as Read Only.
    On the same page, I have a link to a Word file to the SAME doc library. I still only get Open/Save/Cancel, but I can save - and it can overwrite the existing file on SharePoint. This is not ideal, but works.
    What I'd like is to be able to link to a document from anywhere and have it open the Read Only / Edit prompt.
    I've read elsewhere that this is a client issue, but I can't find the resolution.

    Hi Ben,
    Try this:
    Quit all Office programs that are running.
    Click
    Start, click
    Run, type regedit in the
    Open box, and then click
    OK.
    Locate and then right-click the following registry subkey:
    HKEY_CURRENT_USER\Software\Microsoft\Office\<version_number>\Common\Internet
    Note In this subkey, <version_number> corresponds to 10-15 for the specific Office version that is installed.
    Point to
    New, and then click
    DWORD Value.
    Type OpenDocumentsReadWriteWhileBrowsing, and then press ENTER.
    Right-click
    OpenDocumentsReadWriteWhileBrowsing, and then click
    Modify.
    In the
    Value data box, type 1, and then click
    OK.
    On the
    File menu, click
    Exit to quit Registry Editor.
    It will force to open all office files from Internet in Edit mode

  • External hard drives appear as read only.....

    Therefore, I can't change any of the info on them. I have two external hard rives mainly for music, and both of them are available only to read. How do I change the permission for that. They are both my external hard drives that I used with my PC. Thx for any help.

    I have the same problem. I'm using a SimpleTech SimpleDrive Deluxe (via firewire), formatted by PC running Windows XP. I just checked "Get Info" and drive is indeed formatted with NTFS. So ... would this solution work:
    Drag what's now on the external drive (backups from last 2 PCs -- I'm a recent switcher ...) onto my Mac desktop, reformat external drive in some non-Windows-proprietary format (specifics on how to do so obviously welcome!), drag my old backup files back onto the external drive, then be able to write happily to the drive from either Mac or PC?
    Thanks!!

  • How to read only files with a certain format from folder with java

    I have this folder on the server and I only want to read files from this folder on the server... I only want to read files with the files format starting with error_ and ending with xml... an example of a file would be..
    error_123.xml
    I want something like this
    if(fileName.startsWith("error_") && fileName.endsWith(".xml")){
    but which java package will I have to use to read the file from the directory...

    Create an implementation of the java.io.FilenameFilter interface to match the pattern you need.
    Create a java.io.File object for the folder.
    Use the File.listFiles(FilenameFilter) method to get an array of File objects for the files in the folder that match the pattern.
    For each file in the array, create a FileInputStream, wrap it in an InputStreamReader, and wrap that in a BufferedReader (assuming you want to read the XML files as character streams).

Maybe you are looking for

  • Block delivery creation if price has not been maitaned in sales order

    Hi, I have the following issue., Say if have a sales order with 4 schedule lines, where the price has been updated only for 2 schedule lines. The order is incomplete. Is it possible to block deliveries been created if all the schedule line prices are

  • SAP Library Download.  Is it possible...??/

    Hi all, Is it possible that I can download SAP Library from internet and study LSMW from that....??? Please give me some links if its possible.  I have internet access at work and I dont have internet access at my home orelse I would use help.sap.com

  • Call *.jar inside the trigger (MS SQL)

    Hi! I'm just looking around google and can't find any good news.. The problem is: how to call *.jar inside the trigger. Trigger is stored in M$ Server. Tnx, if any response! ;)

  • Stretch part of a buffered image

    For my dissertation at university I am writing a program to generate rectangular cartograms, for an example look at: here (Not my work) I have written the algorithm to generate the cartograms(rectangles are drawn using Java 2D rectangle) and as a fur

  • CS6ServiceManager.exe - System Error

    "The program can't start because MSVCP100.dll is missing from your cmputer. Try reinstalling the program to fix this problem." I can't find the program on my computer, or on the Adobe website. Having trouble tracking down a solution. Any advice? Than