Problem with APEX_APPLICATION. G_F02 (i)...

Hello

I'm having problems with my report. I put an extra column with checkboxes in my report. The meaning of these checkboxes must send an e-mail to all employees who are activated. And it works. He sends me emails on the right. But I put data in my email that comes from the report itself. I also have a column with a list of selection based on a lov with the language of the employee.

APEX_ITEM. SELECT_LIST_FROM_LOV (4, "TBL_WERKNEMERS". "LANGUAGEID", "lov_taalkeuze") 'LANGUAGE' "

In the report, the employee's language is automatically selected in the select list and it works too. (I need a select list so that the user can change the language, if necessary, otherwise I could get it to my database). But when I want to my value to determine the language to use, it is not always fair. When I select all ranks, it works. But when I check for example that the first and the fifth line, then the first language is correct, but for the fifth line, it takes the value of the second row in my report (which has not been verified).
That is how I call these values

BECAUSE me in 1.APEX_APPLICATION. G_F01. COUNTING LOOP
SELECT v_emailid FROM TBL_EMAIL where report = 'Test' and taalid = APEX_APPLICATION emailid. G_F04 (i);
END LOOP;

So I think that the values in my APEX_APPLICATION. G_F01 are right, because I get emails on the right. But the APEX_APPLICATION values. G_F02, APEX_APPLICATION. G_F03, APEX_APPLICATION. G_F04,... are not because I think that all the values are stored when I loop through them the value according to the variable 'i' is returned.
Someone know how I can get the right value?

Any help would be greatly appreciated.

Bram.

Hello

The only way I can see that this work is have hidden instances of the EMPNO (or whatever the column that contains the user ID) and check these against the elements checked - the value of the check boxes would also EMPNO.

