Form Issue

Try to launch any form on 11.5.9, always get APP-FND-01508: Failed to connect.
Cause: Application Object library was unable to connect Oracle database.

Could you please verify that you are able to login to SQL*Plus as apps user?
If the above works fine, then looks like you have incorrect database instance name is in the database instance field in the fnd_profile_option_values table. To fix it, please do the following:
SQL> select profile_option_id from fnd_profile_options where profile_option_name like '%DATABASE%';
SQL> select profile_option_id, level_id, level_value,
profile_option_value
from fnd_profile_option_values
where profile_option_id in (<Values Returned from 1st Qurey);
SQL> update fnd_profile_option_values
set profile_option_value = '<CORRECT VALUE>'
where profile_option_value = '<INVALID VALUE>';
OR
SQL> delete from  fnd_profile_option_values
where profile_option_value = '<INVALID VALUE>';

Similar Messages

  • SQL Verification Problem / Muse Form Issue (Server uses MySQL muse uses SQLite) I'm in desperate need of help

           Alright well here is my issue... I have been trying to fix it on my own for the past week non stop and I have finally came to a solid conclusion as to the cause of the issue.
       I always get the error "The server has encountered an error..." in red text when anyone tries to submit a form and also when I try and test it myself. This led me to test the server / site for compatibility or issues by using the test:
    mydomain.com /scripts/form_check.php
    I got the first two checks green (pass) and the third test threw a red check meaning I was having an issue with SQL verification. This then led me to days of trying to work with my hosting provider (one.com) trying to solve the problem and I was told that they use mySQL on their servers and that they couldn't do anything on their end to solve the issue. I read alot that we are recommended in this case to try and get our host to add the SQLite database to their server or whatever it is they would do, long story short I guess many people are able to ask their host to make SQLite work and most accept and add SQLite functionality to their servers but unfortunately my hosting provider doesn't want to do this and they said they were sorry and that I would need to either switch the script to work with mySQL or figure something else out...
       I took a lot of time building my site and I dont want to take the form out. I absolutely need it... I know many post on here saying "forms dont work, oh poop " or "adobe sucks I dont want to use business catalyst grrr" but I tried to find the source of the problem and I've successfully came to the conclusion that my issue is that my script wants to use SQLite but in order for my sites forms to work the server needs to have SQLite as well... My idea is that if I can configure the script and the site itself to use mySQL instead of SQLite the SQL verification will then not be an issue and my websites forms will function with no issues. I am curious if a member of the staff with adobe has experience with this particular issue and can help me out? or if a member of the adobe community has solved this problem? If not I am hoping that with the description I provided that someone with knowledge of mysql, sqlite or code in general could help me modify the script or write a new script that will allow the forms to work properly. I know its a long shot, I say that because this discussion is full of people who used muse in favor of dreamweaver because just like a large number of people in the muse discussion area, I'm a graphic designer, with plenty of computer experience, art and design skill and I am extremely familiar with photoshop. Muse is perfect in so many ways. In fact, like I mentioned above, I don't even have a complaint at this time about muse. I understand the form issue in this case, and I imagine in thousands of other users situations, is all just a matter of scripts and compatibility.. Its just a little issue between the SQLite scripts we are all given when we export our muse website and the SQL version our various hosting service may be using on their servers.
       Just incase I missed anything, to provide just a bit more info on the topic and myself for anyone who may be able to help:
    I can alter the text inside of the scripts easily if anyone happens to know any lines of code that easily solve this issue (making the muse contact forms, which are native to SQLite, functional on a server using mySQL)
    I was told one way I could make the forms work on a server using mySQL (or any version other than SQLite) If I were to make changes to adobe muses SQL version by converting the SQLite db to mySQL db (db = database)
    I am computer literate and I can take any directions necessary, I really just need to get this done, I really appreciate any help I can get!!
    Thank you in advance,
    Roy

    <?php
    If you see this text in your browser, PHP is not configured correctly on this hosting provider.
    Contact your hosting provider regarding PHP configuration for your site.
    PHP file generated by Adobe Muse CC 2014.1.6
    function formthrottle_check()
        if (!function_exists("sqlite_open"))
            return '1';
        $retCode ='5';
        if ($db = @sqlite_open('muse-throttle-db', 0666, $sqliteerror))
            $res = @sqlite_query($db, "SELECT 1 FROM sqlite_master WHERE type='table' AND name='Submission_History';",  $sqliteerror);
            if ($res == null or @sqlite_num_rows($res) == 0 or @sqlite_fetch_single($res) != 1)
                $created = @sqlite_exec($db, "CREATE TABLE Submission_History (IP VARCHAR(39), Submission_Date TIMESTAMP)",  $sqliteerror);
                if($created)
                    @sqlite_exec($db, "INSERT INTO Submission_History (IP,Submission_Date) VALUES ('256.256.256.256', DATETIME('now'))",  $sqliteerror);
                else
                    $retCode = '2';
            if($retCode == '5')
                $res = @sqlite_query($db, "SELECT COUNT(1) FROM Submission_History;",  $sqliteerror);
                if ($res != null and @sqlite_num_rows($res) > 0 and @sqlite_fetch_single($res) > 0)
                    $retCode = '0';
                else
                    $retCode = '3';
            @sqlite_close($db);
        else
            $retCode = '4';
        return $retCode;
    function formthrottle_too_many_submissions($ip)
        $tooManySubmissions = false;
        if (function_exists("sqlite_open") and $db = @sqlite_open('muse-throttle-db', 0666, $sqliteerror))
            $ip = @sqlite_escape_string($ip);
            @sqlite_exec($db, "DELETE FROM Submission_History WHERE Submission_Date < DATETIME('now','-2 hours')",  $sqliteerror);
            @sqlite_exec($db, "INSERT INTO Submission_History (IP,Submission_Date) VALUES ('$ip', DATETIME('now'))",  $sqliteerror);
            $res = @sqlite_query($db, "SELECT COUNT(1) FROM Submission_History WHERE IP = '$ip';",  $sqliteerror);
            if (@sqlite_num_rows($res) > 0 and @sqlite_fetch_single($res) > 25)
                $tooManySubmissions = true;
            @sqlite_close($db);
        return $tooManySubmissions;
    ?>

  • GP adobe interactive form issue

    GP adobe interactive form issue  
    Hello All ,
    My scenario :
    I need to create three forms
    namely 1). Initiation (1)
    2). Sanction forms (2).
    When I create an interactive form to accept the initiation form details & submit the data to the next form that is sanction form , I am not able to process to the next form . why is it so ?
    basically I need to move from one action to another with two different forms.

    Hi,
    Check if you have saved and activated your interactive form callable object.
    Are you using this document:
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/7fad6fea-0c01-0010-56b4-8ac88b4185ab
    Regards,
    Mona

  • Many forms issues in one spool

    Hello,
    Can we have many forms issues(smartforms) in one spool?
    I need to send one print stream / PCL format not multiple spools.
    Best Regards,

    Hello everybody,
    Thanks for your replies.
    I found another way to resolve this situation.
    For many invoices who are saved in nast. We initialize  no_dialog to space.
    After in the loop at the invoices : for the first one no_close to 'X' and the last one with no_close parameter to space.
    After the call FM(Smartform) we pass 'X' to no_open .
    I hope that answered for all.
    ls_control_param-no_dialog = space.
      LOOP AT t_nast INTO nast.
        AT FIRST.
    ls_control_param-no_close = 'X'.
    ENDAT.
    AT LAST.
    Close spool file
    ls_control_param-no_close = space.
    ENDAT.
        PERFORM processing.
    ENDLOOP.
        CALL FUNCTION lf_fm_name
               EXPORTING
                          archive_index        = toa_dara
                          archive_parameters   = arc_params
                          control_parameters   = ls_control_param
                          output_options       = ls_output_options
                          user_settings        = space
                          v_exemple           =   v_exemple
                          s_nast               = s_nast
               IMPORTING
                          job_output_info      = ls_ssfcrescl
               TABLES:
                          t_komv = t_komv
                          t_ekpo = t_ekpo
                          t_ekkn = t_ekkn
            EXCEPTIONS formatting_error     = 1
                          internal_error       = 2
                          send_error           = 3
                          user_canceled        = 4
                          OTHERS               = 5        .
              ls_control_param-no_open = 'X'.
    Best Regards
    Thanks

  • FB beta 3 form issue - bug

    FB beta 3 form issue - required fields remain with red border
    When a form is submitted the erroring formitem remains with a
    red border!
    I am using the following validation function.
    private function valStep7():void {
    if (r_username.text.length == 0){
    r_username.errorString = "Please enter a valid username";
    focusManager.setFocus(r_username);
    }else if(r_givenname.text.length == 0){
    r_givenname.errorString = "Please enter a valid given
    name!";
    focusManager.setFocus(r_givenname);
    }else if(r_surname.text.length == 0){
    r_surname.errorString = "Please enter a valid surname!";
    focusManager.setFocus(r_surname);r_address
    }else if(r_address.text.length == 0){
    r_address.errorString = "Please enter a vaild address!";
    focusManager.setFocus(r_address);
    }else if(r_suburb.text.length == 0){
    r_suburb.errorString = "Please enter a valid suburb!";
    focusManager.setFocus(r_suburb);
    }else if(r_findus.selectedItem.record_id == 0){
    focusManager.setFocus(r_findus);
    Alert.show('Please select how you found out about us!');
    //+'\n'
    }else{
    usernameService.checkFinalUsername.send();
    is there an easy way to remedy this or has someone had a
    similar issue?
    the text input controls look like this....etc.
    <mx:FormItem label="First name" styleName="formlabels"
    required="true">
    <mx:HBox width="100%" height="100%"
    verticalAlign="bottom">
    <mx:TextInput id="r_givenname" width="180" text=""
    color="#000000" />
    </mx:HBox>
    </mx:FormItem>
    Any help appreciated...
    Regards
    Chris

    Hi Chris,
    This is just a quick guess, but -- I think you may need to
    clear the errorString once the form item has been updated to
    contain a valid value.
    - Peter

  • Muse and Forms issues

    Muse and forms issue
    Good morning all, I have an issue that I thought I would ask the greater group to see if anyone has a workaround or fix for what is happening.
    Here is what I have:
    1. I have a customer that I am redesiging their site and they have this current form on their site that they want me to reuse ( <u><font color="#0066cc">http://www.selectpos.com/rma.htm</font></u> )
    - note at the bottom the buttons look great they look like buttons and operate like buttons.
    2. Now I have pulled the code from their old site,and added to the new site with Muse insert HTML were I needed it. It operates great, but note the buttons they no longer look like buttons or act like buttons. ( <u><font color="#0066cc">http://www.selectpos.com/temp/rma.html</font></u> )
    3. That same code just put into a text file and placed in a html file. the buttons come back and is fine. this again is all the same code no changes from the current to redesign and to the simple html file ( <u><font color="#0066cc">http://www.selectpos.com/temp/test01.html</font></u> )
    Not sure what to do, it all work fine in the new site, but I just don't like the buttons at the bottom nor des the client. I need to reuse this code as their customers are familiar with the GUI of the form and are happy with the way it is. their invoice system is tied to the number that is generated. The page is hosted on Godaddy so I can't take it to Adobe Business Catalyst and redo the form there.  Note I have tested this on multiple system and browers.  it works fine on IPhone and Ipad, but IE 8 and 9, chrome, and firefox nothing.
    Any help or direction is greatly appreciate, thank you all in advace for taking a look at this issue and I look forward to your replys and suggestions.

    It appears you have now updated the button code to use an image instead.
    The issue you are facing is happening due to CSS that Muse uses in order to style input elements. To get the plain default look for a button in Muse, you would need to update the CSS in /css/site_global.css. The easiest option would be to remove the first two instances of "input," (including the comma) from the file and thus the properties affecting the default look of the input element won't apply sitewide.
    However, we do not generally recommend editing files generated by Muse as any manual changes you make to files generated by Muse would be overwritten the next time you export/publish a site through Muse. Though this condition does not always apply to common CSS/JS files during subsequent exports at the same location but it does when your Muse installation upgrades to the current latest version where it exports/publishes all files in order to take into affect any improvements/optimization to code made since the prior version.
    You might want to test this locally or by directly inspecting the element in a browser if you are comfortable with it.
    Thanks,
    Vinayak

  • Contact form ISSUE

    Hi,
    I have a contact form ISSUE with all my websites.
    Can you somehow help me? Thank you!
    When I send message with contact form I recive this:
    This message was created automatically by mail delivery software.
    A message that you sent could not be delivered to one or more of its
    recipients. This is a permanent error. The following address(es) failed:
      [email protected]
        SMTP error from remote mail server after end of data:
        host smtp2.hosting90.cz [2a03:b780:1:0:216:3eff:fe00:24c]:
        550-This message <[email protected]> was classified as
        550 SPAM.
    ------ This is a copy of the message, including all the headers. ------
    Return-path: <[email protected]>
    Received: from mainftp60038 by h90hr-w2.hosting90.cz with local (Exim 4.72)
            (envelope-from <[email protected]>)
            id 1XReVJ-0002Mw-89
            for [email protected]; Wed, 10 Sep 2014 11:47:57 +0200
    Date: Wed, 10 Sep 2014 11:47:57 +0200
    Message-Id: <[email protected]>
    To: [email protected]
    Subject: Contact Form Submission
    From: [email protected]
    Reply-To: [email protected]
    X-Mailer: Adobe Muse CC 2014.1.6 with PHP
    Content-type: text/html; charset=utf-8
    X-MainFTP-Name: mainftp60038
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html
    xmlns="http://www.w3.org/1999/xhtml"><head><meta
    http-equiv="Content-Type"
    content="text/html;charset=UTF-8"/><title>Contact Form
    Submission</title></head><body style="background-color: #ffffff;
    color: #000000; font-style: normal; font-variant: normal; font-weight:
    normal; font-size: 12px; line-height: 18px; font-family: helvetica,
    arial, verdana, sans-serif;"><h2 style="background-color:
    #eeeeee;">New Form Submission</h2><table cellspacing="0"
    cellpadding="0" width="100%" style="background-color:
    #ffffff;"><tr><td valign="top" style="background-color:
    #ffffff;"><b>Ime:</b></td><td>Maja</td></tr><tr><td valign="top"
    style="background-color:
    #ffffff;"><b>Email:</b></td><td>[email protected]</td></tr><tr><td
    valign="top" style="background-color:
    #ffffff;"><b>Poruka:</b></td><td>poruka</td></tr></table><br/><br/><div
    style="background-color: #eeeeee; font-size: 10px; line-height:
    11px;">Form submitted from website: www.ciscenje-pcelica.hr</div><div
    style="background-color: #eeeeee; font-size: 10px; line-height:
    11px;">Visitor IP address: 89.164.37.254</div></body></html>

    What that means is the host that the mail was sent to has flagged the sending domain as Spam. The recipient would have to contact their provider to be removed from the spam list. That isn't a Muse issue so you would have to contact your hosting provider to have this fixed.

  • Sales order form issues

    Hi,
    Sales order form takes lots of time to get closed on r12.0.4 vison instance why?
    Regards

    Hi,
    Can you reproduce the issue on some other instance (same release)?
    Was this working properly before? If yes, any changes have been done recently?
    Try to generate the form via adadmin, and run the "Gather Statistics" concurrent program and see if this helps.
    Also, enable trace and generate the tkprof file, this may help in getting details about the issue -- (Note: 296559.1 - FAQ: Common Tracing Techniques within the Oracle Applications 11i/R12).
    The following documents may be applicable, go through it and see if it helps.
    Note: 845014.1 - Saving Of Sales Order Reservation Too Slow With Lots
    Note: 739486.1 - Performance Issue When Querying Sales Order From Sales Order Form
    Regards,
    Hussein

  • Acrobat  9 Pro Extended Forms Issue

    Hello, I'm having an issue with two simple forms that I have created in Acrobat 9 Pro Extended. I am using Windows XP SP2. The forms have a submit button that is supposed to send to a specified e-mail address. Everything tests fine until the link is posted on our Intranet. Once the user clicks Submit after filling out the form, they are presented with a box with two buttons: Send Link and Send Copy. Does anyone know how to stop this box from popping up? What is happening is they do not read the box and click Send Link, which only sends a blank form back to us and they lose what they have filled out. Any help would be much appreciated, and thank you in advance.

    I finally got our webmaster to put the link to the form online so that I could test the form. It is not sending to the address specified. I have setup the Submit button as follows: in the window under Enter a URL for this link: the URL was input as MailTo: [email protected] (there is a space between MailTo: and the e-mail address). After submitting Outlook 2k3 sends back an undeliverable message. Is the space in the URL causing the issue or is it something I need to run by our security people due to the way the form is being submitted?
    Many thanks,
    Mike

  • PHP email form - issue with who it's from

    Hi,
    I've got a referral page on my site where the user puts in their details and a friends details and the form fires off a email to the friend. The form is in HTML and posts it to a PHP file. The problem is I get in the email for who it's from:
    from
    "Scott Bradshaw"@server74.ukservers.net
    I don't want the
    @server74.ukservers.net
    in their.
    Is this an issue with PHP files and forms or is their a way round it? I know I could do a mailto: form but don't want to. What are my options?
    Thanks, Scott

    I'm making the website for someone and they had the hosting set up already but thanks for telling me. I think this is right what I've done:
    function detectSuspect($val, &$ok) {
      if (preg_match('/Content-Type:|Cc:|Bcc:/i', $val)) {
        $ok = false;
    $YourName = Trim(stripslashes($_POST['YourName']));
    $YourEmail = Trim(stripslashes($_POST['YourEmail']));
    $RefName = Trim(stripslashes($_POST['RefName']));
    $RefEmail = Trim(stripslashes($_POST['RefEmail']));
    $EmailFrom = $YourEmail;
    $Subject = $RefName;
    $EmailTo = $RefEmail;
    // validation
    $validationOK=true;
    detectSuspect($YourName, $validationOK);
    detectSuspect($YourEmail, $validationOK);
    detectSuspect($RefName, $validationOK);
    detectSuspect($RefEmail, $validationOK);
    if (!$validationOK) {
      print "<meta http-equiv=\"refresh\" content=\"0;URL=error.html\">";
      exit;
    // prepare email body text
    $Body = "Hi $RefName,
    $YourName thought you would be interested in viewing this online video called A
    tale of 2 customers (< 3 mins).
    www.easybench.org/ataleof2customers3";
    $Body2 = "";
    $Body2 .= "User Name: ";
    $Body2 .= $YourName;
    $Body2 .= "\n";
    $Body2 .= "User Email: ";
    $Body2 .= $YourEmail;
    $Body2 .= "\n";
    $Body2 .= "Referral Name: ";
    $Body2 .= $RefName;
    $Body2 .= "\n";
    $Body2 .= "Referral Email: ";
    $Body2 .= $RefEmail;
    $Body2 .= "\n";
    // send email
    $success = mail($EmailTo, $Subject, $Body, "From: $EmailFrom<$EmailFrom>");
    mail("[email protected]", "Referral details", $Body2, "From: [email protected]");
    // redirect to success page
    if ($success){
      print "<meta http-equiv=\"refresh\" content=\"0;URL=thankyou2.html\">";
    else{
      print "<meta http-equiv=\"refresh\" content=\"0;URL=error.html\">";
    ?>
    I've also got a feedback form thing too, the script above wouldn't work for it I guess as it's protecting against different thing but what's the best way to protect the feedback form? I've heard of a honeypot thing where create hidden form field.
    Thanks, Scott

  • Adobe form: Issue with BACK, CANCEL and EXIT buttons

    I am new to Adobe forms. I created a simple demo Adobe form and was able to print it successfully except a strange problem.
    Whenever I opt for print preview it shows me a blank page. On pressing enter it shows me the form, But now none of the BACK, EXIT, CANCEL buttons work. On pressing any of them I keep getting the print form.
    So the only way I can come out of it is /n.
    Can anyone please help with the reason for such an issue and how to get rid of it.
    Regards,
    Ashutosh

    Maybe you can tell us something more about the code you use to print your form. I think thatis the problem. Otto

  • Purchase Order Form Issue

    Hi Guys,
    Our ABAPer changed a PO form and moved into QA and PRD. It is printing properly in QA. In PRD the bold feature is gone and printing crappy. Its the same form Why is it doing that in PRD. I am sorry it is not a FI issue. If any of you guys know where to post, please let me know.
    Thanks and Regards
    Madhu Vutukuri

    Dear Santosh,
    How can you create PO for customer?. You must mean Vendor.
    Well you can link usage of messages in customisation for tax codes.
    Regards
    Nilesh

  • Adobe [Acrobat] 9 distribute forms issue

    I'm trying to distribute forms through adobe [Acrobat] 9 and I can only send the form to people in my address book through Acrobat.com as an attachment, but not as a link. 
    However, I can send a link to the form to people not in my address book via Acrobat.com with no issues. I've also noticed when I add people in my address book to the list of recipients it says it can't resolve the address even though I specifically added it through the address book. We use office 365 and I'm using outlook 2007. Is there some known issue?
    [Edited by host for clarity]

    I'm using the retail upgrade version, currently on 9.3.0.  I had to upgrade from Acrobat 7 Pro when I got my new Win7 computer.
    One thougth... the more I investigate this problem, I can't help but wonder if I somehow turned off the screen that is supposed to come up when I click the Distribute Forms button.  I just ran through the 20-minute video at http://tv.adobe.com/watch/creative-suite-podcast-designers/acrobat-9-complete-forms-workfl ow and it reminded me of the wizard screen that is supposed to appear with the three options (use Acrobat.com, email, internal server).  I haven't seen it, which makes wonder if I checked the "always use this option" button and now I can undo it.  Every option that I've tried on the Forms menu immediately takes me to the form with the purple bar mentioned in my original post.
    Thanks,
    Kim.

  • Acrobat 9 Form Issues - Font, URL, and Print Issues

    Hello folks,
    We are developing an Acrobat PDF (I have Pro updated to 9.4.5) with about 30 fields. Some of them contain a default label name, others are blank, and all fields have a unique name. The blank fields on the form are being filled via an automated web services API from Aspose. All info is entered and the PDF is then flattened by the web service.
    The document fully populates with all expected data but we are running into three issues:
    1) A field that gets populated with a URL by the script properly becomes clickable if the font is set to Helvetica, but when set to Verdana or Arial fails to be recognized by Acrobat.
    2) When I create a new form field, and assign a font face/size/color and input a default value, if I go back and try and change the size the default content seems to hold it's original size unless I do a full cut/paste of the value back into the box.
    3) We are getting the notorious "An Error exists on this page. Acrobat may not display the page correctly. Please contact the person who created the PDF document to correct the problem"
    The odd part is we were not getting that error at first - even with data populated. It was only once we started working on getting the fields horizontally and vertically aligned that the error presented itself.
    Any thoughts? I have closed and opened Acrobat, tried opening from Acrobat instead of double clicking the PDF but nothing seems to help.

    thanks Mylenium
    the font association problem is something recent though, since I used acrobat to print mails directly from my gmail account previously...
    it's galling but I installed a free pdf printer which does the job, I needed copies of these mails urgently !
    as to the update issue, I see no aum.exe, msiexec.exe or setup.exe running... but that's quite above my head... do I look for those exact processes or are they generic names for processes ?
    does my question make sense ????

  • Form issues in Adobe Pro for Macs

    Can someone tell me how to solve an issue regarding Adobe Pro 9 for Macs?  I have developed forms in Adobe Pro 9 but they can not be viewed in Adobe but can be viewed in Preview. How can this issue be corrected?

    This is interesting, because I've had the same thing happen to forms I've created. In a most recent example, the form was filled out by an external person (someone outside our agency) and returned. When I opened the file, on my Mac, i could see the data entered into the fields. When a co-worker opened the file, on a PC, she didn't see anything and mistakenly thought the form was blank. However you could click into the field and then see that data had indeed been entered into each field.
    I opened the file to see if there was something wrong with the appearance properties -- making sure that text color was not blank, and also making sure that I hadn't selected an obscure font. The text color was black and the font was Helvetica. On a whim I changed the font to Times and all of a sudden the data in each field was viewable. However, i changed it back to Helvetica and it remained viewable. So, the act of changing the font made the data fields display; it didn't matter what font I chose. I just had to change it.
    When I looked up file properties, i did notice that the PDF Producer is Mac OS X 10.6.7 Quartz PDFContext, and so does that mean it was opened and fields filled in using Preview?

  • Webdynpro PDF forms issue

    Hello All:
    I am facing an issue, with opening pdf forms using webdynpro applcaions, after applyign support stacks.
    I am using linktoaction UI element to display a pdf form which is stored in mimereporsitory, and i am displaying it after getting URL. and by using abap class cl_wd_runtime_services=>attach_file_to_response.
    This was working fine until, our recent support packs, but after support packs are applied, we are getting an error saying
    Unable to open form yyyy.pdf from yyy.yyyy.com .
    Unable to open this internet site. the requested site is either unavailable or cannot be found.
    We applied support stacks both to, abap side and portal side, and we confirmed that issue is comign from portal side.
    One other thing, the applicaiton works fine when i test applicaiton by itself, but the problem arises when the application is opened from portal.
    And the error occurs only when i open portal using IE8, but it works fine IE9, chrome or mozilla.
    We are on the latest SP Stack 10 for Application Server Java on EHP1 FOR SAP NETWEAVER 7.0
    Thanks,
    Ratna.

    Hi Ratna,
    We are having the same issue when downloading pdf with Internet Explorer 8.
    We have EHP1 too, and the WDA works nice without the portal.
    Did you find the solution?
    Thank you.

Maybe you are looking for

  • How to install the OS using a Toshiba Recovery DVD

    Hi I want to clear my laptop and start from scratch and I have a toshiba product recovery DVD When i put it into the D drive i just keep getting a window that asks if i want to copy pice, play cd etc I thought the DVD would wipe everything off the ha

  • How do I get Facebook to link with games?

    I have games that I play on my PC, but they won't link up on the iPad. I am sign into FB. Just can't figure it out. Please help.

  • Linking multiple sheets?

    Greetings, I have a Numbers 09 workbook with multiple (40) sheets that I would like to be able to link to a summery sheet. The cell on the summery sheet would sum all of the data from the same cell in all other 40 sheets as it is changed. I was able

  • Make Offline is Broken

    The how-to videos and documentation make mention of this 'Make Offline' feature.  I don't see that link.  It's not on the Recordings list for my meeting.  I've made the video public.  The link is not there.  I can Edit - but that provides no download

  • Missing Views in MM02 and MM03

    Hi MM experts, One of our end users cannot getting material master views, he is getting only Basic1 and Basic2, but I tried the same material I am getting all the views, he said he was getting all the views last week please help me to solve this issu