EventHandler triggering issues from AdobeForm SubmitToSAP button

Hi Sumit,
Please follow this solution:
Please switch on logging for the following location to "info":
Nw04:  com.sap.tc.webdynpro.clientserver.adobe.AdobeFormHelper
Nw04s: com.sap.tc.webdynpro.clientserver.uielib.adobe.impl.AdobeFormHelper
How to use Visual Administrator is described within note 742674. Then look for "createPDFDocumentForUIElement" in the trace file (usually defaultTrace). This trace statement will show the XML data that is provided to the Adobe Document Services. It is possible to copy this part and to save it with extension "xml" (e.g. file.xml) to the local file system. Then it can be display with a browser or XML editor.
- If it does not contain the values that are missing during an initial request, the application is definitely responsible for the problem.
- If it does contain the values, please double check whether the binding expressions in the XFA template (file with extension xdp) fits to the XML data.
If both statements have been checked, then it is an issue for CSN/OSS component BC-WD-JAV. Otherwise the application is responsible.
Thanks,
Raj.

Hi,
Let me know the sp level you are with ??However this seems to be xACFf issue it-self ....verify the placeholder.dll and the adobe support with the browser...also verify the support version of xACF...mostly this should fix your problem.
Still if u have the problem....Turn on the default trace of ADS services to all.... let me know the further updates on the same ,,,!!

