Batch printing with automator or applescript

Hey all,
I would really appreciate any help people could offer. I've looked at a bunch of forums and can't seem to find a solution to this problem though many people have similar problems that haven't been solved. I need to print a set of about 50 documents (mix of pdfs and docs) in a fixed order, multiple times throughout the week. I'd like any of the documents that are multiple pages to be double sided and stapled (we have a Ricoh 6000 that can staple) and for some of the items I need multiple copies (sometimes 4 copies, sometimes 2). I'm comfortable coding but new to automator and applescript so I'm having trouble finding the right combination.
I tried using automator as follows:
*do shell script*
defaults write com.apple.print.custompresets com.apple.print.lastPresetPref 2SidedPacket
*get specified finder items*
*print finder items*
with the idea that the shell script would change my printer settings to use the saved preset 2SidedPacket which is double sided and staples. i used get specified finder items and dragged the items that i needed from the finder. for items that i needed multiple copies, i just dropped them in "get specified finder items" the appropriate number of times. then "print finder items" speaks for itself.
The problem is that while the appropriate number of copies prints, the settings are not used and so i get a bunch of single sided sheets that aren't stapled.
Please help! This will save me quite a bit of time if I can get it to work.
I'm happy to hear any ideas; scrap mine entirely if you want and start from scratch if you think you have a solution that will work. or add to mine. whatever you want.
I appreciate your help.
-Jake

Hey all,
I would really appreciate any help people could offer. I've looked at a bunch of forums and can't seem to find a solution to this problem though many people have similar problems that haven't been solved. I need to print a set of about 50 documents (mix of pdfs and docs) in a fixed order, multiple times throughout the week. I'd like any of the documents that are multiple pages to be double sided and stapled (we have a Ricoh 6000 that can staple) and for some of the items I need multiple copies (sometimes 4 copies, sometimes 2). I'm comfortable coding but new to automator and applescript so I'm having trouble finding the right combination.
I tried using automator as follows:
*do shell script*
defaults write com.apple.print.custompresets com.apple.print.lastPresetPref 2SidedPacket
*get specified finder items*
*print finder items*
with the idea that the shell script would change my printer settings to use the saved preset 2SidedPacket which is double sided and staples. i used get specified finder items and dragged the items that i needed from the finder. for items that i needed multiple copies, i just dropped them in "get specified finder items" the appropriate number of times. then "print finder items" speaks for itself.
The problem is that while the appropriate number of copies prints, the settings are not used and so i get a bunch of single sided sheets that aren't stapled.
Please help! This will save me quite a bit of time if I can get it to work.
I'm happy to hear any ideas; scrap mine entirely if you want and start from scratch if you think you have a solution that will work. or add to mine. whatever you want.
I appreciate your help.
-Jake

