Display all groups assigned to a particular group

Hi ,
Can anybody post the details for How to display all groups assigned to a particular database?
I am wondering that there is no command available to do the above. We are able to display all the groups using "Display groups all" but how can i know all the groups assigned to a particular database?
Thanks in advance!!!!
Subbu

I'm not sure what version you are on, but have you tried using the export security_file maxL command? You could also use the API to get the security.

Similar Messages

  • Want to display all groups

    Hi Experts,
    I want to display all groups
    Regards,
    Gurprit Bhatia

    Hi ,
    You can find the api for reteriving the groups based on roles in this link "http://help.sap.com/javadocs/NW04S/SPS08/ep/index.html"
    in which click on this "com.sapportals.portal.prt.session" from where you will be drill down IUserFactory -IPrincipal you can find different intefaces for roles ,groups,users such as IUser,IGroup
    and IRole.
    Regards,
    Aruna

  • BI reports doesn't display all groups in the area

    Hi,
    I have a Area->Region->Center type->Center function->Sub Group hierarchy in the BI. Sub Group is not distinct and repeated across the centers. when i pick Area and Sub Group in the report,it is has to display all the Sub groups for each area. But it is not showing all the sub groups and avoiding repetitions across the areas. Any suggestion to display all the sub groups for each area.

    I found out what causing this issue. If i remove the grand total on the table view,then it is displaying all the Sub groups for each area.But we need grand total,any suggestion how to make it work with grand total.

  • How to position all alert messages in a particular position?

    Hi All,
            I have developed a Application where it contains so many Alert Messages and i want display All Alert messages in a particular position of respected screen. I have tried the following code but it works for individual alert messages. I don't want to set x and y properties individually, i want set x and y properties globally. Is there any way that i can apply for all the alert messages in my application.
    myAlert = Alert.show('Hello World');
      PopUpManager.centerPopUp(myAlert);
      myAlert.x = 0;
      myAlert.y = 0;
    Thanks in Advance

    You could override the Alert class. This would like something like:
    public class MyAlert extends Alert {
    public get x():void {
    return 0;
    public get y():void {
    return 0;

  • How to Find what all GL assigned to Particular account group ???

    Hi !!! anybody can help me in this issue ... How to Find what all GL assigned to Particular account group ???

    Hi,
    Go to SE16
    Give table name SKA1.
    Give COA
    Give account group and execute.
    All the GL accounts that were assigned to this group are listed.
    Reward points.
    Sarma

  • Group by Clause displaying all lookup values

    Hello Friends
    I've a simple table with columns namely Date, Reason, Product and Count and the sample data is displayed below.
    ==========================
    Date Reason Product Count
    ==========================
    06/08/2012 Reason1 Home 1
    07/08/2012 Reason2 Motor 1
    08/08/2012 Reason1 Home 1
    09/08/2012 Reason3 Home 2
    10/08/2012 Reason1 Home 1
    06/08/2012 Reason5 Home 1
    ===========================
    In total I've 5 reason lookup values from Reason1 through to Reason5, but the above table consists of few of them.
    I would like to diplay result per day and take an example of 6th August, I want to display below result, i.e. display all 5 reason looksup and assign zero count if there are no records for that day.
    =====================================
    DATE REASON HOME_COUNT MOTOR_COUNT
    =====================================
    06/08/2012 Reason1 1 0
    06/08/2012 Reason2 0 1
    06/08/2012 Reason3 0 0
    06/08/2012 Reason4 0 0
    06/08/2012 Reason5 1 0
    =====================================
    If we write group by clause, missing reasons like Reason3 and Reason4 will not be displayed in the result set.
    And I've tried to write multiple UNION ALL queries to get the above result which works fine, but if there 100 lookup values, I do not want to write 100 Union queries.
    Please let me know if you have any analytical functions to display the end results?
    Thanks
    Murali.
    Edited by: Muralidhar b on Aug 19, 2012 8:17 PM

    If you followed relational design, you have reason lookup table. If you do not have it you should create one. Also, date is reserved word and count is a keyword, so do not use them as column names. Then use outer join:
    SQL> create table tbl as
      2  select to_date('06/08/2012','dd/mm/yyyy') dt,'Reason1' reason,'Home' product,1 qty from dual union all
      3  select to_date('07/08/2012','dd/mm/yyyy'),'Reason2','Motor',1 from dual union all
      4  select to_date('08/08/2012','dd/mm/yyyy'),'Reason1','Home',1 from dual union all
      5  select to_date('09/08/2012','dd/mm/yyyy'),'Reason3','Home',2 from dual union all
      6  select to_date('10/08/2012','dd/mm/yyyy'),'Reason1','Home',1 from dual union all
      7  select to_date('06/08/2012','dd/mm/yyyy'),'Reason5','Home',1 from dual
      8  /
    Table created.
    SQL> create table reason_list as
      2  select  'Reason' || level reason from dual connect by level <= 5
      3  /
    Table created.
    SQL> select  d.dt,
      2          r.reason,
      3          nvl(
      4              sum(
      5                  case product
      6                    when 'Home' then qty
      7                  end
      8                 ),
      9              0
    10             ) home_qty,
    11          nvl(
    12              sum(
    13                  case product
    14                    when 'Motor' then qty
    15                  end
    16                 ),
    17              0
    18             ) motor_qty
    19    from      (
    20               select  min_dt + level - 1 dt
    21                 from  (
    22                        select  min(dt) min_dt,
    23                                max(dt) max_dt
    24                          from  tbl
    25                       )
    26                 connect by level <= max_dt - min_dt + 1
    27              ) d
    28          cross join
    29              reason_list r
    30          left join
    31              tbl t
    32            on (
    33                    t.dt = d.dt
    34                and
    35                    t.reason = r.reason
    36               )
    37    group by d.dt,
    38             r.reason
    39    order by d.dt,
    40             r.reason
    41  /
    DT        REASON                                           HOME_QTY  MOTOR_QTY
    06-AUG-12 Reason1                                                 1          0
    06-AUG-12 Reason2                                                 0          0
    06-AUG-12 Reason3                                                 0          0
    06-AUG-12 Reason4                                                 0          0
    06-AUG-12 Reason5                                                 1          0
    07-AUG-12 Reason1                                                 0          0
    07-AUG-12 Reason2                                                 0          1
    07-AUG-12 Reason3                                                 0          0
    07-AUG-12 Reason4                                                 0          0
    07-AUG-12 Reason5                                                 0          0
    08-AUG-12 Reason1                                                 1          0
    DT        REASON                                           HOME_QTY  MOTOR_QTY
    08-AUG-12 Reason2                                                 0          0
    08-AUG-12 Reason3                                                 0          0
    08-AUG-12 Reason4                                                 0          0
    08-AUG-12 Reason5                                                 0          0
    09-AUG-12 Reason1                                                 0          0
    09-AUG-12 Reason2                                                 0          0
    09-AUG-12 Reason3                                                 2          0
    09-AUG-12 Reason4                                                 0          0
    09-AUG-12 Reason5                                                 0          0
    10-AUG-12 Reason1                                                 1          0
    10-AUG-12 Reason2                                                 0          0
    DT        REASON                                           HOME_QTY  MOTOR_QTY
    10-AUG-12 Reason3                                                 0          0
    10-AUG-12 Reason4                                                 0          0
    10-AUG-12 Reason5                                                 0          0
    25 rows selected.
    SQL> SY.

  • For particular display and group criteria, we are getting exception

    Hi,
    Please any one assist me on this.
    Error report time: 2008-09-30 09:39:10
    Description of activities in thread [Thread Group for Queue: 'weblogic.kernel.Default'].ExecuteThread: '14' for queue: 'weblogic.kernel.Default'
    Original Stack Trace Info -- com.crystaldecisions.sdk.occa.report.lib.ReportDefControllerException:
               Message: A report object, section or area with this name already exists in the report.
               Code: 51412
    com.crystaldecisions.sdk.occa.report.lib.ReportDefControllerException: A report object, section or area with this name already exists in the report.---- Error code:-2147213281 Error code name:objectAlreadyExists
               at com.crystaldecisions.sdk.occa.report.lib.ReportDefControllerException.throwReportDefControllerException(ILjava.lang.String;)V(Unknown Source)
               at com.crystaldecisions.sdk.occa.report.application.ReportSectionController.a(Lcom.crystaldecisions.sdk.occa.report.definition.IArea;Lcom.crystaldecisions.sdk.occa.report.definition.ISection;)V(Unknown Source)
               at com.crystaldecisions.sdk.occa.report.application.ReportSectionController.add(Lcom.crystaldecisions.sdk.occa.report.definition.ISection;Lcom.crystaldecisions.sdk.occa.report.definition.IArea;I)V(Unknown Source)
               at com.ntrs.nmr.util.ce.RASUtility.getSection(Lcom.crystaldecisions.sdk.occa.report.application.ReportClientDocument;Lcom.crystaldecisions.sdk.occa.report.definition.AreaSectionKind;II)Lcom.crystaldecisions.sdk.occa.report.definition.Section;(RASUtility.java:1631)
               at com.ntrs.nmr.util.ce.RASTemplateBuilder.buildAllColumns()V(RASTemplateBuilder.java:1102)
               at com.ntrs.nmr.util.ce.RASTemplateBuilder.buildTemplate()Lcom.crystaldecisions.sdk.occa.report.application.ReportClientDocument;(RASTemplateBuilder.java:76)
               at com.ntrs.nmr.busobj.report.CrystalReportV4.buildTemplateDisplayAndGroups(Lcom.crystaldecisions.sdk.occa.report.application.ReportClientDocument;[Lcom.ntrs.nmr.common.ReportDisplayInfo;[Lcom.ntrs.nmr.common.ReportGroupInfo;[Lcom.ntrs.nmr.common.ReportAvailableColumnInfo;)Lcom.crystaldecisions.sdk.occa.report.application.ReportClientDocument;(CrystalReportV4.java:932)
               at com.ntrs.nmr.busobj.report.CrystalReportV4.customizeTemplate(Lcom.crystaldecisions.sdk.occa.report.application.ReportClientDocument;)V(CrystalReportV4.java:96)
               at com.ntrs.nmr.busobj.report.AbstractCrystalReport.runCrystalEnterpriseReport(Lcom.ntrs.nmr.busobj.report.query.AbstractReportResultSet;Ljava.lang.String;Ljava.lang.String;[Ljava.lang.String;Ljava.util.Properties;[Ljava.lang.String;)V(AbstractCrystalReport.java:510)
               at com.ntrs.nmr.busobj.report.AbstractCrystalReport.runReport()Lcom.ntrs.nmr.common.ReportResultsInfo;(AbstractCrystalReport.java:274)
               at com.ntrs.nmr.busobj.report.CrystalReportV4.runReport()Lcom.ntrs.nmr.common.ReportResultsInfo;(CrystalReportV4.java:51)
               at com.ntrs.nmr.busobj.report.AbstractReport.runDirect()Lcom.ntrs.nmr.common.ReportResultsInfo;(AbstractReport.java:119)
               at com.ntrs.nmr.busobj.execution.ReportExecution.runReport(Lcom.ntrs.nmr.common.ReportExecutionRequestInfo;)Lcom.ntrs.nmr.common.ReportResultsInfo;(ReportExecution.java:644)
               at com.ntrs.nmr.busobj.execution.ReportExecution.runReport(Lcom.ntrs.nmr.common.ReportRequest;)Lcom.ntrs.nmr.common.ReportResultsInfo;(ReportExecution.java:505)
               at com.ntrs.nmr.session.report.ReportBean.runReport(Lcom.ntrs.nmr.common.ReportRequest;)Lcom.ntrs.nmr.common.ReportResultsInfo;(ReportBean.java:93)
               at com.ntrs.nmr.session.report.ReportController_br9wdw_EOImpl.runReport(Lcom.ntrs.nmr.common.ReportRequest;)Lcom.ntrs.nmr.common.ReportResultsInfo;(ReportController_br9wdw_EOImpl.java:100)
               at com.ntrs.nmr.envoy.ReportEnvoy.runReport(Lcom.ntrs.nmr.common.ReportRequest;)Lcom.ntrs.nmr.common.ReportResultsInfo;(ReportEnvoy.java:51)
               at com.ntrs.nmr.action.adh.ModifyRunAction.processRequest(Ljavax.servlet.http.HttpServletRequest;Ljavax.servlet.http.HttpServletResponse;)Lcom.ntrs.custody.cco.mvc.CCOActionError;(ModifyRunAction.java:426)
               at com.ntrs.custody.cco.mvc.CCOAction.doAction(Ljavax.servlet.http.HttpServletRequest;Ljavax.servlet.http.HttpServletResponse;)Lcom.ntrs.custody.cco.mvc.CCOActionError;(CCOAction.java:69)
               at com.ntrs.custody.cco.mvc.CCOActionServlet.service(Ljavax.servlet.http.HttpServletRequest;Ljavax.servlet.http.HttpServletResponse;)V(CCOActionServlet.java:104)
               at javax.servlet.http.HttpServlet.service(Ljavax.servlet.ServletRequest;Ljavax.servlet.ServletResponse;)V(HttpServlet.java:853)
               at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run()Ljava.lang.Object;(ServletStubImpl.java:996)
               at weblogic.servlet.internal.ServletStubImpl.invokeServlet(Ljavax.servlet.ServletRequest;Ljavax.servlet.ServletResponse;Lweblogic.servlet.internal.FilterChainImpl;)V(ServletStubImpl.java:419)
               at weblogic.servlet.internal.ServletStubImpl.invokeServlet(Ljavax.servlet.ServletRequest;Ljavax.servlet.ServletResponse;)V(ServletStubImpl.java:315)
               at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run()Ljava.lang.Object;(WebAppServletContext.java:6452)
               at weblogic.security.acl.internal.AuthenticatedSubject.doAs(Lweblogic.security.subject.AbstractSubject;Ljava.security.PrivilegedAction;)Ljava.lang.Object;(AuthenticatedSubject.java:321)
               at weblogic.security.service.SecurityManager.runAs(Lweblogic.security.acl.internal.AuthenticatedSubject;Lweblogic.security.acl.internal.AuthenticatedSubject;Ljava.security.PrivilegedAction;)Ljava.lang.Object;(SecurityManager.java:118)
               at weblogic.servlet.internal.WebAppServletContext.invokeServlet(Lweblogic.servlet.internal.ServletRequestImpl;Lweblogic.servlet.internal.ServletResponseImpl;)V(WebAppServletContext.java:3661)
               at weblogic.servlet.internal.ServletRequestImpl.execute(Lweblogic.kernel.ExecuteThread;)V(ServletRequestImpl.java:2630)
               at weblogic.kernel.ExecuteThread.execute(Lweblogic.kernel.ExecuteRequest;)V(ExecuteThread.java:219)
               at weblogic.kernel.ExecuteThread.run()V(ExecuteThread.java:178)
               at java.lang.Thread.startThreadFromVM(Ljava.lang.Thread;)V(Unknown Source)
               ManagementReportingException Stack Trace:
    com.ntrs.nmr.util.ManagementReportingException: Error while template display and grouping: :com.crystaldecisions.sdk.occa.report.lib.ReportDefControllerExceptionA report object, section or area with this name already exists in the report.
               at com.ntrs.nmr.busobj.report.CrystalReportV4.customizeTemplate(Lcom.crystaldecisions.sdk.occa.report.application.ReportClientDocument;)V(CrystalReportV4.java:98)
               at com.ntrs.nmr.busobj.report.AbstractCrystalReport.runCrystalEnterpriseReport(Lcom.ntrs.nmr.busobj.report.query.AbstractReportResultSet;Ljava.lang.String;Ljava.lang.String;[Ljava.lang.String;Ljava.util.Properties;[Ljava.lang.String;)V(AbstractCrystalReport.java:510)
               at com.ntrs.nmr.busobj.report.AbstractCrystalReport.runReport()Lcom.ntrs.nmr.common.ReportResultsInfo;(AbstractCrystalReport.java:274)
               at com.ntrs.nmr.busobj.report.CrystalReportV4.runReport()Lcom.ntrs.nmr.common.ReportResultsInfo;(CrystalReportV4.java:51)
               at com.ntrs.nmr.busobj.report.AbstractReport.runDirect()Lcom.ntrs.nmr.common.ReportResultsInfo;(AbstractReport.java:119)
               at com.ntrs.nmr.busobj.execution.ReportExecution.runReport(Lcom.ntrs.nmr.common.ReportExecutionRequestInfo;)Lcom.ntrs.nmr.common.ReportResultsInfo;(ReportExecution.java:644)
               at com.ntrs.nmr.busobj.execution.ReportExecution.runReport(Lcom.ntrs.nmr.common.ReportRequest;)Lcom.ntrs.nmr.common.ReportResultsInfo;(ReportExecution.java:505)
               at com.ntrs.nmr.session.report.ReportBean.runReport(Lcom.ntrs.nmr.common.ReportRequest;)Lcom.ntrs.nmr.common.ReportResultsInfo;(ReportBean.java:93)
               at com.ntrs.nmr.session.report.ReportController_br9wdw_EOImpl.runReport(Lcom.ntrs.nmr.common.ReportRequest;)Lcom.ntrs.nmr.common.ReportResultsInfo;(ReportController_br9wdw_EOImpl.java:100)
               at com.ntrs.nmr.envoy.ReportEnvoy.runReport(Lcom.ntrs.nmr.common.ReportRequest;)Lcom.ntrs.nmr.common.ReportResultsInfo;(ReportEnvoy.java:51)
               at com.ntrs.nmr.action.adh.ModifyRunAction.processRequest(Ljavax.servlet.http.HttpServletRequest;Ljavax.servlet.http.HttpServletResponse;)Lcom.ntrs.custody.cco.mvc.CCOActionError;(ModifyRunAction.java:426)
               at com.ntrs.custody.cco.mvc.CCOAction.doAction(Ljavax.servlet.http.HttpServletRequest;Ljavax.servlet.http.HttpServletResponse;)Lcom.ntrs.custody.cco.mvc.CCOActionError;(CCOAction.java:69)
               at com.ntrs.custody.cco.mvc.CCOActionServlet.service(Ljavax.servlet.http.HttpServletRequest;Ljavax.servlet.http.HttpServletResponse;)V(CCOActionServlet.java:104)
               at javax.servlet.http.HttpServlet.service(Ljavax.servlet.ServletRequest;Ljavax.servlet.ServletResponse;)V(HttpServlet.java:853)
               at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run()Ljava.lang.Object;(ServletStubImpl.java:996)
               at weblogic.servlet.internal.ServletStubImpl.invokeServlet(Ljavax.servlet.ServletRequest;Ljavax.servlet.ServletResponse;Lweblogic.servlet.internal.FilterChainImpl;)V(ServletStubImpl.java:419)
               at weblogic.servlet.internal.ServletStubImpl.invokeServlet(Ljavax.servlet.ServletRequest;Ljavax.servlet.ServletResponse;)V(ServletStubImpl.java:315)
               at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run()Ljava.lang.Object;(WebAppServletContext.java:6452)
               at weblogic.security.acl.internal.AuthenticatedSubject.doAs(Lweblogic.security.subject.AbstractSubject;Ljava.security.PrivilegedAction;)Ljava.lang.Object;(AuthenticatedSubject.java:321)
               at weblogic.security.service.SecurityManager.runAs(Lweblogic.security.acl.internal.AuthenticatedSubject;Lweblogic.security.acl.internal.AuthenticatedSubject;Ljava.security.PrivilegedAction;)Ljava.lang.Object;(SecurityManager.java:118)
               at weblogic.servlet.internal.WebAppServletContext.invokeServlet(Lweblogic.servlet.internal.ServletRequestImpl;Lweblogic.servlet.internal.ServletResponseImpl;)V(WebAppServletContext.java:3661)
               at weblogic.servlet.internal.ServletRequestImpl.execute(Lweblogic.kernel.ExecuteThread;)V(ServletRequestImpl.java:2630)
               at weblogic.kernel.ExecuteThread.execute(Lweblogic.kernel.ExecuteRequest;)V(ExecuteThread.java:219)
               at weblogic.kernel.ExecuteThread.run()V(ExecuteThread.java:178)
               at java.lang.Thread.startThreadFromVM(Ljava.lang.Thread;)V(Unknown Source)
    Description of activities in thread [Thread Group for Queue: 'weblogic.kernel.Default'].ExecuteThread: '14' for queue: 'weblogic.kernel.Default'
    Work Unit: 552
               Marking Object: com.ntrs.nmr.action.adh.ModifyRunAction
               Marking Thread ID: [Thread Group for Queue: 'weblogic.kernel.Default'].ExecuteThread: '14' for queue: 'weblogic.kernel.Default'
               Initiating Thread ID: [Thread Group for Queue: 'weblogic.kernel.Default'].ExecuteThread: '14' for queue: 'weblogic.kernel.Default'
               Current Activity Label: ModifyRunAction
               Last Mark Time: 2008-09-30-09:38:57.00296
               Activity Messages Follow:
                          ModifyRunAction:begin
                          ReportExecution.runReport(ReportExecutionRequestInfo):begin
                          Oracle query execution:begin
                          Oracle query execution:end
               Marking object is not describable.
    Work Unit: 553
               Marking Object: com.ntrs.nmr.busobj.execution.ReportExecution
               Marking Thread ID: [Thread Group for Queue: 'weblogic.kernel.Default'].ExecuteThread: '14' for queue: 'weblogic.kernel.Default'
               Initiating Thread ID: [Thread Group for Queue: 'weblogic.kernel.Default'].ExecuteThread: '14' for queue: 'weblogic.kernel.Default'
               Current Activity Label: ReportExecution.runReport(ReportExecutionRequestInfo)
               Last Mark Time: 2008-09-30-09:38:57.00921
               Activity Messages Follow:
                          ReportExecution.runReport(ReportExecutionRequestInfo):begin
                          Oracle query execution:begin
                          Oracle query execution:end
               Marking object is not describable.
    Description of activities in thread [Thread Group for Queue: 'weblogic.kernel.Default'].ExecuteThread: '14' for queue: 'weblogic.kernel.Default'
    Work Unit: 552
               Marking Object: com.ntrs.nmr.action.adh.ModifyRunAction
               Marking Thread ID: [Thread Group for Queue: 'weblogic.kernel.Default'].ExecuteThread: '14' for queue: 'weblogic.kernel.Default'
               Initiating Thread ID: [Thread Group for Queue: 'weblogic.kernel.Default'].ExecuteThread: '14' for queue: 'weblogic.kernel.Default'
               Current Activity Label: ModifyRunAction
               Last Mark Time: 2008-09-30-09:38:57.00296
               Activity Messages Follow:
                          ModifyRunAction:begin
                          ReportExecution.runReport(ReportExecutionRequestInfo):begin
                          Oracle query execution:begin
                          Oracle query execution:end
               Marking object is not describable.
    Work Unit: 553
               Marking Object: com.ntrs.nmr.busobj.execution.ReportExecution
               Marking Thread ID: [Thread Group for Queue: 'weblogic.kernel.Default'].ExecuteThread: '14' for queue: 'weblogic.kernel.Default'
               Initiating Thread ID: [Thread Group for Queue: 'weblogic.kernel.Default'].ExecuteThread: '14' for queue: 'weblogic.kernel.Default'
               Current Activity Label: ReportExecution.runReport(ReportExecutionRequestInfo)
               Last Mark Time: 2008-09-30-09:38:57.00921
               Activity Messages Follow:
                          ReportExecution.runReport(ReportExecutionRequestInfo):begin
                          Oracle query execution:begin
                          Oracle query execution:end
               Marking object is not describable.

    Thanks  for your reply.
    These are the display parameters i used to run a report, for this display criteria alone i am getting the exception.
    displayParm =
    1141    0       40      L
    1271    0       16      L
    1033    0       18      L
    1404    0       18      L
    1018    2       20      L
    1000    1       30      L
    1001    0       8       L
    1029    1       40      L
    1030    0       40      L
    If you need more information means, please ask me what are things you are looking for.

  • TMS - Manage Phone Book Sources - Cannot display the group into TP endpoints

    Hi,
    I just deployed the TMS to make the provision function and manage the TP endpoints.
    Actually, one contact assigned for one TP enpoint, e.g. SX20, which have the different call methods, e.g. SIP:[email protected]; H323:192.168.10.20; H323 ID:3899
    After pushed the contact to TP endpoint, but we just saw the 1st address (SIP:[email protected]) call click to call on Directory.
    Only can show the [SIP:[email protected]] on the TP Directory ... Cannot have a group on TP directory show?

    What is the default call protocol the SX20 is using?  I'd amuse it would be SIP, because you only saw the SIP address in the directory.
    If you want all phone book entries to show regardless of the endpoint's default call protocol, you can set "Route Phone Book entries" to No in Administrative Tools > Configuration > General Settings.
    Yes is the default setting, which means that endpoints will only display addresses that they are capable of dialling. For example, on an H.323-only endpoint, ISDN numbers and SIP addresses will not be displayed.
    No means that the endpoints will display all addresses and numbers in the phone book regardless of their dialling capabilities.
    Make sure that each endpoint is allowed to dial out using H323 and SIP under Navigator > Systems > Edit Settings.
    Also, instead of a manual phone book source, why don't you have the phone book pull from the list of endpoints in a folder using the "Cisco TMS Endpoints" as a phone book source.  It will pull contain all the calling methods for the endpoints in whatever folder you specify.  Would be easier to manage than manual phone book sources.

  • How to Display Contact Groups on iPhone 4s

    When I started using my iPhone 4s, my Contacts displayed in Groups (as shown below). They still do on my Mac. On my iPhone, however, after the latest software update all I get is a list of all my Contacts. When I push the "Group" button (top left) it displays a list of which groups I want displayed on my long list. What Id' like is for it to look like the picture below (as it did before the last update). I cannot find anything about this online. Any fixes? Thanks very much!

    there are some apps, where you can add/delete groups directly on your iPhone (or iPad or iPod) and easily assign contacts to groups. For example "Contacts In : Import CSV & Manage Groups". See here: http://csvcontacts.wordpress.com/iphone-groups-broadcast/. As bonus you get all contact management things (deletion, creation) and ability to send broadcast SMS and e-mails and quickly clean up your contacts.
    Swipe group to delete - only group itselt will be deleted, not the contacts! Then you can create new groups, assign contacts to group directly on iPhone, no need for PC connection. The groups which are created are "native" iPhone groups and you will see them in any other applications (e.g. in native iPhone address book).

  • Get all Groups for current user

    Hi I try to get all groups for the current logged on user. This is what I do:
    First I try to search with the IGruopSearchFilter to obtain all unique Group IDs. I always get an proxy error by doing this, maybe the query is to much.
    Then I want to use the method group.isUserMember(user.getUniqueID() to check whether the user is a member of that group or not.
    Is there a better way to obtain all groups for a user (without using a query IGroupSearchFilter)?
    Thanks ahead for your help.
    Burkhardt

    Burkhadrt,
    have you tried this?
    https://media.sdn.sap.com/javadocs/preNW04/SP2/60_sp2_javadocs/ume/com/sap/security/api/IUser.html#getParentGroups(boolean)
    This should give you an iterator for all groups the given user is assigned to.
    Hope it helps... and if so:
    if (helpful) {
      points++
    Regards,
    Dominik

  • Displaying A Group of Photos

    Is the best (only) way to display a group of photos by creating a photo album?  If so, I read that it's best to create a one w/Adobe Bridge rather than the web photo gallery feature under Commands in Dreamweaver.
    Thoughts?

    Displaying photos is highly subjective.  You can put all your images in a CSS styled proof sheet like this:
    http://alt-web.com/TEMPLATES/CSS-Semi-liq-photo-sheet.shtml
    Or you can use jQuery or Lightbox plug-ins to create really slick slideshows & Galleries with all manner of bells & whistles.  What it comes down to is a) which features you need and b) how much effort you want to put into it.
    57 Free Image Gallery, Slideshow and Lightbox Solutions -
    http://www.1stwebdesigner.com/resources/57-free-image-gallery-slideshow-and-lightbox-solut ions/
    Obviously if you're a professional photographer you may need a sophisticated gallery with e-com solutions to sell prints on-line.  If this is a hobby/personal site, you may need far less.   So to say "this" or "that" product is best for everyone isn't realistic.
    Also have a look at http://www.JAlbum.net Download the software and take a test drive. It's free and has a LOT of great features.
    Good luck,
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb

  • How do I display a group of photos automatically  and each photo is displayed in a slow motion in flash 8

    I would like to display a group of pictures in a timely base,
    i.e. every 5 seconds, and each picture showed in a moving status,
    how can I achieve this....

    It is possible to make a collage manually and its quite easy. This method may suit your purpose.
    Click File >> Open and select all of your photos
    That will add them to the project bin
    Then select File >> New >> Blank File
    Select background color White (or whatever you prefer) and add your width and height for your final image (set resolution 72 for web usage or 240 to 300 for printing) then click OK
    In the project bin click your first photo and drag it up into the main window on top of your new background.
    Click on the move tool and click in the center of the photo and drag to arrange it where you want on the background - you can hold down the shift key to maintain original proportions whilst dragging the corner handles of the bounding box to get the size you want.
    Do the same with the next photo (drag it up into the main window) and use the move tool to position it. Then continue with each image.
    Finally Click Layer >>Flatten image and save as jpeg. (Save as PSD if you want to preserve the layers for editing again)
    N.B. as you add images they get dropped in the center. So you need to use the move tool to drag them apart. Click in the middle of one and move it around, and then the others until you get them positioned as you want
    When you click again with the move tool a bounding box appears around the image and you can drag out the corner handles to re-size your photos. Hold down the shift key when dragging the corner handle and that will maintain the proportions of the original.
    Finally click Layer >>Flatten Image and save - you may then want to use the crop tool to cut away any surplus white canvas, and then re-save.

  • Displaying a group of data in different Pages

    Hello
    I will try to explain my Problem below briefly
    I have a problem with displaying a group of data in different Pages.I want to display a group of data like this:
    page1      page2
    data1Part1      data1Part2
    Page3     Page4
    data2Part1      data2Part2
    Page5     Page6
    data3Part1      data3Part2
    page 7     Page 8
    data4Part1      data4Part2
    What I get is :
    page1      page2
    data1Part1      data2Part1
    Page3     b]Page4
    data3Part1      data4Part1
    Page5     Page6
    data2Part2      data3Part2
    page 7     Page 8
    data4Part2      data4Part2
    I test <?for-each-group@section:ROW?> and Different first page etc. It doesn't work.I would appreciate your help. I can send you the output, template and xml doc, if you can have a look at it.
    Thanks

    Send me all files along with expected output at [email protected]

  • Displaying a group of  data in different colums

    I have a problem with displaying a group of data in different colums. I want to display a group of data like this:
    Column 1 --- Column2 ----- Column3
    data1 data6 data11
    data2 data7 data12
    data3 data8 data13
    data4 data9 data14
    data5 data10 data15
    That is, the coulm headers must be at the same height of the page and data must be in paralell columns.
    My number of data is variable depending on a query result, and I want to start displaying my group on the first column and when it is full (the number of records per column is fixed), is must switch into the next one.
    In case there were more than 15 records, the 16th and the followings, must be displayed on the next page, with the same format as i have explained before.
    Thank you very much.

    Send me all files along with expected output at [email protected]

  • How to display  a group by function in reports

    Dear all,
    i am new to reports, just a little question, I have to display one tabluar form report with 5 feilds.For example col1,col2,col3,col4,col5.The report shold be group by col1 and col2 how can i display a group by in reports so values does not appear in redundancy
    thanks
    Edited by: user562674 on 02/03/2011 08:00 م

    Hi,
    After you create the data query in Data Model, drag col2 outside the group and place it, a new group will be created.
    Similarly drag col3 in the newly created group for col2.
    Now again drag col3 from col2 group and place it outside both the above groups a new group will be created.
    Now drag all the other columns col4, col5 etc in the group for col3.
    You can place all the columns in the query in any group as required after creating the groups.
    Hope this helps.
    Best Regards
    Arif Khadas

Maybe you are looking for

  • I Fixed My Nano and Now It's Seen By Windows and iTunes

    I was having the same symptoms as most everybody else. I did the driver download and problem solved. The procedure has already been posted and linked to as a solution by other people. Here is what I did. Hope it helps. 1.Open the "i386"folder. Goto y

  • Airport Express not working with Comcast

    I used to have AT&T and had my airport working well. Yesterday i changed to Comcast and my airport is not working the light stays yellow.. I tried resetting it but it didn't work.. I use it with my old Cisco router and its working. Whats wrong with m

  • How do I remove my book titles from iTunes bookstore?

    How do I remove my book titles from iTunes bookstore?

  • Message Tracking and Queue Viewer access is denied - Exchange 2010

    Hello, I am experiencing Message Tracking and Queue viewer problems on my exchange server. Message Tracking problem When i run message tracking via EMC or powershell, i receive the following error; Failed to connect to the Microsoft Exchange Transpor

  • Iphone 5 screen gone black

    Woke up this morning and my iphone screen is completely black but its still responsive, i can still answer calls and all. I have a bad feeling im going to have to replace the phone completely, is there a way to back up all my info to my icloud accoun