How do I remove "printinvoicesRedirect.jsp and the https file from printed invoices

I am printing invoices and a line of test appears on top and bottom of sheet. Top left reads "printinvoicesRedirect.jsp" - Top right reads "https:// (then adds the website I'm printing from.
The bottom of the sheet prints "1 of xx" and date and time. How do I remove these from my customers invoices?

I'm guessing the page is a PDF, and it is being displayed in the new Firefox 19 PDF Viewer? Unfortunately, there is currently no way to suppress headers and footers in the PDF Viewer without changing Page Setup globally. More information in this thread: [https://support.mozilla.org/en-US/questions/951147 Print from the PDF viewer without page information].
To switch to the Acrobat plugin, or an external application, see this article: [[How to disable the built-in PDF viewer and use another viewer]].

Similar Messages

  • In my iPad 3 iOS 6 the icons do not vibrate . How I can remove apps. And the ( lock access code ) not exist in setting / general

    In my iPad 3 iOS 6 the icons do not vibrate . How I can remove apps. And the ( lock access code ) not exist in setting / general

    Did you set any restriction?
    Settings>General>Restriction

  • How can I remove multiple copies of the same song from the iTunes listing?

    How can I remove multiple copies of the same song from the iTunes listing. The program seems to be picking up the same songs from, for example, my user area and my public area in the C drive

    As above, Apple's official advice is here... HT2905 - How to find and remove duplicate items in your iTunes library, however it is a manual process and the article fails to explain some of the potential pitfalls.
    Use Shift > View > Show Exact Duplicate Items to display duplicates as this is normally a more useful selection. You need to manually select all but one of each group to remove. Sorting the list by Date Added may make it easier to select the appropriate tracks, however this works best when performed immediately after the dupes have been created.  If you have multiple entries in iTunes connected to the same file on the hard drive then don't send to the recycle bin.
    Use my DeDuper script if you're not sure, don't want to do it by hand, or want to preserve/merge ratings, play counts and playlist membership. See this thread for background and please take note of the warning to backup your library before deduping.
    (If you don't see the menu bar press ALT to show it temporarily or CTRL+B to keep it displayed)
    tt2

  • How do i remove local copies of my iCloud files from my iPhone?

    I have a 32GB iPhone 5. I've been using iCloud since its beginning and it does a great job of keeping everything in sync across all devices, but the more I use it, the more I see it taking up space.  How do I remove all of the local/hard copies of my iCloud files from my device without deleting them from iCloud, also? Particularly, i've noticed that, in Keynote on iOS, my presentations will have the cloud icon, showing that they are available for download, but not actually on my device... once i download a presentation to my phone, how to i remove the actual file from my phone, while keeping my icloud copy available for future download? I would love to be able to do this with all of my iWork files on iOS, as it would save me a few gigs of data storage on my iPhone.
    in similar fashion, is there a way to remove the local files from my Photostream on my iPhone, while keeping them available to view in a "streaming" fashion? As it is now, if i take an HDR photo and save the HDR and the standard to my camera roll, it then uploads both images to Photostream, which is great, but then i have another copy of both images stored locally on my phone in my photostream folder... this means if i hit the shutter once i wind up with four 8MP images stored on my device... that adds up fast. I understand that people want the security of knowing they have a hard copy backup, but I would love to have the option, at least, to keep my photo stream from being stored on my iPhone/iPad... I want to be able to stream my pictures, just like i stream my music with iTunes Match.  Does this make sense? Does this option already exist and i've just missed it?
    Any help with either of these will be a HUGE help, and very appreciated.

    Verizon Wireless Customer Support wrote:
        Hi, rhart-
    Like commonsense101 stated, you can forward the text messages to your email address, that typically does not include the original timestamp, but it's still a good way to keep special texts. If in regards to legal situations, a court order may be obtained for those records as well.
    Thank you,
    AdamE_VZW
    Follow us on Twitter @VZWSupport
    So Verizon keeps every text message that someone sends and/or receives?

  • DATA TRANSFER - How to get a SINGLE SPACE in the downloaded file from UNIX?

    Hi Experts,
    Am sending data from SAP to UNIX/ Application server and text file on desk top as well.
    So, I am keeping a single character just SPACE at the END of each record.
    Then, When I see the downloaded text file, I found a SINGLE SPACE at the end of each record, fine.
    Then, by using CG3Y t code, I downloaded the UNIX file to my desk top.
    But, When I see this UNIX downloaded file from UNIX, I did NOT find any SPACE at the end of each record!!!
    Am doing every thing same in both cases.
    So,
    1 - Why its happening in case of UNIX file?
    2 - How to get a SINGLE SPACE  at the END in the downloaded file from UNIX?
    thanq

    Hi,
    I don't know if this works:
    perform SET_TRAIL_BLANKS(saplgrap) using 'X'.  
    perform SET_FIXLEN(saplgrap) using '0' '060'.   "put length of your line from-to
    ... download ...
    It will put space at the end of your line, according to the length.
    Hope it works,
    Chang

  • How to make SSIS packages automatically read the input file from a path?

    Currently I am using a SSIS package to read data from a .dat file and load it into SQL Server tables.
    I am placing the input .dat file on the desktop. In the connection manager -> Browse option, I am pointing this file to create connection.
    The file naming convention is like - aSNAP_Data_20140926_P-2014-09-26_07.02.36
    However, I need the SSIS package to automatically read the input file from a folder which is located in a remote server. This folder has lots of files where input files are added on a daily basis with the date value in the file name as mentioned above.
    I want to schedule the SSIS package to run daily and take the latest file in the folder based on the date.
    Please let me know how to do it. Any help would be highly appreciated.....
    Thanks in advance.

    Hi SQL_SSIS_Dev,
    According to your description, you want to get the latest file from a path to a SQL Server table. After testing the issue in my environment, we can refer to the following steps to achieve your requirement:
    Create two variables, VarFolderPath stores the folder path in which our files exist, VarFileName hold the value of most recent File Name.
    Drag a Script Task from SSIS Toolbox to Control Flow Pane, then select “User::VarFolderPath” as ReadOnlyVariables, select “User::VarFileName” as ReadWriteVariables.
    Then Edit Script with the C# code below:
    Add “using System.IO;” into namespace.
    Add the code below under Main function:
    var directory= new DirectoryInfo(Dts.Variables["User::VarFolderPath"].Value.ToString());
                FileInfo[] files = directory.GetFiles();
                DateTime lastModified = DateTime.MinValue;
                foreach (FileInfo file in files)
                    if (file.LastWriteTime > lastModified)
                        lastModified = file.LastWriteTime;
                        Dts.Variables["User::VarFileName"].Value = file.ToString();
    Drag a Data Flow Task to Control Flow Pane and connect to Script Task.
    In the Data Flow Task, drag a Flat File Source with a file in the source folder as all the files have same structure as the File name.
    Add the property below the Flat File Connection Manger expression:
    Property: ConnectionString      Expression: @[User::VarFolderPath] +"\\"+ @[User::VarFileName]
    Drag an OLE DB Destination that connect to the Flat File Source, then configure a table to store the data.
    The following screenshot is for your reference:
    If there are any other questions, please feel free to ask.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • How to create a proxy to retrieve the xml file from web services

    Hi Every one,
    We have a requirment where we receive a xml file from Kenexa, a third party HR tool using a middleware tool. from SAP side We have to create a proxy to retrieve the xml  file from web services by initiating call through middleware tool i used earlier.
    these are the steps i intend to follow to accomlish the requirement.  
    1) middleware tool has to initiate the call to kenexa web services to  receive the xml file when it is available.
    2) On SAP we need to create a ABAP Proxy service provider to middleware where this file can be received.
    Can any one guide me how i can create a proxy to retrieve the xml  file from web services by initiating call through other middlewre (its not PI). 
    Any help would be really great, i am not a ABAP developer, so please help me with this. Thanks.

    Thank for reply.
    The computers are in different locations, but yes it's possible, the users in this enviroment are all local administrator of the machines, and we can distribute the script centrally from the DC automatically
    Acrobat use Java, right? I'm not so expert in java, but something about it could not be so difficult to manage.
    Do you know some place where i can get some info about JS and acrobat?

  • How can I remove Navigation Panel and "The section which says Please fill the data"

    Hi all,
    I need to remove navigation panel on the left side and also
    the section which is below toolbar and above actual pdf starts which says " you can fill out the following form and save the data.
    Regards
    Vas

    Not Possible

  • How to check image GPS data and get image file from image field

    Hello,
    I have some trouble and want to fix this problem.
    1. I want to validate image file before its attached in image field about the image file have a GPS data or not. Have any way that can be check about image has contained a GPS data?
    2. After validate image and PDF form is upload to the server. I want to get image file that embed in image field, because I have to extract image from PDF form and store this image in project image folder. If this topic can be fix by code script please give me some example code.
    Thakyou for every comment and suggestion
    Best Regards,
    Mai

    Hi Naill,
    First I have to say thankyou for your answer.
    About my (1) question, My image fields have set to be a embedded data and I try to test many example script of image fields.I can get image content type, image size. But that not work when I used ImageField1.desc.embeddedHref.value. It's response as "Unknown Embedded URI". Therefore, image field is and embedded data. How can I access filename?
    (2) In that forum. As I see, his problem is about how to automate change image field with href image file. But I want to extract an exist embedded image in PDF form to normal image file with original metada (such as extract image filed to .JPEG with GPS data. Same as before attached in PDF form.). There has any concept or solution in this problem?
    Best Regards,
    Mai

  • How can I remove telephone lines and the like, on PS CC?

    Hi,
    I have done this already but for the life of me I just cant remember how I did it (it was just so easy!!!) and i cant find it in answers either.
    Please how do you do it?
    Thanks
    Serge

    Yes those can be used but with CC there is a neater way by simply clicking at the two extremities and pouf it goes away...
    But I dont remember how to do it
    Thanks
    Serge

  • So they removed Pattern maker, and the Extract filters from Photoshop CS4

    Personally I hardly ever used these, but did occasionally. I was wondering how this is going to affect others?
    I don't see how removing two items from the filters menu makes much difference to anything. Maybe its more of a launch time issue, although I'm not sure that taking functionality away just to have fraction of a second faster launch, is a little daft.
    They are still included on the CD, but this is going to inconvenience me if I ever need them in a freelance role. There were problems with both of them: When I first saw extract, it was almost as if the engineeers themselves hadn't woken up to non destructive editing. And pattern maker lacks the most obvious features, and doesn't perform particularly well. They are also both slow and cumbersome to use.
    But
    they do have other occasional uses beyond what they were (admittedly quite badly) designed for, especially pattern maker for reintroducing sampled texture sourced from the image. I don't see much replacement for this

    Regarding "Extract" and "PatternMaker":
    If you really need them right now, just add the CS3 plug-ins into CS4 they will work as they always have.
    Actually, John Nack has stated that those old plug-ins will be downloadable from the Adobe site if you need them.
    >We've bitten the bullet with this release and have sent a number of features into retirement. Extract, Pattern Maker, Web Photo Gallery, Contact Sheet, Picture Package, and PDF Presentation have been removed from the default installation.
    >
    The latter four have been replaced by the Output module in Bridge CS4, and our intention is to replace Extract with features inside Photoshop (building on Refine Edge & more). All of these except PDF Presentation will remain available as optional installs (to be posted on Adobe.com), but over time they'll be phased out.
    [Emphasis mine.]

  • How do I remove MacSmart ads and/or any pop-up ads and PUPs?

    How do I remove MacSmart ads and all other PUPs from my Air? 
    Also what the word on the street about which are the leading consumer AV/AM freemium apps available now?
    Thanks,
    J-

    Read this for an explanation and possible solution: How to install adware
    Also what the word on the street about which are the leading consumer AV/AM freemium apps available now?
    I'm not quite sure I understand what you're asking, but if it concerns "anti-virus" utilities they are worthless on a Mac and cannot prevent you from installing adware as described above.
    There will always be threats to your information security associated with using any Internet - connected communications tool:
    You can mitigate those threats by following commonsense practices
    Delegating that responsibility to software is an ineffective defense
    Assuming that any product will protect you from those threats is a hazardous attitude that is likely to result in overlooking point #1 above.
    OS X already includes everything it needs to protect itself from viruses and malware. Keep it that way with software updates from Apple.
    A much better question is "how should I protect my Mac":
    Never install any product that claims to "speed up", "clean up", "optimize", or "accelerate" your Mac, or to make it "shiny". Those claims are absurd.Such products are very aggressively marketed. They are all scams.
    Never install pirated or "cracked" software, software obtained from dubious websites, or other questionable sources.
    Illegally obtained software is almost certain to contain malware.
    "Questionable sources" include but are not limited to spontaneously appearing web pages or popups, download hosting sites such as C net dot com, Softonic dot com, Soft pedia dot com, Download dot com, Mac Update dot com, or any other site whose revenue is primarily derived from junk product advertisements.
    Don’t supply your password in response to a popup window requesting it, unless you know what it is and the reason your credentials are required.
    Don’t open email attachments from email addresses that you do not recognize, or click links contained in an email:
    Most of these are scams that direct you to fraudulent sites that attempt to convince you to disclose personal information.
    Such "phishing" attempts are the 21st century equivalent of a social exploit that has existed since the dawn of civilization. Don’t fall for it.
    Apple will never ask you to reveal personal information in an email. If you receive an unexpected email from Apple saying your account will be closed unless you take immediate action, just ignore it. If your iTunes or App Store account becomes disabled for valid reasons, you will know when you try to buy something or log in to this support site, and are unable to.
    Don’t install browser extensions unless you understand their purpose. Go to the Safari menu > Preferences > Extensions. If you see any extensions that you do not recognize or understand, simply click the Uninstall button and they will be gone.
    Don’t install Java unless you are certain that you need it:
    Java, a non-Apple product, is a potential vector for malware. If you are required to use Java, be mindful of that possibility.
    Java can be disabled in System Preferences.
    Despite its name JavaScript is unrelated to Java. No malware can infect your Mac through JavaScript. It’s OK to leave it enabled.
    Block browser popups: Safari menu > Preferences > Security > and check "Block popup windows":
    Popup windows are useful and required for some websites, but popups have devolved to become a common means to deliver targeted advertising that you probably do not want.
    Popups themselves cannot infect your Mac, but many contain resource-hungry code that will slow down Internet browsing.
    If you ever see a popup indicating it detected registry errors, that your Mac is infected with some ick, or that you won some prize, it is 100% fraudulent. Ignore it.
    Ignore hyperventilating popular media outlets that thrive by promoting fear and discord with entertainment products arrogantly presented as "news". Learn what real threats actually exist and how to arm yourself against them:
    The most serious threat to your data security is phishing. To date, most of these attempts have been pathetic and are easily recognized, but that is likely to change in the future as criminals become more clever.
    OS X viruses do not exist, but intentionally malicious or poorly written code, created by either nefarious or inept individuals, is nothing new.
    Never install something without first knowing what it is, what it does, how it works, and how to get rid of it when you don’t want it any more.
    If you elect to use "anti-virus" software, familiarize yourself with its limitations and potential to cause adverse effects, and apply the principle immediately preceding this one.
    Most such utilities will only slow down and destabilize your Mac while they look for viruses that do not exist, conveying no benefit whatsoever - other than to make you "feel good" about security, when you should actually be exercising sound judgment, derived from accurate knowledge, based on verifiable facts.
    Do install updates from Apple as they become available. No one knows more about Macs and how to protect them than the company that builds them.
    Summary: Use common sense and caution when you use your Mac, just like you would in any social context. There is no product, utility, or magic talisman that can protect you from all the evils of mankind.

  • I'm a new Mac user. I imported photos from my PC they ended up in iphoto library on the hard drive, but when I open iphoto from my dock its empty. How do I import those photos to the dock file?

    I'm a new Mac user. I imported photos from my PC through a jump drive and they ended up in my iphoto library on the hard drive but when I open iphoto from the dock its empty. How do I import those photos to the dock file from the iphoto library?

    Paragon Software has the most reliable NTFS driver for Mac
    tips on importing and organizing, transferring from Windows etc
    http://www.apple.com/support/itunes
    http://www.ilounge.com

  • I have a new iPad with wifi. When I send messages I can see my sons and my husbands but not my phone number.  We all have an iPad and all use the same apple ID as iPad the bill.  How can I remove their numbers and add mine?

    I have a new iPad with wifi. When I send messages I can see my sons and my husbands but not my phone number.  We all have an iPad and all use the same apple ID as iPad the bill.  How can I remove their numbers and add mine?

    Add another e-mail account to your messages, so people could reach you on that e-mail from messages. As soon as you are online (if you have wifi only iPad) you are able to send and receive messages. i.e. your son can send you a messages from his iPhone addressing it to your (that additional) e-mail address.

  • How can I remove my company's iCloud Contacts account from a former employee's iPhone and have the current information removed as well?

    How can I remove my company’s iCloud Contacts account from a former employee's iPhone and have the current information removed from their iPhone at the same time as well? Will just changing the iCloud password be enough? Our company shares an iCloud account for convenience but when someone leaves we don't want the information to stay on their iPhone.

    Changing the password would only block them from accessing the iCloud information.  They would still have access to the local copy on thier phone.  To delete the local information, you would need to go to Settings>iCloud on the phone, tap Delete Account, then choose Delete from My iPhone.  (This only deletes the iCloud account and data from the phone, not from iCloud.)  This, obviously, must be done during the exit process as it requires access to the phone.

Maybe you are looking for

  • Drill Across Essbase/Multidimensional cubes with a conformed dimension

    Hi Guys, Does anyone have any ideas/pointers on how to implement drill across on Essbase cubes or Multidimensional sources in general. For Eg: Cube 1 with aggregate data at Country Level Cube 2 with detail data at City Level Geography is the conforme

  • Custom component by aggregation of components

    I developed with some my custom and starndard component somthing like input text with server autocompletion. It works using an HtmlInputText, then there is one my custom component, and than I use a HtmlDataTable to show the list for autocompletion. S

  • Customer payment Upload

    Hi Experts,   I have a requirement that I need to upload the Customer payment details day by day from Non-SAP system to SAP system. For this which Function Module or BAPI have to use. Please anyone guide to fulfill my requirement and guide me how to

  • SAP Screen Modification on RFID

    Dear All,             When SAP Screen is displayed on RFID.Its too big to hold so i need to scroll whole screen and very difficult to maintain screen.Can anybody provide me solution for this to make it small or any other solution. Regards, MTB

  • Reset password Bios HP Mini 1000 CNU92652N6

    Hepl - Password Reset password Bios HP Mini 1000 - code CNU92652N6 model #:1151NR Thank