Problem with the Travel Expenses PDF Form

Hi Experts,
We are facing a strange issue in our production system that the Travel Expenses PDF form is coming as a blank pop up when users raise a Travel Expenses request or try to see the form in 'My trips and Expenses'.
The strange thing is that it is happning for only 3 users in Production system only.We have confirmed that it is not a Desktop issue. We did not come across this earlier while 3500 users are using it for 9 months now.
The same problem is not repeated in Dev, Qua or even in Production for any other user.
The SAP Security team has also confirmed that all relevent authorisations have been given to effected users like other users for whom the same is working
Kindly help me with the same if you have encountered the same problem or can suggest something that may rectify the problem.
Help will be appreciated << Please do not offer points >>
Regards,
-Amol Gupta
Edited by: Rob Burbank on Sep 21, 2010 2:38 PM

Hi Siddharth,
Thanks for the reply.
We have checked that it is not a Desktop issue.
Also SAP Security team says that the effected users have been given the regular authorisations as given to other users using the same functionality.
As i mentioned it is not a problem with ADS as the same functionality is working fine for 3500 users for 9 months.
Regards,
-Amol Gupta

Similar Messages

  • Problems with the items (control) in forms 9i (Re)

    Hello,
    I write this problem in a other post and but don't have any feedback about it(So I will give another try:-) )
    The problem that I will describe don't happen all the time and is very rare but I want to know if it's a normal bug of forms or something more special of our PL/SQL code...
    So here we are.
    Is there others developpers here that have problems with the mouse cursor of the user that seems to be "jammed"(blocked, trapped) in a text item (or another control, like a list item). When this problems happen, the user can't go on another field of the forms with his mouse cursor(Mouse click), the only thing that can resolve that is to refresh the page with Internet Explorer, and after that, he is free to go on another field of the forms.
    This problem is very rare but happens sometimes.
    Thanx in advance!

    Hi,
    This problem is due to failuer of navigation of mouse cursore. For more specific solution can you give the error message and error code, So that we can have exact picture. Waiting for error code......

  • Problem with people opening my PDF Form

    Hi,
    I have people who can't open my Form PDF file - they get an error message. Some of them have version 5, 6 or 7 of Acrobat.
    Any suggestions? I have enabled Usage Rights in Acrobat and Saved.

    Hi,
    you can inform your clients with a message when opening your form with an (too) old pdf reader version, to avoid problems with using the form.
    put following script into the initialize event of the first page of your form!
    if (typeof(app.viewerVersion) != "undefined")
    if (app.viewerVersion < 8.0)
    app.alert({cMsg:"ATTENTION:\rThis file requires Adobe Reader 8.0 or newer!",cTitle: "ATTENTION:", nIcon: 1, nType: 0} )

  • Problems with XML import to PDF form esp. checkboxes

    I am posting this here because it was suggested to me to do so when I posted it here:
    http://forums.adobe.com/message/5613723
    Hi,
    I work with a certain PDF form created by the US government. They recently "upgraded" the form. (N600K)
    With the old form, I would import values in an XML file, which worked fine.
    With the new form, I have encountered a problem:
    The checkboxes behave as if they are ALL one group of radio buttons, which means only one can be selected at a time.
    There are quite a few questions with checkbox answers. If I or my xml file select any one if them, the rest get cleared.
    I have contacted the US government about this, but surprisingly, they have not responded.
    If you are familiar with designing PDF forms and think you might be able to understand my problem and help fix it, i would love to hear from you!
    Please email me at gidon.ariel @ gmail.com

    Tundra Steve, it sounds like that, that all the checkboxes behave like one
    set of radio buttons. But they aren't. They are separate sets of
    checkboxes, and while some sets could behave like radio buttons
    (male/female, for example), they should really all behave like the
    checkboxes that they are, and allow any and all to be selected.
    Thanks and God Bless,
    Gidon Ariel  [email protected]
    cell 054-5665037, home 02-5354586, VoIP 845-445-1604
    Israel fax 1532-5354586,  USA fax 623-433-4874
    Maale Hever, DN Har Hebron 90420 Israel
    http://www.facebook.com/gidonariel http://bit.ly/gidon-linkedin
    "Happy are those who have discovered
    that the secret of life is to be nice to others"

  • Problems with the "Create a PDF" tab

    I have a customer who is trying to create a pdf from Word using the "create a pdf" tab.  The PDF is created but only the colored boxes behind his text show up.  He is running Win7, Word 2010 and Acrobat Pro XI (with the latest update). The same thing happens if he uses the "print to pdf" option.  The Word "Save as pdf" works fine.
    Word Document (image below)
    PDF (image below)

    It appears to be some sort of incorrect layering issue. You can fix the problem by selecting the Edit Text & Images command in Acrobat XI and right clicking on the boxes and selecting the Arrange command.
    I've seen this issue occur with older .doc files opened in newer versions of Word. One thing you might try is to save out the word file to another format like RTF (make a backup first) and then resave a .docx before creating the PDF.

  • Problem with the item (control) in forms 9i

    Hi,
    I want to know if it's normal that we have sometime (not regulary) some problems when a user by exemple use a form with la list item and make the selection of the value very rapidly, fill all the other parameters (radio items...) to call an update with multiline forms and try to go on the text item field he want to go and he can't because the mouse cursor seems to be "jammed".
    This problem is very rare but I want to know if this one is a control problem (to be fixed with an update of forms... or it's something that some PL/SQL code can start aleatory.
    Thanx in advance.

    I am sorry but I couldnot understand exactly what you want.
    Can you clear it and use small sentences instead of big ones.
    Thanks

  • Problem with JavaScript in my PDF Form buttons

    I am trying to have my user click on a button in my form on my website and e-mail the form data to me.
    I am using the following JavaScript with my form button:
    this.mailForm(false, "[email protected]", "", "", "Subject", "Message Body");
    Protected mode is off.
    When I use the above statement (whether the 1st parameter is set to true or false), nothing happens – no email gets sent and no mail dialog box appears. If I change from this.mailForm(...) to this.mailDoc(...), I get a mail dialog box but, as expected, it sends the blank form without the filled-in data due to low user privileges.
    How can I send the form data with this.mailForm(...)? (Note that I prefer to use this.mailForm(...) rather than mailto:(...) because this.mailForm(...) supposedly allows me to e-mail the form without user interaction.)
    -- Don

    Thanks for responding.  I have been using “Submit a form” in the Mouse up event.  I had that operation do a mailto: and it worked, but required user interaction on the part of the web page visitor.  I have successfully created an equivalent JavaScript including:
        var url = "mailto:[email protected]?subject=mySubject&body=MyMessage"; 
        this.submitForm(url, true);
    The above sent the FDF file successfully, but again, it required user interaction.
    Then I tried this JavaScript - as I mentioned in a previous post - after you said to use doc.submitForm():
        var url = "http://mydomain.com/submit_notice.php";
        doc.submitForm(url, false);
    The above script seemed to do nothing (with no error message). Shouldn't it bring up the PHP file in the web browser?
    I have that php file, submit_notice.php, created, but I have not written any PHP scripts to e-mail the FDF file.  I have never written a PHP script to take the posted FDF data and email it, but I have used the PHP mail() function and posted variables.
    As for what I want to happen on the client side after the submit takes place: I simply want the FDF file to go to an e-mail that I specify.  Additionally, I need it to happen without any client interaction on the part of the web page visitor.  I can expect that visitor to have Adobe reader, but no add-ons or protected mode requirement.
    Please give me an example that emails the FDF file without any user interaction.
    Thank you.
    -- Don

  • Problem With the Triggers while migrating Forms from 5 to 6i

    When I open the version 5 fmb file in Forms 6i, some of the triggers in the form level triggers and also in data block, are having red arrow marked on them and they seem to have no code in them. So when i compile the form then those triggers are shown as errors and when I close those triggers, they are deleting.
    The error looks like this..
    Error 103 at line 2, column 1
    Encountered the symbol "END" when expecting one of the following:
    begin case declare end exception exit for goto if loop mod null pragma raise
    return select update while with <an identifier>
    <a double-quoted delimited-identifier> <a bind variable> <<
    close current delete fetch lock insert open rollback
    savepoint set sql commit <a single-quoted SQL string>
    And finally the form will compile with out any errors. But when I run the form getting error again saying,
    FRM 10221: Cannot read file

    Hi,
    the forms migration assistant tells you about v2 styles triggers (even if they are not migrated ; ) )
    take a look at :
    [url http://download.oracle.com/docs/cd/E15523_01/doc.1111/e10394/migtool.htm#i100490]Using the Oracle Forms Migration Assistant
    Raises a warning in the Form module's log if V2-style triggers are found.
    There is also a point you must look at.
    In a former project I made a migration from forms 4.5 to 10g and there was foms-level triggers applied at let say the block level or item level (I cant remember exactly) and this is not permitted anymore in 10g.
    Again the forms migration assistant Provides warnings about triggers defined at incorrect levels.
    Hope this helps
    Regards,
    Jean-Yves
    Edited by: JeanYves Bernier on Mar 10, 2011 9:10 PM

  • Problem in opening Travel expense form

    Hi All,
    We are using standard workflow (task ID : TS20000118 )for Approve Trip,Approve Travel Request and
    Approve Travel Expense.
    User (Manager) get all the task related to travel request and travel expense in MSS through work flow.
    When user click on Travel request task, the travel request PDF form is open correctly, but when user click on travel expense task , the travel expense PDF form have to open but here also travel request PDF form is open.
    How can i open the Travel expense PDF form when user click on travel expense task.
    can anyone help...?
    Regards,
    Priya.

    Hi,
    Did you get solution for this problem? I am facing same problem.
    Regards,
    Amit

  • Travel expense print form

    Hello all,
    I have an issue regarding the travel expense print form.
    The problem is not related to the printer, it is related to the PDF-File which is created.
    In the PDF-File, the left margin is wrong. Thus, it can not be printed correctly due to the wrong margin.
    On the left side, the border line and some characters are not printed.
    If I have to adjust something, how can I procede?
    Thanks in advance for your help,
    Soumaya

    Do you have many receipts in the PDF? If so it can affect the spacing and margins  - check it as follows:
    Access your form via SFP;
    Select: Layout;
    Position yourself on the faulty table;
    Make palette "Object" avaible for entry;
    In the "Binding" section of "Object" you will find the pertinent
    table stated in the "Name:" field
    Click onto "Pagination";
    Here adjust if neccessary the following boxes:
    Include Header Row in Initial Page       and
    Include Header Row in Subsequent Pages
    Also there were some notes released for more specific issues 1140369

  • Error with the view of a form

    Hi,
    I have a problem with the view of a form before start a workflow:
    This is the aspect that it has (it shows the colums of the form):
    and this is the aspect of the same action in other sites (the correct way):
    How can I change the aspect of the first form to the second? Why it shows this way with the parameters defined in the workflow?

    Hi Enrique,
    What form did you use?
    Was it a New from or an initiation form?
    How did you design the form?
    Please create a new list with the form, compare the result.
    I hope this helps.
    Thanks,
    Wendy
    Wendy Li
    TechNet Community Support

  • How to correct checkout form "there is a problem with the PayPal email address supplied"

    PayPal Pro submissions do not go through. The error message reads "We cannot process this transaction because there is a problem with the PayPal email address supplied by the seller."
    I called PayPal. They checked and said my checkout form was not sending my email address to them. Any help on getting this to work will be sincerly appreciated. Thank you.

    - If you want to replace the headphone jack yourself see:
    iPod Touch Repair - iFixit
    - Apple will only exchange your iPod for a refurbished one for this price, You get a new battery.  However, it may not be worth it for a 2G iPod.
    Apple - Support - iPod - Repair pricing- A third-party place like this one is less expensive. Google from more places.
    iPhone Repair, Service & Parts: iPod Touch, iPad, MacBook Pro Screens

  • I am having problems with the Preview application.  When I try to use it to open a pdf document it gets hung-up and I have to select force quit to close it.   Any ideas on how to resolve this problem?  Thanks for any help

    I am having problems with the Preview application.  When I try to use it to open a pdf document it gets hung-up and I have to select force quit to close it.   Any ideas on how to resolve this problem?  Thanks for any help

    Can you open the Preview program without loading a file, like by itself?
    If it doesn't load then I suspect a corrupt Preview preference file.
    Deleting the System Preference or other .plist file
    Can you open other files with Preview, like jpg's and images?
    How about other PDFs? or is it just that one you have downloaded?
    Run through this list of fixes
    Step by Step to fix your Mac

  • My Client is having a serious problem with the Contact Form Widget

    My Client is having a serious problem with the Contact Form Widget that I can not figure out how to correct.
    I created a website for a client and inserted a Contact Form widget on their 'Contact Us' page. Whenever anyone uses the form, the e-mail my client receive shows my e-mail address as the sender. So, when they 'reply' to the e-mail, the reply is sent to me and not the person who sent the original message. This creates a major problem in that I get barraged with e-mail replies while my client's potential customers go without a response.
    When I look at  'Site Manager > System E-Mails > Workflow Information > E-mail From Address' on the site's Admin Console, it shows my e-mail information. Is this is what needs to be changed?  If it is, what needs to be placed in that field so that the e-mail my client receives shows the senders e-mail information in the 'From' field.  My client wants to be able to click reply and have the message sent to the right party. They would be very upset if they have to cut and past the senders e-mail address from the body text on every contact they receive.
    Their feeling is that if I can't find a way to make the contact form work the way it should, then it's useless to them.
    Can anyone help me figure this out? I really don't want to disappoint my first client.

    Are you on a plan that has the CRM feature that stores your customers' data? If so, the idea of the contact form is that you'll receive a notification that there's been an inquiry filled out on your contact form and there should be a link in that email notification that leads to the "Case" that was created when that customer filled out a contact form.  You can click that link and visit the case for that customer in your BC site and reply to them from there so that all of the correspondence is logged in the CRM for safe-keeping and for your records.
    If your client finds this is too much work to login to BC to reply every time, then you should check to see if you have the "Customer Service Ticketing" feature on your hosting plan.  This is a feature where you create a dedicated email account (like [email protected]) and the BC system will automatically login to that email account and pull any emails in that inbox and convert them to a customer case for the sender of the email and then it will send out a notification via email to any of the BC Admin users you delegate as "Customer Service Agents".  Since the CST integrates with the BC CRM it lets you reply directly within the email-- but when you reply it will be going to that same email address dedicated to the CST but once the CST service checks your email again and sees that you replied to this inquiry it will log your reply against the customer's case and sends your reply via email back to them so that all the correspondance gets logged on BC's CRM but you can still reply via email.
    There's no way to use the default web forms to update the "From" or "Reply-To" address.. it must come from an approved email address to avoid spam issues.  On most web services you cannot change the "from" address anyway but usually you can at least specify the "Reply-To" address so that when someone hits "reply" in their email client it will reply to whoever you setup as the "Reply-To" address.
    Here's some more information about CST: http://kb.worldsecuresystems.com/kb/customer-service-ticketing.html?bc-partner
    I don't think the CST feature is in the webMarketing BC plan-- I think it's only in the webCommerce plan so if you have less than an webCommerce plan you have to tell your client to reply through BC by clicking the link in the notification they get.  You can justify it by saying its one or two more steps but it keeps the entire convo on record in their CRM for easy referral later.

  • How do I save a PDF ready for print. I have a problem with the fonts. The fonts are blurry after pri

    How do I save a PDF ready for print. I have a problem with the fonts. The fonts are blurry after printing. There is a trick in saving PDF.

    Hi el_giclee,
    Important to note from the beginning is that when you create your Photoshop document make sure you chose 300 Pixels/inch as your resolution.
    I'm interested in seeing your Save Adobe PDF dialog box after you choose to save the PDF.
    Could you post a screenshot of this dialog box with the Compression menu selected on the left side?
    It's a good idea to select High Quality Print or Press Quality in the Adobe PDF Preset menu at the top of this box. It will automatically select the best default settings for a printed piece.
    Michael

Maybe you are looking for

  • How to insert a conditional image into a report

    Hi I am fairly new to HTML DB, but I have managed to create my first application. I need a little help with one report. One of the columns in the report contains Y, N or R. The customer wants me to display a different coloured image depending on the

  • How to share a folder with java? in netbios in windows

    hi. I want to write a programa that user can select a directory than click the share button and the directory will be shared to other pcs. the other pcs can acces this directory like \\servername\shareddirectory the question is this. how can i share

  • Is there a way I get can my Dell V305 printer to work with my Mac?

    I "inherited" my son's Mac Book Pro but when I tried to hook it up to our printer, Dell V305, it wouldn't work.  I tried downloading the software from the Dell site, since we don't have the disks, but it wouldn't work.  Is there a way I can get our p

  • Reading item text of sales order using READ_TEXT but getting error

    Hi Experts, I want to read the Billing item text which is processed through from delivery. For that I am using FM  READ_TEXT, but getting error. Text 0090014392 ID 0001 language EN not found I am providing data in FM... ID : 0001 LANGUAGE : E NAME :

  • Image Capture App Not recognizing Iphone

    Using a MBP with 10.5 with most recent updates. Running iphone 1.14 Iphoto does not import my pictures from my iphone. This is because image capture doesn't recognize it. I have read many posts about this and will let you know what I have tried so fa