Flashbuilder 4.5 datagrid Generate Details Form not working

flashbuilder 4.5 in datagrid when you right click the Generate Details Form
is not there. Where is it?

I see what you're saying. Right-clicking on an mx.controls.DataGrid in design view has a Generate Details Form option. Right-clicking on a spark.components.DataGrid in design view does not have this option.
Let me ask around and get someone to reply with more information.
Regards,
Randy Nielsen
Senior Content and Community Manager
Adobe Systems Incorporated

Similar Messages

  • Custom Master Detail form not working In EBS

    Custom Master Detail form not working In EBS
    Hi all,
    I have two custom tables -- 1) XXX_DIE_Headers
    2) XXX_DIE_LINES
    I developed a Master Detail form based on above tables. XXX_DIE_Headers is the Master Block (Single record) & XXX_DIE_LINES is the detail block ( Multi line block ).
    Yes, I used Appstand,Template.fmb for developing this form. The Master block has three fields out of which Two are required fields and i have given initial value for them.
    As i deployed it in APPS(EBS),everything about it is working fine (insert,delete,master-detail behaviour) except querying.
    When i press F-11 , It pops up a message "Do you want to save changes you have made" Choice - yes,no,cancel.
    I don't want this message to pop up.
    The scenario is :- I open the form.( without entering ) Press F11 . The message Pops up.
    Please give me suggession on how to work it around so as form directly goes to query mode ,without popping the message.
    regards
    ravi

    It seems that you are changing a database value in your form, do you have any changes in WHEN-NEW-FORM-INSTANCE???
    what the form is trying to tell you that you have changed something, do you want to save it?
    I suggest you debug your form and see what's happening step by step.
    Tony

  • Problems with Master-Detail Form not retrieving Detail Rows

    Portal 3.0.7.6.2 on NT
    I am having problems with a Master-Detail Form not retrieving Detail Rows. Sometimes it retrieves all, sometimes about 50%, the majority of the time it's not retrieving any. If it never retrieved any I would suspect that the 'join' condition was wrong but that isn't the case. I didn't have this problem with a prior MD Form I created. I have tried re-creating the MD Form but I get the same problem.
    Is anyone having similar problems/is this a know bug??
    Any help or thoughts are appreciated.

    I experienced performance problems. The simpiest MD form takes about 10 secs. to requery. I's not answer to your question, but there is more problems with this concept.
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Michael Finch ([email protected]):
    Portal 3.0.7.6.2 on NT
    I am having problems with a Master-Detail Form not retrieving Detail Rows. Sometimes it retrieves all, sometimes about 50%, the majority of the time it's not retrieving any. If it never retrieved any I would suspect that the 'join' condition was wrong but that isn't the case. I didn't have this problem with a prior MD Form I created. I have tried re-creating the MD Form but I get the same problem.
    Is anyone having similar problems/is this a know bug??
    Any help or thoughts are appreciated.<HR></BLOCKQUOTE>
    null

  • So does Flash Forms not work in Safari?

    Does Flash Forms not work on Safari Browser? I have them on
    my site but when I try to look at them in Safari, they don't work..
    Or do I need to just add some type of extension to my Safari
    Browser to View a Flash Form?
    Here is the page. it won't work in Safari.. unless I"m
    missing an install extension. I just downloaded the browser for
    Windows for the first time today and so I wanted to check my site
    in that browser.
    http://www.jimmyharrell.com/contact.cfm
    is the page in question.

    yes but still no luck. When you go here do you see my flash
    form load in Safari? I'm using Safari for Windows not mac.
    http://www.jimmyharrell.com/contact.cfm

  • Does Flash Forms not work in Safari?

    Does Flash Forms not work on Safari Browser? I have them on
    my site but when I try to look at them in Safari, they don't work..
    Or do I need to just add some type of extension to my Safari
    Browser to View a Flash Form?
    Here is the page. it won't work in Safari.. unless I"m
    missing an install extension. I just downloaded the browser for
    Windows for the first time today and so I wanted to check my site
    in that browser.
    http://www.jimmyharrell.com/contact.cfm
    is the page in question.

    yes but still no luck. When you go here do you see my flash
    form load in Safari? I'm using Safari for Windows not mac.
    http://www.jimmyharrell.com/contact.cfm

  • Copy form Wrod document and Paste in Oracle Forms not working

    Hi
    In one Oracle Finacial instance Copy from other document (word or Excel) and Paste in Oracle Financial Forms not working. Any body know the reason for this?
    Eg. Copy Invoice Number form Excel and Paste it in Some of the payable forms or any other forms
    Regards
    Sunil

    Hi
    We have tried this but no output. ie the issue continues the same. This issue is there for all PC including Server. Is there any other solution avaliable. .
    Regards
    Sunil

  • [svn] 1967: * Fixed issue where -keep-generated-actionscript would not work

    Revision: 1967
    Author: [email protected]
    Date: 2008-06-05 08:12:21 -0700 (Thu, 05 Jun 2008)
    Log Message:
    * Fixed issue where -keep-generated-actionscript would not work
    properly when -generate-abstract-syntax-tree was enabled, which is
    now the default.
    tests Passed: checkintests
    Needs QA: YES
    Needs DOC: NO
    API Change: NO
    Reviewer: clucier
    Code-level description of changes:
    CompilerConfiguration.java
    Modified setKeepGeneratedActionScript() to force AST generation
    off when the value is true.
    Modified Paths:
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/common/CompilerConfiguration.java

    Remember that Arch Arm is a different distribution, but we try to bend the rules and provide limited support for them.  This may or may not be unique to Arch Arm, so you might try asking on their forums as well.

  • Re-freshing the detail form --- not so straightforward is it?

    hi there
    this is my problem:
    i have a master-detail form. Now this form basically provides the user the option to enter some parameters, which decides the number of rows to be entered in the detail.
    master form: qty and starting serial number.
    when he hits generate in master form, there are qty no. of records inserted in the detail table, but its not displayed in the detail form.
    if i query the record, the updated detail form is shown.
    so how can i make it so that when the user hits generate, the form detail part is automatically updated.
    eg.
    if the qty was 5 and thus there are 5 records(or serial nos.) in the detail, if he changes the qty to 8 and hits generate.. the detail block.. should update itself and show the 3 new records.
    thanks

    declare
         SERIAL_STRING VARCHAR2(50);
         trimmed_prefix varchar2(50);
         last_sr_no number(38);
         trav number(38);
         tab_ref number(10);
    begin
         IF :mytable.TABLE_REFERENCE = -1 THEN
              select last_number into tab_ref from user_sequences where SEQUENCE_NAME = 'mytable_SEQ' ;
         ELSE
              tab_ref := :mytable.TABLE_REFERENCE;
              delete from mytable_updated GU where GU.table_reference = tab_ref;
         END IF;
         IF :mytable.VOUCHER_NO IS NULL OR
              :mytable.REF_NO IS NULL OR
                   :mytable.USER_ID IS NULL OR
                        :mytable.QTY IS NULL OR
                             :mytable.PREFIX IS NULL OR
                                  :mytable.START_# IS NULL
         THEN
              MESSAGE('ERROR:666746-ATOU : Please enter all the information');
         ELSE
                   trimmed_prefix := RTRIM(LTRIM(:mytable.prefix));          
                   last_sr_no := :mytable.start_# + :mytable.qty - 1;
                   trav := :mytable.start_#;
                   while trav <= last_sr_no loop
                        serial_string := trimmed_prefix || trav;
                        insert into mytable_updated values ( :mytable.voucher_no,:mytable.ref_no, :mytable.user_id, :mytable.item, 1, serial_string, tab_ref);
                        trav := trav + 1;
                   end loop;
                   :mytable.sr_updated := 'Y';                    
              :mytable.sr_no_start := trimmed_prefix || :mytable.start_#;
                   :mytable.sr_no_end := trimmed_prefix || last_sr_no;
              do_key('commit_form');
              go_block('mytable_UPDATED');
              execute_query;
         END IF;          
    end;
    thanks for ur time in going throught this code..
    do_key('commit_form');
              go_block('mytable_UPDATED');
              execute_query;
    this bit... i save the changes and then go to the detail block as u suggested and execute query. it should update the records in the detail table... it works when i update the master record when i have do enter query . but when making new records... it does not work?
    any idea why?

  • Link from QBE-report to form not working when published as portlets

    I've created a simple QBE-report where I've linked (using a LINK) keyvalues to a detail FORM. Query and linking and automatically display of selected record works fine in the App.builder, - but when I publish the elements as portlets and access the QBE-report as a portlet on a page, - the link fails, no keyvalues are passed to the detail form. It only shows up blank.
    What am I missing here?
    Thankful for any hint.
    Regards,
    Haakon Eide
    [email protected]

    This is strange, - made the same report again, this time as a sql-query (not QBE) - and linked the report and form together exactly as before - this time the link works when using the report as a portlet.
    The QBE-report generates empty parameterstrings (i.e. foo=&bar=&) when run as portlet on a page. Is this a bug?
    Running Portal 3.0.9 on iAS 1.0.2.2.
    -Haakon-

  • Form not working in Reader X

    Hello,
    I created a form in Acrobat Professional 8, and it works perfectly. When I send it to someone using Adobe Reader X they can not type in the fields or use the submit button. Any ideas on what the problem could be?
    I have reader enabled the form, and tried exporting it as an FDF as I have read on other threads, and its still not working.
    Thanks in advance!

    Additional info regarding this issue:
    I am testing it on my PC. We have the creative cloud license so all is updated and complete. I was testing it in different ways, saving all the versions (static, dynamic, with and without extended rights) and the problem sticks. I have noticed that the file with extended rights weight a bit more than original file. Details below:
    1. straight from livecycle: 832KB
    2. opened in Acrobat, saved as copy 832KB
    3. opened in Acrobat, saved with extended rights 844KB
    4. opened in Reader, saved with filled data 864KB
    5. opened the same file with Reader, it is empty so i save it as a copy - 864KB
    6. opened it in Reader & Acrobat - it's empty; opened it in Photoshop - all data is there...???

  • MSS PCRs and ESS Adobe Forms not working

    Hi Gurus,
    Scenario: Portal system on a seperate box / Adobe system on a seperate box /R/3 on a seperate box . ADS is configured properly, From R/3 the forms are working fine all test programs are working great. But when I try to see thru the Portal MSS and ESS links then it gives me the following error. Please suggest what needs to be done. Points will be awarded..
    500   Internal Server Error
      Web Dynpro Container/SAP J2EE Engine/6.40 
    Failed to process request. Please contact your system administrator.
    [Hide]
    Error Summary
    While processing the current request, an exception occured which could not be handled by the application or the framework.
    If the information contained on this page doesn't help you to find and correct the cause of the problem, please contact your system administrator. To facilitate analysis of the problem, keep a copy of this error page. Hint: Most browsers allow to select all content, copy it and then paste it into an empty document (e.g. email or simple text file).
    Root Cause
    The initial exception that caused the request to fail, was:
       java.lang.Exception: Incorrect content-type found 'text/html'
        at com.sap.engine.services.webservices.jaxrpc.wsdl2java.soapbinding.ClientMimeMessage.initDeserializationMode(ClientMimeMessage.java:120)
        at com.sap.engine.services.webservices.jaxrpc.wsdl2java.soapbinding.MimeHttpBinding.handleResponseMessage(MimeHttpBinding.java:951)
        at com.sap.engine.services.webservices.jaxrpc.wsdl2java.soapbinding.MimeHttpBinding.call(MimeHttpBinding.java:1430)
        at com.sap.tc.webdynpro.adsproxy.ConfigBindingStub.rpData(ConfigBindingStub.java:82)
        at com.sap.tc.webdynpro.adsproxy.ConfigBindingStub.rpData(ConfigBindingStub.java:99)
        ... 52 more
    See full exception chain for details.
    System Environment
    Client
    Web Dynpro Client Type HTML Client
    User agent Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)
    Version null
    DOM version null
    Client Type msie6
    Client Type Profile ie6
    ActiveX enabled
    Cookies enabled
    Frames enabled
    Java Applets enabled
    JavaScript enabled
    Tables enabled
    VB Script enabled
    Server
    Web Dynpro Runtime Vendor: SAP, build ID: 7.0008.20060517125535.0000 (release=645_VAL_REL, buildtime=2006-05-29:19:11:56[UTC], changelist=403424, host=pwdfm101), build date: Fri Oct 13 16:42:28 PDT 2006
    J2EE Engine 7.00 patchlevel
    Java VM Classic VM, version:1.4.2, vendor: IBM Corporation
    Operating system AIX, version: 5.3, architecture: ppc64
    Session & Other
    Session Locale en_US
    Time of Failure Tue Jan 30 11:01:46 PST 2007 (Java Time: 1170183706621)
    Web Dynpro Code Generation Infos
    sap.com/pb
    SapDictionaryGenerationCore 7.0008.20060428175704.0000 (release=645_VAL_REL, buildtime=2006-06-10:14:30:12[UTC], changelist=400798, host=PWDFM101.wdf.sap.corp)
    SapDictionaryGenerationTemplates 7.0008.20060428175704.0000 (release=645_VAL_REL, buildtime=2006-06-10:14:30:21[UTC], changelist=400798, host=PWDFM101.wdf.sap.corp)
    SapGenerationFrameworkCore 7.0008.20050713144242.0000 (release=645_VAL_REL, buildtime=2006-06-10:14:18:37[UTC], changelist=357697, host=PWDFM101.wdf.sap.corp)
    SapIdeWebDynproCheckLayer 7.0008.20060428190753.0000 (release=645_VAL_REL, buildtime=2006-06-10:14:35:47[UTC], changelist=400814, host=PWDFM101.wdf.sap.corp)
    SapMetamodelCommon 7.0008.20060210160857.0000 (release=645_VAL_REL, buildtime=2006-06-10:14:19:24[UTC], changelist=388995, host=PWDFM101.wdf.sap.corp)
    SapMetamodelCore 7.0008.20060210160857.0000 (release=645_VAL_REL, buildtime=2006-06-10:14:19:17[UTC], changelist=388995, host=PWDFM101.wdf.sap.corp)
    SapMetamodelDictionary 7.0008.20051128142655.0000 (release=645_VAL_REL, buildtime=2006-06-10:14:27:20[UTC], changelist=378069, host=PWDFM101.wdf.sap.corp)
    SapMetamodelWebDynpro 7.0008.20060428190938.0000 (release=645_VAL_REL, buildtime=2006-06-10:14:32:41[UTC], changelist=400815, host=PWDFM101.wdf.sap.corp)
    SapWebDynproGenerationCTemplates 7.0008.20060517125535.0000 (release=645_VAL_REL, buildtime=2006-06-10:14:52:10[UTC], changelist=403424, host=pwdfm101)
    SapWebDynproGenerationCore 7.0008.20060428190753.0000 (release=645_VAL_REL, buildtime=2006-06-10:14:35:58[UTC], changelist=400814, host=PWDFM101.wdf.sap.corp)
    SapWebDynproGenerationTemplates 7.0008.20060517125535.0000 (release=645_VAL_REL, buildtime=2006-06-10:14:52:10[UTC], changelist=403424, host=pwdfm101)
    sap.com/tcwddispwda
    No information available null
    sap.com/pb_api
    SapDictionaryGenerationCore 7.0008.20060428175704.0000 (release=645_VAL_REL, buildtime=2006-06-10:14:30:12[UTC], changelist=400798, host=PWDFM101.wdf.sap.corp)
    SapDictionaryGenerationTemplates 7.0008.20060428175704.0000 (release=645_VAL_REL, buildtime=2006-06-10:14:30:21[UTC], changelist=400798, host=PWDFM101.wdf.sap.corp)
    SapGenerationFrameworkCore 7.0008.20050713144242.0000 (release=645_VAL_REL, buildtime=2006-06-10:14:18:37[UTC], changelist=357697, host=PWDFM101.wdf.sap.corp)
    SapIdeWebDynproCheckLayer 7.0008.20060428190753.0000 (release=645_VAL_REL, buildtime=2006-06-10:14:35:47[UTC], changelist=400814, host=PWDFM101.wdf.sap.corp)
    SapMetamodelCommon 7.0008.20060210160857.0000 (release=645_VAL_REL, buildtime=2006-06-10:14:19:24[UTC], changelist=388995, host=PWDFM101.wdf.sap.corp)
    SapMetamodelCore 7.0008.20060210160857.0000 (release=645_VAL_REL, buildtime=2006-06-10:14:19:17[UTC], changelist=388995, host=PWDFM101.wdf.sap.corp)
    SapMetamodelDictionary 7.0008.20051128142655.0000 (release=645_VAL_REL, buildtime=2006-06-10:14:27:20[UTC], changelist=378069, host=PWDFM101.wdf.sap.corp)
    SapMetamodelWebDynpro 7.0008.20060428190938.0000 (release=645_VAL_REL, buildtime=2006-06-10:14:32:41[UTC], changelist=400815, host=PWDFM101.wdf.sap.corp)
    SapWebDynproGenerationCTemplates 7.0008.20060517125535.0000 (release=645_VAL_REL, buildtime=2006-06-10:14:52:10[UTC], changelist=403424, host=pwdfm101)
    SapWebDynproGenerationCore 7.0008.20060428190753.0000 (release=645_VAL_REL, buildtime=2006-06-10:14:35:58[UTC], changelist=400814, host=PWDFM101.wdf.sap.corp)
    SapWebDynproGenerationTemplates 7.0008.20060517125535.0000 (release=645_VAL_REL, buildtime=2006-06-10:14:52:10[UTC], changelist=403424, host=pwdfm101)
    sap.com/tcwdcorecomp
    No information available null
    Detailed Error Information
    Detailed Exception Chain
    com.sap.tc.webdynpro.clientserver.adobe.pdfdocument.base.core.PDFDocumentRuntimeException: Failed to  UPDATEDATAINPDF
         at com.sap.tc.webdynpro.clientserver.uielib.adobe.impl.InteractiveForm.afterHandleActionEvent(InteractiveForm.java:371)
         at com.sap.tc.webdynpro.clientserver.cal.ClientApplication.afterApplicationModification(ClientApplication.java(Compiled Code))
         at com.sap.tc.webdynpro.clientserver.cal.ClientComponent.afterApplicationModification(ClientComponent.java(Inlined Compiled Code))
         at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.doRespond(WindowPhaseModel.java(Compiled Code))
         at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.processRequest(WindowPhaseModel.java(Compiled Code))
         at com.sap.tc.webdynpro.clientserver.window.WebDynproWindow.processRequest(WebDynproWindow.java(Compiled Code))
         at com.sap.tc.webdynpro.clientserver.cal.AbstractClient.executeTasks(AbstractClient.java(Compiled Code))
         at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.doProcessing(ApplicationSession.java(Compiled Code))
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessingPortal(ClientSession.java(Compiled Code))
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessing(ClientSession.java(Compiled Code))
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doProcessing(ClientSession.java(Compiled Code))
         at com.sap.tc.webdynpro.clientserver.session.RequestManager.doProcessing(RequestManager.java(Compiled Code))
         at com.sap.tc.webdynpro.clientserver.session.core.ApplicationHandle.doProcessing(ApplicationHandle.java(Compiled Code))
         at com.sap.tc.webdynpro.portal.pb.impl.AbstractApplicationProxy.sendDataAndProcessActionInternal(AbstractApplicationProxy.java(Compiled Code))
         at com.sap.tc.webdynpro.portal.pb.impl.localwd.LocalApplicationProxy.sendDataAndProcessAction(LocalApplicationProxy.java(Compiled Code))
         at com.sap.portal.pb.PageBuilder.updateApplications(PageBuilder.java(Compiled Code))
         at com.sap.portal.pb.PageBuilder.SendDataAndProcessAction(PageBuilder.java(Inlined Compiled Code))
         at com.sap.portal.pb.PageBuilder$1.doPhase(PageBuilder.java(Inlined Compiled Code))
         at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.processPhaseListener(WindowPhaseModel.java(Inlined Compiled Code))
         at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.doPortalDispatch(WindowPhaseModel.java(Inlined Compiled Code))
         at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.processRequest(WindowPhaseModel.java(Compiled Code))
         at com.sap.tc.webdynpro.clientserver.window.WebDynproWindow.processRequest(WebDynproWindow.java(Compiled Code))
         at com.sap.tc.webdynpro.clientserver.cal.AbstractClient.executeTasks(AbstractClient.java(Compiled Code))
         at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.doProcessing(ApplicationSession.java(Compiled Code))
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessingStandalone(ClientSession.java(Compiled Code))
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessing(ClientSession.java(Compiled Code))
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doProcessing(ClientSession.java(Compiled Code))
         at com.sap.tc.webdynpro.clientserver.session.RequestManager.doProcessing(RequestManager.java(Compiled Code))
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doContent(DispatcherServlet.java(Inlined Compiled Code))
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doPost(DispatcherServlet.java(Compiled Code))
         at javax.servlet.http.HttpServlet.service(HttpServlet.java(Compiled Code))
         at javax.servlet.http.HttpServlet.service(HttpServlet.java(Compiled Code))
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java(Compiled Code))
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java(Compiled Code))
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java(Inlined Compiled Code))
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java(Compiled Code))
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java(Compiled Code))
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java(Compiled Code))
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java(Inlined Compiled Code))
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java(Compiled Code))
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java(Compiled Code))
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java(Compiled Code))
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java(Compiled Code))
         at java.security.AccessController.doPrivileged1(Native Method)
         at java.security.AccessController.doPrivileged(AccessController.java(Compiled Code))
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java(Compiled Code))
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java(Compiled Code))
    Caused by: com.sap.tc.webdynpro.clientserver.adobe.pdfdocument.base.core.PDFDocumentRuntimeException: PDFDocument Processor failed to process Render Request.
         at com.sap.tc.webdynpro.clientserver.adobe.pdfdocument.base.core.PDFDocumentProcessor.process(PDFDocumentProcessor.java:55)
         at com.sap.tc.webdynpro.clientserver.adobe.pdfdocument.base.core.PDFDocumentInteractiveFormHandlingContext.execute(PDFDocumentInteractiveFormHandlingContext.java:118)
         at com.sap.tc.webdynpro.clientserver.uielib.adobe.impl.InteractiveForm.afterHandleActionEvent(InteractiveForm.java:333)
         ... 46 more
    Caused by: com.sap.tc.webdynpro.pdfobject.core.PDFObjectRuntimeException: Service call exception; nested exception is:
         java.lang.Exception: Incorrect content-type found text/html
         at com.sap.tc.webdynpro.pdfobject.core.PDFObject.doSoapCall(PDFObject.java:366)
         at com.sap.tc.webdynpro.pdfobject.core.PDFObject.render(PDFObject.java:3689)
         at com.sap.tc.webdynpro.clientserver.adobe.pdfdocument.base.core.PDFDocumentRenderHandler.handle(PDFDocumentRenderHandler.java:154)
         at com.sap.tc.webdynpro.clientserver.adobe.pdfdocument.base.core.PDFDocumentProcessor.process(PDFDocumentProcessor.java:52)
         ... 48 more
    Caused by: java.rmi.RemoteException: Service call exception; nested exception is:
         java.lang.Exception: Incorrect content-type found 'text/html'
         at com.sap.tc.webdynpro.adsproxy.ConfigBindingStub.rpData(ConfigBindingStub.java:89)
         at com.sap.tc.webdynpro.adsproxy.ConfigBindingStub.rpData(ConfigBindingStub.java:99)
         at com.sap.tc.webdynpro.pdfobject.core.PDFObject.doSoapCall(PDFObject.java:359)
         ... 51 more
    Caused by: java.lang.Exception: Incorrect content-type found 'text/html'
         at com.sap.engine.services.webservices.jaxrpc.wsdl2java.soapbinding.ClientMimeMessage.initDeserializationMode(ClientMimeMessage.java:120)
         at com.sap.engine.services.webservices.jaxrpc.wsdl2java.soapbinding.MimeHttpBinding.handleResponseMessage(MimeHttpBinding.java:951)
         at com.sap.engine.services.webservices.jaxrpc.wsdl2java.soapbinding.MimeHttpBinding.call(MimeHttpBinding.java:1430)
         at com.sap.tc.webdynpro.adsproxy.ConfigBindingStub.rpData(ConfigBindingStub.java:82)
         ... 53 more
    Regards,
    Samar.

    Samar,
    I am having the exact same problem. Can you please inform me on how you managed to resolve this issue?
    Thanks,
    Thomas

  • Distribute forms not working with security

    Hi,
    Before i use securtity i can distribute my forms to any recipients i want.
    Now i wish my clients cannot see my javascript or edit anything in my PDF so i set the security for that. And allow them only to fill in the forms.
    So i enabled the securtiy inside acrobat.
    Now i try to distribute the form and i get all freaking problems.
    Even what settings i try @ changed allow or encrypted settings i cant distrubute anymore. Or sent mail to recipients.
    You know what steve jobs said about flash.
    Proove me wrong adobe.
    Why is there nothing for me to do anymore then complain here?
    Any help would be appreciated.
    Greetigns,
    Michiel

    Digital Signature - is reader extended feature, so it will not work on reader alone without applying proper reader extentions. It is available thru Acrobat or LiveCycle Reader Extensions module.
    For full details and differnces, please check this thread: http://forums.adobe.com/thread/767880 (picture in this thread explains in detail)

  • Hi Adobe forms not working corretly

    http://floridavocproductions.com/?page_id=147    
    Registration drop box not working correctly. Please email me at [email protected]
    Thank you

    Hi,
    Please provide more detail on which field on the form is not working. I am able to select the "State" drop box.  If you are referring to other issues please provide the details or send the details to [email protected] and I take a look,
    Thanks,
    Lucia

  • VBE 2010. Forms Not Working

    Hello. I am currently undertaking a project for my coursework and I have stumbled upon a problem. The code can not open up a form. I have used the code previously and only today it is not working. I was wondering If I
    have somehow changed the project settings.
    Here is the close I have been using:
    FrmAdminHomePage.Show()
    Also note that this code is working on different projects.
    Many Thanks.

    Private Sub btnLogOn_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnLogOn.Click
            MsgBox("Logging you on.")
            Dim EnteredUserID As String = txtboxUserID.Text
            Dim EnteredUserPIN As String = txtboxPIN.Text
            Dim UserTypeLocal As String
            Dim EnteredUserIDLength As Integer = Len(EnteredUserID)
            Dim EnteredUserPINLength As Integer = Len(EnteredUserPIN)
            Dim Validation As Boolean = True
            Dim ExcelApplication As Excel.Application
            Dim ExcelWorkBook As Excel.Workbook
            Dim ExcelWorkSheet As Excel.Worksheet
            Dim rowcounter As Integer = 1   'This is a counter to count the rows searched.
            Dim CorrectUserCredentials As Boolean = False
            Dim EmptyCell As Boolean = False
            If EnteredUserIDLength <> 4 Then
                MsgBox("The entered ID must be four digits long")
                Validation = False
            End If
            If EnteredUserPINLength <> 4 Then
                MsgBox("The entered PIN must be four digits long")
                Validation = False
            End If
            If Validation = True Then
                Try
                    ExcelApplication = CreateObject("Excel.Application")
                    ExcelWorkBook = ExcelApplication.Workbooks.Open(Directory + "\MainStorage.xlsx") 'This is the book where the UserID's, PIN's User Types are stored.
                    ExcelWorkSheet = ExcelWorkBook.Worksheets(UserCredentialsSheet)    'This is the sheet where the UserID's, PIN's User Types are stored.
                Catch
                    MsgBox(Err.Description)
                End Try
                Try
                    Do Until CorrectUserCredentials = True Or EmptyCell = True
                        If ExcelWorkSheet.Cells(rowcounter, UserID_UserCredentialsSheet).value = EnteredUserID And
                            ExcelWorkSheet.Cells(rowcounter, UserPIN_UserCredentialsSheet).value = EnteredUserPIN Then
                            UserTypeLocal = ExcelWorkSheet.Cells(rowcounter, UserIdentifier_UserCredentialsSheet).value
                            CorrectUserCredentials = True
                        End If
                        If ExcelWorkSheet.Cells(rowcounter, UserID_UserCredentialsSheet).value = Nothing Then
                            EmptyCell = True
                            MsgBox("Your user details can't be confirmed please try again. If you fail to log on again speak to a member of the admin team.")
                            txtboxUserID.Text = ""
                            txtboxPIN.Text = ""
                        Else
                            rowcounter = rowcounter + 1
                        End If
                    Loop
                Catch
                    MsgBox(Err.Description)
                Finally
                    ExcelWorkBook.Close()   'This closes the workbook to ensure it is not locked.
                    ExcelApplication.Quit()
                End Try
                UserTypeGlobal = UserTypeLocal
                UserIDGlobal = EnteredUserID
                If CorrectUserCredentials = True Then
                    If EnteredUserPIN = PresetPIN Then
                        FrmChangePIN.Show()
                    Else
                        If UserTypeGlobal = UserTypeAdmin Then
                            FrmAdminHomepage.Show()
                            Me.Close()
                        End If
                    End If
                End If
            End If
        End Sub
    Above is the code. Please ignore the logic behind it, I know it works as have used breakpoint to test it. Many Thanks

  • Urgent help - MUSE email form not working - PLEASE HELP

    HI to all!!
    I'm having a big issue here with Adobe Muse cc 7.0
    I have my personal domain www.shepherdtextiles.com
    and third party host (here in China which is 72e.net (and yes, got all php and so on requirements Adobe Muse needs)
    I follow carefully all steps to add a simple contact form, adding first [email protected] and changing it to my personal hotmail when I saw it wasn't working to try if with hotmail could work, but didn't.
    I have checked the Muse PHP Diagnostics  and as you can see the mail one failed.....
    I used first the simple contact form that comes with Muse and later I used one from museresources.com but none of them seemed to work
    I'm just guessing that something is not well setup on my server because I just follow all steps Adobe mentioned and I watched many videos where people do it very simple.
    The error I get on my website when I click on submit button is "The server encountered an error"
    There is NO error when I export to html or warnings, just exports fine.
    PLEASE HELP
    Many many thanks!
    Vic

    I'M having a similar problem with my Muse website Formally hosted by GoDaddy. The contact me widget does not send an email when you click submit button. Normally, it accepts with a green check mark in another screen. It does not do that. The submit just turns black when clicked, but nothing else happens
    THe he regular email works. I am able to send and receive. It just does not work with the contact widget

Maybe you are looking for