ZForm only opens is 'read only" mode - but WDR_TEST_ADOBE, runs fine

Dear readers,
I am working on an Adobe form, now ZForm only opens is 'read only" mode - but when i run WDR_TEST_ADOBE, it runs fine and it is interactive and I am able to click on the buttons.
I compared the form from WDR_TEST_ADOBE, and changed the layout to ZC1, and run the Web dynpro script. After activating and running the webdynpro, I see that it is still acting strange and none of the input fields are accepting input.
There seems to be nothing wrong with the ADS or live cycle designer.
Some setting in my Webdynpro is preventing this form from being displayed correctly.
When I attach the form - "WDR_TEST_ADOBE_SIMPLE" from the WD - WDR_TEST_ADOBE, and test my WD, The form is being displayed as read only.
which again leaves to the conclusion that the something is not right in the WD.
~Any suggestions are appreciated, thanks

Also in the interface properties under sfp,
when I change the interface type from
"ABAP dictionary based interface" to
"XML schema based interface".
All the entries under Form interface->Import parameters get wiped out, and I have to enter them again.
Also below is the system information.
Software   ComponRelease   Level  Highest SupportShort Description of Software Co
SAP_ABAP           700        0017     SAPKA70017     Cross-Application Component
SAP_BASIS          700       0017     SAPKB70017     SAP Basis Component
SAP_HR            600        0040     SAPKE60040     Human Resources
and I am doing development on HR box, could this be causing trouble, bcos as per below link
http://help.sap.com/saphelp_nw70/helpdata/en/77/3545415ea6f523e10000000a155106/frameset.htm from here goto: WebDynpro ABAP Development in Detail->Integration->Integrating Forms->Forms with ABAP Dictionary Based Interface. 
As of NetWeaver 7.0 SPS10 we strongly recommend you use ZCI forms with an XML interface only. Because additional central features have been added in subsequent SPs (input help and dropdown list boxes), we generally recommend that you always use the most up-to-date Support Package for Web Dynpro ABAP.
Edited by: Neha Sharma on Feb 1, 2010 11:21 AM
Edited by: Neha Sharma on Feb 1, 2010 11:25 AM
Edited by: Neha Sharma on Feb 1, 2010 11:27 AM

