PPD field grayed out.....How do I get the PPD field populated?  Windows 7 x64

I have an employee running Illustrator in the Creative Cloud and for whatever reason her PPD field is grayed out when she goes to print.  My other two employees running this both have the Fiery file for the printer we have as an option.  Any idea how I can get the PPD field populated?

Permissions issues on the PPD files or the printer... Or the driver has never been fully installed in the first place due to whatever technical or again permissions issues...
Mylenium

Similar Messages

  • How can I get the "text" field from the actionEvent.getSource() ?

    I have some sample code:
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.util.ArrayList;
    public class JFrameTester{
         public static void main( String[] args ) {
              JFrame f = new JFrame("JFrame");
              f.setSize( 500, 500 );
              ArrayList < JButton > buttonsArr = new ArrayList < JButton > ();
              buttonsArr.add( new JButton( "first" ) );
              buttonsArr.add( new JButton( "second" ) );
              buttonsArr.add( new JButton( "third" ) );
              MyListener myListener = new MyListener();
              ( (JButton) buttonsArr.get( 0 ) ).addActionListener( myListener );
              ( (JButton) buttonsArr.get( 1 ) ).addActionListener( myListener );
              ( (JButton) buttonsArr.get( 2 ) ).addActionListener( myListener );
              JPanel panel = new JPanel();
              panel.add( buttonsArr.get( 0 ) );
              panel.add( buttonsArr.get( 1 ) );
              panel.add( buttonsArr.get( 2 ) );
              f.getContentPane().add( BorderLayout.CENTER, panel );
              f.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
              f.setVisible( true );
         public static class MyListener  implements ActionListener{
              public MyListener() {}
              public void actionPerformed( ActionEvent e ) {
                   System.out.println( "hi!! " + e.getSource() );
                   // I need to know a title of the button (which was clicked)...
    }The output of the code is something like this:
    hi! javax.swing.JButton[,140,5,60x25,alignmentX=0.0,alignmentY=0.5,
    border=javax.swing.plaf.BorderUIResource$CompoundBorderUIResource@1ebcda2d,
    flags=296,maximumSize=,minimumSize=,preferredSize=,defaultIcon=,disabledIcon=,
    disabledSelectedIcon=,margin=javax.swing.plaf.InsetsUIResource[top=2,left=14,bottom=2,
    right=14],paintBorder=true,paintFocus=true,pressedIcon=,rolloverEnabled=true,
    rolloverIcon=,rolloverSelectedIcon=,selectedIcon=,text=first,defaultCapable=true]
    I need this: "first" (from this part: "text=first" of the output above).
    Does anyone know how can I get the "text" field from the e.getSource() ?

    System.out.println( "hi!! " + ( (JButton) e.getSource() ).getText() );I think the problem is solved..If your need is to know the text of the button, yes.
    In a real-world application, no.
    In a RW application, a typical need is merely to know the "logical role" of the button (i.e., the button that validates the form, regardless of whether its text is "OK" or "Save", "Go",...). Text tends to vary much more than the structure of the UI over time.
    In this case you can get the source's name (+getName()+), which will be the name that you've set to the button at UI construction time. Or you can compare the source for equality with either button ( +if evt.getSource()==okButton) {...}+ ).
    All in all, I think the best solution is: don't use the same ActionListener for more than one action (+i.e.+ don't add the same ActionListener to all your buttons, which leads to a big if-then-else series in your actionPerformed() ).
    Eventually, if you're listening to a single button's actions, whose text change over time (e.g. "pause"/"resume" in a VCR bar), I still think it's a bad idea to rely on the text of the button - instead, this text corresponds to a logical state (resp. playing/paused), it is more maintainable to base your logic on the state - which is more resilient to the evolutions of the UI (e.g. if you happen to use 2 toggle buttons instead of one single play/pause button).

  • How do I get the shape/line 'properties window' on Photoshop sc4. (mac)  It shows it on the help videos but I cannot find it?

    How do I get the shape/line 'properties window' on Photoshop sc4. (mac)  It shows it on the help videos but I cannot find it?

    For a crisp border of any color or any size, Just expand the "Canvas" by 0.5 inches or whatever dimension your file needs.

  • How can I get the File, Edit, View, Windows ect to show in Organiser

    While on various tutorials they all show a
    menu of file, edid, view ect in the top left hand corner of the screen, mine shows only a small square box that when clicked give you the option of restore, close minimise ect. How can I get the file edit menu to show. Should have said in Photoshop Elements 9.

    Thanks Barbara that's done the trick

  • How do I get the address field to show (again) at the top of the page????

    I was messing around with stuff I don't understand, and managed to make the web address field disappear from the top of the page....now I've got only a page title in a gray field. Help! (please). I can't figure out how to get the address to appear again.
    I'm stuck and can't surf

    View menu...  try either "Show Toolbar" or "Customize Toolbar..."
    charlie

  • How do I get the active field of DateEditor in JSpinner?

    Hi Everybody,
    I have a JSpinner which uses a DateEditor and displayes the date in "dd/MM/yyyy" format in it. I have over ridden the default behaviour of Up and Down arrow button components of it as per my requirements. Now I want to extend the functionality to change the value of the date on the basis of what is the highlighted field.
    ie if the month is highlighted then the day and year need to
    remain the same but month should increase.and if day is higlited it
    shud follow the normal pattern and if year is highlighted the year should
    move forward keeping the month and date same (no doubt after 12 months increment it is supposed to go to next year). Here is my code:
    <code>
    bq. import java.awt.BorderLayout; \\ import java.awt.Component; \\ import java.awt.event.KeyEvent; \\ import java.awt.event.KeyListener; \\ import java.awt.event.MouseAdapter; \\ import java.awt.event.MouseEvent; \\ import java.awt.event.MouseListener; \\ import java.text.SimpleDateFormat; \\ import java.util.Calendar; \\ import java.util.Date; \\ import java.util.GregorianCalendar; \\ import java.util.StringTokenizer; \\ import javax.swing.JFrame; \\ import javax.swing.JPanel; \\ import javax.swing.JSpinner; \\ import javax.swing.SpinnerDateModel; \\ import javax.swing.SpinnerModel; \\ /** \\ * \\ */ \\ /** \\ * @author asmarwal \\ * \\ */ \\ public class MySpinnerDemo extends JPanel implements MouseListener { \\ static JPanel myPanel; \\ static int day = 0; \\ static int month = 0; \\ static int year = 0; \\ static String date; \\ static JSpinner.DateEditor de = null; \\ static Calendar calendar = Calendar.getInstance(); \\ public MySpinnerDemo(){ \\ // Let's see it later if we need to do sth here \\ myPanel = new JPanel(new BorderLayout()); \\ } \\ private static JSpinner getSpinner(){ \\ // initDate, earliestDate & latestDate might be taken from constructor too \\ Date nowDate = calendar.getTime(); \\ calendar.add(Calendar.YEAR, 0); \\ Date earliestDate = calendar.getTime(); \\ Calendar latestCal = new GregorianCalendar(9999, Calendar.DECEMBER, 31); \\ Date latestDate = latestCal.getTime(); \\ System.out.println("InitDate:: "+nowDate+"\n Earliest Date:: "+earliestDate+"\n Latest Date:: "+latestDate); \\ SpinnerModel dateModel = new SpinnerDateModel(nowDate, \\ earliestDate, \\ latestDate, \\ Calendar.YEAR);//ignored for user input \\ JSpinner spinner = new JSpinner(dateModel); \\ Calendar currCal = new GregorianCalendar(); \\ spinner.setValue(currCal.getTime()); \\ spinner.setEditor(new JSpinner.DateEditor(spinner, "dd/MM/yyyy")); \\ spinner.setUI(new javax.swing.plaf.basic.BasicSpinnerUI() { \\ protected Component createNextButton() { \\ Component u = super.createNextButton(); \\ u.addMouseListener(new MouseAdapter() { \\ public void mouseClicked(MouseEvent me){ \\ System.out.println("You have just clicked the up arrow button of UI component..."); \\ calendar.add(Calendar.DATE, 1); \\ spinner.setValue(calendar.getTime()); \\ myPanel.repaint(); \\ } \\ }); \\ return u; \\ } \\ //Down Arrow button \\ protected Component createPreviousButton() { \\ Component u = super.createNextButton(); \\ u.addMouseListener(new MouseAdapter() { \\ public void mouseClicked(MouseEvent me){ \\ System.out.println("You have just clicked the down arrow button of UI component... ActiveField:: "); \\ SimpleDateFormat sdf = new SimpleDateFormat("dd/MM/yyyy"); \\ Calendar calToday = new GregorianCalendar(); \\ String calTodaDateStr = sdf.format(calToday.getTime()); \\ String spinnerCurrDateStr = sdf.format(calendar.getTime()); \\ //Checking if spinner's current date value is today's.. \\ // If yes then go to 31/12/9999 else perform normal date decrement \\ if(spinnerCurrDateStr.equalsIgnoreCase(calTodaDateStr)){ \\ System.out.println("IF:: spinnerCurrDateStr: "+spinnerCurrDateStr+" calTodaDateStr"+calTodaDateStr); \\ Calendar newCal = new GregorianCalendar(9999, Calendar.DECEMBER, 31); \\ //    Set the static var calendar's value to the current system date \\ calendar = new GregorianCalendar(); \\ spinner.setValue(newCal.getTime()); \\ }else{ \\ System.out.println("ELSE:: spinnerCurrDateStr: "+spinnerCurrDateStr+" calTodaDateStr"+calTodaDateStr); \\ calendar.add(Calendar.DAY_OF_MONTH, (-1)); \\ spinner.setValue(calendar.getTime()); \\ } \\ myPanel.repaint(); \\ } \\ public void mousePressed(MouseEvent me){ \\ System.out.println("You have just kept pressed the down arrow button of UI component..."); \\ // Don't do anything \\ calendar.add(Calendar.DAY_OF_MONTH, 0); \\ spinner.setValue(calendar.getTime()); \\ myPanel.repaint(); \\ } \\ }); \\ return u; \\ } \\ }); \\ return spinner; \\ } \\ public void mouseClicked(MouseEvent e) { \\ // TODO Auto-generated method stub \\ } \\ public void mouseEntered(MouseEvent e) { \\ // TODO Auto-generated method stub \\ } \\ public void mouseExited(MouseEvent e) { \\ // TODO Auto-generated method stub \\ } \\ public void mousePressed(MouseEvent e) { \\ // TODO Auto-generated method stub \\ } \\ public void mouseReleased(MouseEvent e) { \\ // TODO Auto-generated method stub \\ } \\ /** \\ * @param args \\ */ \\ public static void main(String[] args) { \\ // TODO Auto-generated method stub \\ JFrame frame = new JFrame("JSpinner Sample"); \\ frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); \\ MySpinnerDemo msd = new MySpinnerDemo(); \\ //System.out.println("msd.getSpinner():: "+msd.getSpinner()); \\ myPanel.add(getSpinner(), BorderLayout.CENTER); \\ frame.getContentPane().add(myPanel, BorderLayout.SOUTH); \\ frame.setSize(200, 90); \\ frame.setVisible(true); \\ } \\ }
    </code>
    Thanks in advance!

    Simmi,
        you need to check in SE11(data dictionary) with the specified tachnical names.
    comming to selective deletion...
    divide the data into segments based on the organizational values.
    take the material group. check with any consultant. ask simple qustion how many material group we have?
    take the case 5 mat1, mat2, mat3, mat4, mat5. Delete the values based on that. Menas that... entire infocube defined into 5 segments.
    Before deleting make sure u have taken correct charecterstic. if you can give us the scenario we can let you know how can we delete the data with out effecting existing business process.
    alll the best.
    Regards,
    Nagesh Ganisetti.

  • How do you get the custom fields added to a address book to show up on Pages 09 when merging fields?

    I created some custom fields in the address book and want to get them merged into a Pages 09 document.  When using the merge fields feature in Pages, only the standard fields are displayed.  I am looking for a way to have the custom fields from the address book inserted into the document.

    I believe you will find them if you go to table - unhide all columns.  When you drag and drop card(s) into pages, it automatically shows default fields.  The others are there but hidden.  I hope this works for you!

  • Whenever I select a color in Photoshop, there is an error icon and it comes out gray.  How can I get the colors to work?

    Trying to select green, but it defaults to gray and has the error symbol.  What gives?
    When I go to my channels, Gray is the only option, and if I try to add another channel, it fills black.
    Thanks much, just made the switch from an old version to the cloud, so I'm hoping it's an easy issue,

    You appear to be working on a grayscale file.
    A lot more information about your hardware and software is needed.
    BOILERPLATE TEXT:
    If you give complete and detailed information about your setup and the issue at hand,
    such as your platform (Mac or Win),
    exact versions of your OS, of Photoshop (not just "CC", but something like CC2014.v.2.2) and of Bridge,
    your settings in Photoshop > Preference > Performance
    the type of file you were working on,
    machine specs, such as total installed RAM, scratch file HDs, total available HD space, video card specs, including total VRAM installed,
    what troubleshooting steps you have taken so far,
    what error message(s) you receive,
    if having issues opening raw files also the exact camera make and model that generated them,
    if you're having printing issues, indicate the exact make and model of your printer, paper size, image dimensions in pixels (so many pixels wide by so many pixels high). if going through a RIP, specify that too.
    a screen shot of your settings or of the image could be very helpful too,
    etc.,
    someone may be able to help you (not necessarily this poster, who is not a Windows user).
    Please read this FAQ for advice on how to ask your questions correctly for quicker and better answers:
    http://forums.adobe.com/thread/419981?tstart=0
    Thanks!

  • Open view go to zoom and its grayed out - how do i get it back?

    hard drive crashed and reinstalled thunderbird and now no zoom function

    Zoom is only active if you,
    1. Have a message displaying in the Message Pane. Press F8 to turn that on.
    2. You open a message in a window or tab.
    If you are just looking at the Inbox and have the message pane turned off the feature is not active.

  • How do I get the latest drivers for windows 7 boot camp install?

    I have a 24" mac early 2009. I had windows xp installed on a partition using an early edition of boot camp. I had to reformat my mac and so I purchased windows 7 home premium oem edition.  When I try to install and copy boot camp drives to a 32 gb usb drive I get a message that Apple does not have drivers for that.

    find your machine and OS here, manually dl the pkg
    http://support.apple.com/kb/ht5634

  • How do i get the software to allow windows?

    I have a powerbook g4 and want to know where and how much is the software to allow me to run windows?

    Hi Kevin!
    These links will take you to different options for older machines as well as the new Intel Macs. Keep in mind that a PowerBook G4 is not an Intel machine. You'll be limited to Virtual PC.
    Microsoft Virtual PC - PowerMacs only
    Boot Camp - Intel Macs only
    Parallels - Intel Macs only
    Hope this helps! bill
    1 GHz Powerbook G4   Mac OS X (10.4.6)  

  • How do I get the little google search window back in the upper right corner...it has disappeared!

    The search box in the upper right corner of the sarfari window is gone. Cant find it
    anywhere on toolbar and when try to drag it in from the customize toolbar, doesnt work...any suggestions..

    James ~ See under Smart Search Field here:
    Mac 101: Safari 6 in OS X Mountain Lion

  • How can I get the "Register this Product" window to go away?

    I have registered my HP Officejet 6500A Plus.  The "Register this Product" window keeps popping up.  It will not let me close it.  I've tried going to register this product and reregistering many times.  Nothing works.

    MLP36, welcome to the forum.
    You can try uninstalling and reinstalling the printer to see if that helps.
    Please click "Accept as Solution" if your problem is solved.
    Signature:
    HP TouchPad - 1.2 GHz; 1 GB memory; 32 GB storage; WebOS/CyanogenMod 11(Kit Kat)
    HP 10 Plus; Android-Kit Kat; 1.0 GHz Allwinner A31 ARM Cortex A7 Quad Core Processor ; 2GB RAM Memory Long: 2 GB DDR3L SDRAM (1600MHz); 16GB disable eMMC 16GB v4.51
    HP Omen; i7-4710QH; 8 GB memory; 256 GB San Disk SSD; Win 8.1
    HP Photosmart 7520 AIO
    ++++++++++++++++++
    **Click the Thumbs Up+ to say 'Thanks' and the 'Accept as Solution' if I have solved your problem.**
    Intelligence is God given; Wisdom is the sum of our mistakes!
    I am not an HP employee.

  • Mail on OSX 10.7.5  has incoming mail server field grayed out

    Trying to configure my iCloud email using Mail in OSX10.7.5   and in the settings the field for incoming mail is grayed out, yet every time I try to save to exit that window, it gives me an error message that it needs an incoming mail server.  Can't enter it because I can't get into the field, which is showing po2-imap.mail.me.com     Any thoughts on how to remedy?

    I tried this and it entered the same info that was there and the incoming mail server field is still grayed out and I still get the "The incoming mail server cannot be empty" message when I go to exit the iCloud account window.

  • Get the custom fields data at the time of save

    Hi,
    We have added few fields in the ICWC for the complaint screen.
    At the time of save i am trigering a BADI.
    I would like to check the data that is entered in those fields of complaint screen.
    Is there any FM which can be used to get the data from the buffer ?
    I have the header GUID available to me .
    Thanks.
    R

    Hi,
    Let me elaborate a bit.
    Users would create the complaints in the ICWC.We have addeded few custom fields in the complaint screen.
    CRMT_CUSTOMER_H_WRKT is extended with the custom fields.
    At the save i am trigerring the Partner Determination BAdi.
    Here i have the complaint guid at run time.
    I would like to check the data entered in the custom field in the complaint screen. Based on this i would like to determine one more partner.
    My question is how can i get the custom field data in the complaint screen in this BAdi.
    The FM:  CRM_ORDER_READ is not returning this data.Is there any FM to get this ?
    Thanks.
    R.

Maybe you are looking for

  • Dreamweaver CS5.5 hyper link doesn't work

    I'm using Dreamweaver CS5.5 with a template.  The links in the template work fine.  When I click on a link in the body of the page that uses the template, the hyper link text quickly changes to a very small font and back, but does not go to the link.

  • BRAND NEW IPOD TOUCH WONT APPEAR IN WINDOWS OR ITUNES

    I just bought a brand new 8gb ipod touch and when i plug it into my computer the it lights up and beeps but nothing comes up on itunes or my computer. I have a working ipod video that syncs and is recognized by my computer everytime (even with the us

  • Itunes - windows load - transfer to Mac?

    I just ordered a new Macbook and currently have a Thinkpad. It's not arriving until next week and wanted to start loading my music into itunes on my pc; then transfer the files to my new Macbook itunes. Is this possible or do I just have to wait unti

  • Jsf equivelent of struts html:base tag

    I'm having an issue with the myfaces panelNavigation component. I'm including it in a series of pages with subview & jsp:include tags. It's working great with one exception. If I browse to a document one directory deeper than the "home" page, and the

  • Problem with APEX_COLLECTION

    Hi, The following on-submit process is generating no_data_found on add_member procedure. I can't figure out why? Any ideas? IF NOT APEX_COLLECTION.collection_exists('SQL_QUERY_COLLECTION') THEN APEX_COLLECTION.create_collection('SQL_QUERY_COLLECTION'