For example: [http://apex.oracle.com/pls/otn/f?p=267:97]

The SQL code for this is:

SELECT EMPNO,
ENAME,
APEX_ITEM.HIDDEN(1, EMPNO) || APEX_ITEM.HIDDEN(2, ENAME) || APEX_ITEM.CHECKBOX(3, EMPNO) TEST
FROM V_EMP

ENAME and EMPNO are hidden as I want to use in the code in the process.

and the code of the process is:

DECLARE
 vSELECTED VARCHAR2(1000);
BEGIN
 vSELECTED := ':';
 FOR x IN 1..APEX_APPLICATION.G_F03.COUNT
 LOOP
  FOR y IN 1..APEX_APPLICATION.G_F01.COUNT
  LOOP
   IF APEX_APPLICATION.G_F03(x) = APEX_APPLICATION.G_F01(y) THEN
    vSELECTED := vSELECTED || APEX_APPLICATION.G_F02(y) || ':';
   END IF;
  END LOOP;
 END LOOP;
 :P97_SELECTED := vSELECTED;
END;

P97_SELECTED shows just the ENAME values for checked items. The code loops through the checkboxes and then loops through the hidden elements of EMPNO - when it finds a match, it creates a string of the values of ENAME.

Andy

Tags: Database

Similar Questions

  • Problem with apex_application.g_f01

    HII...
    I have a table with a column 10.
    How I would come to know which column has received what a picture...
    like apex_application.g_f01, apex_application.g_f02, apex_application.g_f03...
    I want to write a validation on slot form of table, then...
    Please answer...

    Hello

    Run the page and inspect the HTML source of the page

    Kind regards
    Jari

  • Problem with APEX_APPLICATION. G_F01. COUNTY

    I'm on 5 APEX and trying to loop through the lines of an interactive report with a after submit process Page.

    I added an item hidden in my SQL IR:

    Select empno,

    "' < input type ="hidden"value =" "|" EmpNo | "" "name ="f01">"as "STUDENT_LIST"

    WCP

    I created a button on the page with the Submit Page action

    I create a Page process (Point after Submit - once a page visit) who uses apex_application.g_f01. COUNTY, but for some reason apex_application.g_f01. COUNTY is not defined. So my if LOOP don't process (see code below). Something was changing in APEX5 with apex_application.gxx.count that would prevent this from working?

    DECLARE

    l_dcid emp.empno%TYPE;

    BEGIN

    If apex_application.g_f01. COUNT > 0 then null;

    BECAUSE me in 1... apex_application.g_f01. COUNTING LOOP

    l_dcid: = apex_application.g_f01 (i);

    insert into mytable (DCID) values (l_dcid);

    END LOOP;

    on the other

    null;

    end if;

    END;

    Hi bobmagan,

    First edit this query:

    Select empno,

    '"like"STUDENT_LIST"

    WCP

    to something like this:

    SELECT EMPNO
        , APEX_ITEM.HIDDEN(1,EMPNO)||ENAME AS ENAME
    FROM EMP
    

    As you use a tag of entry in your query above, APEX will not be able to save it with APEX_APPLICATION session. G_FXX berries.

    Reference: See the example of application and treatment of samples given below the API APEX_ITEM. HIDDEN

    Change the column with APEX_ITEM attribute. HIDDEN, display as-> Standard report column

    Reference: If you do not find the column attribute Standard report see the following thread: APEX_ITEM. Question CHECKBOX2 in apex 5

    Finally, change your process of:

    DECLARE

    l_dcid emp.empno%TYPE;

    BEGIN

    If apex_application.g_f01. COUNT > 0 then null;

    BECAUSE me in 1... apex_application.g_f01. COUNTING LOOP

    l_dcid: = apex_application.g_f01 (i);

    insert into mytable (DCID) values (l_dcid);

    END LOOP;

    on the other

    null;

    end if;

    END;

    to do this:

    BEGIN
    
        FOR i in 1 .. apex_application.g_f01.COUNT LOOP
    
           insert into mytable (DCID) values (apex_application.g_f01(i));
    
        END LOOP;
    
    END;
    

    See the example for treatment in documentation APEX_ITEM. HIDDEN api.

    I hope this helps!

    Kind regards

    Kiran

  • Problem with page validation APEX_APPLICATion master detail.  Help!

    I'm having a problem with the Apex_Application.g_fxx data structure.  I'm trying to validate the lines in my page master detail and need to use apex_application.g_f10 as the name of the variable inside the HTML data source electricity.  The name of the item I need is "f10" because it matches the database column "status" on my page.  I'm trying to validate that all the detail items have the same status, or an error is reported.  I use the following PL/SQL block that returns a Boolean value:

    < code >

    declare
    l_first_value varchar2 (4000);
    Start

    -f10 = column PO_STATUS of PO_DETAILS table on a part as a table on the page.

    l_first_value: = apex_application.g_f10 (1);
    because me in 2... apex_application.g_f10. COUNTY
    loop
    If l_first_value! = apex_application.g_f10 (i)
    then
    Returns false;
    end if;
    end loop;
    Returns true;
    end;


    < code >

    The HTML data that I is not intended to "f10" are the following:

    < code >

    < td headers= "Status" class= "t20data" >

    < label for= "f10_0000" class= "hideMeButHearMe" >status< /label>

    < Select name="f10"  id="f10_0000">

    < option value= "" selected= "selected" >make a selection< /option> ""

    < option value= 'APPROVED' >APPROVED< /option>

    < option valeur= « FERMÉ » >FERMÉ< /option>

    </ Select >

    < entry type="hidden" name="f02" value=""  id="f02_0000" />

    < entry type="hidden" name="f03" value="30427" id="f03_0000" />

    < entry type= 'hidden' id= "fcs_0000" name= "fcs" value= "2158A9B101842608F4CA966C0BC1433D" >

    < entry type="hidden" id="frowid_0000" name="frowid" value="" />

    < entry type="hidden" id="fcud_0000" name="fcud" value="D" />

    </ td >


    < code >

    So I do not know why there could be a problem when used to work before this validation.  The PL/SQL block takes the first line of F10 data and compare it to successive lines.  If the data is not equal, then an error occurs and the user is prompted to adjust the data.

    It doesn't work anymore, although I checked and the status are still of points in F10.

    I left mouth gaping.  I do not use an official page master detail previously.  I used two separate front pages: one for the header and one for show master detail.  I've updated the page for the treatment of the more fluid user. I think that even if the data structure would be the same, but maybe I'm wrong.

    Any ideas?


    Thank you!

    Thank you to reproduce the problem so overall. Note that if you will share your workspace in this way you need to change your username to something else than a direct email address and don't use not the actual data for your test cases. Create a guest account to developer without administrator privileges to work space for the members of the forum to use.

    Validation in this app is coded to use a different picture of the description in this thread. Above, you have identified the point like g_f10 dashboard, but the validation code is using g_f09:

    declare
      l_first_value  varchar2(4000);
    begin
    -- f09 = PO_STATUS column of PO_DETAILS table
      l_first_value := apex_application.g_f09(1);
      for i in 2 .. apex_application.g_f09.COUNT
      loop
        if l_first_value != apex_application.g_f09(i)
        then
            return false;
        end if;
      end loop;
      return true;
    end;
    

    Therefore (thanks to instrumentation code added), the validation is running by using the values of the previous column, which was be the one that I have changed according to your instructions:

    0.09114

    0,00018

    ... Posting type "Status check IN." -: FUNC_BODY_RETURNING_BOOLEAN

    4

    0%

    0.09132

    0,00049

    ... Run the statement: select count (*) in the sys.dual where exists (Select 1 from PO_DETAILS where PO_ID =: P230_PO_ID)

    4

    0 g

    0.09181

    0,00015

    ...... Result = true

    4

    0%

    0.09196

    0.00573

    ... Run the statement: declare function x return boolean is begin declare

    l_first_value varchar2 (4000);

    Start

    -f09 = PO_STATUS table PO_DETAILS column

    l_first_value: = apex_application.g_f09 (1);

    apex_debug.message ('g_f09 (1): %s, l_first_value);

    because me in 2... apex_application.g_f09. COUNTY

    loop

    (apex_debug.message('g_f09(%s): %s, i, apex_application.g_f09 (i));

    If l_first_value! = apex_application.g_f09 (i)

    then

    Returns false;

    end if;

    end loop;

    Returns true;

    end;

    Returns a null value. end; begin wwv_flow.g_boolean: = x; end;

    4

    28%

    0.09769

    0.00005

    g_f09 (1): TEST2

    4

    0%

    0.09773

    0.00010

    g_f09 (2): TEST

    4

    0%

    0.09783

    0,00003

    ...... Result = false

    4

    0%

    0.09786

    0.00004

    ...... Does NOT pass

    I created a new liquidation which uses the correct column, but at some point the validation passes and data, so I didn't get a chance to conduct tests.

  • Problems with the construction of a tabular form manually

    Hello guys,.

    I would ask kindly for your help. I'm having a problem with the fields on a report updateble in my APEX application.

    The report I have two fields that im done with the htmldb_item function. One is the ID of the record and the other attribute that can be updated using a selection list.

    -----
    SELECT
    htmldb_item. DISPLAY_AND_SAVE (1, "TABLE".) "ID") "ID", "
    htmldb_item. SELECT_LIST_FROM_LOV (2, "TABLE".) "ATTRIBUTE", "LOV") "ATTRIBUTE", "
    THE "TABLE".
    -----

    Then I have a process that needs to update the table.

    -----
    BEGIN

    BECAUSE me IN 1.htmldb_application. G_F01. COUNTY
    LOOP

    apex_application.g_print_success_message: = ' < span style = "color: green" > attribute: ' | NVL (htmldb_application. G_F02 (i), 0). » ID : ' || htmldb_application. G_F01 (i) | "</span > ';

    UPDATE table
    Attribute SET = NVL (htmldb_application. G_F02 (i), 0)
    WHERE id = htmldb_application. G_F01 (i);

    END LOOP;
    END;
    -----

    The update can't even if the loop works fine, but the success message prints only the htmldb_application. G_F02 (i) but not the htmldb_application value. G_F01 (i). But how come doesn't work OK if loop the htmldb_application. G_F01 (i) has the value null?

    The funny thing is, that it works on my test environment, but he behaves like this on the production environment.

    Has anyone else have similar experiences?

    Kind regards
    Aleš

    Edited by: user1330618 the 21.12.2009 04:28

    Hello

    Its done.

    The record button was just redirection without submitting the page, it's him not display the message or the recording of the information...

    now, the button is present and redirect...

    Kind regards
    Shijesh

  • Problem with editable report

    I got in trouble for days.

    I have an updated report updated
    select 
    p.system system
    ,p.config config
    ,apex_item.display_and_save(9,p.jobname) jobname
    ,apex_item.display_and_save(3,p.parameter) ||
    APEX_ITEM.MD5_CHECKSUM(p.parameter,p.value_char,p.value_number,to_char(p.value_date,'dd.mm.yyyy'),p.param_set) ||
    apex_item.hidden(2,rownum) parameter
    ,p.value_char value_char_current 
          ,APEX_ITEM.TEXT(4,p.value_char,20,128) value_char_new
    ,case when p.parameter in ('OBJINCID', 'HISTTRANSFERID') then '<span style="color:#000000;font-weight:bold">'||p.value_number||'</span>' 
                else to_char(p.value_number) end  value_number_current
    ,APEX_ITEM.TEXT(5,p.value_number,10) value_number_new
    ,case when p.parameter = 'TRANSFERDAY' then '<span style="color:#000000;font-weight:bold">'||to_char(p.value_date,'dd.mm.yyyy')||'</span>' 
                else to_char(p.value_date,'dd.mm.yyyy') end value_date_current
    ,APEX_ITEM.DATE_POPUP2(6,p.value_date,'DD.MM.YYYY','15','10','style=""',null,null,null,null,null,'both',null,'MONTH_AND_YEAR') value_date_new
          ,apex_item.display_and_save(7,p.param_set) param_set
          ,apex_item.display_and_save(8,p.param_type) param_type
    from etl_job_param p, etl_job_config c
    where p.config = substr(:P285_CONFIG,instr(:P285_CONFIG,'_')+1) 
    and p.system = :P285_SYSTEM
    and p.system=c.system 
    and p.config=c.config
    and p.jobname=c.jobname
    order by jobsequence
    It works well and data are saved using a process page
    declare
      v_count_failed     number := 0;
      v_count_updated    number := 0;
      v_count_failed2    number := 0;
      v_count_updated2   number := 0;
    
    
    begin
    
      for i in 1 .. apex_application.g_f02.COUNT loop
      --{
        if wwv_flow_item.md5(apex_application.g_f03(i)
                               ,apex_application.g_f04(i)
                               ,apex_application.g_f05(i)
                               ,apex_application.g_f06(i)
                               ,apex_application.g_f07(i)
    )
    
        <> apex_application.g_fcs (i) then
          --{   
            p_sup_mnt_apx.pr_230_update_params(
                                        :P285_SYSTEM
                                    -substr(:P285_CONFIG,instr(:P285_CONFIG,'_')+1)
                        ,apex_application.g_f09 (i) 
                        ,apex_application.g_f03 (i) 
                        ,apex_application.g_f07 (i) 
                        ,apex_application.g_f04 (i) 
                        ,apex_application.g_f05 (i) 
                        ,to_date(apex_application.g_f06 (i),'DD.MM.RRRR')   
                        ,apex_application.g_fcs (i)  
                        ,v_count_failed
                        ,v_count_updated);
    
            
            v_count_failed2 := v_count_failed2 + v_count_failed;
            v_count_updated2 := v_count_updated2 + v_count_updated;
        
            --reset variables
            v_count_failed  := 0;
            v_count_updated   := 0;
        --}
        end if;
      --}
      end loop;
    
      :P285_COUNT_FAILED := v_count_failed2;
      :P285_COUNT_UPDATED := v_count_updated2;
    
    END;
    What I have to do is set the value of column value_number_new to null if another pass has a certain value.
    So I replaced
     ,APEX_ITEM.TEXT(5,p.value_number,10) value_number_new
    with
    ,case when p.parameter in ('OBJINCID', 'HISTTRANSFERID') then null
                else APEX_ITEM.TEXT(5,p.value_number) end value_number_new
    It appears correctly, but database update fails.
    If I put the old code and just manually delete the data in the form and save, then it works.

    Please help, it drives me crazy

    Gus

    Published by: Gus C February 6, 2013 03:24

    It should work for you now. It allows the management of exceptions.

    Denes Kubicek
    -------------------------------------------------------------------
    http://deneskubicek.blogspot.com/
    http://www.Apress.com/9781430235125
    http://Apex.Oracle.com/pls/Apex/f?p=31517:1
    http://www.Amazon.de/Oracle-Apex-XE-Praxis/DP/3826655494
    -------------------------------------------------------------------

  • problem with checkbox on the tabular form

    (All my friends at the time of deperate) Hi,

    I have a tabular form on a page, which I use for adding record only. So it always shows me a blank line, which is ready to be inserted after the user has filled in the data and click on the "submit" button.

    Now, I have a field check box on this form of table. Since all the columns that I show as null, I also shows this check box cleared when page appears. This is the query for the region of origin of this form:

    SELECT "Customer", null
    NULL "currency."
    HTMLDB_ITEM. CheckBox(40,'YES',null) critical_box,
    OF the double

    I used the 'YES' as return value of this checkbox (when the user checked, otherwise I guess that's not equal to 'YES').

    I have my own update process, which gets triggered when clicking on 'submit '.
    It's my insert clause in this update process:
    INSERT INTO table1
    (customer, currency, critical_level)
    values
    (APEX_APPLICATION.g_f01 (i), APEX_APPLICATION.g_f02 (i), decode (APEX_APPLICATION.g_f40 (i), 'YES', 'YES', 'NO')


    Now the problem is that when I click on checkbox and save it, it adds record correctly. But when I click on check box when you insert, I get error message no data available. It must insert 'NO' for the 3rd column when the check box is not clicked.

    Please help here. Not sure why its not giving no data found error when unchecked the checkbox on the form of tables.

    Thank you and best regards,
    Rave.

    Sorry, this one is out of date, try this

    http://HTMLDB.Oracle.com/pls/OTN/f?p=31517:219

    Here are a few related threads you might be interested.

    Re: Boxes to check off and go to the other fields in the table
    Re: Problem in selecting the checkbox values
    Tabular presentation - box

  • problems with, phone, 6, Bluetooth kit, Nissan, after update, for, Rios, 1.0.2

    After the update to ios 10.0.2 - trying to use bluetooth to call my vehicle, it says: "this article is not in your phone book." How can I solve this problem?

    Greetings, joybelino1!

    Thank you for joining the communities Support from Apple! I can't wait to see that you are having problems with your Bluetooth in your car! The good news is that Apple has a great article that will help you with measures to try to resolve the problem. Read this article to gethelp to connect your iPhone, iPad, or iPod touch with your car radio. Even though he talks about problems with the connection, it also has the steps for other questions you may have once connected.

    If you use Bluetooth

    1. Consult the user manual of your car stereo to get the procedure to a Bluetooth device.
    2. On your iOS device, drag up to open Control Center, then press ontwice to turn on Bluetooth and turn it back on.
    3. Restart your iOS device.
    4. On your iOS device, Cancel the twinning of your car radio. On the screen of your car désapparier your iOS device and any other device. Restart your car and your iOS device, then pair and connect again.
    5. Update your iOS device.
    6. Install the updates to the firmware of your car radio.
    7. If you still not connect, contact Apple technical support.

    Have a great day!

  • Anyone having problems with WiFi connectivity after upgrade to Sierra?

    I was wondering if anyone else knows issues with WiFi connectivity since the upgrade to Sierra 10.12? I have not had any problems with connectivity WiFi previously on El Capitan. Now I have regular randomly loose connectivity. My internet is cable and when it is connected I have a 100% connection. My details of iMac and I have used only 10% of my storage.

    No problem with my iphone 6.

    Hello AspDesigns,

    I understand that, since the upgrade to Mac OS Sierra, your Mac seems to have trouble staying connected to Wi - Fi. Fortunately the diagnosis built-in wireless can help identify the source of so much trouble.

    Search for Wi - Fi using your Mac problems

    See you soon!

  • Problems with mail after switching to macOS Sierra

    Hey all

    After having recently upgraded to macOS Sierra, I am unable to read my mail.

    I get the following error every time I check on "Get Mail".

    There may be a problem with the mail server or the network. Check the account settings "*" or try again.

    The server returned the error: Mail could not connect to the server 'pop1.tribcsp.com' using SSL on the default ports. Verify that this server supports SSL and that your account settings are correct.

    What does this error message mean and how can I solve this problem.

    Thank you

    Hi Michael,

    I see your message that you get an error in the mail indicating that there is a problem with the mail server or the network.  To help get this problem resolved, I suggest that you follow the steps below:

    If mail refers to a problem with the mail server, or the network

    Mail will say that it is impossible to connect due to a problem with the mail server or the network. For example, the message may refer to a connection that has expired, or too many simultaneous connections:

    If you are connected to the Internet, but the connection has expired, your email provider might be affected by a discontinuance of service. Contact them or see their status Web page to ensure that their e-mail service is online. Examples of status pages:

    If the message indicates the number of simultaneous connections, too many of your devices is check your e-mail account at the same time. Quit Mail on one or more of your other devices.

    If you are still unable to send or receive e-mails

    1. Make sure that you have installed latest version of the Mac software updates, especially if the problem occurred immediately after the installation of a previous update.
    2. In OS X El Capitan or later version, you can see a status icon and the short error message in the upper right of the Mail window, under the search box. The message may indicate 'Network offline' or 'Connection failed', for example. Click the message to see more details on the issue.
    3. Check your connection to the Mail connection doctor. It might be able to say more on the issue.

    If you cannot send or receive e-mail on your Mac.

    Take care.

  • iMac 27 "mid-2011 - Intermittent problem with CPU fan running at full speed and sleep mode.

    Hello!

    My iMac 27 "has an intermittent problem with the CPU fan runs at full speed. Sometimes it happens at the time when I start it, sometimes only in my session, and sometimes only after a certain time. So does seem to be a problem of "heating".

    Second issue is with the mode 'sleep'. It may occur also at any time, at the start of the iMac, session, or after a certain time. But once he starts to go in mode 'sleep', when I wake up, it goes right back in mode after a few seconds and that it will continue indefinitely until I restart the computer.

    What could be?

    Please help me!

    4ntoine

    Here is my model of iMac:

    iMac 27 "mid-2011 model 12.2

    Intel Core i7 3.4 GHz

    AMD Radeon HD 6970M 1024 MB

    OS X El Capitan 10.11.6
    SMC 1.72f2

    Boot ROM IM121.0047.B23

    reset the SMC

    Reset the management system (SCM) controller on your Mac - Apple Support

  • problem with playing the clash of clans

    I'm having some problems while playing the clash of clans on my 2 mini ipad screen does not seem to meet sometimes as if it was some sort of delay so I have to tap several times in order to use a filter or throw the troops on the battlefield.

    Hi Trinitygr,

    Thanks for posting in the Community Support from Apple! I understand that you are having problems with your iPad screen while playing a game. I like to play games on my iPad and I don't see how this could be a nuisance. I'm happy to offer assistance.

    Are you only had this problem when using the app clash of Clans, or does it happen in all applications? I recommend to start by following the steps described in this article:
    If an application you have installed unexpectedly closes, unresponsive, or does not open

    Take care!

  • I'm having problems with an outdated Apple ID

    I have problems with updating Apps etc in my Apple account because he always asked an obsolete in sign.  How can I change this?

    Hello

    Go down to itunes apple ID Delete page homepage all ID and then add it back back.

    See you soon

    Brian

  • Anyone having problems with the new iPhone LTE connection 7 on Verizon?

    I am now on my iPhone second 7 with Verizon. I had four phones for me and my family. I have now had issues where I have no signal in the same areas where my signal allows to be strong. I can't solve the problem with the activation/deactivation of the airplane and then mode again in normal mode. My phone will rest with no signal for 5 minutes, then going to LTE with three bars. I also had the problem where I had only 1 x signal, while my son standing right next to me has LTE. And he had the same questions, where I'm on LTE and it gets no signal. I use to have LTE where I live and work all the time, now it's spotty at best. Apple has replaced me and my sons iPhones but not luck. Still do. Any ideas or an any other suffering?

    (1) go to settings/cell phone/cellular data Options/enable LTE and select ONLY the DATA. This seems to solve the problem (as a temporary solution) for most of the people affected by this problem. The bad part is your request might not be as clear (since they cannot use the highest LTE signals) and you can make calls and data at the same time. But it does not solve the issue.

    (2) there are rumors (but you didn't hear that from me that we only are not supposed to discuss beta software program Apple in this forum) that the new version of Apple Beta for iOS (which also includes an update of the software carrier Verizon to 26.0) seems to solve this problem. So, there's a light at the end of the tunnel.

  • Problem with some fonts of symbols after the installation of the Sierra

    Hello

    I have recently upgraded the OS on my iMac late 2012 for Sierra, since doing so, I noticed a problem with several fonts.

    All symbolic symbols Apple to Wingdings fonts not correctly displayed in the font book. Apple symbols looks like a standard wheelbase of san, and other symbolic fonts just show as question marks '?' where the images should be.

    In text editing, that I can't even see the symbolic fonts like Zapf Dingbats and Wingdings in the selector. However, they all work well in Adobe Illustrator (CS5) and Microsoft Word 2011. Apple symbols still looks like a standard font.

    I already tried the following:

    1. check the fonts in font book

    2 fix the duplicates in the font book

    3. using the "Restore Standard fonts" option in the font book

    4 deleting a file in the folder Preferences plist Fonts

    5 deleted the cache of police and the database

    I'm out of ideas. Has anyone else had the same problem found a fix?

    Kind regards

    Greville

    I'm just to add that I used the recovery partition to do a clean install of Sierra on a hard drive external and then booted into it to see if it had the same problem.

    And he does. Wingdings and other photo fonts appear as '?' in boxes where the letters must be in the font book.

    So this seems like a problem with the way Sierra displays these fonts, not with the font files themselves.

Maybe you are looking for

  • my phone has weird colors

    Hello I have an iPhone 6s more edition rose gold just for a month never dropped it or nothing, but my phone has weird colors that took it back too my phone carrier and they said id have to buy a new phone, but I just got this phone and has nothing to

  • What macbook to buy?

    I have a late 2011 Macbook pro with a processor i5 2.4 GHz, 8 GB of RAM and a 256 gb SSD, I put in me. It works really well and I'm perfectly happy with the speed. What model would now give similar performance? I'm looking for the cheapest option and

  • Error in the HARD drive test

    Hello I have run Long DST test and test HDD failed. Failure of ID M4M5BW-6B879U-QFPK0K-61EC03 Product ID C5D27ES The laptop is slow and HARD drive is slow. Can you tell me what is the problem?

  • Movie Maker accepts is not .mov files

    My camera takes movies in .mov format.  I can't use this format for Windows Movie Maker.  How to convert .mov to something Movie maker can use but not loose resolution?

  • Find the table of characters on my computer if it is not in the accessory file

    I write a scientific article for the school and could not find the table of characters on my computer.  I looked in Accessories - System Tools and nothing.  I should I reinstall or at least find a site online that will show you the appropriate key st