How do I restrict the paper choices in page setup? edit PPD?

*How can I get 'page setup' to only show one or two paper sizes?*
*My printers all have only one or two types of paper in them (A4, A3) but my users are offered a bewildering array of papers (every type the printer is capable of using - US letter, B3, A6, Roll etc etc).*
*I want them to only be offered the paper(s) in the printer they choose.*
More info...
The printers are Epson inkjet (non postscript) - the PPD is placed in /etc/cups/ppd when the printers are added and starts thus...
*PPD-Adobe: "4.3"
*%Auto Generated PPD from Tioga workset
*FormatVersion: "4.3"
*FileVersion: "1.0"
*LanguageEncoding: UTF-8
*LanguageVersion: English
*PCFileName: "AutoMake.PPD"
*Manufacturer: "EPSON"
then there is a plain english section...
*% Paper Handling ===================
*OpenUI *PageSize: PickOne
*DefaultPageSize: iso-a4
*PageSize iso-a4/A4: "
1 dict dup/PageSize[595.20 841.80]put setpagedevice"
*End
*PageSize jis-b5/JB5: "
...and so on
then alot of code...
*%APLWORKSET START
*%XML: <?xml version="1.0" encoding="UTF-8"?>
*%XML: <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
*%XML: <plist version="1.0">
*%XML: <dict>
*%XML: <key>Job Template</key>
*%XML: <data>
*%XML: PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPCFET0NUWVBFIHBs
*%XML: aXN0IFBVQkxJQyAiLS8vQXBwbGUgQ29tcHV0ZXIvL0RURCBQTElTVCAxLjAvL0VOIiAi
*%XML: aHR0cDovL3d3dy5hcHBsZS5jb20vRFREcy9Qcm9wZXJ0eUxpc3QtMS4wLmR0ZCI+Cjxw
*%XML: bGlzdCB2ZXJzaW9uPSIxLjAiPgo8ZGljdD4KCTxrZXk+Y29tLmFwcGxlLnByaW50LlBh
...and so on
Thanks
Rob.

Wrong Forum....