Similar Messages

  • Can you issue a Control = from a webpage button

    Is there any way to issue a Control = from a webpage button to increase the size of the print within the browser. Say I wanted two buttons to increase or decrease the text size just as if I typed Control = or Control -.

    This is hardly necessary anymore because every browser & mobile web device has it's own  Zoom feature which almost everybody knows how to use. 
    Nancy O.

  • I had my Ipod nano 7Gen factory restored. Nano touch is working smooth without any song init but after i have any of the songs shifted from itune touch buttons get messed up. They don't work. Help me in over coming this issue

    I had my Ipod nano 7th Gen factory restored. Nano touch works smooth without any song in-it but after i have any of the songs shifted from itunes, touch buttons get messed up. They don't work. Help me in over coming this issue.

    Hello Rohantm,
    Thank you for the details of the issue you are experiencing with your iPod nano (7th generation) touch screen.  I recommend the following steps for the issue you described (you can skip the steps you have already tried):
    Touch screen does not accept input
    Clean the screen with a microfiber polishing cloth.
    Do not wear gloves while using the touchscreen. Do not use the touchscreen with wet hands or immediately after applying hand lotion. Moisture affects touchscreen behavior in the same manner as it affects a trackpad.
    If you have a protective plastic sheet or film on the touchscreen, try removing it, because it may be preventing the touchscreen from working properly.
    The current application may be unresponsive; try resetting iPod by pressing and holding the Sleep/Wake button and the Home buttons simultaneously for a least six seconds, until the Apple logo appears.
    Sync with iTunes and restore the iPod.
    Issue not resolved
    If the issue is still not resolved, please read this information on servicing your iPod.
    Find the full article here:
    iPod nano (7th generation): Hardware troubleshooting
    http://support.apple.com/kb/TS4433
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

  • Goods Issue from ECP with Batch Management

    Hi experts,
    I would like to make a Goods Issue from Execution Services in Easy Cost Planning. But the material has Batch Management active and I am not able to inform the batch.
    I know I can make the same movement from MB1B but I would like to do it from the Easy Cost Planning environment.
    Is it possible?
    Thanks

    mforman wrote:
    We already have the batch and deactivating batch management has no sense.
    > We need to be able to inform the batch when we are making the goods issue from the Execution Services.
    Dear,
    I think you can solve this through your Characteristics in the Costing Model. In the Characteristic Edit Screen, Goto Values tab, Select your material and click on Object Dependecies Button, see if you can use or create a new Dependency for your material for picking or suggesting batch number.
    Hope this helps...
    Thanks,
    Ranganatha. Patnala
    Edited by: Ranganatha Rao.P on Oct 14, 2011 2:59 PM

  • Problem in SubmittoSAP button

    Hi All,
    I have created an Interactive form in WD Java. I have added a SubmittoSAP button from WebDynpro ActiveX library in the form. Following is the code written in the click event of the button.
    xfa.host.messageBox("Before Execution ");
    // DO NOT MODIFY THE CODE BEYOND THIS POINT - 705.20051114114126.253659.250577 - SubmitToSAP.xfo
    app.eval("event.target.SAPSubmit();");
    // END OF DO NOT MODIFY
    xfa.host.messageBox("After Execution ");
    I have created an Action submit and assigned it to OnSubmit event. And select the display type of the form as ActiveX.
    I am running my application on IE 7.0. When I run my application, I am getting first message box, displaying message "Before Execution". But I am not getting second message box and the call to my method is also not made.
    Please help me on this.
    Thanks and Regards,
    Amit

    Solved

  • Eventhandler triggers twice

    My eventhandler triggers twice when I have the logic to run in both the EventResult and BulkEventResult functions . Can I have some inputs as to where I am going wrong.
    The requirement is to generate Email and common name for both manually created users and users coming from trusted source. When I have the logic in two different classes the access policy does not triggered on Manual creation.
    Thanks,
    Pratheek

    Are you using UserManager API? UserManager triggers another event, hence after executing BulkEventResult it calls EventResult method.
    Use entitymanager api instead. For details refer Post Process Event causing another create-user event
    -Prakash

  • How can I execute an external program from within a button's event handler?

    I am using Tomcat ApacheTomcat 6.0.16 with Netbeans 6.1 (with the latest JDK/J2EE)
    I need to execute external programs from an event handler for a button on a JSF page (the program is compiled, and extremely fast compared both to plain java and especially stored procedures written in SQL).
    I tried what I'd do in a standalone program (as shown in the appended code), but it didn't work. Instead I received text saying the program couldn't be found. This error message comes even if I try the Windows command "dir". I thought with 'dir' I'd at least get the contents of the current working directory. :-(
    I can probably get by with cgi on Apache's httpd server (or, I understand tomcat supports cgi, but I have yet to get that to work either), but whatever I do I need to be able to do it from within the button's event handler. And if I resort to cgi, I must be able to maintain session jumping from one server to the other and back.
    So, then, how can I do this?
    Thanks
    Ted
    NB: The programs that I need to run do NOT take input from the user. Rather, my code in the web application processes user selections from selection controls, and a couple field controls, sanitizes the inoputs and places clean, safe data in a MySQL database, and then the external program I need to run gets safe data from the database, does some heavy duty number crunching, and puts the output data into the database. They are well insulated from mischeif.
    NB: In the following array_function_test.pl was placed in the same folder as the web application's jsp pages, (and I'd tried WEB-INF - with the same result), and I DID see the file in the application's war file.
            try {
                java.lang.ProcessBuilder pn = new java.lang.ProcessBuilder("array_function_test.pl");
                //pn.directory(new java.io.File("K:\\work"));
                java.lang.Process pr = pn.start();
                java.io.BufferedInputStream bis = (java.io.BufferedInputStream)pr.getInputStream();
                String tmp = new String("");
                byte b[] = new byte[1000];
                int i = 0;
                while (i != -1) {
                    bis.read(b);
                    tmp += new String(b);
                getSelectionsDisplayTextArea().setText(getSelectionsDisplayTextArea().getText() + "\n\n" + tmp);
            } catch (java.io.IOException ex) {
                getSelectionsDisplayTextArea().setText(getSelectionsDisplayTextArea().getText() + "\n\n" + ex.getMessage());
            }

    Hi Fonsi!
    One way to execute an external program is to use the System Exec.vi. You find it in the functions pallet under Communication.
    /Thomas

  • Using jsp to read a input from a radio button

    i am trying read a input from a radio button ,normly if the name of radio button is "priority" and if u referrence it as request.getParameter("priority") it shld work right but mine does not.
    <% rs = stmt.executeQuery("select PRIORITYNAME,PRIORITYDESC from TBL_PRIORITY ");
    <td>Priority</td>
    <% while(rs.next())
    %>
    <input name="priority" type="radio"><% out.println(rs.getString(1)); %><% out.println(rs.getString(2)); %><br>
    <%
    %>
    is it bcs i am using a loop !! bcs am populating the radio fields from a database

    i am trying read a input from a radio button ,normly
    if the name of radio button is "priority" and if u
    referrence it as request.getParameter("priority") it
    shld work right but mine does not.
    A couple of things not necessarily addressing your problem, but still..
    Avoid too much Java code in the JSP. Use existing tags or write new custom tags to do the task.
    Avoid database access form the JSP itself, if possible.
    <% rs = stmt.executeQuery("select
    PRIORITYNAME,PRIORITYDESC from TBL_PRIORITY ");
    <td>Priority</td>
    <% while(rs.next())
    %>
    <input name="priority" type="radio"><%
    out.println(rs.getString(1)); %><%
    out.println(rs.getString(2)); %><br>
    <%
    %>
    I'm not quite sure what are you trying to do with the above. You want the labels of the radio buttons to be obtained from the database as well as their values, is it?
    Does PRIORITYNAME correspond to the value of the radio button and PRIORITYDESC correspond to the label of the radio button?
    If that's the case, I think you need to do it as follows:
    Radio button is declared as follows in HTML
    <input name="priority" type="radio" value="<%rs.getString(1)"%>><%rs.getString(2)%></input>
    is it bcs i am using a loop !! bcs am populating the
    radio fields from a databaseNo

  • How can I get back old issues from my TIME app?

    Hi, I hope someone can help me.  I've been trying to get help for a month now.  I had purchased several issues from TIME app but when I just got my ipad 2, I couldn't get the issues back.  I used the same ID and password.  I decided to try buying a new issue and when I did, I had an email from itunes warning me that it was not my usual ID.  I am very confused.  I wrote to TIME and they say I should contact itunes.  I have spent hours trying to contact itunes for help.  They seem uncontactable.  Can someone please tell me if I can somehow get my old issues back?
    Karen

    If they were not backed up or part of photostream, then no, you cannot.

  • Since i got the new Iphone 4s it constantly drops calls. Apple have replaced the phone with another new iphone 4s but i am still having the same problem. I have checked with vodapohe that there is no issue from there end, given a new sim, still drops out

    Since i got the new Iphone 4s it constantly drops calls. Apple have replaced the phone with another new iphone 4s but i am still having the same problem. I have checked with vodapohe that there is no issue from there end, given a new sim, still drops out

    Have a look at this it might help
    http://support.apple.com/kb/TS4148

  • How to do Goods Issue from Sales Order Stock?

    Dear All,
    we are doing a trading Scenario & based on customer requirement we procure the goods from our vendor & we receive it to Sales Order(special) Stock. Now what are the settings to be done in the Sales/Shipping so that when we do a delivery for our customer the Stock is Issued from our Un-res Sales Order Stock & not from un-res stock ?
    Hope its clear.
    Regards,

    Hi Sam,
    Thanks a lot for the reply.
    Sorry for not explaining the scenario in the begining.
    See I have to configure a trading Scenario with some changes from the std.
    As in trading Process there are 3 entities.
    1. Customer - X
    2. Company - Y (Who performs trading)
    3. Vendor - Z
    Following is the breif requirment.
    Company Y generated an inquiry in system for an item with respect to customers RFQ. Now since Y doesnt manufacture the product(item) it creates a PR in background with respect to inquiry.
    Based on this PR, Y procures & receives the good into Un-restricted Sales Order Stock (with ref Inquiry doc no:).
    Now based on price Quoted by Z, Y will create a Quotation with ref to inquiry & finally a SO for Customer - X with ref to the Quotation.
    Now at the time of delivery (creatd with ref SO) system is not able to issue the goods from the sales order stock since the stock is stored with ref to inquiry no: & delivery is with ref to SO.
    So I am planning to simulate a cycle by creating a delivery & PGI with ref to Inquiry.
    If you can suggest a way out, it will be highly appreciable.
    Hope its clear.
    Regards,

  • Issue from Production !!!!!!!!!!!!!!

    Hi Everyone !!!!!!
    Actually i had made Production Order Form in which i can populate all the Production order with respect to BOM (Bill of Material).
    Now i want to Populate Specific Production Order Number  another form which is "Issued for Prouction " Basically Now i want to developed another form which can be worked Like Issue from Production Screen.
    For this i have to use Production Order Object in SAP based....
    Could anybody have sample code for this .......that would be really helpful for me,
    The Main Problem is that i do not know how it will start ? how can i get the Production Order as well as their Item List.....and how can i issued Production Order in Issue from Production Form.....
    could you guide me that where should i have to start ........
    Thanks
    Regards..
    Rizwan

    hello
    Check the following thread:
    Regards
    János

  • HT204492 can someone help me ? My iMac remote control isn't working properly , well all buttons are working apart from the MENU button !! Can anyone shed any light on this ?

    can someone help me ? My iMac remote control isn't working properly , well all buttons are working apart from the MENU button !! Can anyone shed any light on this ?

    As this is the forum for PPC (pre-2006, non Intel) iMacs I assume that is what you have.
    Try pairing the remote again:
    How to Pair your Remote to your Mac:
    http://support.apple.com/kb/HT1619?viewlocale=en_US

  • Htp.p doesn't work from the custom button event handler ...

    Hi,
    I am trying to pop up an alert from the custom button event handler. I created a button and put the following code.
    htp.p('<script language='JavaScript1.3">
    alert ("Test Message");
    </script>;
    But alter doesn't show up after clicking the button.
    Thanks

    OK i've attached them and copy/pasted the relevent parts. The parent window is the SFLB file.
    -----------------------------------------here's the code in the parent window
    private function editServerPool():
    void
    serverPoolPUW = PopUpManager.createPopUp(
    this,popups.ServerPoolPopup,true);PopUpManager.centerPopUp(serverPoolPUW
    as IFlexDisplayObject); 
    if (newServerPool.SecondarySPAlgorithm != null){
    serverPoolPUW.enableSSCheckBox.selected =true;serverPoolPUW.DisplaySecondaryServerPool();
    serverPoolPUW.bigResize.play();// serverPoolPUW.height = 602; //yes...i know i need to move thisserverPoolPUW.switchoverPolicyCB.selectedItem = newServerPool.SwitchOverPolicy;
    serverPoolPUW.switchoverThresholdTI.text = newServerPool.SwitchOverThreshold;
    ----------------------here's the code in teh popup window (popups.ServerPoolPopup.mxml)
    <mx:Resize id = "bigResize" heightFrom="506" heightTo="602" target="{this}" /> 
    <mx:Resize id = "littleResize" heightFrom="602" heightTo="506" target="{this}"/>
     public function DisplaySecondaryServerPool():void{
    //make the screen large if the secondary server checkbox is selected; otherwise small.  
    if (enableSSCheckBox.selected){
    //display secondary server pool tab, expand the screen 
    //note that we cannot attach a data provider to the data grid until the grid creation is  
    //completed. This is done in an event handler.secondaryPanel.enabled =
    true; switchoverPolicyCB.visible =
    true;switchoverThresholdTI.visible =
    true;thresholdFI.visible =
    true;policyFI.visible =
    true;bigResize.play();
    else
     <mx:CheckBox label="Enable a Secondary Server Pool" width="264" fontWeight="bold" click="DisplaySecondaryServerPool()" id="
    enableSSCheckBox" fontSize="12" x="83" y="40"/>

  • Combine Files into a Single PDF from the Create button

    I’m using Adobe Acrobat 10.1.13 and trying to Combine Files into a Single PDF from the Create button. There are four file types .pdf .doc .xls .dwg the only file that appears in the Combine dialog box is the .pdf

    You'll need Acrobat Pro to accomplish the task.
    Acrobat Standard can only combine PDF files.
    Be well...

Maybe you are looking for