Similar Messages

  • Itunes will not launch, it shows  message of "itunes library .itl" can not be read because it was created by a newer version of itunes. I tried opene it in save mode but I had the same problem.

    Itunes will not launch, it shows  message of "itunes library .itl" can not be read because it was created by a newer version of itunes. I tried opene it in save mode but I had the same problem.

    If you still have an issue you may have to see about using the iTunes version (application) included with Snow Leopard 10.6 from the installer or an another one if available online, and see if that will install.
    Sometimes you may have uninstall the bits left in your system by the earlier (or later) iTunes installers; as they all leave a trace and these can stop a different version of iTunes from being installed.
    Not sure if the following site/link will tell the method...
    •Apple - Support - iTunes - install & update:
    http://www.apple.com/support/itunes/install/
    •Troubleshooting iTunes installation on Mac OS X:
    http://support.apple.com/kb/HT2311
    Good luck & happy computing!
    ps: i see you resolved this issue. it's magic!

  • I want to close the bokkmarks side bar, I have tried to open firefox in safe mode but this does not help.

    This morning I opened firefox as usual and found that a sidebar for bookmarks on the left side of this page. I did not request this to open and I want it removed from my computer. I do not like the way it uses up the space on the page. I have tried to open firefox in safe mode but his did not clear it. If I can not remove this sidebar I will want to close firefox.

    There should be a little 'x' Close button in the top right corner of the sidebar.
    Alternatively, Ctrl + B will close it too.

  • Firefox installed the latest version. Now my google browser, history etc. doesn't work anymore. It doesn't respond. I can't run searches from the browser. youtube button is missing. I've tried opening firefox in safe mode but that doesn't work.

    # Question
    firefox installed automatically the latest version. Now my google browser, history etc. doesn't work anymore. It doesn't respond. I can't run searches from the browser. youtube button is missing. I've tried opening firefox in safe mode but that doesn't work

    A possible cause is a problem with the file places.sqlite that stores the bookmarks and the history.
    *http://kb.mozillazine.org/Bookmarks_history_and_toolbar_buttons_not_working_-_Firefox
    What happens if you open Firefox in Save mode?
    *https://support.mozilla.com/kb/Safe+Mode
    *Help > Restart with Add-ons Disabled

  • Is there a way to back up my imac computer that isn't fully functional? I can get into safe mode but its running really really slow.

    Is there a way to back up my imac computer that isn't fully functional? I can get into safe mode but its running really really slow. I recently upgraded to Yosemite when shortly it slowed down.

    Read the comments in this thread--> https://discussions.apple.com/thread/6411339

  • Today when I opened Firefox It wouldn't open on restore down mode but when I went to full page it was OK, restored down again it disappeared or crashed. Yours G.Swan

    Today when I open Firefox the web page didn't appear in restore mode, but it appeared in task bar I then tried full screen which did come up as a full page, then when I restored down I lost it again and it was still in the task bar and would regain full page when asked. That's how I'm sending this request. Also when loading gmail the system crashed.
    Yours G. Swan

    Make an appointment at an Apple Store to have your device examined by a technician. Or contact Apple Support.

  • Opening Form in Insert mode but making a query at the same time

    My problem is that I want to open a Portal Form in Insert mode but at the same time making a query.
    If I call a form with patameters the form opens automatically in update mode (to be more precise with FORMSTATE = UPDATE_AND INSERT). In that case the insert button is not shown.
    I have come very close to a solution by running this code:
    BEGIN
    p_session.set_value(
    p_block_name => 'DEFAULT',
    p_attribute_name => '_FORM_STATE',
    p_value => 'QUERY_AND_INSERT');
    END;
    under "... before processing the form". The form-state changes to QUERY_AND_INSERT' and I get the record from the table that I want but I still see no insert button!
    I think that I can solve this problem in some table-triggers in the database but it would be interesting to know weather it is possible to do this in the portal.

    Kari,
    You can workaround the disappearing Insert button by creating a custom button instead.
    If you look at the "standard" Insert button code it looks like this:
    --- Type your PL/SQL code here...
    doInsert;--- This is the default handler
    --- ...and here, thanks...
    in the generated forms package doInsert just calls internal insert handler:
    procedure doINSERT
    is
    begin
    onINSERT(
    p_block_name => p_block_name ,
    p_object_name => p_object_name,
    p_instance => p_instance ,
    p_event_type => p_event_type ,
    p_user_args => p_user_args ,
    p_session => p_session);
    end doINSERT;
    If you add a custom button to your form and from PLSQL event combobox select "Custom", then copy&paste this code to the event code:
    onINSERT(
    p_block_name => p_block_name ,
    p_object_name => p_object_name,
    p_instance => p_instance ,
    p_event_type => p_event_type ,
    p_user_args => p_user_args ,
    p_session => p_session);
    You will get a custom button which does exactly what the Insert button does and it will not disappear from the screen.
    Thanks,
    Dmitry

  • I set firefox to open in 32-bit mode but it doesn't.

    Netflix instant streaming still asks me to restart in 32-bit mode even tho I followed the instructions to ALWAYS start in 32-bit mode. I even reinstalled firefox. On Netflix when I click on the button to restart in 32-bit mode, it goes in a loop and just keeps asking for the 32-bit mode. This is a new problem, since in the past restarting in 32-bit mode always worked.

    This is a known problem with Netflix and Microsoft Silverlight right now. You can try the following:
    See if there is an update for Microsoft Silverlight.
    After checking for updates, Go to Finder, then Applications. Right click on Firefox, then click "Get Info". Then check the box that says "open in 32-bit mode". Restart your PC, and test again. Does it work now?

  • TS3899 I can receive open and read my email but when I try to respond everything goes to my outbox and never gets sent ???? I contacted my provider and changed password but still does. It work ??? Help please ??

    On my iPad-I cannot reply to my emails -I receive and am able to open and read but all responses go to my outbox -changed the password -talked to provider-logged completely off and on -still nothing -does anyone have any advise how to rectify?

    iOS: Unable to send or receive email
    http://support.apple.com/kb/TS3899
    Can’t Send Emails on iPad – Troubleshooting Steps
    http://ipadhelp.com/ipad-help/ipad-cant-send-emails-troubleshooting-steps/
    Setting up and troubleshooting Mail
    http://www.apple.com/support/ipad/assistant/mail/
    Why Does My iPad Say "Cannot Connect to Server"?
    http://www.ehow.co.uk/info_8693415_ipad-say-cannot-connect-server.html
    iPad Mail
    http://www.apple.com/support/ipad/mail/
    Try this first - Reset the iPad by holding down on the Sleep and Home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons. (This is equivalent to rebooting your computer.)
    Or this - Delete the account in Mail and then set it up again. Settings->Mail, Contacts, Calendars -> Accounts   Tap on the Account, then on the red button that says Remove Account.
     Cheers, Tom

  • Remote Enabled function module of SAP working - debug mode but not run mode

    Hi,
    When a remote function module is called from Java a message should get thrown from the function module which the FM is throwing but Java is not able to fetch the error. This problem is coming in execution mode but if we are in debugging mode and go to the function module  remotely the error is getting triggered.
    Please suggest the solution to the problem.
    Thanks,
    Abhishek

    Hello
    try something like this
    try {
       JCO.Client.execute(myFunction)
    } catch (JCO.AbapException ex) {
       System.out.println ("ABAP Exception: " + ex.getKey() + " " + ex.getMessage());
    the problem is, that JCo ABAP Exceptions are subclasses of java.lang.RuntimeException so the Java Compiler doesn't force you to catch them
    regards franz
    reward points if useful

  • Apple File Service in Server Admin tools shows stopped but is running fine

    Hi
    I am having a bizzare issue and not getting anywhere fast and hope anyone can help and would be appreciated.
    What happened is one disk failed in our Xserve Raid (Raid 5)and we had to replace the drive in the server which rebuilt itself fine.
    The issue is since we rebuilt the raid, the Xserve is showing the Apple File Service as stopped with 10.3.9 server admin.
    The service is running fine as all the users including myself can connect using AFP, but I have no way to manage the AFP connections on the server.
    I have tried rebooting and putting the server tools on a desktop. Though I still have the same issue.
    Has anyone come across a similar problem with a service running and unable to manage in Server admin?
    Any help would be appreciated.

    Hi Bene
    On the server launch terminal
    su root (supply the password when prompted)
    serveradmin status afp
    The service should report that its ‘RUNNING’
    serveradmin stop afp
    serveradmins status afp
    The service should report that its ‘STOPPED’
    serveradmin start afp
    serveradmin status afp
    It should now be ‘RUNNING’ again
    You could try running fsck and DiskWarrior on the RAID as the problem could lie with the Directory being damaged or corrupted. No need to reboot the server with the DiskWarrior disk (v3.03 or 4.0) just drag the application off the CD to the Server volume and run it from there. Make sure that all users are not connected to the RAID volume affected as DiskWarrior will unmount the whole drive.
    Hope this helps.

  • Preview won't open.  It will open when in test mode but not in my user mode.\

    I'm running Yosemite 10.10.2.  My Preview won't open.  I followed Linc's advice and removed many files but Preview still won't open.  I have tried cold booting to no avail. 

    I just figured out how to open Preview...... Open Finder>Documents>click on any PDF or JPEG.  Preview opens.  Now, if I could only get it to open from the Dock.

  • Error message - this project cannot be opened in read-write mode because a previous checkin for this project is not complete.

    Hi,
    I have read the previous posts about this error message and I have tried all resolutions suggested but to no avail.
    This week 4 Project Managers have reported this error message to me. Each time I have checked the Force Check-In Enterprise Objects, the queue and also the cache. None of the projects can be found anywhere. This is obviously frustrating for them and for
    myself.
    If anyone has any advice on where to find these project and check them in properly, and also how to avoid this happening going forward, I would be greatful.
    Thanks,
    Clair.

    Clair --
    Did you look at the local project Cache on the PC of each of the affected users?  Did you ask the affected users to clean out their Cache and try to open each project directly from the Project Server database, instead of opening it from the Cache?
    There is a possibility that the Cache has gotten corrupted on the PC of each of your affected users.  To resolve possible Cache corruption, ask each of the affected users to do the following:
    1.  Close Microsoft Project 2010.
    2.  Click the Start > All Programs > Accessories > Run.
    3.  In the Run dialog, enter the following command:
         %appdata%\Microsoft\MS Project\14\Cache
    4.  Click the OK button.
    Please let us know if this helps.
    Dale A. Howard [MVP]

  • I can open and read my email but can not open any links

    I Can open my email but can not open any links

    Try this  - Reset the iPad by holding down on the Sleep and Home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons. (This is equivalent to rebooting your computer.) No data/files will be erased. http://support.apple.com/kb/ht1430
    It's probably not the cause of your problem, but you should update the iOS to iOS 7.1.2
     Cheers, Tom

  • I see solution for netflix (mac) where you need to switch to 'open in 32 bit mode', but when I go into info for FF, that radio button is not there. ??

    i am confused

    "You may need to open the Firefox Tools menu, then go the Add-ons manager Plugins panel and enable the Silverlight plugin. "
    that did it, many thanks

Maybe you are looking for

  • XSL disable-output-escaping

    Hi, I have the next part of an XML file: <?xml version="1.0" encoding="UTF-8"?> <idiomas>      <element>           <titol><![CDATA[Angl�s]]></titol>           <url>/google.com</url>           <alt><![CDATA[Change to Angl�s]]></alt>           <languag

  • Unable to update apps in-phone or via iTunes after updating iOS

    Hello! I'm using an iPhone 4S, jailbroken with redsn0w, with an Orange SIM card in France. I've tried using three country settings for my Apple ID (same email address, linked to my bank accounts in the US, UK, and France). The phone was working perfe

  • What is default web access password for hp laserjet 2200 ?

    I tried to logon to the printer's web access interface, but do not know the username and password. I need to know either the default username and password, or how to reset it to the default. Thanks,

  • Different Free disk space values in ps cs6 beta and finder

    OS X 10.7.3 Photoshop CS6 Beta shows less hdd space available than finder does. It is installed on a MBP, with an 128gb Crucial M4 SSD. As you can see in the screenshot below Finder has 73.4GB available, Photoshop shows 46.22GB. This is too much a di

  • 10.3.9 and force quits

    hi have some probs on the beige with 2 hard drives running 10.3.9 when i force quit an application why does it still show in the task bar and is there anything i can do to kill them? it does not work when i kill it but then when i do i get the spinni