Similar Messages

  • How can i restrict the Expenditure Type values at a specific OU ?

    Dear Guys,
    I would like to ask about the Expenditure Types,
    I have implemented two projects for different Operating Units ,
    when navigating to any Projects responsibilty,and navigating the Expenditure Type field
    the values exist are all the values implemented across the OU not the values entered at this OU
    How can i restrict the Expenditure Type values at a specific OU
    Regards
    Amr Hussien

    Hello
    When you set up a project there is an option called Transaction Control.
    This option allow you to list the allowed or restricted elements of costs for the project.
    You may enter the transaction control on a project template and that will be copied to any new project.
    The cost elements may be expenditure types, expenditures categories, suppliers, employees, etc.
    In your case, I suggest to set up specific project templates for each operating units. On each template enter the list of allowed expenditures types for that OU.
    Doing so, the system restricts users from entering any expenditure item, supplier invoice, purchase cost etc, against an expenditure type, which is not allowed.
    Dina

  • How can i restrict the qty/value at the time of invoice

    Hi,
    Can you plesae tell me at the time of MIRO how can i restrict the user not to enter the qty more than in MIGO & PO
    Thanx

    You cannot restrict the qty in MIRO. because it is used for partial invoice receipt.
    E.g  in some cases 100 nos of qty might have received in one GR. But the supplier may give 3 invoices for this. that is the reason u cant restict this
    reward if useful
    SK

  • How We can restrict the max no of Selections in JList

    Hi,
    How We can restrict the max. no of selections (at random selections) in JList (ex. max No of of selections is 3 in a JList of having 50 items.)
    Thanks for your advise in advance.

    Hello Satyaki De.
    Thank you very much for your suggestion but my Private information is totally apart from this question & I already I have changed each and every information from the question.
    Thanks
    Kamlesh Gujarathi
    [email protected]

  • How do I change the paper size in an existing Pages document?

    How do I change the paper size on an existing Pages document?

    So are your text box set to floating? You can tell that by looking in the Inspector>Wrap Tab when you select the text box.
    If I had to guess I would say that the text boxes are floating and when you change the size of paper the text that you have in the main body area is shrinking so that it does require as many pages and you are losing the text boxes at the end. Is that correct? If so, they are still there, you just have to add page breaks to get to the pages that you lost and you should see them again.

  • How can I restrict the total no. of recs. per physical page

    Hi !
    I have created a report and I am saving that in a text file. The
    problem is that when I try to take the output on the printer
    then the total no of records overflows to the next pages and the
    next page heading comes much below to it's designated place.
    Max.no of records property in the repaeting frame is for the
    logical page.
    How can I restrict the max. number of records per physical page ?
    Any pointer will be welcome,
    Thanks in advance,
    Shobhit
    null

    Just for fun (and in case this wasn't done to death in the other thread), the rule posted here states:
    Most years have 365 days, but a leap year has 366 days. That adds up to 52 weeks (where each week is exactly 7 days) PLUS 1 or 2 additional days. The year 2012 has exactly 366 days.Now if the year starts on a Sunday in a non-leap year, you end up with 53 Sundays. Or if either of the first two days lands on a Sunday during a leap year, then you can also get 53 Sundays.>
    which allows a calculation like this:
    with test_data as
         ( select rownum + 1999 as test_year from dual
           connect by rownum <= 15 )
    select test_year
         , case
              when first_day = 'SUN'
              or ( first_day = 'SAT' and leap_year = 'Y' )
                 then 53
              else 52
           end as sundays
    from   ( select test_year
                  , to_char(to_date(d.test_year||'-01-01','YYYY-MM-DD'),'DY', 'NLS_DATE_LANGUAGE=ENGLISH') first_day
                  , case extract(day from last_day(to_date(d.test_year||'-02','YYYY-MM'))) when 29 then 'Y' else 'N' end as leap_year
             from   test_data d );
    TEST_YEAR    SUNDAYS
          2000         53
          2001         52
          2002         52
          2003         52
          2004         52
          2005         52
          2006         53
          2007         52
          2008         52
          2009         52
          2010         52
          2011         52
          2012         53
          2013         52
          2014         52
    15 rows selected.

  • HOW TO PULL OUT THE PAPER TRAY ON ENVY e4500

     I HAVE JUST BOUGHT  HP ENVY 4500 e ALL IN ONE, I AM HAVING TROUBLE FINDING OUT HOW TO PULL OUT THE PAPER TRAY.
    This question was solved.
    View Solution.

    To pull it out to load paper, you first flip down open the front door (which is connected to the paper tray and serves as the output tray), then grab on the door and pull.
    ======================================================================================
    * I am an HP employee. *
    ** Make it easier for other people to find solutions, by marking my answer with "Accept as Solution" if it solves your issue. **
    ***Click on White “Kudos” STAR to say thanks!***

  • How can I restrict the usage of a iPhone 5c?  I would only like my daughter to be able to use her phone between 7am and 10pm central.  Any ideas how to do this or an app to use?

    How can I restrict the usage of a iPhone 5c?  I would only like my daughter to be able to use her phone between 7am and 10pm central.  Any ideas how to do this or an app to use?

    Hi! i believe there is no preinstalled app than can do that for you, however you can use a third party software, such as this: http://www.bitworks-engineering.co.uk/Apps/TimeLock_App/Welcome.html or this https://itunes.apple.com/us/app/parental-timelock-time-limit/id689577280?mt=8

  • How can i restrict the selecting file type to XML and TXT in file upload..

    Hi,
    I am using Struts Upload Bean. I am also using html:file tag in the JSP. Now when i click on the browse button, A file dialogue window appears. The problem id the i want to show only text and xml files in the dialog box. Now the files of type combo box in the dialogue box is showing *.*, *.html, *.pictures (jpg/gif) options. In place of this i need to show only txt and xml files. How can i restrict the file type to XML and TXT
    Regards,
    Sudheesh...

    Hi,
    the demo doesn't keep track of this. If you want then this feature isn't implemented. You will also see that the document is uploaded in a directory without changing the file name (e.g. adding the SR number). This however can be done and would be the way to do it
    Frank

  • How can I restrict the Room Template

    Hi guys,
    Please I need your help. My problem is that I want to know how I can restrict the Room templates displayed in the list box when creating a room.
    Thanks
    Dakata A. Ibrahim

    hi Abdu,
    For hiding SAP Standard Templates you can go to
    System Administration -> System Configuration -> Knowledge Management -> Collaboration -> Configuration -> Collaboration -> Room and Room Part Templates
    There is an option to hide them. Just check all the checkboxes there.
    For Custom Developed templates you can try by giving permissions on the workset level for the template.
    Regards
    Prakash

  • How Can I Restrict the times my BT Homehub 2.0 is ...

    How Can I Restrict the times my BT Homehub 2.0 is used?
    i want to make sure that the kids dont go back online on their wireless laptops after i have gone to bed!!!
    how can i restrict the useage times (say 11am - 11pm) for the hub/individual users - WITHOUT taking the plug out when I go to bed!!!
    thanks in advance
    Paul

    belial wrote:
    @meaga-byte: the second of those two options can be achieved by using the "BT Powersave" function. This does mean that *everyone* will lose wifi accessibility, so no watching iPlayer be for _you_ drift off! PowerSave will turn all your wifi off and back on between particular times.
    This seems a more user friendly option for thoes who are not ofay with IP addresses etc.
    Unless Paul wants to use wifi while in bed
    If I've helped, just click the Star - Every little bit helps
    If you can't fix it with a hammer, you've got an electrical problem.

  • HT1904 how can i restrict the amount of purchases per month

    how do i restrict the dollar amount of purchases per month?

    Best method:  Remove your credit card information from the AppleID account in iTunes or App Store, Buy giftcards and redeem them.
    Or, you could use the PayPal option, and just transfer the allowance over.
    HTH

  • How do we restrict the Rental Object Mesurement

    Hi Experts,
    Here I am facing ine problem with RE_FX Master data creation .
    Eg:we have defined 100 sqm as a land .Further we have created 4 rental objects of 25Sqm  under  Land.
    Now the measurement is equel
    land (100SQM)  =   4 rental objects of 25SQM each.
    Suppose If I am trying to crete one more rental object with 30 SQM still it is accepting .
    So how do we restrict the size of the Land .
    can any one help me out in this regard.
    Regards,
    MOHAN .

    Hello madan Mohan ,
    My solution is - use the badi of the rental units..
    Like BADI_RE_BD_RO
    Create a new implementation
    use method check_all
    Use the api API_RE_RO_GET_LIST
    Read existings RO and compute the existing rental objects
    in your case 4 times 25sqmu2026
    if there comes the 5 ro or more than 100sqm sent hint / message error over
    the badi..
    Regards Bertram
    Edited by: bertika on Aug 10, 2009 1:05 PM

  • How can we restrict the objects..?

    Hi it was a question asked in an interview.
    How can we restrict the object..?
    is it with RSSM and PFCG settings..?
    Correct me if I am wrong..!
    Cheers,
    Vasu

    hi Vasu,
    if the question is restriction in reporting by authorization, then you are right. take a look some bw authorization docs
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/adeac294-0501-0010-5a97-9ac5d562b1be
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/1b439590-0201-0010-ea8e-cba686f21f06
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/39f29890-0201-0010-1197-f0ed3a0d279f
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/a6329790-0201-0010-b4a1-fdd384045fdb
    hope this helps.

  • How can we restrict the other user to add their user id's to the user group created in SQ03?

    Hello All,
    How can we restrict the other user to add their user id's to the user group created in SQ03?
    When we enter the user group name and click on "Assign users and Infosets" button in the attached pic "User Group" .
    I was able to enter my user id in other user groups. How to Grey out the other rows in the attached pic "User Group 1".

    How strange I answered (or at least helped) this very same question earlier today. Here the link to my previous answer then:
    http://scn.sap.com/thread/3536135

Maybe you are looking for

  • PowerBook G4 (17-inch 1.67 GHz), 1.5GH and cannot install OS X 10.5.6

    Can someone assist me please? I have an old PowerBook G4 (17-inch 1.67 GHz, PowerPC) running with OS X 10.3.9 and I would like to update this to 10.5.6 from an original disk that was with a new macbook pro i purchased this spring. Yet, the old mac te

  • Stuck in eu_import1 ecc6 upgrade

    Hello all, I am not having much luck with our first test upgrade. Already once I have scratched and started again. The first time through, I was able to get past the eu_import1 phase (I think by patching SAPUP). This time it seems futile.  Here is th

  • Variable Creation on user entry FISPER

    Hi All, I need help to design a BEx Query , currently I am facing a challenge. The client require the report query design as per the screen shot. Hence I have 1. I have calculated YTD using 0P_FPER (User Entry Value). 2. But the rest figures , I need

  • Unable to update CC for desktop. Error code:2

    I can not update CC tool for managing application. Error code: 2. My OS is Win 7(64bit). Can anyone help me?

  • Download paused halfway through

    While downloading the Jack Johnson album In Between Dreams, the last song Constellation got stalled almost half way through. I've tried both restarting and and using itunes on my laptop, neither of which has worked. I am in a bunch as I am living the