Print Pop up with file name

Hi all
I need to pop up a print screen as in excel or word.. like the pop up should include 'File Name, no of copies etc.'
Mainly it should ask for the file name....
I used the FM "GET_PRINT_PARAMETERS", but it is not asking for the file name....
my requirement is to print a file from a particualr loctaion from SAP...

ok i just did what you said, i'll let you know how it works out.
meanwhile i tried opening the file ( curiousity killed the cat ) It directed me to a window that says
"Have you tried smowtion?
create an account and try a new alternative to monetize your website!"
and there's a place to click "create account"
I am not planning on creating account. just wondering if you have heard of this before? "smowtion"  what does it mean by monetize? it's been 5 or 10 mins now and i havent had that "pop up download" yet! so i just may be in the clear .
Thanks for the help so far rkauf ! *fingers crossed*

Similar Messages

  • How to print contact sheet with file names

    I want to print a photo contact sheet with file names. Is this possible with any standard Mac app?

    I'd like to print the Album name at the top of each contact sheet I produce from that album - is this possible within iphoto '08 or do I need to print to a pdf and then edit that pdf with acrobat pro for example.

  • Printing my PDF with File name and Tags Stamped on

    To Forum,
    Possibly not a completely Apple related query, but if anyone know it would be great.
    id like to print a PDF on my MBP with the File name and Tags applied to it stamped on the paper copy... or come to think of it, stamped on the PDF copy which i then print out with those stamps on. Either way will do. Any ideas? Its not immediately obvious when i look at the Printing Prefs box.

    This is an option built into various apps - Safari, Firefox, Microsoft Office.
    There are "PDF Utils" that do this on PDFs one at a time. Can't find a specific one for Macs, but found 2 for Windows.

  • How to get multiple image resoultion and paste it in new ms word doc or ecxel with file name

    Hi any one help me to get the imge resolution and paste it in new ms word or excel
    i have 100 file i fixed the sizing for all the file by downsample using javascript
    i want to get the resolution of all the image and paste it with file name
    anyone please help me
    Thank you

    Hi any one help me to get the imge resolution and paste it in new ms word or excel
    i have 100 file i fixed the sizing for all the file by downsample using javascript
    i want to get the resolution of all the image and paste it with file name
    anyone please help me
    Thank you

  • Received File send with file name to destination side

    Hi All,
    Here I have used FILE adapter in Receive location and WCF-BasicHttp adapter in send ports.
    Requirment is should be able to send the file name also along
    with the file to destination from BizTalk.
    No orchestrations in this project. DynamicSendPassThru sendport. Please find the below screenshot for send port properties.
    How can i fix this please assist me on this.
    Thanks & Regards,
    Vasu

     Hi Osman,
    below code is custom pipeline code. and what code and where can i add the code.
    regarding send the file with file name from BizTalk to OutBound transport location.
    Please assist me on this.I'm not aware coding part. 
    publicMicrosoft.BizTalk.Message.Interop.IBaseMessageExecute(Microsoft.BizTalk.Component.Interop.IPipelineContextpc,
    Microsoft.BizTalk.Message.Interop.IBaseMessageinmsg)
                System.Diagnostics.
    Debug.WriteLine("Inside
    SendFileRenameWithDate Pipeline",
    "SLNG.BizTalk");
    IBaseMessageContextmessageContext = inmsg.Context;
    // if the transport type is file for outbound, then change the add in the date in the file name.
    stringadapterType = (string)inmsg.Context.Read("OutboundTransportType",
    "http://schemas.microsoft.com/BizTalk/2003/system-properties");
    // The file name in the file adapter must contain '%SourceFileName%', e.g. CB_%SourceFileName%.xml
    if(adapterType ==
    "FILE")
    // Retreive the file name from the message context
    //object obj = messageContext.Read("FileName", "http://schemas.microsoft.com/BizTalk/2003/file-properties");
    //string customSendFileName = obj.ToString();
    //System.Diagnostics.Debug.WriteLine("FileName:" + customSendFileName, "SLNG.BizTalk");
    // Append with date in ddMMyyyy_HHmmss format
    stringcustomSendFileName =
    if(string.IsNullOrEmpty(DateFormat))
                        customSendFileName =
    DateTime.Now.ToString("yyyyMMdd_HHmmss");
    else
                        customSendFileName =
    DateTime.Now.ToString(DateFormat);
                    System.Diagnostics.
    Debug.WriteLine("FileName:"+
    customSendFileName, "SLNG.BizTalk");
    // Write back with new file name to the message context
                    messageContext.Write(
    "ReceivedFileName",
    "http://schemas.microsoft.com/BizTalk/2003/file-properties",
    customSendFileName);
    //if (messageContext.IsPromoted("ReceivedFileName", "http://schemas.microsoft.com/BizTalk/2003/file-properties")
    == false)
    //    messageContext.Promote("ReceivedFileName", "http://schemas.microsoft.com/BizTalk/2003/file-properties",
    customSendFileName);
    //messageContext.Write("FileName", "http://schemas.microsoft.com/BizTalk/2003/file-properties", customSendFileName);
                System.Diagnostics.
    Debug.WriteLine("Going
    off SendFileRenameWithDate Pipeline",
    "SLNG.BizTalk");
    returninmsg;
            #endregion
    Thanks & Regards,
    Vasu

  • How to copy the photo with file name at window 7 and search specific one in iphone 4s?

    How to copy the photo with file name at window 7 and search specific one in iphone 4s?

    Clendenen02 wrote:
    2) It would be equally helpful if there was something that would take the name of the picture file and spotlight comment, copy and paste it to a movie file's comments with the same name but obviously has different extention. For an example
    In a Pictures folder
    Name: Dark Knight, The.jpeg       Comment: (2008) Genre: Action...             <- copy comment
    In a Movie Folder
    Name: Dark Knight, The.m4v       Comment:                                               <- paste 
    and do this for all 700 files
    This Bash script will do it.
    Edit "PicDir" and "MovDir" to the location of your Folders
    (Note: The comment is written to the m4v file using xattr, so the Spotlight comment field appears blank in Finder, but the comment metadata is still indexed by Spotlight (If you add a Spotlight comment from Finder, it is stored both as an extended attribute and in a .DS_Store file)
    #!/bin/bash
    PicDir=$HOME/Desktop/Pictures
    MovDir=$HOME/Desktop/Movies
    for f in $PicDir/*
    do
         if [ ! -d "$f" -a "${f##*.}" == "jpeg" ]; then
              comment=$(mdls -raw -name kMDItemFinderComment "$f")
              if [[ $comment != "(null)" ]]; then
                   picname=${f##*/}
                   movname=${picname%.*}.m4v
                   if [ -e "$MovDir"/$movname ]; then
                         xattr -w com.apple.metadata:kMDItemFinderComment "\"$comment\"" "$MovDir"/$movname
                   fi
              fi
         fi
    done

  • Batch Printing with File Names in Photoshop CS5

    How can I batch print hundreds of images with the file name on each of the print? I also need them to be printed at their original dimensions, which mean they should not be scaled when printed to papers.  Any help would be greatly appreciated. Thanks.

    Thanks for your response, Noel. However, the images to be printed at their actual dimensions and resolution (300ppi). This is so that we can see how their qualities are going to be when they are printed the actual publication, which is at 300ppi.
    What I used to be able to do in CS3 is creating an action in Photoshop that contains a print command with "label" or file name option on. Then I ran the script through the batch command in Bridge. However, in CS5, when I tried to same method, all of the images are printed at 1/2 an inch while they are actually 3-5 inches at 300ppi. Therefore, I am trying to another method that would give me the same result.

  • Not sure where to ask this- printing multiple files with file names

    Hi,
    Apologies if there was a better place to ask this question- I'm not sure which program I should be using to achieve what I'd like to do and I'm not sure if it's even possible. I'm currently working for a publishing house preparing images that will eventually be printed inside books. Files come to me in a wide variety of formats. I save them as either tiff or eps. These files (the tiffs and the eps) will eventually be sent along to someone that is doing layout work for the book and then to the printers. Before that happens however I need to provide the editor with hardcopies of the images that will be published so that they can review them. Having the editors look at digital versions of the files is not currently an option. Our current workflow (not designed by me) entails entering all the images for any given book into an InDesign template. Then in Indesign I have to enter some information about the images (their numerical designation, their file format). Then we print the .indd file for editorial review. I find this process incredibly time consuming and tedious and I'm looking for a way to avoid it all together.
    What I would like to be able to do is select a folder of images (tiffs and eps only) and print them at 100% (no resizing, one image per page) with the file name at the bottom of the page. Due to the number of images I'm responsible for, this could save me several hours of tedious work a week and would allow me to devote more time to producing a quality product. I thought I had found a solution using the 'contact sheet II' tool in adobe bridge. However, this rasterizes the eps files and makes them look unprofessional. An hour and a half of googling this issue has taken me to numerous dead ends. I wonder if there might be some way to do this quickly in indesign (at which I am a complete novice) or possibly via an automated illustrator function.
    Thanks in advance for any help you may be able to offer.
    Please do let me know if there is anything unclear in my description. For what it's worth, I am using Creative Suite 6.

    Hi Mylenium,
    I appreciate the reply. I'm not sure that I will be able to convince the powers that be to drop the EPS format. I'm fairly certain that the printer, which the press has a long-standing relationship with, expects TIFF and EPS files exclusively.  In addition, I'm not sure if I'm misreading what you're saying, or if you misunderstood something I said. Typically, the EPS format looks great and prints fine through illustrator or via InDesign (in other words, it doesn't usually look unprofessional). I use TIFF for photos or illustrations and EPS for charts or graphs (basically, in any instance I have to set type). The problem is that the only way I've found to speed up the production of hardcopies for editorial review ('contact sheet II' ) runs through bridge and photoshop, ruining the appearance of the EPS files.
    I wonder if there's a way to run a similar batch process (may not be the correct wording) through illustrator such that both the TIFF and EPS files look clear, print at 100%, print one image per page, and the file name is included on the printout. Basically, a one image per page contact sheet. To do this now, I have to place every single file individually into InDesign and manually enter information about the files.
    Thanks

  • Can I print contact sheets from Iphoto or aperture with file names?

    I can not figure out nor am I sure it can be done with these programs but if someone out there can tell me how I would be very happy. I have several jobs I need contacts on I have been printing contact sheets and then handwriting the file numbers. To old fashion for me. HELP

    1. In the browser pane in Aperture, select the images you need.
    2. File>Print...
    3. On the left-hand side of the print dialog, click on 'Sample Contact Sheet Preset'.
    4. In the layout options there is a drop-down menu for which metadata set you want to show below the images. You may get away with using 'Name Only' which gives you the current Version Name, otherwise you may have to make a new metadata set* containing just the filename.
    Ian
    * Making new metadata sets has been covered several times on the forum, the search function is your friend.
    P.S. Welcome to the forum!

  • How do I customizing the download pop up window file name?

    I have a site that streams a PDF. The file name is not included in the URL. When I set my options to Save As for Adobe I am presented with the Download pop up box, but there is no extension in the box so when I double click the item it asks what file to open it with. So my question is, is it possible to be able to customize the name of the file being saved rather then letting the browser determine the name based on the URL?

    A good solution, but I went one better -  I got rid of the HP Printer and bough an Epson.
    The problem no longer exists.

  • Fill array with file names

    What am I missing?  I've got alerts that should pop up if it works and if it fails but instead it does nothing, I'm sure its possible to create an array that is made up of all the file names of a folder.  In the past I've had to enter all the values one a time and some of these folders have 200+ files in it.
    #target illustrator
    filltotesTempArr
    function filltotesTempArr()
    var toteTemparray = new Array(toteTemps)
    var toteTempPath = Folder ("S:/Illustrator JS Palette/Direct Template Calls/Totes");
    var allFiles = artPath.getFiles(order);
    var toteTemps
    if (allFiles.length > 0)
        for (i=0;i<allFiles.length;i++)
                toteTemps = toteTemps + app.open(allFiles[i] )
              }//end for
          alert("Your array has the current values:" + toteTemps);
        }//end if
        else
        alert("Script to fill Totes Templates Array has failed");

    I need to take all the files inside of a folder, and put their file names in an array like this;
    var totesarr1= new Array ("A165331","A165332","A165333","A165334","A165337","A165338","A165344","A165348", "A165349",
    "A165352","A165353","A203","A210","A211","A214","A222","A229","A231","A232","A234","A248","A250","A252","A268",
    "A271","A272","A278","A290","A292","A322","A323","A324","A325","A327","A330","A402","A404","A405","A407","A408",
    "A409","A410","A411","A414","A415","A417","A420","A422","A423","A424","A425","A427","A430","A436","A438","A439",
    "A440","A441","A443","A446","A448","A449","A450","A451","A452","A454","A455","A456","A460","A461","A468","A470",
    "A490","A495","A497","A500","A508","A509","A510","A512","A513","A514","A518","A524","A525","A526","A527","A530",
    "A533","A534","A536","A543","A581","A582","A587","A602","A619","A624","A705","A707","A710","A714","A715","A739",
    "A740","A741","A742","A743","A744","A745","A748","A750","A751","A752","A753","A754","A755","A756","A763","A800",
    "A801","A804","A806","A811","A815","A817","A818","A819","A824","A832","A835","A836","A838","A841","A844","A848",
    "A849","A852","A854","A856","A857","A859","A861","A863","A865","A866","A868","A871","A873","A877","A879","A881",
    "A885","A888","A890","A894","A899","A900","A902","A904","A940","A941","A943","A944","A945","A948","A97307","A97309",
    "A97313","A97314","A97315","A97316","A97321","A97326","A97340","A97342","A97708","A97715","F742","F751","V6432");
    so the closest thing that I can come up with is this;
    #target illustrator
    filltotesTempArr
    function filltotesTempArr()
    var toteTemparray = new Array(toteTemps)
    var order = new RegExp(input);
    var toteTempPath = Folder ("S:/Illustrator JS Palette/Direct Template Calls/Totes");
    var totetempnames = toteTempPath.getFiles();
    var totetemps = new Array ()
    var allFiles = toteTempPath.getFiles();
    if (allFiles.length > 0)
        for (i=0;i<allFiles.length;i++)
                toteTemps = toteTemps + "," + app.open(allFiles[i])
              }//end for
          alert("Your array has the current values:" + toteTemps);
        }//end if
        else
        alert("Script to fill Totes Templates Array has failed");
    alert ("Script is Done")
    but even this dosn't work like it should
    #target Illustrator
    GetTempNames;
    function GetTempNames ()
    var toteTempPath = Folder ("S:/Illustrator JS Palette/Direct Template Calls/Totes");
    var toteTempNames = toteTempPath.getFiles()
    var totetemparr = new Array ( toteTempNames )
    alert ("script is done get ready");
        alert ("Here " + totetemparr);
    so now I'm at a loss

  • Automaticly print to pdf without file name prompt

    Hi,
    I am building an aplication that uses "Report Generation Toolkit". I am creating a "word" report with a template. After I am done with word creation I want to convert this "word" report to "PDF" format. I need that this process will be an automatic one. I understand that I can use print to PDF software, but the problem with it is that every such software prompts me to choose file name and destination.I need to avoid this.
    Please help me.
    Regards,
    Jenia.

    Jenia wrote:
    ... I understand that I can use print to PDF software, but the problem with it is that every such software prompts me to choose file name and destination.I need to avoid this.
    Jenia,
    There is a lot of PDF software available and some do provide the means to avoid prompts when saving the PDF.   PDFCreator has the advantage of being open source and free, has its Autosave option and had a COM interface added to recent versions. Alternatively you could look at pdf995 which has similar capabilities.  I'm sure there are others.
    =====================================================
    Fading out. " ... J. Arthur Rank on gong."
    Attachments:
    PDFCreator_Autosave.jpg ‏44 KB

  • "pop up download" File name -72890ad-26

    Recently i was on a site called tvduck.com and ever since i've been getting pop up downloads. they will show up in my downloads window but of course i wouldn't open them.says they were a download from tvduck.Been on this site before without issues.
    File name is 72890- ( the last numbers change ) the first one was 72890-1, then 72890-2 and so on. Now im up to 26!! First the icon on the left hand side was a firefox icon. I never use firefox so i tried throwing it in the trash. The next time the pop up download showed up, it says requested application cannot be used because it is in the trash. and now the icon on the left is a safari one. When on tvduck the mackeeper ad pops up, i always press cancel and close it off. i heard that mackeeper is nothing but trouble, maybe that has something to do with it. perhaps i pressed something differently without noticing.
    PLZ HELP!!   It would be greatly appreciated. Thanks fellow Mac-ers!

    ok i just did what you said, i'll let you know how it works out.
    meanwhile i tried opening the file ( curiousity killed the cat ) It directed me to a window that says
    "Have you tried smowtion?
    create an account and try a new alternative to monetize your website!"
    and there's a place to click "create account"
    I am not planning on creating account. just wondering if you have heard of this before? "smowtion"  what does it mean by monetize? it's been 5 or 10 mins now and i havent had that "pop up download" yet! so i just may be in the clear .
    Thanks for the help so far rkauf ! *fingers crossed*

  • Importing text file (with file names) into Automator.. is it possible?

    Hello all,
    I have been working with Windows Batch files for my line of work. I have a couple of file names in a text file (a column), which I want to copy from one folder of one hdd to another folder on a different hdd. I have been trying to do this kind of work with a Mac. I already know how you copy and rename files in automator (which isn't difficult, of course) but you have to 'select' the files in the finder first (with get specified items).
    But the only way i see that you can specify items is by selecting them... is there a way to import a text file with all the file names instead of selecting all the file names manually?
    or is there an AppleScript alternative which I can use to import the text file (or just copy into applescript) and run before the query's of copying and renaming the files? I am kind of new to Apple programming.
    The text file looks like this:
    image1.jpg
    image2.jpg
    etc..
    so there has to be a command to: 'goto' a specific folder as well.
    Thanks in advance!

    You can import text files, but if they are just names you will need an additional action to add the source folder path. A *Run AppleScript* action can be used, for example:
    Tested workflow:
    1) *Ask for Finder Items* {Type: files } -- choose the text file containing the names
    2) *Combine Text Files* -- this gets the text file contents
    3) *Filter Paragraphs* { return paragraphs that are not empty } -- skip blank lines
    4) *Run AppleScript* -- copy and paste the following script:
    <pre style="
    font-family: Monaco, 'Courier New', Courier, monospace;
    font-size: 10px;
    font-weight: normal;
    margin: 0px;
    padding: 5px;
    border: 1px solid #000000;
    width: 680; height: 340px;
    color: #000000;
    background-color: #FFEE80;
    overflow: auto;"
    title="this text can be pasted into an Automator 'Run AppleScript' action">
    on run {input, parameters} -- add folder path
    add the specified folder path to a list of file names
    input: a list of text items (the file names)
    output: a list of file paths (aliases)
    set output to {}
    set SkippedItems to {} -- this will be a list of skipped items (errors)
    set SourceFolder to (choose folder with prompt "Choose the folder containing the file names") as text -- this is the folder containing the names
    repeat with AnItem in the input -- step through each name in the input
    try
    set AnItem to SourceFolder & AnItem -- add the prefix
    set the end of the output to (AnItem as alias) -- test
    on error number ErrorNumber -- oops
    set ErrorNumber to ("  (" & ErrorNumber as text) & ")" -- add the specific error number
    set the end of SkippedItems to (AnItem as text) & ErrorNumber
    end try
    end repeat
    ShowSkippedAlert for SkippedItems
    return the output -- pass the result(s) to the next action
    end run
    to ShowSkippedAlert for SkippedItems
    show an alert dialog for any items skipped, with the option to cancel the workflow
    parameters - SkippedItems [list]: the items skipped
    returns nothing
    if SkippedItems is not {} then
    set {AlertText, TheCount} to {"Error with AppleScript action", count SkippedItems}
    if TheCount is greater than 1 then
    set theMessage to (TheCount as text) & space & " items were skipped:"
    else
    set theMessage to "1 " & " item was skipped:"
    end if
    set {TempTID, AppleScript's text item delimiters} to {AppleScript's text item delimiters, return}
    set {SkippedItems, AppleScript's text item delimiters} to {SkippedItems as text, TempTID}
    if button returned of (display alert AlertText message (theMessage & return & SkippedItems) ¬
    alternate button "Cancel" default button "OK") is "Cancel" then error number -128
    end if
    return
    end ShowSkippedAlert
    </pre>
    5) *Copy Finder Items* { To: _your external drive_ }

  • How to allow user to select pdf file on local machine and populate field with file name only

    Folks,
    I have a project requirement that I am stumped on.  I am admittedly a novice, so forgive questions that may seem obvious.
    My requirement is a form running on a client system where the user can click a button and select a PDF file name from a PDF on their local machine and then populate a form field with that file path & filename.  The file names vary between all machines, so there is no static list.  Note that the PDF is not embedded, nothing is executed, I simply need the file name.
    There are several of these on a form (20+), so manual name entry is too error prone.   I would like to use a 'browse' type dialog, but can not figure out how to implement it.
    I've looked at app.browseForFile, but the users can not install a javascript file in their adobe folder or any other files;  the functionality has to be integral with the original PDF. 
    Functionally, this is no different from the image object file browse, except that I need a PDF instead of an image file, so there doesn't seem like there should be a security issue that is any different from those surrounding the image object.
    I've been stumped on this for the entire week, and I have a deadline rapidly approaching, so any examples or suggestions (please remember I'm a novice) would be greatly appreciated! 

    Thanks for the reply Paul - do you have any sample code of how to attach the PDF?  Or how the user can select a PDF to open?  I might be able to attach it, retrieve the file name, and then un-attach it.
    Alternatively, do you know how to retrieve the file name from the imagePath object?  It will let you select PDF files, but I can't find info on how to retrieve the file name.   It should be the way you would retrieve the file name for an image.
    As a novice in this, thanks for your help and patience!

Maybe you are looking for

  • Std Work flow for Invoice Parking & posting

    I am working om std SAP workflow for invoice document parking : I have done the following activities : 1. Activate Work flow Template for Document Completion Here i activated the event "Complete the Parked Log. IV Document"--> Incoming Invoice Docume

  • Global Variable in report

    i am working with some global variables in all of my application including forms and reports. the global variables are created in the when new-form-instance trigger of the main form. the global variables are accessible throught the forms but i d,not

  • Ruby on Rails, Apache2, OS X 10.5

    I cannot get Ruby on Rails to work on Apache while running OS X 10.5. I've searched the web for configurations that say they will allow ruby to work, with out any luck. Any help would be greatly appreciated.

  • If I execute the query on a cube now my OLAP processor where will come

    hi can any body help regarding this If I execute the query on a cube now my OLAP processor where will come first(SID table or Fact Tbl or Dimension Tbl)

  • Need software to block access to certain websites at night

    OK. I'm going to admit it. I've got a shopping compulsion that's somewhat out of control when I get tired at night. Anyone have suggestions for software or another method to block access, ideally to just forms, or just certain websites, between certa