6.1 Print Templates - auto select items in the print dialog popup

In the slide deck I have about 6.1 it says the following:
•Print Templates
–Print templates can now be used to auto select items in the
print dialog popup. By default, the out of the box template
selects the current specification
Unfortunately I haven't been able to find how to do this in the EP documentation. Could someone point me in the right direction on how to do this?

Download Extensibility Pack 2.6. It was just released. Take a look at page 11 in the Print Extensibility Guide. It should have the info you need. If not let me know.
Here is the link for the downloads:
https://support.oracle.com/CSP/ui/flash.html#tab=PatchHomePage(page=PatchHomePage&id=h1j503ev())

Similar Messages

  • How do I get my 8600 premium printer to auto select between tray 1 and tray 2?

    How do I get my 8600 premium printer to auto select between tray 1 and tray 2? Right now, i have to pull out tray 1 to get the printer to feed tray 2.

    Hi Retrotriker,
    Follow the steps below to properly configure your paper trays.
    1. Touch (right arrow), touch Setup, touch Preferences, and then select Default Tray
    2. Select Tray 2 as the Default tray
    3. Open Printers and Faxes
    4. Right click on printer, and then select Printer Properties
    5. Click on Device Settings tab
    6. On this screen set the media type you have assigned to each tray (Example: tray 1 - Envelopes & Tray 2 - Letter)
    7. Click Apply, and then Ok
    8. When you have an envelope you are printing it will pull from Tray 1
    9. When you have a letter you are printing it will pull from Tray 2
    I am an HP employee.
    Say Thanks by clicking the Kudos Star in the post that helped you.
    Please mark the post that solves your problem as "Accepted Solution"

  • How to find out the selected item in the lsit

    Hi all,
    How to find out the selected item in the list,can any please post some examples which easy to understand,because iam not a good programmer

    This sample program uses a checkbox as selection,  you could also use a HOTSPOT.
    report zrich_0002 no standard page heading.
    data: imara type table of mara with header line.
    data: check_box(1) type c,  
       report_lines type i.
    start-of-selection.
    * Create the gui status with BACK button in standard place
    * and a READ button in the application toolbar
      set pf-status 'CHECK'. 
    select * into corresponding fields of table imara           from mara up to 100 rows.
    loop at imara.   
    write:/ check_box as checkbox, imara-matnr, imara-matkl.  
    hide imara-matnr. 
    endloop.
      report_lines  = sy-linno - 1.
    top-of-page. 
    write: 'List of materials'.  uline.
    top-of-page during line-selection.  write:  'Material.....'.  uline.
    at user-command. 
    case sy-ucomm.  
    when 'READ'.   
      check_box = space.    
    set pf-status 'CHECK' excluding 'READ'.
          do report_lines times.       
    read line sy-index field value check_box.    
       if check_box = 'X'.        
    write:/  'You have selected material',
    imara-matnr.       
    endif.   
      enddo. 
    endcase.
    Regards,
    Rich Heilman

  • P6 Professional R8.3 - (Cannot move selected items because the result will exceed the limit of WBS tree maximum levels)

    Hi,
    Has anyone encountered this error "Cannot move selected items because the result will exceed the limit of WBS tree maximum levels"?
    Please advise if there's any way around / solution to this. http://s8.postimg.org/bj900spcl/1_error.jpg
    Thanks.

    Thank you so much MichaelRidino!

  • How to change the selection background color of the selected item in the popup menu of the choice box ?

    How to change the selection background color of the selected item in the popup menu of the choice box ?
    By defaut, the selection background color likes "blue", but if I want it to be "yellow" for example, how should I do ?
    Thanks

    The id is applied by (I think) the skin class of the ChoiceBox. You don't need to define it.
    You have to apply the css in an external style sheet. You can apply the external style sheet to any parent of your choice box, or to the scene (the most usual way to do it).
    Example:
    import java.util.ArrayList;
    import java.util.List;
    import javafx.application.Application;
    import javafx.scene.Scene;
    import javafx.scene.control.ChoiceBox;
    import javafx.scene.layout.VBox;
    import javafx.stage.Stage;
    public class ChoiceBoxTest extends Application {
      @Override
      public void start(Stage primaryStage) throws Exception {
        primaryStage.setTitle("Example 2");
        final ChoiceBox<String> choiceBox = new ChoiceBox<>();
        List<String> tempResult = new ArrayList<String>();
        for (int i = 0; i < 10; i++) {
          tempResult.add("Item " + i);
        choiceBox.getItems().setAll(tempResult);
        VBox root = new VBox();
        root.getChildren().add(choiceBox);
        final Scene scene = new Scene(root, 300, 250);
        scene.getStylesheets().add("choiceBox.css");
        primaryStage.setScene(scene);
        primaryStage.show();   
      public static void main(String[] args) {
        launch(args);
    choiceBox.css:
    @CHARSET "UTF-8";
    #choice-box-menu-item:focused  {
    -fx-background-color: yellow ;
    #choice-box-menu-item .label {
    -fx-text-fill: black ;
    Message was edited by: James_D

  • Getting the value of the selected items of the shuttle

    Hi Steve,
    How to get the selected items of the shuttle in the backing Bean upon clicking submit button?
    Regards,
    Gareth

    Check the ADF Developer Guide and the SRDemo
    application for a sample of using the shuttle
    http://download.oracle.com/docs/html/B25947_01/web_com
    plex008.htm#CEGHACEDHow to get the values from leading list. I have a pop-up with selectManyShuttle. The leading list values are retreived from from emailTable and there is no default values in the trailing List. When I click ok in the popup, the selectedValues is null.
    here is my code:
    <af:form>
    <af:selectOneChoice label="" valuePassThru="true" valueChangeListener="#{backingpsEmailUserContact.refreshSelectedList}" id="usercontactid" autoSubmit="true">
    <af:selectItem label="User" value="user"/>
    <af:selectItem label="Contact" value="contact"/>
    </af:selectOneChoice>
    <af:panelHorizontal valign="bottom" partialTriggers="usercontactid">
    <af:selectManyShuttle
    trailingHeader="Chosen"
    leadingHeader="Email"
    trailingDescShown="true"
    leadingDescShown="true"
    size="10"
    value="#{backingpsEmailUserContact.selectedValues}" >
    <f:selectItems value="#{backingpsEmailUserContact.allItems}"/>
    </af:selectManyShuttle>
    <af:commandButton text="Ok" action="#{backingpsEmailUserContact.cmdOk}" id="cmdOkid" partialSubmit="true"/>
    </af:panelHorizontal>
    </af:form>
    backingBean method
    public void cmdOk(){
    Object selectedList = this.getSelectedValues();
    // for (int i = 0; i < selectedList.size();i++){
    // System.out.println((String)selectedList.get(i));
    }

  • Why can't I get my printer to print out a playlist from i-tunes? It used to work but now my printer doesn't seem to receive the "print" command.

    Why can't I get my printer to print out a playlist from i-tunes? It used to work, but now the printer doesn't seem to recognize the "print" command coming from i-tunes. The printer works for other applications!

    I  finally solved this problem after toiling with it for a couple of  days.  Solution:  Once you have  burned your CD you must go back into  iTunes to your music/playlists and select the playlist you just burned  and click file; print and you will  get the mosaics that we have been  accustomed to.  I was on hold with  Apple Support when I found this  myself.  Yes......!!! Problem solved..for me anyway.  Good luck!
    Scott

  • The print icon no longer brings up the print box

    The print icon no longer bring up the print box, which is the box that appears when clicking on "File" "Print". Instead, it brings up a new webpage with an image of what is to print. That is more cumbersome and takes more steps. Even though I can print from that page, I also have to back out of that new page when
    I am done. I am using Windows 8.

    Sorry, that is a new "feature" in Firefox 29.0.
    You could use '''{Ctrl + P}''' to initiate printing and not see the Print Preview window, but beyond that I don't have a solution for you that involves an easy way to revert to the previous action of that button.
    I use an extension named Print / Print Preview that adds a contextual menu entry for both Print and Print Preview. I don't like wasting the toolbar space for a button, when I can print via a context menu item ''(something that was left out of Firefox since the beginning, IMO)''.

  • Suddenly, I can't print any web page. After the print command, it wants to save it as a XPS file.

    suddenly I can't print any web page. After the print command it wants me to save as an XPS file and I can't get past that.
    == This happened ==
    Every time Firefox opened
    == few weeks ago

    I found that Firefox/XPS had deleted all printer driver setups except for the XPS connection. I had to reinstall my printer connection in order to have that selection present in the printer dialogue box.

  • How do i fix my printer when it won't show the print preview for web pages? it worked and now not.

    how do i fix my printer when it won't show the print preview for web pages?  it worked for a while and now it doesn't.  printer is an hp officejet 7310 all-in-one.

    I would suspect this is a hardware issue.  The rollers are probably having issues picking up the relatively smooth thick media.  You might have better results be cleaning the paper pickup rollers with a damp paper towel.  Also make sure the paper is snugly loaded and the paper guides have been correctly positioned.
    Regards,
    Bob Headrick, MS MVP Printing/Imaging
    Bob Headrick,  HP Expert
    I am not an employee of HP, I am a volunteer posting here on my own time.
    If your problem is solved please click the "Accept as Solution" button ------------V
    If my answer was helpful please click the "Thumbs Up" to say "Thank You"--V

  • I have c 6180 wireless printer and an apple ipad2, can the printer print from the ipad?

    i have c 6180 wireless printer and an apple ipad2, can the printer print from the ipad? how can i set it up?

    Not with the built-in AirPrint print function.  However, you can download free and cheap print apps that can provide some (limited) printing abilities.  HP's iPrint is one of those.
    Say thanks by clicking "Kudos" "thumbs up" in the post that helped you.
    I am employed by HP

  • After downloading Mountain Lion, I can no longer print! My MAC see's the printer, even nozzle check works, but cant print anything!!

    after downloading Mountain Lion, I can no longer print! My MAC see's the printer, even nozzle check works, but cant print anything!!

    sorry!!! It is a Epson Stylus Photo PX810FW.
    Have made sure all ML / Apple updates are done. Checked the Epson site and there are no updates for 10.8

  • I just bought a new printer for my iMac version 10.7 but I am able to install the software but for some reason I am not able to view the printer under system preferences to add the printer. It is connected with the USB cord!!

    I just bought a new printer for my iMac version 10.7 Lion but I am able to install the software but for some reason I am not able to view the printer under system preferences to add the printer. It is connected with the USB cord!! It as if the printer does not show up in the add printer section under system prefernces!!

    I checked the manufacturer and apple site to see if my printer is supprted and it said it was!! I am using the HP officedeskjet 4500 G510a-f (HP Officejet 4500 Desktop)!! Still does not show up under add printers please help!!

  • How to Restrict printing the document using IRM for a Single Document?Allow printing for some documents and restrict the printing for particular documents in same document library?

    Can we able to Configure the IRM in Document Level in SharePoint Document libraries?
    The document library contains multiple document sets , Can we restrict the printing according to document sets? Allow printing for some documents and restrict the printing for particular documents in same document library
     Is this possible?Please suggest.

    Yes, that can be done. But note that all administrators will have the same right to print, so you need to make sure the users are not administrators. You can include a macro to disable printing, but if the users disable macro, they can print the documents.
    Hence, there is no foolproof way to prevent printing documents. If you still need a foolproof security, PDF format provides password based security (viewing doesn't require a password) that can be implemented to prevent the document from printing,
    which doesn't require any special scripts and is tough.
    You can have a look at the following links:
    http://msdn.microsoft.com/en-us/library/office/ms458245(v=office.14).aspx
    http://msgroups.net/microsoft.public.word.docmanagement/prevent-printing-of-docum/91353
    http://www.go4sharepoint.com/Forum/prevent-printing-saving-documents-10150.aspx
    The following link explains about the security features in PDF. This is for information purpose only and not for promotion of any products:
    http://www.pdflib.com/knowledge-base/pdf-security/
    Balaji Kundalam

  • HT1338 I'm trying to print a document fro safari and the print command is at the bottom of the page and not visible.  I can't move it up and the print command shortcut doesn't work.  How do I print this document.

    I'm trying to print a document from safari and the print command is at the bottom of the page and I can't move it up.  The print command shortcut doesn't work and I would like to know how I can print this document.

    Why do we have to install 2 add ins for something that should be built in? Please add this to the next version or an update to this one even. We should see the full path of a bookmark when we search for it. Show Parent Folder alone isn't enough if you have sub folders, so I installed Go Parent Folder as well in case of sub folders.

Maybe you are looking for

  • Formatting a date field auto populated with Javascript

    I have a date field, which I auto-populate to be the current days date with the following code: var date=new Date(); var month=date.getMonth()+1; this.rawValue=month+"/"+date.getDate()+"/"+(date.getYear()-100); This works fine, but it comes out as 7/

  • PL/SQL Numeric error

    hi everyone, i have created a report with parameter i need to pass multiple values to the report so i have written code using substr in after parameter form to allow multiple values but my problem is when i use value 111 Foreign Assignment,100 Irvine

  • Can you highlight only a portion of a playlist?

    Suppose I want to remove the first fifty songs from a 150-song playlist. Not based on keywords or song titles or bands or anything, just the top fifty songs. I can't seem to drag and highlight just a number (any number) of songs. It's either the whol

  • Photoshop not responding and cannot access my user information from home screen.

    I have Photoshop 9 when I get the home page and click on the organizer a hour glass appears and the software stops responding. I have upgraded to plus members and it will not access my user infromation so I cannot use the benifits.

  • Location of xquartz files in Mountain Lion

    Can anyone tell me where the xquartz application/files are installed in Mountain Lion when using the http://xquartz.macosforge.org installer?