Contacts app does not print company name on lists

contacts app  prints the company name on envelope etc.
but unfortunately not on lists.
does someone has an idea?
best,
boris

thank you john!
now I know that this problem was already in mavericks.
how long does it take apple to solve this.
bests,
boris

Similar Messages

  • FND_MESSAGE.GET_String does not print Attribute name.

    Hi ,
    I want to show the workflow notification messages through fnd_messages in application developer. Now, the issue is I am able to get the message as entered in message dictionary but not able to print the Name of the attribute .
    for ex: from the below code MESSAGE 3 is an acknowledgement message which will show the approver name to which the po no has been routed . in the application developer the attribute &APPR_NAME is mentioned but when the workflow is triggered the notification does not print the name of the approver in specified attribute .
    Message3:= FND_MESSAGE.GET_STRING ('XXAPL','MESSAGE3');
    Wf_Engine.SetItemAttrText(itemtype => p_itemtype,
    itemkey => p_itemkey ,
    aname =>'APRR_BDY_MSG',
    avalue => Message4 );
    Please guide me .
    Regards,
    SKG

    You are essentially trying to include an attribute inside an attribute, which is not going to work.
    If you know what the attribute names are going to be, then you can use the standard SQL REPLACE function in your code to replace the attribute name with the current value. That would allow you to make the content flexible in terms of the wording in the FND message, but not allow you to add / modify the attributes included in the message without revisiting the PL/SQL code and including the new attributes in there to replace.
    Alternatively, you would need to look at making the search and replace of the attribute name truly dynamic - parse the body of the message to find the name of the attribute in there to replace and do that replacement. However, this isn't straightforward by any means - it's easy to find the start of the attribute name, because it begins with an ampersand. But how do you find the end of the attribute name - the following character after an attribute name could be a space or any punctuation mark. Then, how do you know whether the attribute is called (for example) &ATTR1 or &ATTR1? or &ATTR1. ?
    For simplicity, I would go with the first of these - without a massive amount of thought, the second is an intensive, complex idea.
    HTH,
    Matt
    WorkflowFAQ.com - the ONLY independent resource for Oracle Workflow development
    Alpha review chapters from my book "Developing With Oracle Workflow" are available via my website http://www.workflowfaq.com
    Have you read the blog at http://www.workflowfaq.com/blog ?
    WorkflowFAQ support forum: http://forum.workflowfaq.com

  • Mail does not print attachment name & prints small

    When printing an email, if it has an attachment, it does not print the attachment name.  It prints the icon of the attachment (excel, word, psd, etc.) but it doesn't print the name of the file under it.  This started happening since upgrading to Mavericks.
    Also, emails are printing much smaller.  Is there a way to enlarge the font when printing?

    The same here and quite a lot of other Mail bugs - and all since the new MacPro and Mavericks, no such problems with Mavericks on the MacBookPro 2011 though
    Sometimes the file names are printed, sometimes not and there is no way to find out why - it happens on and off with own mails to be sent and mails received.
    Workaround for own mails is put each file underneath the other with some distance from the last word. Workaround in case of customer mails received go to reply, edit signature on top, reduce to one page and hope .... sometimes it works.
    Also: on and off, Preview will show and printer will print only header on the first page, then body text on the second - only workaround to date (and believe me, I've tried everything) is use Reply, eliminate your own signature and reduce the printed area to less than a page
    Also: long mails with back-and-forth messages may print a line half on one page and lower half on second one .... no workaround here.
    Seems Mail is going to A4 US instead of A4 small (Europe), though this is not what the printer and the system or Word etc. are set to.
    And a sneaking suspicion, that it works ok with people sending me mails from a Mac, but not from a Windows box ... can't bother all my customers though and ask
    So please Apple - lots of people have the same problems - will you finally do something about it ... and yes I used the Feedback function
    Suzanne

  • Ios email app does not support user name with multiple "."

    I have two gmail email addresses and have both set up on my ipad, however the ios email app cannot connect to the gmail server for one of the two accounts. Account settings are strictly identical and connection from the Gmail app works fine. The only difference I could find between the two accounts is that the one with connection issues uses a format of "[email protected]" whereas the one that works fine is "[email protected]". Is it a known bug that the ios app does not support the first format?
    Thanks

    Yes, double dots/periods are not allowed.

  • Workforce count report does not shoe company names

    Hi
    i have a report in Global HRMS Manager "workforce count repoort (spreadsheet version) which does not show some company name it only shows the employee strength etc. example given below taking the example in our test instance while running this report infront of the Top organisation Vision Operations should come and below that the two company names Boston Manufacturing , Dallas manufacturing should be displayed bu their names are not displayed only data is displayed
    Organization Hierarchy : DBI - Vision Operations
    Top Organization :
    Organization      Rev     Start     End     Net     NewHires     Terms     Other
         NonRev               Change     PlacementStart     PlacementEnd     (Net)
         Rev     0     0     0     0     0     0
         NonRev     0     0     0     0     0     0
         Rev     1     1     0     0     0     0
         NonRev     2     2     0     0     0     0
    Boston Manufacturing      Rev     0     0     0     0     0     0
         NonRev     0     0     0     0     0     0

    REPORT zfr_aging_of_deposits
    NO STANDARD PAGE HEADING
    LINE-SIZE 0
    LINE-COUNT 0
    MESSAGE-ID zz.
    * Data dictionary tables *
    TABLES: bsis,
    bkpf.
    TYPE-POOLS: slis.
    * Structures *
    TYPES: BEGIN OF t_bsis,
    bukrs LIKE bsis-bukrs,
    hkont LIKE bsis-hkont,
    zuonr LIKE bsis-zuonr,
    belnr LIKE bsis-belnr,
    gjahr LIKE bsis-gjahr,
    budat LIKE bsis-budat,
    shkzg LIKE bsis-shkzg,
    dmbtr LIKE bsis-dmbtr,
    sgtxt LIKE bsis-sgtxt,
    END OF t_bsis.
    * Internal tables *
    DATA: it_bsis TYPE STANDARD TABLE OF t_bsis.
    *field-symbols
    FIELD-SYMBOLS: <fs_bsis> LIKE LINE OF it_bsis.
    * Selection screen *
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.
    PARAMETERS: p_bukrs LIKE t001-bukrs.
    SELECT-OPTIONS: s_budat FOR bkpf-budat.
    SELECTION-SCREEN END OF BLOCK b1.
    AT SELECTION-SCREEN ON p_bukrs.
    IF p_bukrs <> 'GLOB' and
    p_bukrs <> 'INOV' and
    p_bukrs <> 'GXCH'.
    MESSAGE e008 WITH 'Invalid Company Code!'.
    ENDIF.
    * Start of selection *
    START-OF-SELECTION.
    PERFORM get_data.
    * FORM get_data *
    FORM get_data.
    <b>data: p_hkont(10).
    CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
      EXPORTING
        INPUT         = '190100'
    IMPORTING
       OUTPUT        = p_hkont
              .</b>
    SELECT bukrs hkont zuonr belnr gjahr budat shkzg dmbtr sgtxt FROM bsis
    INTO TABLE it_bsis
    WHERE bukrs = p_bukrs
    * AND budat < s_budat
    AND xragl = ''
    AND xstov = ''
    AND hkont = <b>p_hkont</b>.
    check not it_bsis[] is initial.
    ENDFORM.

  • Preview app does not print and freezes

    Ever since I installed Lion, Preview freezes when I try to print anything to my Canon printer, and I have to force quit it. I've tried various PDFs and JPEGs, and none print. I get the spinning beach ball every time. All other applications, including Acrobat Reader print just fine. Any ideas?

    I just updated the Canon print driver to version 2.30, which (fully) supports Lion, and it seems to be working well now. My printer is a Canon imageCLASS MF4690, by the way.

  • App does not appear in app tab for my device...

    I downloaded an app from the itunes store and it shows up in my app tab on the left side of my itunes. But when I click on my device and go to the app list, the app does not show up in the list so I'm unable to transfer it to my device. Any thoughts?

    Hi,
    Enter the BIOS and see the system information section to get the Product number. That is where it is located in my HP Mini 1000 BIOS.
    The product number is also located on the service tag on the bottom of the mini where it says p/n.
    Use the product number when searching for support & downloads for your mini.
    -erico 
    ****Please click on Accept As Solution if a suggestion solves your problem. It helps others facing the same problem to find a solution easily****
    2015 Microsoft MVP - Windows Experience Consumer

  • After upgrading my iPhone 4S to iOS6, my Find My Friends app no longer links to my Contacts and does not show contact names. It only shows e-mail addresses and does not link up to the corresponding email address in my Contacts. How can I fix this?

    After upgrading my iPhone 4S to iOS6, my Find My Friends app no longer links to my Contacts and does not show contact names. It only shows e-mail addresses and does not link up to the corresponding email address in my Contacts. How can I fix this?

    I am also having problems with a site I am building. No matter what websafe font I use it displays as New Times Roman in FireFox. The correct fonts show in both IE9 and Chrome.
    In addition, text shifts in FireFox. I have to position other text objects farther and farther apart as I go down the page or they start to overlap. Nav buttons and other images also have to be positioned in the wrong place for them to be in the correct place when the page is opened in FireFox. FireFox should display pages correctly by default. I can't expect th average user to have to tweek his/her settings to display my site.
    I have been recommending FireFox on my website as the best browser. I might have to change that and abandon FireFox myself.

  • I have an I phone 4s and I have many contacts in my phone.  However, whne my phone rings or I receive a text, the phone does not show the name of the contact person only the phone number.  I have checked every setting I can think of ?

    I have an I phone 4s and I have many contacts in my phone.  However, when my phone rings or I receive a message.  The phone does not show the name of the caller.  It only shows the phone number that is calling.  I am sure this is a setting problem, but I have checked every setting I can think of.  Any suggestions??

    If you are a Verizon user try this:
    Open the phone and dial *228. This is a Verizon over-the-air programming number.
    When the system answer press 1 for "Program or activate your phone"
    Wait for the call to disconnect. You should get a prompt stating "Settings updated."
    Double tap the Home button to bring up the recently used apps list at the bottom.  Locate the Phone, Message, and Contacts apps, swiping if necessary, and press and hold until they jiggle then press the red minus sign to stop them.
    Wait a 3-5 minutes.
    Try your phone again and see if it's fixed.

  • AR aging report does not print alphabetically by customer name in 8.8

    AR aging report does not print alphabetically by customer name in version 8.8.
    It is possible to create a custom layout for the receivables aging summary report (to print alphabetically by BP name) to overcome this problem. However, itu2019s not possible for the u201Cdetailed receivables aging reportu201D or u201Ccustomer statement reportu201D.
    Why has SAP changed this functionality? In version 2007 SAP takes the order of the rows set on the screen unless other order is specified in the layout.
    How can we make the u201Cdetailed receivables aging reportu201D and u201Ccustomer statement reportu201D print alphabetically by customer name?
    Steps to reproduce:
    Business partners > Business partner reports > Aging > customer receivables aging
    Doubleclick on customer name to sort it in alphabetical order.
    Click on preview and select u201Creceivables aging summary reportu201D.
    The system layouts do not print by customer name in alphabetical order.
    Click on preview and select u201Cdetailed receivables aging reportu201D. The system layouts do not print by customer name in alphabetical order.
    Also, customer statement report does not print by customer name in alphabetical order.
    In SAP 2007 versions, when a marketing document or aging report is printed, SAP takes the order of the rows set on the screen unless other order is specified in the layout.
    In SAP 8.8 although it works the same way for marketing documents, it doesnu2019t work like this for Aging reports.
    I was able to change the order for the u201CReceivables Aging Summary Reportu201D only.  We cannot overwrite a System report, I had to create a new layout called:  u201CBusiness Partner Aging (Summary) (Alphabetically Sorted)u201D.
    I couldnu2019t set up the order based on BP Name for the other 2 options: Detailed Receivables Aging Report and Customer Statement Report (One page per Customer).
    Iu2019ve checked print settings and properties, and I donu2019t see any way of changing the default order for these reports.

    Reported it to SAP support + they plan to fix it in a future patch.

  • What to do if the contact of a APP does not respond (APP=Fish Society)

    What to do if the contact of a APP does not respons. IT about APP=Fish Society of Global Agent Inc

    If the developer doesn't respond, there's really not much you can do. If you did not receive an in-app purchase, were overcharged for such a purchase, or the game just won't work, you can try contacting iTunes Store support:
    http://www.apple.com/support/itunes/contact/
    but they may just direct you back to the developer.
    Regards.

  • My iPhone 5 does not show caller name even though the number is saved with a name in contacts

    My iPhone 5 does not show caller name even though the number is saved with a name in contacts

    Contact your carrier. Caller ID is a carrier feature.

  • Printing Company Name

    I can't print company name to labels using address book. I've tried and tried. I've tried for hours! It prints contact name and address but not company name. Very frustrated! Anyone have a fix. Thanks very much for your help! Matt

    I know it's only a kludgy workaround, but I also put the company name as the first line of the address. At least that way it prints.
    --Colleen

  • App does not open! Subways Surfers game app.

    Hello! Subways Surfers does not open and i see a blue circle in the name app Plz help me the app does not open!
    App does not open. Diagnostic not registred the bug in ipod touch 5
    Store id as looked with Apple and me!  Plz Contact Apple for help!

    Best is contact the app developer.

  • My HP officejet 6000 E609n wireless does not print on envelopes.

    My HP officejet 6000 E609n wireless does not print on envelopes.  When I send an envelope address from the Microsoft Word envelope app, the envelope loads and then it  is send through the printer without printing on the envelope.  If instead of loading an envelope I load a plain sheet of 8x10.5 paper it will print the address as it should (side ways and on what would be an envelope).  I have had no problem printing envelope to my old DeskJet 930C with this Word envelope app.
    I load the envelopes without the 8x10.5 paper and the paper guide moved over to the edge of the envelopes up which are against the right side of the load table as indicated on the tray guide.  

    After many frustrating and fruitless attempts to solve this problem, including updating the drivers and following so many bits of advice from so many sources including contacting HP customer services by phone and email (who have not, so far, shown the courtesy of acknowledging my enquiry), I seem to have overcome the problem by cutting a piece of A4 paper along its length to a width, which when added to the envelope’s height, equals the width of an A4 sheet. For example, I use DL envelopes which have a nominal width of 110mm so the width of the piece of paper cut from A4 (which is 210 mm wide) is 100 mm. This strip is then temporarily attached to the envelope by piece of low tack tape (such as masking tape) running along and joining the paper and the envelope tabs. I feed this assembly of strip and envelope into the printer in the default position, (i.e. the envelope on the right hand side of the tray, face down with the sealing tabs on the left). The printer seems to treat this assembly as a piece of A4 and prints the address etc on the envelope correctly. The envelope is then easily detached from the tape without damage and I have found that this works many times as sufficient tack remains on the tape. I know this sounds a little complicated but it soon becomes a simple task.
    The HP Officejet 6000 printer has previously worked splendidly, printing envelopes from the Word 2007 envelopes function running on XP but has only recently malfunctioned since changing to Windows 7. For the record, I have also tried to print envelopes using the Word compatibility mode without success.

Maybe you are looking for

  • Reg:Variant Dependencies & Pricing

    Hi Gurus, I have configured up to the below mentioned steps. 1.Creation of Material Master Record with required settings 2.Creation of Characteristic and it's values 3.Craetion of class 4.Assign characteristics to Class 5.Create configuration profile

  • How can I sent photos as attachment rather than embedded in the email?

    For work, I need to send photos to my editor via email. In Mail, the jpgs automatically become embedded in the body of the the email, but my editor would prefer to receive them as attachments. Is there any way to send photos as attachments in Mail, r

  • Public folders are not in sync after settting up Replicas between Exchange 2003 and 2010

    I have setup Public Folder replicas between the 2 Exchange servers and I can see all the top and sub level folders. For those mailboxes that were migrated over to Exchange 2010,  I have noticied  a lower number of item contents in these fodders when

  • Vendor Management / Tracking the Product or Material

    Hi Friends: Is it possible to follow up on Vendor Management. the case study is as under : In an organization, the customer has a problem with the product, & the organization offers Customer Service ( which may be mapped in CS Module), in-house repai

  • Create a Connection on TREX for 2 systems with same SID

    Hello world, Here is my case, We have a PRO systems With SID=PRO On Host= production , and a Sandbox system with also SID=PRO On Host=SANDBOX now i need to create a connection in TREX in parallel so when i add the 2nd one it just edits the 1st one th