AF:convertNumber group of BUG?

Hi all

Problem is for example when there are 4 digits of the integer part... grouping does not work...
and let it be said that the rule is when there are 3n + 5 (n & gt; 0) digits of the integer part, the first 5 digits are not separated.

That's how it should work or meybe BUG?

Example code:
<af:inputText label="Label 1">
  <af:convertNumber groupingUsed="true" minFractionDigits="2"/>
</af:inputText>{code}

Thanks in advance,
s o v i e t                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                

Soviet salvation,

Not sure what you mean. I just copied your code snippet and pasted into a page JSPX and tested by entering numbers in the field and by submitting the page. I got:

typed-online result

1.23-1.23 online
12.34-online 12.34
123.45-online 123.45
1234.56-online 1,234.56
12345,67-online 12,345.67
123456.78-online 123,456.78
1234567.89-online 1,234.567.89

So either something's different in your environment, or I've misunderstood your question.

Best,

John

Tags: Oracle

Similar Questions

  • APEX 4.1.1 group fixes bug?

    Hello
    After applying 4.1.1 APEX group of patches, I have strange behaviors in the APEX.
    When I try to edit interactive reports, from time to time I get the following error message:


    Error
    Error processing line.

    ORA-02290: check constraint (APEX_040100.WWV_VALID_PLUG_DISPPOINT) violated


    And when I have no error message when you change the attributes of interactive reports, the section bar research poster several box with the following text:
    There are (SQL query returns at least one row)
    NOT Exists (SQL query returns no line)
    SQL expression
    PL/SQL expression
    Function body of PL/SQL returning a Boolean
    Request = Expression 1
    Ask! = Expression 1
    Request is contained in the Expression 1
    Request is NOT contained in the Expression 1
    Point value / Expression 1 column = Expression 2
    Point value / Expression 1 column! Expression 2 =
    ...
    There are 60 box with conditions like above.

    Any help or advice would be appreciated.

    Thank you

    SD

    Hi Sebastian,.

    I recommend that you contact the Oracle Support for help on this issue.

    I followed your steps exactly (11 GR 2, APEX 4.1 DB, installed French, applied APEX 4.1.1 patch set). The only difference that I see my DB character occupies is AL32UTF8. But I don't meet any possible mistakes when editing an interactive report. If Oracle Support can reproduce it, so I hope that we can further diagnose. My suspicion is that this is a bug of underlying database with pipeline table functions - we'll see.

    Joel

  • not an expression GROUP BY - bug in Oracle 10 g?

    Hello
    I'm 00979. 00000 - "not a GROUP BY expression" error on Oracle 10g 10.2.0.4.0 - Production 64-bit.

    To illustrate my problem, I have created following the example.
    Think I have a shop with clothes. Whenever I sell something, I store this information in the database - storage in real time, type of clothing (pants, socks,...) and the size of the room (M, L, XL,...).
    Now, the system account statistics every hour. So he's going thru the table with parts sold and counts the number of pieces by clothing type and size from the start of the day. It is important to realize that it is since the beginning of the day. For this reason, the number of pieces sold in the statistical table grows every hour (or is at least on the same value as in the previous hour).

    Now, this table, I need to make new statistics. I want a statistic how many pieces by size, I sold every hour.
    I created this application for this:
    SELECT TIME, xSIZE, (SOLD  - NVL((SELECT SUM(S1.SOLD)
                                      FROM STATISTICS S1
                                      WHERE S1.xSIZE = S.xSIZE
                                        AND TRUNC(S1.TIME, 'HH24') + 1/24 = S.TIME
                                        AND TO_CHAR(S1.TIME, 'HH24') != '23'
                                        AND S1.xSIZE IS NOT NULL
                                      GROUP BY TRUNC(S1.TIME, 'HH24'), S1.xSIZE),0)) SOLD
    FROM(
    
    
    SELECT TRUNC(S.TIME, 'HH24') TIME, S.xSIZE, SUM(S.SOLD) SOLD
    FROM STATISTICS S
    WHERE S.xSIZE IS NOT NULL
    GROUP BY TRUNC(S.TIME, 'HH24'), S.xSIZE
    --ORDER BY 1 DESC
    ) S
    ORDER BY TIME DESC, xSIZE ASC
    First I select the number of pieces sold by time and by size. To get the number of pieces sold for specific time, I need to subtract the value of number of pieces sold of the previous hour. I decided to do it with a parameter query.
    Runs the query like this I don't get "a GROUP BY expression" error. However, if I Uncomment 'ORDER BY DESC of 1' statement, the query works. I'm sure that he must do something with this line:
    AND TRUNC (S1. TIME, 'HH24') + 1/24 = S.TIME

    If you change the query like this:
    SELECT TIME, xSIZE, (SOLD  - NVL((SELECT SUM(S1.SOLD)
                                      FROM STATISTICS S1
                                      WHERE S1.xSIZE = S.xSIZE
                                        --AND TRUNC(S1.TIME, 'HH24') + 1/24 = S.TIME
                                        AND TO_CHAR(S1.TIME, 'HH24') != '23'
                                        AND S1.xSIZE IS NOT NULL
                                      GROUP BY  S1.xSIZE),0)) SOLD
    FROM(
    
    SELECT TRUNC(S.TIME, 'HH24') TIME, S.xSIZE, SUM(S.SOLD) SOLD
    FROM STATISTICS S
    WHERE S.xSIZE IS NOT NULL
    GROUP BY TRUNC(S.TIME, 'HH24'), S.xSIZE
    --ORDER BY 1 DESC
    ) S
    ORDER BY TIME DESC, xSIZE ASC
    Join the removed occasionally truncated tables and grouping truncated at the time--> the query does not lack...
    And now the best... If you run the first query on Oracle 11 g (11.1.0.6.0 - 64 bit Production version), it works.
    Anyone know why the first query does not work on 10g? Are there bugs and limitations for this version of server?
    Please don't tell me to rewrite the query in a different way, I already did, to make it work on 10g more. I'm just curious as to why it does not work on 10g.

    Finally, here are some data for the test.
    CREATE TABLE STATISTICS(
      TIME DATE DEFAULT SYSDATE,
      TYPE VARCHAR2(20),
      xSIZE VARCHAR2(2),
      SOLD NUMBER(5,0) DEFAULT 0
    )
    
    
    INSERT INTO STATISTICS(TIME, TYPE, xSIZE, SOLD) VALUES(SYSDATE - 2/24, 'T-Shirt', 'M', 10);
    INSERT INTO STATISTICS(TIME, TYPE, xSIZE, SOLD) VALUES(SYSDATE - 2/24, 'Socks', 'M', 3);
    INSERT INTO STATISTICS(TIME, TYPE, xSIZE, SOLD) VALUES(SYSDATE - 2/24, 'T-Shirt', 'L', 1);
    INSERT INTO STATISTICS(TIME, TYPE, xSIZE, SOLD) VALUES(SYSDATE - 2/24, 'Socks', 'L', 50);
    INSERT INTO STATISTICS(TIME, TYPE, xSIZE, SOLD) VALUES(SYSDATE - 2/24, 'Trousers', 'XL', 7);
    INSERT INTO STATISTICS(TIME, TYPE, xSIZE, SOLD) VALUES(SYSDATE - 2/24, 'Socks', 'XL', 3);
    
    
    INSERT INTO STATISTICS(TIME, TYPE, xSIZE, SOLD) VALUES(SYSDATE - 1/24, 'T-Shirt', 'M', 13);
    INSERT INTO STATISTICS(TIME, TYPE, xSIZE, SOLD) VALUES(SYSDATE - 1/24, 'Socks', 'L', 60);
    INSERT INTO STATISTICS(TIME, TYPE, xSIZE, SOLD) VALUES(SYSDATE - 1/24, 'Trousers', 'XL', 15);
    INSERT INTO STATISTICS(TIME, TYPE, xSIZE, SOLD) VALUES(SYSDATE - 1/24, 'Socks', 'XL', 6);
    Edited by: user12047225 the 20.9.2011 23:12

    Edited by: user12047225 the 20.9.2011 23:45

    This is a known issue when the optimizer decides to expand the online display. You can add something (outside of ORDER BY you already used) in online mode to prevent the optimizer from its expansion. For example:

    SQL> SELECT  TIME,
      2          xSIZE,
      3          (SOLD - NVL(
      4                      (
      5                       SELECT  SUM(S1.SOLD)
      6                         FROM  STATISTICS S1
      7                         WHERE S1.xSIZE = S.xSIZE
      8                           AND TRUNC(S1.TIME, 'HH24') + 1/24 = S.TIME
      9                           AND TO_CHAR(S1.TIME, 'HH24') != '23'
     10                           AND S1.xSIZE IS NOT NULL
     11                           GROUP BY TRUNC(S1.TIME, 'HH24'),
     12                                    S1.xSIZE
     13                      ),
     14                      0
     15                     )
     16          ) SOLD
     17    FROM  (
     18           SELECT  TRUNC(S.TIME, 'HH24') TIME,
     19                   S.xSIZE,
     20                   SUM(S.SOLD) SOLD
     21             FROM  STATISTICS S
     22             WHERE S.xSIZE IS NOT NULL
     23             GROUP BY TRUNC(S.TIME, 'HH24'),
     24                      S.xSIZE
     25           --ORDER BY 1 DESC
     26          ) S
     27    ORDER BY TIME DESC,
     28             xSIZE ASC
     29  /
             SELECT  TRUNC(S.TIME, 'HH24') TIME,
                           *
    ERROR at line 18:
    ORA-00979: not a GROUP BY expression
    
    SQL> SELECT  TIME,
      2          xSIZE,
      3          (SOLD - NVL(
      4                      (
      5                       SELECT  SUM(S1.SOLD)
      6                         FROM  STATISTICS S1
      7                         WHERE S1.xSIZE = S.xSIZE
      8                           AND TRUNC(S1.TIME, 'HH24') + 1/24 = S.TIME
      9                           AND TO_CHAR(S1.TIME, 'HH24') != '23'
     10                           AND S1.xSIZE IS NOT NULL
     11                           GROUP BY TRUNC(S1.TIME, 'HH24'),
     12                                    S1.xSIZE
     13                      ),
     14                      0
     15                     )
     16          ) SOLD
     17    FROM  (
     18           SELECT  TRUNC(S.TIME, 'HH24') TIME,
     19                   S.xSIZE,
     20                   SUM(S.SOLD) SOLD,
     21                   ROW_NUMBER() OVER(ORDER BY SUM(S.SOLD)) RN
     22             FROM  STATISTICS S
     23             WHERE S.xSIZE IS NOT NULL
     24             GROUP BY TRUNC(S.TIME, 'HH24'),
     25                      S.xSIZE
     26           --ORDER BY 1 DESC
     27          ) S
     28    ORDER BY TIME DESC,
     29             xSIZE ASC
     30  /
    
    TIME      XS       SOLD
    --------- -- ----------
    20-SEP-11 L           9
    20-SEP-11 M           0
    20-SEP-11 XL         11
    20-SEP-11 L          51
    20-SEP-11 M          13
    20-SEP-11 XL         10
    
    6 rows selected.
    
    SQL> 
    

    Or use the subquery factoring (WITH clause) + undocumented hint of MATERIALIZATION:

    SQL> WITH S AS (
      2             SELECT  /*+ MATERIALIZE */ TRUNC(S.TIME, 'HH24') TIME,
      3                     S.xSIZE,
      4                     SUM(S.SOLD) SOLD
      5               FROM  STATISTICS S
      6               WHERE S.xSIZE IS NOT NULL
      7               GROUP BY TRUNC(S.TIME, 'HH24'),
      8                        S.xSIZE
      9             --ORDER BY 1 DESC
     10            )
     11  SELECT  TIME,
     12          xSIZE,
     13          (SOLD - NVL(
     14                      (
     15                       SELECT  SUM(S1.SOLD)
     16                         FROM  STATISTICS S1
     17                         WHERE S1.xSIZE = S.xSIZE
     18                           AND TRUNC(S1.TIME, 'HH24') + 1/24 = S.TIME
     19                           AND TO_CHAR(S1.TIME, 'HH24') != '23'
     20                           AND S1.xSIZE IS NOT NULL
     21                           GROUP BY TRUNC(S1.TIME, 'HH24'),
     22                                    S1.xSIZE
     23                      ),
     24                      0
     25                     )
     26          ) SOLD
     27    FROM  S
     28    ORDER BY TIME DESC,
     29             xSIZE ASC
     30  /
    
    TIME      XS       SOLD
    --------- -- ----------
    20-SEP-11 L           9
    20-SEP-11 M           0
    20-SEP-11 XL         11
    20-SEP-11 L          51
    20-SEP-11 M          13
    20-SEP-11 XL         10
    
    6 rows selected.
    
    SQL> 
    

    SY.

  • Skype doesn't send messages, graying of the message boxes *, and not to let me host called Jugendherberge

    I had this problem a few days ago. (now 3-4) (On Windows 10 BTW)

    I think it has something to do with the new update (7.8.0.102) and back lightly and demotion to 6.15 decommissioning does not help

    This issue by performing all my Skype groups

    E-mail between people still works

    and appealed, but calls from groups and cat do not work correctly

    Group of Bugs:

    Currently the groups before the bug submit messages but allow you to add more keep waiting

    My main group Skype that I tried to get the deletion myslef and readded currently displays 'unavailable Messenging.

    Showing new groups of Skype after "Instant Messaging is not available. Get your friends to update or wait outside. "

    I cannot allow the appeal on one of my groups, but these groups can call me, if I leave early in the call, that I can't come back until the call is completely restarted by the host.

    What I had so far in attempt to solve this problem:

    To resolve this problem, I went trough most of all these fourms and tried the solutions and even made a few returning tab stop

    I turn off my firewall and Antivirus temporily, it did not work

    I started Skype with Windows with networking safe mode, same problems

    I deleted appdata and uninstall Skype in various orders, same problem

    Installed older versions of Skype 6.15, same problems

    I had a user to work with the same version of Skype on their PC, log in to my PC, same results

    I went in 'Internet Options' and removed my restricted sites and lower my security guards to see if it is a question (medium-low BTW), no result (I have back Skype House, which is a nice)

    Things that work strangely

    Using Firefox for Skype web allows me to take calls and use the chat, even if his unvaible through my client. Although it has bugs 1 where my call button becomes gray on online even after his time.

    I build you want to see what difficulty problem and if you want a

    TLDR . for all the foregoing. I think that Skype does not have anything to do with this side installation and removal of appdata folder + delete the installation folder after uninstaltion is the fixation not question

    PS: I still need to draw myslef in my system32 host file to see if something is crash through that (I have no idea how my host file works but he assigned areas in there for some reason any)

    Solved my problem, is my file Host Windows > System32 > drivers > ect

    The file was made so that I didn't relize I chound't edit it with Notepad without permissions. Also, I don't remember adding anything, oh well. Long story short, if someone of you internet searches want my advice on what to do. Copy the entries in your host file maded in programs "example: Uncheacky and SpyBot (it will be listed in those that are made by WHO).» Copy to entries in a regular text on your desktop file. Delete your actual host file in the above Director, deal with time your entries sought this last and like to talk to your friends again.

  • Bug in the transition from the groups of tabs when the mouse is over a tab

    I use two groups of tabs, each around 3-10 tabs open. I press Ctrl +' to switch between groups of two tabs. Everything works fine except when I have the chance to have the mouse cursor positioned on a tab when I press Ctrl +'. In this case, Firefox seems to get confused and I get an unpredictable mixture of the two groups of tabs tabs. I have to then move mouse tab and then press Ctrl +' twice to the tab group good I tried to move on. It's boring.

    I think it started in FF29, but I'm not sure.

    First of all, I would like to confirm that it is a bug. Secondly, I would like to see it attaches. I tried to find info on this several times without success. Anyone know anything about this?

    Thank you.

    OK nevermind, I did some more research and found a bug in Bugzilla for it. The bug has been fixed and I've confirmed with a night generation. Looking forward from the set in a regular release.

  • [Bug] Duplicate groups

    Dear Skype support / users.

    It seems that user in the era of MSN groups, I had created recently started to reproduce themselves, which is obviously very embarrassing.

    • No idea why this is happening?
    • How can I easily fix?
    • Is this some sort of bug that will be fixed anytime soon?

    I use the desktop client, but also sometimes use the email client installed in Outlook.com (although this version/site apparently has issues with Adblock Plus ).

    Kind regards

    R

    Too bad. I see Skype latest version 7.22.85.104 has solved this bug.

  • Bug page for global pages group?

    Hello

    When you assign a group of pages (page zero) to a world, I get the following error

    Our environment is Oracle 11.2.0.3, apex 5.0.1 listener apex 2.0.1.

    I was able to reproduce the problem apex.oracle.com.

    Alan

    pagegroup.JPG

    Hi Alan,

    Please let us know! It is indeed a bug and I tabled

    Bug 21605583 - creator of the page: ora-01407 when changing global page attributes

    This problem occurs if none of the attributes at the level of a global Page (aka Page zero) page is changed.

    Solution: Use the view component for this change.

    Concerning

    Patrick

  • 4EA2: Group bug suggestion?

    I think that there is a bug with the Group auto suggest feature. I have a query that looks like this (goes on dba_hist_ views)

    Select trunc (dt) as sum (piod) tot_piod, sum (liod) tot_liod, sum (execd) num_execs, x.sql_id, dt sum (cpud) tot_cpu, sum (elad) tot_ela, round (sum (elad) /greatest (sum (execd), 1), 3) avg_ela , round ((sum (liod) /greatest (sum (execd), 1))) avg_lio x, y where x.sql_id = group x.sql_id y.sqlid, trunc (dt)

    The function of group-by-suggest think trunc (dt) in the group by clause, is not needed and suggests that I remove it, but if you take off, you get ora - 979. Bug?

    Post edited by: rjamya, corrected typo

    I saw that too.  The problem seems to be caused by the column alias.

    https://forums.Oracle.com/thread/2583234

  • AECC BUG? Photoshop groups is no longer the import with layer styles?

    Hello.

    I noticed something small.  But important to me.

    Import from a psd into After Effects works beautifully.  But in previous versions, when you import a psd model group resulting retains the layer styles.  This happens is no longer for me in CC.

    Everyone there this problem?

    Is this by design?

    Is this a bug?

    He will be back?

    Thanks for looking,

    -Josh

    After Effects has never read the layer on a group styles in a PSD file. Application of layer groups styles is a new feature in Photoshop CS6. After Effects CS6 and CC are not last updated to read the layer styles applied to groups.

    IOW, we just never wrote the code to make it work. I suspect that you were using a different method (for example, workaround below) to provide for several layers of Photoshop layer styles in After Effects.

    You can work around this limitation by transforming your group in a smart object layer. Right-click on the group in the layers panel, and then choose Convert to smart object. You will now see the styles of layer on the associated layers in AE, but styles will be editable and PSD layers will be merged unfolded, not a nested model.

    Please submit a feature request for all the features (like reading the layer on the groups styles, or editable on the smart objects layer styles, or to import dynamic objects as nested compositions) that you would like to have added to After Effects:

    http://www.Adobe.com/go/wish

  • Problem with attribute in the details group ordimage (maybe a bug?)

    Hello

    JDeveloper: 11.1.1.4
    JHs: 11.1.1.3.35

    I have a retail group that contains an attribute ordimage among other attributes, but it does not show the image as it shows the other attributes of the Group detail correctly. While running, he throws java.lang.ArrayIndexOutOfBoundsException the "row = rows [0];" statement in the oracle.jheadstart.ord.html.OrdPlayMediaServlet.renderContent () method. The main reason for this error is apparently that the viewobject vo get filled out correctly (it contains no line at all) and if the "lines = vo.findByKey (mKey, 1)"; "." returns no rows.

    Is this not a bug? Is there a work around?

    PS: When I use another instance of the viewobject even as a group of high level it works fine. The error only occurs when the viewobject is used as a details group.

    Anyway, here's the exception:

    Cause first of ServletException.
    java.lang.ArrayIndexOutOfBoundsException: 0
    at oracle.jheadstart.ord.html.OrdPlayMediaServlet.renderContent(OrdPlayMediaServlet.java:343)
    at oracle.jheadstart.ord.html.OrdPlayMediaServlet.deliver(OrdPlayMediaServlet.java:189)
    at oracle.jheadstart.ord.html.OrdPlayMediaServlet.doGet(OrdPlayMediaServlet.java:130)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:707)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
    to weblogic.servlet.internal.StubSecurityHelper$ ServletServiceAction.run (StubSecurityHelper.java:227)
    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
    at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:205)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    to oracle.security.jps.ee.http.JpsAbsFilter$ 1.run(JpsAbsFilter.java:111)
    at java.security.AccessController.doPrivileged (Native Method)
    at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:313)
    at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:413)
    at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:94)
    at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:161)
    at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:136)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    to weblogic.servlet.internal.WebAppServletContext$ ServletInvocationAction.wrapRun (WebAppServletContext.java:3715)
    to weblogic.servlet.internal.WebAppServletContext$ ServletInvocationAction.run (WebAppServletContext.java:3681)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
    at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2277)
    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2183)
    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1454)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:207)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:176)

    Can you try using standard servlet support? You can do this by changing the name of the class of the servlet in the web.xml file in

    oracle.ord.html.OrdPlayMediaServlet.

    If you don't use a JHeadstart flex fields, you can use this standard ADF class. If the problem persists with this class, it's a bug in the ADF.

    Steven Davelaar,
    JHeadstart team.

  • Question about a bug that should be fixed in the 10.2.0.4 group patch

    Hello

    We have a 10.2.0.4 single instance of database on Sun Solaris SPARC (64-bit) and have the same symptoms as described in Bug 4643723 (error codes and the trace of the stack are the same). This bug should be fixed already in 10.2.0.4 patches group.

    Someone of experience on how to proceed in this case - I mean, did a SR on metalink an obvious action?

    Is it possible that fixes group has not been applied correctly, even if "opatch lsinventory" outputs that the "group of patches 2 3 (10.2.0.4) version 10g ' is installed and SYS. HISTORY of $ REGISTRY also contains an account of the upgrade. The upgrade of 10.2.0.1 10.2.0.4 was made 6 months ago and the data base has been continuously top and runing so far here.

    Thanks for all the answers

    many bugs may have the same mistakes. Raise a SR.

    Support Oracle ask a lsinventory opatch you and may request you check the versions of libraries, or reissue.

  • MAC 5.1.5 server has additional sides to users/groups. (bug?)

    MAC OS El Capitan 10.11.5

    5.1.5 Server

    xserver MAC hardware

    I add user name and account in server 5.1.5. After a few users have added and little added group name. I check the list users and group and they seem good. in a few days later, I don't have a server change. I'm starting to capture more users. When I open the list of users, and I said ' WHAT *? Where * do they come from? "I like that ever before. I checked the list of groups. They have additional groups that I don't add them before as well.

    Seemingly, however, groups and hidden accounts becomes visible.

    My Question: Is it that I can hide back them as before?

    These additional users/groups entered integrated system. Do not remove them!

    They are normally hidden and you should be able to re - hide them by running Server.app then by going to the view menu and selecting "hide system accounts.

  • Group e-mail address disclosed each e-mail address! BUG!

    Hi all.

    This used to work and the Apple documentation States official that should work, but it no longer works.  This creates a HUGE GENE!

    Even if my writing is properly set in Mail when sending to a group address, the program reveals e-mail address of each recipient.

    @APPLE: 1 - this used to work.  2 - when adding bells and whistles useless, make sure you at least that what used to work still works!

    Apple is not regularly monitor the discussions. These are mostly a user in discussions.

    Send feedback to Apple. They will not respond, but at least know that there is a problem. If enough people send feedback, it can become the problem solved as soon as possible.

    Mail comments

    Have you tried to use BCC?

  • Naming of groups bug

    When you try to name a group of tiles on the home screen with on-screen keyboard, text entry field becomes hidden by the keyboard. You can always typing away and press ENTER to name your group however. Can anyone confirm that they experience the same problem?

    Hello

    I just tested and I don't have the same problem. The field leaped above the keyboard, when the keyboard appears.

    If you have not already found the answer maybe check you have all the updates?

    Steve

    P.S. I was using Windows RT on surface of 64G.

  • Bug of visibility with layers nested inside groups

    I noticed that if the visibility of a group is switched off, all layers nested inside with a tilt individual visibility on will always show. Thus extracted is not to honor the setting of visibility of the parent container. Visibility breaks also when using layers. To best illustrate:

    • [off] [group]
      • [on] [level 1]
      • [on] [level 2]
      • [on] [level 3]

    All layers will be always.

    • [off] [group]
      • [off] [level 1]
      • [off] [level 2]
      • [off] [level 3]

    Visibility is behaving properly.

    When handling a few layers it is not much of a case. But often times my workflow requires me to a large amount of layers with different visibility settings group.

    Can you guys look inside? Much appreciated!

    Hi krios21.

    The visibility of top-level must certainly substitute any trace of the child, but there was recently a few problems with the calculation of the visibility when various merger and similar patterns are used. It is very likely that your question is already fixed, but not yet deployed. If you want to share the file, either publicly or privately to me by PM or mhendric (at) adobe.com, I can assure you that for you (if not, I need to get on fixing it :-).)

    -Mitch

    P.S. You might find that, activation/deactivation of specific layers on and off have to settle. In this case, it is even more likely, you have hit on the condition that I describe. It is also a way around the problem (even if it's embarrassing).

Maybe you are looking for

  • Satellite A35-S1593: DVD reading problem

    Hello. I have a SAT. A35 S1593. There a UJDA750 dvd/cdrw rom in it.I did some research about my problem, but I STILL can't get a direct answer from all the research Ive done. So... I come to you. I started to have problems playing DVDs. Now I can rea

  • Satellite of U920T connecting to VGA projector

    Hello, I need to be able to connect my U920T to VGA projector for presentations. I bought a HDMI VGA adapter that works very well for the video but not the audio. Is there a setting I can change to force to laptop to use for the internal speakers rat

  • font changes when it comes to FCPX

    I created a scroll title Motion 5 using different weights and styles of future Next. It looks good in the market, but when I place it in Final Cut, things change. future Medium becomes Ultra Light, medium heavy future, some point to the change in siz

  • How to recover the program in my Start menu: error message came. loss and corruption inaccessibility and disc error and hard drive data

    I have error message came. hard drive error and inaccessible hard drive and data corruption and loss. All of my Start menu disappeared. There is nothing in my files everything is empty. This is the area of windows recovery.

  • V715w does not print

    This printer is wireless and has been very well for a few years of work. He just started to act very strange. I tried to print a document of 43 pages and about 15 printed pages and quit smoking. I lived every attempt I can find any problems. I have p