Printing envelopes with specific fields from contacts

I want to choose certain fields to print envelopes - from a group I have in contacts.   Is this possible?
Thanks

Hi kellyof5,
Thanks for using Apple Support Communities.  This article has instructions on printing envelopes from a group in Contacts:
Contacts (Mavericks): Print contact information
http://support.apple.com/kb/PH15095
Cheers,
- Ari

Similar Messages

  • How to read specific fields from BW table  into ABAP?

    Hi Experts,
    Can someone help me how to use to FM: RFC_READ_TABLE to read specific fields from a BW  table '/bic/zcust_chO01' which DOESN't EXIST IN ABAP.
    I am getting an error in OPTIONS & DATA parameters.
    Any help would be higly appreciated with points.
    Thanks
    Dan

    Dan,
    FM: RFC_READ_TABLE is a RF FM so by providing BW system's RF destination you can get the values from required table.
    TRY this:
    CALL FUNCTION RFC_READ_TABLE destination <BW_RF_destination>
    Susanth.

  • How come there isn't a comma between the city and state when I go to make an envelope with an address book contact?

    How come there isn't a comma between the city and state when I go to make an envelope with an address book contact?

    On an envelope, there's not supposed to be. The US Postal Serveice prefers no punctuation, which can interfere with machine sorters. USPS Address Format

  • Problems to print contacts with specific fields under Maverick.

    I am unable to print contacts with specific, selected fields like `firm´ or `position´under Mavericks. The selected fields will not show up in the printing preview and not be printed at all. Any ideas?

    Thanks, John! It seems you guessed correct, partly at least. I turned some of the problamatic fields off and on again an these are showing up now and I can print them. Great!
    However, I can see the field "firma" (German = company in English) in the previewed sample card but not in the pull down menu "Add Field". That means, I am unable to turn it off/on. The intersting thing: The field is visible and selectable even in the printer dialog were you can select the fields you would like to print but it remains unprintable.
    Again, many thanks, John! 

  • Epson R2400 print clipping with PowerMac G5 from InDesign

    I'm at a total loss here and would appreciate any help.
    I'm attempting to print to print a 10x14 inch pages from InDesign on my Epson 2400 on to A3 sized paper.
    All goes well until the paper feeds into the machine and and begins printing. The result is a correctly scaled print that's clipped to exactly 213x260 mm, the image is positioned in the top right corner of the A3 sheet.
    There has been a lot of discussion on this forum regarding Epson drivers which I have read and followed through, performing my own trouble-shooting. This has included reinstalling the drivers, swapping USB for Firewire and visa-versa, setting up and new user account and even as far as a clean install.
    Curiously, this problem not only only specific to InDesign (I can print fine from other apps, including Photoshop) but also specific to the G5. I have two Dual G5 PowerMacs in my studio which exhibit the same problem but there is no issue when I print from our Intel iMac.
    I can't tell if it's an Apple or Adobe problem!
    Please, if there is anyone out there that can shed some light on this I would love to here from you.
    Thanks
    Blair
    Message was edited by: blair.shine

    Try this!
    Q: Since I upgraded to Macintosh OS X 10.5 Leopard, some printer driver options are missing. What should I do?
    A: Make sure youre not using the Macintosh OS X 10.5 Gutenprint driver. Follow these steps to check if youre using the Gutenprint driver and change it if necessary:
    From the Apple menu, select System Preferences.
    Click Print & Fax.
    If necessary, click once on your printers name in the Printer list. (You dont need to do this if only one printer driver is installed).
    If you see Gutenprint next to your printer name, go to step 5 to change the driver. (The Epson Stylus Photo RX620 appears in the example below, but youll see your printer or all-in-one name instead).
    If you see only your printers name, youre using the correct driver, and you can skip the remaining steps.
    Turn off the printer.
    Click the button to remove the printer from the Printers list, then click OK.
    Go to the Macintosh Leopard Support page and select your printer or all-in-one from the appropriate list.
    After you select your printer or all-in-one, the web page will either inform you that the driver for your model is included in Mac OS X 10.5 or give you a description and download option for an Epson driver for your printer.
    If the driver for your model is included in Mac OS X 10.5, go to the next step. Otherwise, download and install the Epson driver for Mac 10.5 before continuing with step 8.
    From the Apple menu, select System Preferences. If necessary, click Print & Fax.
    Turn on the printer. Your computer should add the printer automatically.
    If your computer does not add the printer or if it adds the Gutenprint driver again, contact Apple for assistance. You may need to reinstall the Epson drivers provided with Macintosh OS X 10.5.
    Note: To check ink levels, click the Utility button, then click EPSON StatusMonitor. The Supply Levels button will not show remaining ink levels for your Epson printer.

  • Combining DD-MON field with YYYY field from GL table

    I am running into issues with GL_Cancelled_Date which is displaying the wrong 4 digit year. The GL_Encumbered_Date for these rows is correct and I am looking at ways to combine these fields to output the correct full DD-MON-YYYY date. The below code displays all of the bad rows of data and the last two coloumns display the correct DD-MON and YYYY dates. But I am unsure of how to combine the DD-MON from GL_Cancelled_Date with the YYYY from GL_Encumbered_Date.
    I have written out:
    SELECT
          PRH.SEGMENT1,
          prd.GL_ENCUMBERED_DATE,
          TO_CHAR(PRD.GL_ENCUMBERED_DATE,'YYYY'),
          PRD.GL_CANCELLED_DATE,
          TO_CHAR(PRD.GL_CANCELLED_DATE, 'DD-MON-YYYY'),
          to_char(prd.gl_cancelled_date,'YYYY'),
          to_char(prd.gl_cancelled_date,'DD-MON-') as date_day_month,
          to_char(prd.gl_encumbered_date,'YYYY') as date_year
    FROM
         PO_REQUISITION_HEADERS_ALL PRH,
         PO_REQUISITION_LINES_ALL   PRL,
         PO_REQ_DISTRIBUTIONS_ALL   PRD
    WHERE
         PRH.REQUISITION_HEADER_ID = PRL.REQUISITION_HEADER_ID
          AND   PRL.REQUISITION_LINE_ID   = PRD.REQUISITION_LINE_ID
          AND   PRD.GL_CANCELLED_DATE IS NOT NULL
          AND   to_char(PRD.GL_CANCELLED_DATE,'YYYY') LIKE '00%';

    Hi,
    Here's one way to correct the table:
    UPDATE  po_req_distributions_all
    SET     gl_cancelled_date = ADD_MONTHS ( gl_cancelled_date
                                           , 12 * ( EXTRACT (YEAR FROM gl_encumbered_date)
                                                  - EXTRACT (YEAR FROM gl_cancelled_date)
    WHERE   EXTRACT (YEAR FROM gl_encumbered_date)
        <>  EXTRACT (YEAR FROM gl_cancelled_date)
    When this finishes, gl_cancelled_date will always have the same year as gl_encumbered_date, but hte original months, days, hours, minutes and seconds of gl_cancelled_date will be unchanged.  (Exception: If the original gl_cancelled_date is February 29, and gl_encumbered_date is NOT in a leap year, then the day will be changed to 28, since there is no February 29 in the correct year.  If the original gl_cancelled_date is February 28, and gl_encumbered_date IS in a leap year, then the day will be changed to 29.  This can be fixed if it's a problem.)
    I hope this answers your question.
    If not, post  a little sample data (CREATE TABLE and INSERT statements, relevant columns only) for all tables involved, and also post the results you want from that data.
    If you're asking about a DML statement, such as UPDATE, the sample data will be the contents of the table(s) before the DML, and the results will be state of the changed table(s) when everything is finished.
    Point out where the statement above is getting the wrong results, and explain, using specific examples, how you get the right results from the given data in those places.
    Always say which version of Oracle you're using (e.g., 11.2.0.2.0).
    See the forum FAQ: https://forums.oracle.com/message/9362002

  • How can I print envelopes with Pages with my ipad2?

    How may I print envelopes from my ipad2. I do have Pages .

    Hi dd,
    Pages '09 offered two types of documents.
    Word processing documents included a text layer, and consisted of sections made up of multiple pages. If no section breaks were inserted, a fifty page document could consist of a single section. Text could be placed directly into the text layer, and Objects could be placed on the page as Floating Objects, independent of the text, and able to make text flow around themselves, or could be placed as Inline Objects, inserted into the line of text running from beginning to end of the document, and moving with the text as it was edited.
    In a Page Layout document, each page was a single section. There was no text layer, so only objects could be placed on the page. Any text had to be contained in a Text box or in a Shape. Unless grouped, each object was independent of the others.
    Changing your images from Floating to Inline objects may be the key to your document rearranging issues. They can be changed back to Floating after being moved to theor new locations.
    Regards,
    Barry

  • Unable to print envelopes with latest HP driver for LaserJet 4

    In April I downloaded the latest HP drivers for my HP LaserJet 4 to reinstall following work on my computer.
    First I was just unable to print envelopes.
    I redownloaded and had same results
    I have uninstalled and re-installed a number of times.
    I tried a "chat" with HP that went nowhere.
    I was on hold for over an hour last night -- only to be told that I should email a request for assistance. Fat Chance! Try it!
    I still have the manual from when it was new. It had no answer except a Customer Service phone number which has long been shut down.
    The present condition is that I am unable to print anything.
    Customer Service is a sick myth.

    Hello, DP Photo, sounds like a scanning issue with the software. To start I want you to completely remove the software and then reinstall the programming from the packages available on the website I am going to link you to below. Use the full-feature software if available. 
    http://h10025.www1.hp.com/ewfrf/wc/softwareCategory?cc=us&lc=en&dlc=en&product=3974279
    Try that and let me know how it goes! 
    -Spencer 
    PS I hope you are having a wonderful day! 

  • How can i print only with black cartridge, from any wireless device: like phones and tablets.

    HI,
      I have an HP LaserJet CM415fnw.
      I would like to print only with the black cartridge even if I want to print from a phone or tablet, or for anyone that wants to use the printer and doesn't know how to set up the printer to print only in black.
    Thank you.

    PrintnShare will work with 3G/4G
    http://i1224.photobucket.com/albums/ee374/Diavonex/Album%201/f4277cd6a23630c765c 3156e3efb2a63.jpg
    http://itunes.apple.com/sg/app/print-n-share-for-documents/id301656026?mt=8&ls=1

  • Problems printing envelopes with HP 4480 all in one

    I purchased the HP 4480 all in one because I was told it would  do the job(we hold a reunion each year and write to over 110 people. However I have had nothing but trouble (30 envelopes wasted already) it jams-jams-jams) sometimes at the back and sometimes at the front lots of messy hands!! Have now started to write the envelopes which defeats the whole idea of speed. Can any one help or shall I bin the printer not a year old yet.

    I've had the very same issues with printing envelopes. I'm using standard #10 envelopes, so it should not be an issue. I have a new 4480 printer coming today to replace the one I have, but I am not encouraged about what will happen since I see at least another person has had the same issue.....we"ll see what happens...

  • Printing Smartform with Table data from PrintProgram

    Hi,
      Can any one explain the steps involved in printing the Smartform with the data from the Print Program table. How to fit table in the Smartform i.e, while designing the Smartforms layout for the table.
    Thanks & Regards

    Hi,
       As  data is coming from the print program in the table. Do the following procedure
    1. In the form interface ---> Declare the internal table as same structure as in the print program. for ex: you r passing MARA table data then declare it as itab type table of mara.
    2. In the window you want to create the table, right click > create> table.
    3. Go to data tab give the internal table name and work area .
    4. Now go to General tab-->Details.
    5. Declare the line types.
    6. Right click on header/main area/footer -->create table line.
    7. Now give the line type which you want to use.
    8. In the displayed columns>right click> create text node.
    9. In the text node &mara-matnr&.
    Procedure to create line type:
    1. Double click on table
    2. Go to table tab --> details
    3. Give the table width (width you want to display on the screen should be less than or equal to the window width).
    4. Line type --> Divide this into no of column you want to have in header/item.
    Note: total length of all columns should be equal to the table width.
    5.save.
    Br,
    Laxmi

  • Using ME21N/ME22N with own Fields from MARA

    Hallo,
    i need help to insert some fields from MARA in
    the Tcode ME21/2N. For example MARA-GROES or MARA-ZEINR
    in the Item-List.
    Can i use the exit MM06E005, and has anybody a
    Codeexample?
    Thanks for help
    Dieter
    We have a new Problem. We have to store the new Fields
    in the EKPO. I use EXIT_SAPMM06E_013 with xekpo-ZZEINR
    but it doesn't work correct.
    Has anyone an idea?
    Thanks
    Regards Dieter
    Message was edited by: Dieter Gröhn

    Hi Dieter,
    1. Insert new field ZZ_ZEINR with component type<b> DZEINR</b> in structure CI_EKPODB via SE11. Save and activated once done.
    2. Go to <b>SE51</b> (Screen Painter), enter program <b>SAPLXM06</b> and screen number <b>0111</b> and click on change and select maintain in original language.
    3. Click on <b>Layout</b> button and create text field and input/output field for EKPO_CI-ZZ_ZEINR. Save and activated.
    4. Go to SE37 and enter function module <b> EXIT_SAPMM06E_016</b> and click on include <b>ZXM06U41</b>. In here you can code something like this. Save and activated once done.
    CLEAR: EKPO_CI-ZZ_ZEINR.
    SELECT SINGLE *
    FROM MARA
    WHERE MATNR = I_EKPO-MATNR.
    IF SY-SUBRC = 0.
      EKPO_CI-ZZ_ZEINR = MARA-ZEINR.
    ENDIF.
    Hope this will help.
    Regards,
    Ferry Lianto

  • Print sheet of same label from contacts

    How can I print an entire sheet of the same address label from contacts?  I am trying to print return address labels.  I can only figure out how to print one per sheet.  Anyone help?

    An alternative is to use an address in the Contacts application and the print dialog there to print the selected address on Avery labels. The printer dialog will of a selectable Style category. Choose Mailing Labels. You will have Layout and Label tabs. The former will allow you to select the Page as Avery Standard and the stock number (e.g. 5161) from a list of choices.
    This is simpler than using the same label template from Avery, creating/duplicating one address label, and printing.
    There is no built-in mail merge in Pages v5.

  • UNABLE TO PRINT ENVELOPES WITH HP 309a

    i have an HP 309a printer and I suddenly cannot print envelopes.  I have the correct size in the template but when I put the envelope (correctly) into the printer I get an error message "wrong size."  This happened recently and I suspect it might be connected with the updates.  I can still print labels so nothing is changed there.

    Thank you. I'm sorry that it took so long to respond but my brand new G4's logic board failed and had to be replaced! Now when I tried to log in with my username and password at the CUPS local host site, it said that the login was wrong, Do I have to go someplace else to log into CUPs and get a new password and username?
    I will try to find out what CUPS is while I wait for your response.
    The printers: Lexmark 1100 series is on the Lexmark site: http://downloads.lexmark.com/cgi-perl/downloads.cgi?ccs=229:1:0:0:0:0 where I got the driver.
    Thanks again,
    Vusumuzi Zulu

  • Remove fields from contact profile jabber windows

    Is it possible remove some fields from the contac profile jabber windows?
    For example if you see the attach i want to remove entirely the field "compañia" (company).
    Thanks in advance.

    No, you only get to choose from which LDAP field to sync the info, not what is shown in the info card.
    HTH
    java
    if this helps, please rate
    www.cisco.com/go/pdihelpdesk

Maybe you are looking for

  • Win 8.1 domain workstation. Block all access, except for a fews users/groups and domain controller information/date.

    Hi! Win 8.1 pro, domain workstation. How Block all access, except for a fews users/groups and domain controller information/date. Nuance: From domain AD is locked Workstation Firewall "Domain profile" edit. Possible? cenubit

  • J1INQEFILE - Quarterly TDS Returns

    Hi Experts, When I am excuting the quaterly returns, we are not getting all the documents in the list. Reason: Challan number (J_1IINTCHLN) is not updated in the with_item table. But already accounting document is cleared. How to update this challan

  • Objective setting appraisal (OSA) queries related to ESS/MSS

    Hello All, I am currently working in OSA. I have few queries related to this. My client wants to implement OSA without linking it to the SAP ESS/MSS. They have their own intranet portal which is not a part of SAP. But they are using it for applying l

  • DEV and Sandbox

    Cud anyone please explain the functions and uses of Development and Sandbox systems in the implementation of BW implemenation.. If u have any documents pls mail to [email protected] Thanks alot

  • N80 - keeps telling me my new 1GB Mini SD card is ...

    Need some help, have bought a Mini SD card, but my new ( sim free, unbranded and unlocked ) N80 kept telling me it was corrupt, then i exchanged it for another, new, one and it did the same thing! now i'm stuck with the standard 128Mb for fear of was