Similar Messages

  • Batch Printing with Desktop Printer

    I have been batch printing with a desktop printer to a ethernet connected xerox phaser printer. The files are doc files that I drop onto the desktop printer to automatically print anywhere from 10-30 files at a time. I either use TextEdit or Pages as the default program for the files so I do not have to deal with the print dialog box that comes up with Microsoft Word. My problem is that if I send 20 files for example, only a certain number of them will actually print and the job of printing all of them is not completed. It appears random. Sometimes it may get through 5 and othertimes 15 files before it stops. There is no error message and it seems as if everything was sent to the xerox printer fine...
    Any advise would be appreciated

    I spoke with Xerox support. They suggest typing your printers IP address in a browser, clicking on PROPERTIES, select GENERAL from the file menu on the left, then select PRINTER DEFAULTS. Change Timeout Settings from a default of 120 to 999.
    Apparently the printer drops info if it takes longer than a specific duration so if there is network traffic or a large number of files are being sent all at once.
    I just changed my settings so we shall see if this works

  • 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.

  • Multi batch renaming with automator

    Hi, everybody!
    Hope I can find help in this section. Else, please forgive me if I posted in the wrong place...
    I find myself in this situation.
    I have many pdf's I need to transform into JPG's, but of course I need the name to be "meaningful". Each pdf contains 30 to 100 "sheets", that is to say it will produce from 30 to 100 jpgs
    No problem with Automator and pdf-to-jpg.
    Original pdf name: meaningless (something like "Scan_01")
    JPG needed format: PREF_XXXXXX_EYY_S#
    prefix is (by now) fixed: MAD
    XXXXXX : a 6-digit progressive number BUT it has to increase each 4 jpg's
    EYY: a progressive number that could be even set by hand, as it indicates the "Envelope" from which pdf's were scanned
    S# : a number ranging from 1 to 4
    Just to be clear (I hope), here is an example of how a correct output should look like:
    MAD_123456_E01_S1
    MAD_123456_E01_S2
    MAD_123456_E01_S3
    MAD_123456_E01_S4
    MAD_123457_E01_S1
    MAD_123457_E01_S2
    MAD_123457_E01_S3
    MAD_123457_E01_S4
    MAD_123458_E01_S1
    and so on.
    Of course the point is not to prepend "MAD_" or whatever, and the "EYY" thing can go anywhere in the name (even after "MAD_"): I really don't know how to set a counter to switch from xxxxx1 to xxxxx2 each time S# reaches "S4" and, meanwhile, to reset "S#" to "S1".
    Any advice on how to do that?

    If I understand you correctly, you have a bunch of files that have been converted to jpg, and just want to rename them starting with a specified sequence.  The folowing Run AppleScript added to your workflow should be close - it extracts the name pieces from a dialog so that they can be manipulated and reassembled.  There isn't any error checking, it just assumes the format of the name is the same as the default answer:
    property divider : "_" -- the character dividing the name pieces
    on run {input, parameters}
         set output to {}
         set theAnswer to text returned of (display dialog "Enter starting sheet name:" default answer "MAD_123456_E01_S1")
         # break the name apart at divider - format is assumed to be the same as the default answer
         set {tempTID, AppleScript's text item delimiters} to {AppleScript's text item delimiters, divider}
         set {prefix, survey, envelope, page} to text items of theAnswer
         set AppleScript's text item delimiters to tempTID
         # extract numbers
         set envelope to text -2 thru -1 of envelope
         set page to (text -1 of page) - 1
         repeat with anItem in the input
              set page to page + 1
              if page > 4 then
                   set page to 1
                   set survey to survey + 1
              end if
              set theEnvelope to "E" & text -2 thru -1 of ("00" & envelope) -- leading zero
              set thePage to "S" & page
              tell application "Finder"
                   set name of anItem to prefix & divider & survey & divider & theEnvelope & divider & thePage & ".jpg"
                   set end of output to anItem as alias
              end tell
         end repeat
         return output
    end run
    Edit: I am a he, by the way.

  • Batch Printing with Adobe Profession 7.0

    I am trying to do batch printing, when I select a size like
    11 x 17 all I get is 8.5 x 11. How can I get it to print in the
    correct size.

    Hello saer33,
    Thanks for posting about batch printing!
    Unfortunately, you've reached the Acrobat.com forums which
    are specific to the Acrobat.com website and its set of hosted
    services, and do not cover the Acrobat family of desktop products.
    Please visit the following Acrobat forums for any questions
    related to the Acrobat family of desktop products:
    http://www.adobeforums.com/cgi-bin/webx/.3bbeda8b/
    Cheers,
    Pete

  • Move Files with Automator or Applescript

    I am a newbie to Applescript and Automator and I'm afraid I'm in way over my head.  I need to move a bunch of files in a single folder to several different folders based on the file name.  Is this possible?
    Specifically, several files with names "word1 word2 word3 word4.pdf" are placed in a folder then they will be moved to different folders based on word4.
    Ideally, if possible, I would then have to append to things to the file name.  At the beginning of the file name a three digit code based on word4 (or the folder) and then at the end of the file name a date stamp.  The date stamp should be in the form of four digit year, two digit month, and two digit day with no spaces in between.  Where, year is the year of current month -1, month is current month -1, and day is the last day of current month -1.
    Is there any way to do this?
    Thanks!

    your description is still underspecified, so this script probably won't work out-of-the-box, but it will get you close.
    on adding folder items to this_folder after receiving these_items
              repeat with thisItem in these_items
                        set fileName to nameWithoutExtension(thisItem)
                        set accountName to last word of fileName
                        set accountCode to codeForPerson(accountName)
                        set dateSlug to dateString()
                        set newFileName to accountCode & " " & fileName & " " & dateSlug & ".pdf"
                        tell application "System Events"
      -- you haven't specified actual file path, so I'm assuming your destination folder is inside your folder action folder
                                  set destinationFolder to folder "Statements" of folder accountName of this_folder
                                  set movedFile to move f to destinationFolder
                                  set name of movedFile to newFileName
                        end tell
              end repeat
    end adding folder items to
    on nameWithoutExtension(p)
              tell application "System Events"
                        set {n, x} to {name, name extension} of p
              end tell
              return (text 1 thru -((length of x) + 1) of n)
    end nameWithoutExtension
    on dateString()
              set d to current date
              set day of d to 1
              set {y, m, d} to {year, month, day} of (d - 1 * days)
              return (y as string) & zeroPadDigit(month * 1, 2) & zeroPadDigit(day, 2)
    end dateString
    on zeroPadDigit(d, p)
              return text -p through -1 of ("000" & d)
    end zeroPadDigit
    on codeForPerson(n)
              if n = "Smith" then
                        return "001"
              else if n = "Jones" then
                        return "002"
              else if n = "Doe" then
      -- you haven't specified how these numbers are determined
              else
      -- return default value for unspecified accounts
              end if
    end codeForPerson

  • Batch printing with file name included on print

    I have about 3,000 images to print.
    Some are .psd, some are .ai
    I understand how to create an action in photoshop/illustrator and use Bridge to batch process them... however...
    I really need to have the image name printed as well, so that we can refer back to the correct files.
    Is this possible?

    I have a Photoshop script here that will put the filename on the pictures..
    http://www.ps-scripts.com/bb/viewtopic.php?f=10&t=3409&sid=fffc5a17c161b5870d157d5903864e5 6
    Get the last one as it is the most upto date.

  • Ical batch print with notes/info?

    I would like to print a month of events / notes in a list
    I can't seem to make iCal do this.
    Does iCal have this capability / does someone know how?
    thanks

    I haven't figured it out either - kind of makes it worthless to print if you can't see the details, only the header. and you can't iSync the details to a phone or PDA either. huge miss on apple's part if we're not missing something....

  • Batch printing Yosemite in with Xerox Workcentre 7545 -  authentication fails

    Hi,
       I have been trying to figure out how to batch printing with Yosemite to our Xerox machine. I did not find anything that could help so far. I contact Xerox and Apple costumer service but no luck. The problem is that I have a lot of exams to print and I can only submit one by one using Yosemite. I use a software to prepare the exams and it produces files in pdf format. For example, this week I had 340 exams to print. Imagine open one by one to print and enter your passcode every time. I gave up when I realize I could not do batch printing anymore. I use to be able to do that with Mavericks or older versions. Now with Yosemite, when I go to the printer and look at the options there is nothing related to Authentication. If I select all the files to send then to print, it all fail because of invalid user id. What I do is to switch to Windows. I was wondering if there is any work around it? For example, in Windows when you go to the printers you can go the the options and select the Xerox printer and then under "accounting" enter your passcode. That feature is completely missing in Yosemite. Even in Linux I can print using the Xerox machine. You can select the Xerox features when printing a file, but not in batch. I could concatenate the files and print everything at once, but then I would have to staple them manually.
    Any suggestion will be appreciated.
    Thank you.

    Looking at the log, the Xerox rep might be correct about permissions. As the log shows the psto7750ps is a filter located in the Mac HD/Library/Printers/Xerox/PDEs folder and for this managed account is failing. So check the permissions on this PDEs folder and the file to ensure all users have Read & Write. Even if Everyone is listed with R/W, it may help to add the managed account to the list.
    As a test you could create another queue to this AD printer but set the Print Using to Generic PostScript. This printer will not use the psto7750ps filter so if it works then you know it has something to do with this filter. I would then print the same file from the local account and check that this filter is also being called and is not erroring.
    Note that depending on what function this filter performs it may not always be called unless something special is selected in the print menu. This would usually be the case for plugins located in the PDE folder (which stands for Print Dialog Extension) but since this is a filter (but in the PDE folder?) then it may be called every time its queue is used.
    PaHu

  • I can't batch print to any printer on any of my iMacs

    I have 5 iMacs 2.4 GHz Intel Core 2 Duo,  4 GB 667 MHz DDR2 SDRAM, on 10.10.2 Yosemite. Before this week, I could open a PDF file, select any amount, 1-1000, drag into my print queue and all my files print, in correct format, on my printers. I use this method of printing throughout each day for my work. I have files of over 500 PDF drawings that I need in some cases. Opening each file up and going through the printer process like that is way too tedious and pointless imo. Please don't offer me an app that can do this for me, Adobe Reader has worked flawlessly up till now. Now, after I send my PDF's to queue, my printers start spooling up, then I get this message: cgpdftops quit unexpectedly. I have NEVER seen this error. I have been able to batch print with no issues at all for the past 2-3 years. It makes no sense that all of a sudden, it stops working.
    I have already done the following:
    1. Reinstalled all printers and drivers.
    2. Restarted all iMacs after reinstallation
    3. Updated Adobe Reader and Java SE6
    4. I have spent 45 mins on the phone with Apple Care Customer Support.
    5. I have booted into Safe Mode and managed to batch print PDF's of a web page I saved, as the Apple Care rep told me to do, but NOT PDF's from Adobe Reader. Why she thought saving a web page as a PDF was the same as what I do for work, I have no clue, but her method didn't solve a single thing.
    All of my PDF's come through in Adobe Reader. That is how all the GC's send me ll of my drawings and plans. If anyone can please provide some insight for me on how to get this issue fixed, that would be greatly appreciated.
    The 3 main printers I am attempting to print to are:
    1. OKI C6100 in Standard 8.5 x 11 Letter    
    2. HP LaserJet Pro 200 in Standard 8.5 x 11 Letter
    3. Oce Plotwave 350 in 18" x 24" Arch C Wide Format

    Jintymcginty61,
    there’s not enough information yet to answer your question. Which version of OS X is installed on your MacBook Pro?

  • How to do batch printing in BI 7.0?

    Hi,
    can any one explain me how to do batch printing with BI 7.0 ?
    Regards
    blusky

    Check here
    http://help.sap.com/saphelp_nw04/helpdata/en/67/576f39ff1ee32ce10000000a114084/frameset.htm
    Reporting agent -> Batch printing
    Here you set how your reports to be printed in batches.

  • Batch printing 1st page always bad

    I have Adobe Acrobat 8 Professional. I have all of the updates, running on XP pro.
    Whenever I batch print with it the 1st pdf is always to the wrong scale. All of the rest of the pdf's will be correct.
    The pdf's are drawings. The 1st pdf will not show the complete drawing.
    If I change the order then the pdf that was wrong will be correct and another pdf will be to the wrong scale.
    I have this problem no matter how I try to do the batch printing.
    I have moved the files to a directory and then batch printed them soley from Acrobat.
    I can open an email in Outlook 2007 and tell it to print attachements, same problem.
    I have tried it with numerous pdf's. It is always the 1st pdf in the batch. All the rest of the pdf's will be correct
    Does anyone have any suggestions?
    Thank You

    Hello Jeff,
    The problem you are having with the Canon PS and UFR2 driver is caused by the Paper Size > US Letter not being listed as a supported paper size. Instead, these two drivers have Letter, not US Letter. Therefore, when you do have the Page Setup > Format set to Any Printer and the Paper Size set to US Letter, the finishing options are not available.
    You will notice an interesting phenomena via the Page Setup pane. Open an application like TextEdit, go to Page Setup and have the Format set to Any Printer and the Paper Size set to US Letter. Then change the Format menu to the Canon driver and watch the Paper Size automatically change to Letter.
    The solution to this is to delete the CanonPS and UFR2 driver and use the new Canon 'CUPS' PS v2.11 driver. This driver has US Letter as a supported paper size, so you can leave 'Format for' at 'Any Printer'. And the driver supports both the 5075 and C5185, so you models are covered. Note that you will still have to use the Fiery driver for the other C5185.
    Re the mailbox, the format setting won't affect this function. Your comment about PCL not supporting it is interesting. The PCL driver on Windoze definitely works with mailbox so you must have some other gremlins if that is not available.
    Regards,
    PaHu

  • We have an applescript that will batch print InDesign CS6 files from a folder to a laser printer using an InDesign print preset. The script does not work in OS X Yosemite. The script errors out with the print preset. Any thoughts?

    tell application "Finder"
      activate
      set thefolder to choose folder with prompt "Select a Folder with InDesign Files to be Printed" as text
      set thePath to thefolder as text
      set the selected_items to every item of folder thefolder
      if the selected_items is {} then
      beep
      display dialog "Please select a folder with InDesign files before running this script." buttons {"Cancel"} default button 1
      end if
      repeat with aFile in selected_items
      tell application "Adobe InDesign CS6"
      activate
      with timeout of 600 seconds
      set user interaction level of script preferences to never interact
      open aFile
      tell document 1
      tell print preferences
      set active printer preset to "Catalog Pages"
      set page range to all pages
      end tell
      print without print dialog
      close saving no
      end tell
      end timeout
      --might need this delay
      --delay 10
      set user interaction level of script preferences to interact with all
      end tell
      end repeat
      tell application "Finder"
      activate
      display dialog "Batch Printing is complete!" giving up after 5
      end tell
    end tell

    Hi
    After I put a small delay in as shown, your code ran fine, tested on about twenty ID files, using ID CC 2014, OSX 10.10.2
    tell document 1
    delay 0.5   -- delay added
      tell print preferences
      set active printer preset to "Catalog Pages"

  • Automator or Applescript using png files with alpha channel

    I have hundred of png files with alpha channel.
    I want to suppress alpha channel.
    How can i do it using Automator or Applescript ?
    Thank you very much.

    You can use the free command line image processing tool ImageMagick in your Applescripts or Automator workflows, as well as from a Terminal shell.
    You can download ImageMagick from http://www.imagemagick.org, but Cactuslab has simplified installation by putting together an installer package. It’s available at  http://cactuslab.com/imagemagick/. Download the package and double-click on it. Follow the instructions to install. It will install ImageMagick into /opt/ImageMagick and add it to your $PATH by creating a file in /etc/paths.d/. Restart your computer for the changes to take effect.
    The two ImageMagick commands we’re concerned with are “convert” and “mogrify”. Convert is more efficient for multiple and piped operations on the same image file, and mogrify is more efficient for batch processing. Generally speaking, convert will output a file separate from the input file. Unless a path is specified, mogrify will overwrite the input file with the output file. An important distinction.
    You can perform various operations on the alpha channel using arguments after either the convert or mogrify command. Two of the available arguments are:
    -alpha off - Disables the image's transparency channel. Does not delete or change the existing data, just turns off the use of that data.
    -alpha remove - Composite the image over the background color.
    Also of use are the -flatten and -background options:
    -flatten - overlay all the image layers into a final image and may be used to underlay an opaque color to remove transparency from an image.
    -background - sets the background color.
    Start off using the convert command with a single image to see the effect and adjust to your liking. Once you’ve achieved the desired outcome, then use the mogrify command to batch process the chosen images.
    Before getting into how to use Automator or Applescript in your workflow, use Terminal and the command line to see the effect on a single image. Copy one image to your ~/Desktop. In Terminal change the directory to ~/Desktop by typing the following command and pressing the Enter key:
    cd ~/Desktop
    Then choose the option you are looking for, -alpha remove for instance, type the following command and press the Enter key:
    convert input-photo.png -alpha remove output-photo.png
    You can check the alpha channel (transparency) and background in the Preview app, go View > Show Image Background from the menu bar.
    Once you’re ready to batch proces, place all the photos you want to convert with the same command into one folder. Copy the folder to your ~/Desktop. Let’s assume you’ve labeled the folder “InPhotos”. It’s prudent to manipulate copies in case something goes amiss. In that event you can copy the folder with the originals again and start over. Create a new empty folder on your ~/Desktop and call it “OutPhotos”. Let’s also assume your home directory is called “Me”. The following command will process the photos from the InPhotos folder and put them in the OutPhotos folder:
    mogrify -alpha remove -path /Users/me/Desktop/OutPhotos/ /Users/me/Desktop/InPhotos/*png
    According to Apple Technical Note TN2065:
    "when you use just a command name instead of a complete path, the shell uses a list of directories (known as your PATH) to try and find the complete path to the command. For security and portability reasons, do shell script ignores the configuration files that an interactive shell would read"
    So, you need to use the full path to to ImageMagick commands, unlike in the shell where you can just use the command name.
    To batch process using Automator, use the “Run Shell Script” action (note: retain the single space at the beginning of the last line):
    /opt/ImageMagick/bin/mogrify \
    -alpha remove \
    -path /Users/Me/Desktop/OutPhotos/ \
    /Users/Me/Desktop/InPhotos/*png
    To batch process using Script Editor (Applescript), use the “do shell script” command:
    do shell script "/opt/ImageMagick/bin/mogrify -alpha remove -path /Users/pd/Desktop/OutPhotos/ /Users/pd/Desktop/InPhotos/*png"
    Further info on ImageMagick:
    http://www.imagemagick.org/script/command-line-options.php#alpha
    http://www.imagemagick.org/Usage/masking/#remove
    http://www.imagemagick.org/index.php
    http://www.imagemagick.org/script/command-line-tools.php
    http://www.imagemagick.org/script/command-line-options.php
    Examples:
    The original PNG image:
    -alpha off:
    -alpha remove:
    -background black -flatten:
    -background blue -flatten:
    -channel alpha -evaluate Divide 2:
    -channel alpha -evaluate Divide 2 -background black -flatten:

  • *bold*Automated Batch Printing

    How do i code automated batch printing.
    I had no idea how to start and I had read up most online help on Google but still I can't figure out how to do automated batch printing in Java
    I am required to read a folder consists of multiple RTF files.
    Its easy to read a single RTF file and print it but how do i read a folder and print everything .
    Another problem would be that the printing done should have courier font and alignment in the RTF file however i had tried different way to read and print the data in the RTF file ,which I could only get either courier font with no alignment or not courier font with alignment , i need both of the courier font and alignment to suit an external application RightFax.
    Thus I had thought of a way to direct print the RTF files from folder , an example will be the application SilentPrint how can i call the window's or Microsoft's office print services ? or is it even possible for Java?
    Thanks a lot if help is provided , at least a little clue of where to start?
    or u at least tell me whether is it possible to code automated batch printing in java ? like what SilentPrint can do
    Edited by: yarmageddony on Oct 30, 2007 1:36 AM

    Thanx again for the clue for runtime.exec
    runtime.exec cant help you print but by searching i found the usage of desktop
    which is what i want exactly for batch printing :)
    java.io.File folder = new File("Z:\\BTSS Log\\Fax\\Y2007  M10  D25");
         File[] listOfFiles = folder.listFiles();
         for (int i = 0; i < listOfFiles.length; i++) {
         if (listOfFiles.isFile()) {
         try {
         de.print(listOfFiles[i].getAbsoluteFile());
         File fi = new File("Z:\\BTSS Log\\Fax\\Y2007 M10 D25\\Deleted");
         fi.mkdir();
         listOfFiles[i].renameTo(new File("Z:\\BTSS Log\\Fax\\Y2007 M10 D25\\Deleted",listOfFiles[i].getName().toString()));
         } catch (IOException e1) {                                                     // TODO Auto-generated catch block
         e1.printStackTrace();
    System.out.println("File: " + listOfFiles[i].getName());
    } else if (listOfFiles[i].isDirectory()) {
    System.out.println("Directory: " + listOfFiles[i].getName());
    }hope my code helps other who are looking for batch printing in folders as there isnt much help online out there ^^
    Edited by: yarmageddony on Oct 30, 2007 3:59 AM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

Maybe you are looking for

  • Java Error while trying to see workflow status....

    Hi friends, [Apps R12, DB 10g] we have a Java error while we're trying to obtain a workflow status diagram... System administrator -> Workflow : Administrator Workflow -> Status Monitor -> then we select a workflow and then "Status Diagram" a it appe

  • Document Management Storage

    I have diff. types of document such as Word, drawing, PDF, What are the pros and cons of saving on shared file server vs. sap database (secure storage area). What is the configuration steps for each ? Thank you, Sam

  • Rebate agreement Concept

    Dear All, I have some query which is related to rebate agreement. Following Query is listed below 1. Why can we not set Sold-to parties for Rebate recipient when creating bonus agreement? 2. I do not understand how I should use each checkboxes from R

  • Eliminate multiple line items

    Hi , I have a scenerio to extarct the billing plan items in my report. When I run the report it gives me the required output but with multiple line items . I am not sure if my sleection is bring in data from both billing plan header as well as billin

  • GNOME 2.6.1

    ...forgive me if this request is premature because Arjan is still working out the problems with 2.6.0.