EPrint Configurat​ion: Option to remove document URL

Hi,
thank you very much for providing this useful app.
I am having trouble configuring the printer-settings when printing out a document that is stored online (e.g. Google Docs or iWorks, when documents are opened through the ePrint browser): I cannot print the document without it's URL being displayed on top.
So far the ePrint app for the iPad only allows me to display or remove the URL on the bottom of the document, however it is always displayed on top of the document (even in bold letters).
It is imperative for this app to be able to print out documents whithout bold URLs on top of them in order to make ePrint useful for printing regular documents such as letters etc.
Could you please offer the option to remove the URL on top of a page in the next Update of ePrint for the iPad?
Thank you very much!

Hi Warren,
there's a 4th option:
Simply set the "write raw string" input of the write key function to TRUE
This option only appears when a string is wired to that function!
Just re-checked:
I think it's a limitation of the config file format. It's text based and (leading) spaces in the value are "overseen" as whitespaces. So your next option would be to use quotes around your string with spaces...
Message Edited by GerdW on 05-02-2009 08:32 PM
Best regards,
GerdW
CLAD, using 2009SP1 + LV2011SP1 + LV2014SP1 on WinXP+Win7+cRIO
Kudos are welcome

Similar Messages

  • Lenovo configurat​ion options

    Hi guys,
    The configuration options on the T440 range seems strangely restricted where only the lower end non touch screen can be ordered with any variant of windows 7 (professional) 
    Is there some way to obtain a higher end touch enabled model with Windows 7 Ultimate installed, or are my 2000 ready-to-be-spent pounds sterling heading to another manufacturer's pockets?
    thanks

    I'd just configure the hardware as you wish, get one with a downgrade key, then install Windows 7 yourself later.
    W520: i7-2720QM, Q2000M at 1080/688/1376, 21GB RAM, 500GB + 750GB HDD, FHD screen
    X61T: L7500, 3GB RAM, 500GB HDD, XGA screen, Ultrabase
    Y3P: 5Y70, 8GB RAM, 256GB SSD, QHD+ screen

  • FM to create external document(URL)

    Hi All,
    I need to create external document(URL) for equipment and functional location. Manually it is done by clicking a button (called Services for Object) which appears in the left upper corner (on the left side of the transaction heading) and then selecting option (Create External Document URL). Infact this button is availaible in many transactions.
    I need FM/BAPI using which i can create external document(URL) to equipment and functional location programmaticaly.
    Regards,
    Vimal

    Hi Viquar Iqbal,
    Thanks for ur help. It worked.
    The working code (For others reference)
    wa_BAPIPROPER-PROP_NAME = 'DESCRIPTION'.
    wa_BAPIPROPER-PROP_VALUE = 'Test'.
    APPEND wa_BAPIPROPER to it_BAPIPROPER.
    CALL FUNCTION 'BDS_BUSINESSDOCUMENT_CRE_O_URL'
      EXPORTING
        classname             = 'EQUI'
        classtype             = 'BO'
       OBJECT_KEY            ='000000000020000038'
        url                   = 'http://sparsh/V1/'
        mimetype              = 'TEXT/PLAIN'
    TABLES
      PROPERTIES            = it_BAPIPROPER
    Regards,
    Vimal
    Edited by: Vimal  kumar on Feb 18, 2009 2:59 PM

  • FM to create external document(URL) in IE02

    Hi,
    I need to create external document(URL) for equipment master.
    We can create manually it is done by clicking a button Services for Object and then selecting option (Create External Document URL).
    I refered many links but failed to create the url in IE02.Please help me with the example.
    Regards,

    Hi,
    You will need to use function BINARY_RELATION_CREATE for this.
    Check how is it handled in function SGOS_URL_CREATE_DIALOG. Also check code in PAI of screen 2400 (subroutine create_url_doc). You will need to use that code.
    Sridhar

  • Create External document (URL) in SAP Personas

    Hi Smart People!
    To save some steps and incorporate a scanner I am working on creating buttons to "Attach Documents" in different areas such as MM03, FB03, and a few others where we have to keep a scanned in document attached to certain other Materials or Payables and such. All docs are scanned in and saved online and then we use the "create external document (url) menu option to link it where it is needed in SAP.
    In one place it works just fine and in the others it is not working at all and custom button or even just following the already existing menu options it keeps giving me this error. I tried search on the SCN and Google and no such luck on this error. Anyone have any ideas? See pic below and also the text below is the separated error so you can see what it actually says.
    [Unknown] ses[0]/wnd[0]/usrUSRAREA/ctlcntITS/itsdoc
    Thank you for any help you can give!

    That screen shot is for the Silverlight browser plugin.
    You can check your Personas version and patch level in System -> Status. Clicking on the magnifying glass in the SAP System Data box will list all the components of the ERP system. It will tell you what Personas version and SP is installed.
    Something like this:
    The above means Personas 2.0 SP2.
    If you indeed happen to have Personas 2.0 with no support package (so SP level says 0000), then the first thing I'd recommend is to bring the system to the latest level, which would be like in the screen shot, and then trying again. There is a good chance the problem will be resolved.
    If your system is completely up-to-date and it still gives you trouble, then create an OSS incident.

  • How to find list or folder name from SharePoint document URL

    I'm implementing the SharePoint client object model in my VSTO application in .NET framework 4.0(C#).
    Actually we open MS Word files from SharePoint site, we need to create a folder inside the opened documents list/folder and after it we want to upload/add some files to that created folder.
    My problem is that how to get list name/title and folder name of opened document by using the documents URL or Is there an another option to find the list or folder name of opened document.
    Any help will be appreciable.

    In document Library you can get the name of document library directly in URL. for folder name you can try below:
    using System;
    using Microsoft.SharePoint;
    namespace Test
    class ConsoleApp
    static void Main(string[] args)
    using (SPSite site = new SPSite("http://localhost"))
    using (SPWeb web = site.OpenWeb())
    if (web.DoesUserHavePermissions(SPBasePermissions.BrowseDirectories))
    // Get a folder by server-relative URL.
    string url = web.ServerRelativeUrl + "/shared documents/test folder";
    SPFolder folder = web.GetFolder(url);
    try
    // Get the folder's Guid.
    Guid id = folder.UniqueId;
    Console.WriteLine(id);
    // Get a folder by Guid.
    folder = web.GetFolder(id);
    url = folder.ServerRelativeUrl;
    Console.WriteLine(url);
    catch (System.IO.FileNotFoundException ex)
    Console.WriteLine(ex.Message);
    Console.ReadLine();
    http://msdn.microsoft.com/en-us/library/office/ms461676(v=office.15).aspx
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/801d1a06-0c9b-429b-a848-dd6e24de8bb9/sharepoint-webservice-to-get-the-guid-of-the-folder?forum=sharepointdevelopmentlegacy
    You can also try below:
    http://blogs.msdn.com/b/crm/archive/2008/03/28/contextual-sharepoint-document-libraries-and-folders-with-microsoft-dynamics-crm.aspx
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/d2d5d7cf-9bbd-4e0f-a772-ecdce4e6149f/how-to-fetch-document-guid-from-sharepoint-document-library-using-sharepoint-web-service?forum=sharepointdevelopmentlegacy
    http://stackoverflow.com/questions/2107716/how-to-get-guid-of-a-subfolder-in-a-document-library-programmatically

  • Why can't I reset the master password with the option of removing all username:passwords by unchecking "Use Master Password"?

    Why can't I reset the master password with the option of removing all username:passwords by unchecking "Use Master Password"? Currently, there seems to only be the option to issue a "chrome:" command in URL which DOES reset the master password. However, it was something that I had to google. The intuitive option would be to uncheck the "Use Master Password" checkbox, receive a verification dialogue, and blammo, password reset. Please make this a feature, thank you.

    ''cor-el [[#answer-702776|said]]''
    <blockquote>
    You can remove all password in the Show Passwords dialog.
    That is where you manage the passwords.
    The master password is only for protecting the passwords with an extra level of encryption and has nothing to do with erasing passwords apart from resetting the MP in case you have forgotten the MP and can't open "Show passwords".
    </blockquote>
    Sorry, for being unclear. Essentially this is a feature request for an option under Firefox options (why not?) to reset my Master Password not knowing the Master Password. For Security reasons I understand why all the saved passwords have to be wiped, but wiping the Master Password (having forgotten it) should be an option without having to issue an arcane command that one has to google to figure out.

  • Using the Optional Remote Custom Dialog URL

    Can anybody point me to a magazine that uses the Optional Remote Custom Dialog URL (preferably with a free subscription).
    Lately, we've been testing the implementation of the remote custom dialog feature.
    As we understand, this is not be a standard web page that get's loaded to the internal browser, but a dialog that displays as an overlay, but we still didn't manage to implement it.
    Any sample or tutorial we can refer to?

    Have you tried implementing a Javascript close/cancel/ok Button?
    <html> 
    <head>
       <title>JavaScript Window Close Example </title>
    </head>
    <script type="text/javascript">
       function popuponclick()
          my_window = window.open("",
           "mywindow","status=1,width=350,height=150");
          my_window.document.write('<h1>The Popup Window</h1>');
       function closepopup()
          if(false == my_window.closed)
             my_window.close ();
          else
             alert('Window already closed!');
    </script>
    <body>
       <p>
          <a href="javascript: popuponclick()">Open Popup Window</a>
       </p>
       <p>
          <a href="javascript: closepopup()">Close the Popup Window</a>
       </p>
    </body>
    </html>

  • How do I re-install iTunes so that when I delete a song from iTunes I have the option to remove it from my computer as well?

    I created multiple libraries and multiple locations for music of different genres; however, in the end I decided that I wanted to keep all of my music in one location and to have just one iTunes library.  The problem is that when I go to delete a song from my iTunes library, I no longer have the option to remove the file from my computer as well.  This is because the my iTunes library and the location of my music files were not in my iTunes music folder (http://forums.ilounge.com/itunes-mac-pc/119629-delete-songs-itunes-library-compu ter-together.html).  I tried changing the iTunes Media Folder location (http://support.apple.com/kb/ht1364), but that didn't solve.  Then I tried reinstalling iTunes: I figured that starting fresh would put my iTunes library in the right location so that I would have this option again, but it didn't work. (When reinstalling, I got an error message that 6D5Dubs, the name of my last iTunes library, couldn't be found.  I clicked 'OK' and was asked to 'Choose was asked to 'Choose library...' or 'Create Library'.  I created a library since I had deleted the other ones in my attempt to start fresh)   Any suggestions?  Note: I find the CTRL+R solution tedious for my purposes.
    Some extra info:
    Running Windows 7, 64bit
    Location of my music files - C:\Users\John\Music\Music
    or
    Libraries>Music>Music
    Location of my iTunes library - C:\Users\John\Music\iTunes\iTunes Music Library
    or
    Libraries>Music>iTunes>Itunes Music Library
    Thanks for the help!

    Try the following user tip:
    Troubleshooting issues with iTunes for Windows updates

  • Cannot uninstall I tunes. In control panel add and remove programs it will not give me the option to remove any of the I tunes. In program files it tells me access denied to remove any of the related items. I have tried using the removal methods from i tu

    My i tunes will not work at all. I have tried all the steps given to remove my I tunes player but in my control panel, add and remove programs it does not give me an option to remove any of the apple/ I tunes. I tried to go to program files and remove all the files but access is denied. This all started about 1 1/2 years ago and with every i tunes update i got more and more errors or problems until it stopped working. At one time i could remove and reinstall i tunes to try to fix it but now i cannot do anything. I believe one of the last  was i could not open i tune because it was being used or was on another network, not 100% sure its been so long and frustrating I quit trying 6 months ago. Hopefully someones got some help !!!
    Thanks I appreciate your time; Philip

    See Troubleshooting issues with iTunes for Windows updates.
    tt2

  • How can I remove me credit card from my  account I already tried from iTunes but it won't give the option 2 remove it!

    How can I remove me credit card from my  account I already tried from iTunes but it won't give the option 2 remove it!

    Go to Store > View My Account > Edit Purchase Info. Then just click "No credit card" and hit Okay, and it will remove all of the info. Good luck.

  • I need to able to print a pdf that is locked.  It has fields to fill in but then to save a copy I need to "print" to PDF not save as a pdf because that is not an option with the document.  Is there a way to do this?

    The PDF has fields to fill in but then to save a copy I need to "print" to PDF not save as a pdf because that is not an option with the document.  Is there a way to do this?  HELP!

    Sorry I thought  was just a one off, it would be no use for large volumes.
    Do you not have this avaiable in the print menu in Preview with these documents?
    I have also found a link on the Adobe web site that discusses that this facilty is enabled by the creater of the PDF.
    http://help.adobe.com/en_US/acrobat/X/pro/using/WS58a04a822e3e50102bd61510979419 5ff-7e0d.w.html
    If you do a web search there are various claims on how to save a protected PDF, I have'nt a way to test the proceedures. I would want a copy of any forms that I sent off, not sure why they protect them in this way, there must be a reason.

  • Whenever i click on word or powerpoint it always brings up a recent document. I want to have the option like when i had first opened the app that gives the options of new document and the variety of different documents. how do i get it back to that?

    whenever i click on word or powerpoint it always brings up a recent document. I want to have the option like when i had first opened the app that gives the options of new document and the variety of different documents. how do i get it back to that?

    tbreezy wrote:
    THANK U!! K ONE MORE QUICK QUESTION. HOW DO I GET RID OF THAT POP UP BOX?
    Not sure, try googling "the global template normal.dotm is already open as an add-in program"

  • Office Web Apps - How do I get Excel and PowerPoint to show up as options for New Documents?

    When I highlight a list of documents, a ribbon shows up at the top.  The left most action is "New Document".  Despite running and installing Excel and PowerPoint services, the only option that shows up is Word.  How do I add Excel and PowerPoint to that list?
    I have confirmed that I am able to upload, view and edit Excel and PowerPoint.  I just cannot find a way to add them as options in New Document.

    Create Content Types, same as in 2007.
    In a nutshell... Create a content type based on Document and add a PowerPoint template. Go to the library and enable Content Types in Advanced. Add the new content type to the library's list of content types. The New button will now contain the name of this new content type.
    Repeat for Excel.
    More info:
    http://msdn.microsoft.com/en-us/library/ms472236(office.14).aspxMike Smith
    TechTrainingNotes.blogspot.com

  • Tnx. IW22 Change PM Notification -  Create external document (URL) posting

    Hi:
    I am in transaction IW22 i.e. Change PM Notification.  There is a 'Services for object' drop down which appears below the enter tick.  This appears in online but not in BDC.  I have tried it through the transaction SHDB i.e. Transaction Recorder also herein the 'Services for object' does not appear.  I need to post entries through 'Create external document (URL)' through the 'Services for object' drop down using BDC / BAPI / etc.
    Please advice.
    NB.

    Hi NB,
    We have similar issue for QM notification and I have used function "SO_OBJECT_INSERT".
    I am enclosing my code may be useful for you:
    FORM CREATE-URL-ATTACHMENT.
      CALL FUNCTION 'SO_FOLDER_ROOT_ID_GET'
        EXPORTING
          REGION    = 'B'
        IMPORTING
          FOLDER_ID = FOLDER_ID
        EXCEPTIONS
          OTHERS    = 1.
      CLEAR: LS_OBJCONT, LT_OBJCONT, LT_OBJHEAD.
      REFRESH: LT_OBJCONT, LT_OBJHEAD.
      CONCATENATE '&KEY&' H-URL INTO LS_OBJCONT.
      APPEND LS_OBJCONT TO LT_OBJCONT.
      CLEAR: L_OBJ_DATA.
      L_OBJ_DATA-OBJSNS = 'O'.
      L_OBJ_DATA-OBJLA  = SY-LANGU.
      L_OBJ_DATA-OBJDES = 'NOTES URL'.
      CALL FUNCTION 'SO_OBJECT_INSERT'
        EXPORTING
          FOLDER_ID             = FOLDER_ID
          OBJECT_TYPE           = 'URL'
          OBJECT_HD_CHANGE      = L_OBJ_DATA
        IMPORTING
          OBJECT_ID             = L_OBJ_ID
        TABLES
          OBJHEAD               = LT_OBJHEAD
          OBJCONT               = LT_OBJCONT
        EXCEPTIONS
          ACTIVE_USER_NOT_EXIST = 35
          FOLDER_NOT_EXIST      = 6
          OBJECT_TYPE_NOT_EXIST = 17
          OWNER_NOT_EXIST       = 22
          PARAMETER_ERROR       = 23
          OTHERS                = 1000.
      CLEAR: IS_OBJECT.
      IS_OBJECT-OBJKEY = WQMNUM.
      IS_OBJECT-OBJTYPE = 'BUS2078'.
      CLEAR: REL_DOC.
      CONCATENATE FOLDER_ID L_OBJ_ID INTO REL_DOC-OBJKEY.
      REL_DOC-OBJTYPE = 'MESSAGE'.
      CALL FUNCTION 'BINARY_RELATION_CREATE'
        EXPORTING
          OBJ_ROLEA    = IS_OBJECT
          OBJ_ROLEB    = REL_DOC
          RELATIONTYPE = 'URL'
        EXCEPTIONS
          OTHERS       = 1.
      IF SY-SUBRC EQ 0.
        COMMIT WORK.
      ELSE.
        T_MESSAGE = 'Notification Attachment Add Failed'.
        APPEND T_MESSAGE.
        CLEAR: T_MESSAGE.
        T_MESSAGE = 'Reference:'.
        T_MESSAGE+11(20) = H-REF.
        APPEND T_MESSAGE.
        CLEAR: T_MESSAGE.
        T_MESSAGE = 'Notification:'.
        T_MESSAGE+14(12) = WQMNUM.
        APPEND T_MESSAGE.
        CLEAR: T_MESSAGE.
        T_MESSAGE = 'URL:'.
        T_MESSAGE+5(72) = H-URL.
        APPEND T_MESSAGE.
        PERFORM SEND-EMAIL.
      ENDIF.
    ENDFORM.                    "create-url-attachment
    Hope this may help you.
    Please reward all the useful answers.
    Regards,
    Lanka

Maybe you are looking for

  • Ipod Mini generation 2 sync with ipod nano

    I have an older version of i podmini generation 2 that i am uable to sync with the songs from my new ipod nano. The battery from my old mini is dead and instead of sending it in ... i receievd the new nano for X-mas.But now i can not add the song lis

  • User Settings in Multi-user setup?

    We are using two new CS5 editors in our news department.  We set the machines up on our Domain partly for being able to use NTFS permissions and because our IT department hates stand alone machines. The issue we are having is that each person logs in

  • Emails not coming to my mobile

    Hello all, I have a exchange 2010 setup in my home, It works absolutely fine with receiving or sending emails externally and internally, owa works fine, but when I setup my home exchange account on my mobile it connected but its not downloading the e

  • Can't see my score result online

    Hi  I passed the 70-640 exam in November in a Prometric exam center and I have the printed result and the candidate number. but I want to see my exam results and the certificate on the Microsoft website. how can I see that?

  • Why is my airportxpr only working with Itunes and not with another music program

    why is my airportxpr only working with Itunes and not with another music program?? I can not select/see other outputs in my sound selector.