Routing, searching FM to get groups

Hi experts,
i am searching for a FM that returns me the groups like TA ca03 does. So i got the information material and plant or the group.
Anyone knows a helpful FM or do I have to get the information from the tables manually?
Thanks in advance.
Tobi

uh, just saw the table mapl - that should solve my problem.
Tobi

Similar Messages

  • I've found no way to sort.  For example, if I type the group "Rush" into the search bar, I get a list of songs recorded by rush and literally thousands of other songs and artists with the word rush in them. There is; however, no way to sort the results.

    I've found no way to sort search results in itunes.  For example, if I type the group "Rush" into the search bar, I get a list of songs recorded by rush and literally thousands of other songs and artists with the word rush in them. There is; however, no way to sort the results. 

    In the Search box click on the black Arrow and UNTICK the Search Entire Library.
    Then the Search results in Songs view will be displayed in the main Grid and you can sort them by clicking on the column headers.
    You can also turn on the column browser which can help with filtering

  • Not able to get group name by using memberof class, getting Total groups as 0 even I am member of that group.

    Not able to get group name by using memberof class, getting Total groups as 0 even I am member of that group. Through this memberof class I am trying to find full qualified name(DN) of my group.
    code I have used:
    //specify the LDAP search filter
                   String searchFilter = "(&(objectClass=user)(CN=Username))";
                   //Specify the Base for the search
                   String searchBase = "";
    Also I have used,
                 String searchFilter = "(&(objectClass=user)(CN=Username))";
                   //Specify the Base for the search
                   String searchBase = "ou=ibmgroups,o=ibm.com";
    But in both cases I am getting value for Total groups as 0.
    Code Reference:
    * memberof.java
    * December 2004
    * Sample JNDI application to determine what groups a user belongs to
    import java.util.Hashtable;
    import javax.naming.*;
    import javax.naming.ldap.*;
    import javax.naming.directory.*;
    public class memberof     {
         public static void main (String[] args)     {
              Hashtable env = new Hashtable();
              String adminName = "CN=Administrator,CN=Users,DC=ANTIPODES,DC=COM";
              String adminPassword = "XXXXXXX";
              String ldapURL = "ldap://mydc.antipodes.com:389";
              env.put(Context.INITIAL_CONTEXT_FACTORY,"com.sun.jndi.ldap.LdapCtxFactory");
              //set security credentials, note using simple cleartext authentication
              env.put(Context.SECURITY_AUTHENTICATION,"simple");
              env.put(Context.SECURITY_PRINCIPAL,adminName);
              env.put(Context.SECURITY_CREDENTIALS,adminPassword);
              //connect to my domain controller
              env.put(Context.PROVIDER_URL,ldapURL);
              try {
                   //Create the initial directory context
                   LdapContext ctx = new InitialLdapContext(env,null);
                   //Create the search controls          
                   SearchControls searchCtls = new SearchControls();
                   //Specify the search scope
                   searchCtls.setSearchScope(SearchControls.SUBTREE_SCOPE);
                   //specify the LDAP search filter
                   String searchFilter = "(&(objectClass=user)(CN=Andrew Anderson))";
                   //Specify the Base for the search
                   String searchBase = "DC=antipodes,DC=com";
                   //initialize counter to total the group members
                   int totalResults = 0;
                   //Specify the attributes to return
                   String returnedAtts[]={"memberOf"};
                   searchCtls.setReturningAttributes(returnedAtts);
                   //Search for objects using the filter
                   NamingEnumeration answer = ctx.search(searchBase, searchFilter, searchCtls);
                   //Loop through the search results
                   while (answer.hasMoreElements()) {
                        SearchResult sr = (SearchResult)answer.next();
                        System.out.println(">>>" + sr.getName());
                        //Print out the groups
                        Attributes attrs = sr.getAttributes();
                        if (attrs != null) {
                             try {
                                  for (NamingEnumeration ae = attrs.getAll();ae.hasMore();) {
                                       Attribute attr = (Attribute)ae.next();
                                       System.out.println("Attribute: " + attr.getID());
                                       for (NamingEnumeration e = attr.getAll();e.hasMore();totalResults++) {
                                            System.out.println(" " +  totalResults + ". " +  e.next());
                             catch (NamingException e)     {
                                  System.err.println("Problem listing membership: " + e);
                   System.out.println("Total groups: " + totalResults);
                   ctx.close();
              catch (NamingException e) {
                   System.err.println("Problem searching directory: " + e);
    Any help will be highly appreciated.

    Not able to get group name by using memberof class, getting Total groups as 0 even I am member of that group. Through this memberof class I am trying to find full qualified name(DN) of my group.
    code I have used:
    //specify the LDAP search filter
                   String searchFilter = "(&(objectClass=user)(CN=Username))";
                   //Specify the Base for the search
                   String searchBase = "";
    Also I have used,
                 String searchFilter = "(&(objectClass=user)(CN=Username))";
                   //Specify the Base for the search
                   String searchBase = "ou=ibmgroups,o=ibm.com";
    But in both cases I am getting value for Total groups as 0.
    Code Reference:
    * memberof.java
    * December 2004
    * Sample JNDI application to determine what groups a user belongs to
    import java.util.Hashtable;
    import javax.naming.*;
    import javax.naming.ldap.*;
    import javax.naming.directory.*;
    public class memberof     {
         public static void main (String[] args)     {
              Hashtable env = new Hashtable();
              String adminName = "CN=Administrator,CN=Users,DC=ANTIPODES,DC=COM";
              String adminPassword = "XXXXXXX";
              String ldapURL = "ldap://mydc.antipodes.com:389";
              env.put(Context.INITIAL_CONTEXT_FACTORY,"com.sun.jndi.ldap.LdapCtxFactory");
              //set security credentials, note using simple cleartext authentication
              env.put(Context.SECURITY_AUTHENTICATION,"simple");
              env.put(Context.SECURITY_PRINCIPAL,adminName);
              env.put(Context.SECURITY_CREDENTIALS,adminPassword);
              //connect to my domain controller
              env.put(Context.PROVIDER_URL,ldapURL);
              try {
                   //Create the initial directory context
                   LdapContext ctx = new InitialLdapContext(env,null);
                   //Create the search controls          
                   SearchControls searchCtls = new SearchControls();
                   //Specify the search scope
                   searchCtls.setSearchScope(SearchControls.SUBTREE_SCOPE);
                   //specify the LDAP search filter
                   String searchFilter = "(&(objectClass=user)(CN=Andrew Anderson))";
                   //Specify the Base for the search
                   String searchBase = "DC=antipodes,DC=com";
                   //initialize counter to total the group members
                   int totalResults = 0;
                   //Specify the attributes to return
                   String returnedAtts[]={"memberOf"};
                   searchCtls.setReturningAttributes(returnedAtts);
                   //Search for objects using the filter
                   NamingEnumeration answer = ctx.search(searchBase, searchFilter, searchCtls);
                   //Loop through the search results
                   while (answer.hasMoreElements()) {
                        SearchResult sr = (SearchResult)answer.next();
                        System.out.println(">>>" + sr.getName());
                        //Print out the groups
                        Attributes attrs = sr.getAttributes();
                        if (attrs != null) {
                             try {
                                  for (NamingEnumeration ae = attrs.getAll();ae.hasMore();) {
                                       Attribute attr = (Attribute)ae.next();
                                       System.out.println("Attribute: " + attr.getID());
                                       for (NamingEnumeration e = attr.getAll();e.hasMore();totalResults++) {
                                            System.out.println(" " +  totalResults + ". " +  e.next());
                             catch (NamingException e)     {
                                  System.err.println("Problem listing membership: " + e);
                   System.out.println("Total groups: " + totalResults);
                   ctx.close();
              catch (NamingException e) {
                   System.err.println("Problem searching directory: " + e);
    Any help will be highly appreciated.

  • FindGroups - Error while getting group list for login user

    Hi All,
    I am using below code snippet to search a group in OIM but it gives me "Error while getting group list for login user" error message.
    tcResultSet rsetAss = null;
    tcGroupOperationsIntf groupIntf = (tcGroupOperationsIntf)utilFactory.getUtility("Thor.API.Operations.tcGroupOperationsIntf");
    HashMap mapGrp = new HashMap();
    mapGrp.put("Groups.Group Name","DEF_GROUP");
    rsetAss = groupIntf.findGroups(mapGrp);     
    And i am ruuning this code using xelsysadm logon.
    com.thortech.xl.util.config.ConfigurationClient.ComplexSetting config = ConfigurationClient.getComplexSettingByPath("Discovery.CoreServer");
    Hashtable env = config.getAllSettings();
    com.thortech.xl.crypto.tcSignatureMessage moSignature = tcCryptoUtil.sign("xelsysadm", "PrivateKey");
    utilFactory = new tcUtilityFactory(env, moSignature);     
    Any guess?
    Thanks & Regards
    Inbaa.

    Here it is Rajiv,
    public class GetUserApprover {
    private String defGroup = "DEF_GROUP";
    public tcUtilityFactory getUtilFactory()
    tcUtilityFactory utilFactory = null;
    try
         logger.debug("Initializing the utilFactory");
         com.thortech.xl.util.config.ConfigurationClient.ComplexSetting config = ConfigurationClient.getComplexSettingByPath("Discovery.CoreServer");
    Hashtable env = config.getAllSettings();
    com.thortech.xl.crypto.tcSignatureMessage moSignature = tcCryptoUtil.sign("xelsysadm", "PrivateKey");
    utilFactory = new tcUtilityFactory(env, moSignature);
    catch(Exception ex)
         logger.info("Error while getting the utilFactory" + ex.getMessage());
         System.out.println(ex.getMessage());
    return utilFactory;
    public String getGroupKey(String defGroup){
              String groupKey = null;
              tcUtilityFactory utilFactory = getUtilFactory();
              if(utilFactory != null)
         System.out.println("utilFactory not null. Searching for group:" +defGroup );
                   try
              tcResultSet rsetAss = null;
              tcGroupOperationsIntf groupIntf = (tcGroupOperationsIntf)utilFactory.getUtility("Thor.API.Operations.tcGroupOperationsIntf");
              HashMap mapGrp = new HashMap();
              mapGrp.put("Groups.Group Name","DEF_OWNER_GROUP");
              System.out.println("Finding Group....");
              rsetAss = groupIntf.findGroups(mapGrp);          
              System.out.println("RowCount-->" +rsetAss.getRowCount() );
              rsetAss.goToRow(0);
              groupKey = rsetAss.getStringValue("Groups.Key");
         System.out.println("GroupKey-->" + groupKey);
         catch(Exception e){
              System.out.println("Error" + e.getMessage());
              return (java.lang.Object)groupKey;
    }

  • Search customers by account group

    Hi experts,
    I want to search customers by account group.
    Please explain the steps to achieve this.
    Thanks

    Dear Jamal
    Go to XD03, place your mouse next to Customer and press F4.  You will have some options to choose based on which, the customer list will be displayed.
    In the said screen, on top right side, you can see two arrows one pointing towards left side and another one pointing towards right side.  There is one more button next to arrow pointing right side.  Select that in which there is an option [Account group]   Place your mouse on that so that you can see customer list based on Account group.
    Alternatively, go to SE16, input table [KNA1]  and input Account group and execute.  You will get the desired result.
    thanks
    G. Lakshmipathi

  • Hey How Do I Get Group Message On The IPhone 4s because some reason it doesn't want to show . First i did is setting then messages  it only show imessage and message count )HELP)

    ey How Do I Get Group Message On The IPhone 4s because some reason it doesn't want to show . First i did is setting then messages  it only show imessage and message count )HELP)

    At the bottom of the page Settings > Messages you should have a section headed "SMS/MMS" Turn MMS messaging on then you can turn group message on.

  • Every time I click something on web pages, like a link or a search bar, I get a poEvery time I click something on wr a search bar, I get a pop-up. It's usually a semi-related pop-up, like on Apple websites, I get a lot of MacKeeper pop-ups.

    Every time I click something on web pages, like a link or a search bar, I get a pop-up. It's usually a semi-related pop-up, like on Apple websites, I get a lot of MacKeeper pop-ups. I let my younger brother use my laptop yesterday, and now this is happening. I think he might have downloaded something, but I don't know what it is called or anything so I don't know how to delete it.
    I have a Macbook pro.
    Thank you!

    Your brother may have downloaded and installed something known as "adware." To see if that's the case, visit thomas_r.'s The Safe Mac website and look at the Adware Removal Guide page. You may also be able to use his Adware Removal Tool to get rid of the junk.
    Good luck,
    Clinton

  • Infopath form for sharepoint 2013 lags when searching for person or group.

    Dear all,
    After implementing a infopath form on sharepoint, the search for person or group column lags when I search for someone the second time. (The first time won't lag). Is there a fix to this? And is there a way to modify the search for person or group function
    to sharepoint OOTB person or group search? I think the OOTB one is a lot better. Thanks all.
    Timothy Liu

    Have a look at this thread which discussed a same question:
    http://social.msdn.microsoft.com/forums/sharepoint/en-US/c55f4245-b2b0-410b-94fc-2afd1ef80da8/preventing-users-from-editing-other-users-infopath-forms
    thanks,
    Flynn

  • ITunes crashes when doing a power search. I get a Microsoft Visual C   Runtime Library Error message: Program C:\Program Files (x86)\iTunes\iTunes.exe R6025.  Pure virtual functional call.  If I select ok, Windows 7 pops up with iTunes has stopped working

    iTunes crashes when doing a power search. I get a Microsoft Visual C   Runtime Library Error message: Program C:\Program Files (x86)\iTunes\iTunes.exe R6025.  Pure virtual functional call.  If I select ok, Windows 7 pops up with iTunes has stopped working and then it shuts iTunes down.  Anyone else every have this issue.  Any ideas on a fix?
    Thanks,

    For general advice see Troubleshooting issues with iTunes for Windows updates.
    The steps in the second box are a guide to removing everything related to iTunes and then rebuilding it which is often a good starting point unless the symptoms indicate a more specific approach. Review the other boxes and the list of support documents further down page in case one of them applies.
    Your library should be unaffected by these steps but there is backup and recovery advice elsewhere in the user tip.
    tt2

  • Hi i just bought a wireless router and i cannot get it to...

    hi
    i just bought a wireless router and i cannot get it to work. it is a wrt54g v6. the power light keeps flashing. I tried talking with linksys to get it fixed, but nothing is working. it says to disconnect from the modem and update my firmware, but i cant get the IP address to come up on the address bar. can someone please help me out.
    thank you
    angela

    If you have just bought the router and it has a flashing power light return the router. It is not worth trying to revive a broken router in that case. Return the router and get a properly working one. I would not want to start with a broker router even if you may be able to revive it. You'll never know what caused the problem and whether you will have more issues later.

  • My homepage, cnn, loads but is then redireted to yahoo search and I get a 404 error message

    I downloaded 4.0 at work and at home. home works fine. at work when I open Foxfire, cnn is my homepage. cnn loads, but is redirected to yahoo search. I don't know what it is searching for; I get a 404 error message. I also have a Yahoo menu button between Bookmarks and Tools. I have uninstalled 4.0 and reinstalled. I have reinstalled 3.? but it continues to happen. How can i get rid of this Yahoo problem? I really don't want to go back to Explorer and I refuse to go to Foxnews.

    I'm glad I was able to help.  I kind of wish mine hadn't worked because I ended up being one of the "lucky" individuals where my phone didn't restore from the backup and I lost all of my contacts, calendar appts, notes, etc.  It took me an extra 2 hrs last night to rebuild the next month worth of appts and try to rebuild my contact list from my yahoo contacts.  Oh well.  I will be getting an android at my next upgrade.  I'm tired of all of the BS that comes with owning an iPhone.

  • I am no longer able to get group text on my iphone4 how do I fix this

    I Am no longer able to get group text on my iPhone4 how do I fix this

    Hello Jchild!  I'm sorry for any issue with group messaging on your iPhone 4. Let's see what we can do to get this going for you OK? Please try these steps first: http://vz.to/1DVzEoW Once that's done, please send the group message and let us know if the message is received by the recipients. Please include your own number in the recipients list, so you can test and make sure you receive it too. Keep us posted!  ChristinaB_VZW Follow us on Twitter @VZWSupport If my response answered your question please click the "Correct Answer" button under my response. This ensures others can benefit from our conversation. Thanks in advance for your help with this!!

  • How to get group email addresses in BCC on iPad?

    Have recently bought iPad mini, have MacBook so synced. Cannot get group email addresses to show up in iPad addresses book, and can't get them into bcc on mail?

    That is because groups cannot be added in the iPad mail app, as bizarre as that seems. That functionality does not exist. You cannot create groups in the contacts app on the iPad either. Yoy can create them in iCloud.com but not on the iPad itself. You just have to add the email addresses one at a time by tapping the blue + button and selecting the contact from the contacts window that will pop up.
    There are apps that let to email to groups .....
    MailShot
    https://itunes.apple.com/us/app/mailshot-group-email-done/id410279354?mt=8
    Group Email!
    https://itunes.apple.com/ca/app/group-email!-mail-client-attachments/id380690305 ?mt=8

  • Search parameters are getting cleared after search result

    Hi ,
    We have created z component with search and search result view based on only value nodes.
    we are able to get search result with the give search criteria. After getting result   search parameters are getting refreshed.
    how to keep those values in search parameters.   which method i need to redefine..... what will be the part of code.
    Please suggest .
    thanks
    ram

    Hi,
    You have to set the search field values after the result obtained. I believe you can find this in any of the standard advanced search components - BT111S_OPPT etc. for reference.
    Regards,
    Harish P M

  • Can't get group messages from iphone user

    I use to be able to get group messages from an iPhone user when I was using my Razr Maxx but switched to an iPhone for a couple months, then back to the Razr Maxx and now I can't get group messages from my iPhone users. I'm using the same text message service I was using before trying an iPhone so I don't know why I now can't get group messages.

    http://support.apple.com/kb/TS5185

Maybe you are looking for

  • DVI to ADC adapter - do I need to shutdown or sleep before plugging in?

    do I need to powerdown or sleep my MacBook Pro before pluggin in the DVI to ADC adapter which powers my Apple cinema display? thanks! -N MacBook Pro 2.33 GHz core 2 duo   Mac OS X (10.4.8)   Apple cinema display

  • Youtube on Nokia x6

    Hello. I am unable to play youtube videos on my new Nokia X6. I do browsing by connecting to WLAN. When I open the pre-installed 'youtube' on X6 and search for any videos, I can find them easily and quickly, but not able to play them. Also my interne

  • Back buttons and required fields...how to implement?

    Hello I would like some thoughts on the best approach to the following problem please. -You have a wizard, lets say made up of 2 pages. -Page 2 has some required fields. -User goes from page 1 to page 2 then wants to return to page 1 for whatever rea

  • Mplayer full screen w/ cvidix or sdl

    been trying to run mplayer w/o x in full screen. cvidix runs fine, but it doesn't stretch (yes, i know the -fs option), and sdl, while it does run full screen, scrambles with the colors.

  • AS01- is there any batch loading for asset card creation?

    Hi All, I need advise here, is there any batch loading for end user to create asset card in SAP in Batch? As from AS01, it only allows one creation each time, it will waste a lot of end user time if there're many inventories to be converted to Fixed