Getting Member Names in MaxL

I'm trying to find a way to get member names such as the Esscmd "Getmembers" does. Can someone please post an example. Thanks.

The following getDimentions() returns all members in XML format, it was just writen by myself yesterday :)public String getDimentions() throws EssException{     String xml = "<?xml version=\"1.0\" encoding=\"GBK\"?>\n";     String s;     IEssCubeOutline outline = curCube.openOutline();     IEssIterator dims = outline.getDimensions();     xml = xml + "<!--   Listing dimentions for cube ["+          curCube.getApplication().getName()+"."+curCube.getName()+"]. -->\n\n";     xml = xml + "<Dimensions>\n";     for (int i=0; i<dims.getCount(); i++)     {          IEssDimension dim = (IEssDimension)dims.getAt(i);          s = getDimentions_helper(dim.getDimensionRootMember());          xml = xml + s;     }     xml = xml + "</Dimensions>";     return xml;}private String getDimentions_helper(IEssMember mbr) throws EssException{     String ret = "";     for (int i = 0; i < mbr.getGenerationNumber(); i++)          ret = ret + "\t";     IEssIterator mbrs = mbr.getChildMembers();     if (mbrs.getCount()==0)     {          ret = ret + "<Member name=\"" + mbr.getName() +               "\" gen=\""+String.valueOf(mbr.getGenerationNumber())+"\" />\n";     }     else     {          ret = ret + "<Member name=\"" + mbr.getName() +               "\" gen=\""+String.valueOf(mbr.getGenerationNumber())+"\">\n";          for (int i = 0; i < mbrs.getCount(); i++)          {               ret = ret + getDimentions_helper((IEssMember)mbrs.getAt(i));          }          for (int i = 0; i < mbr.getGenerationNumber(); i++)               ret = ret + "\t";          ret = ret + "</Member>\n";     }     return ret;}

Similar Messages

  • 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.

  • Getting the name of the member on mouse up

    Hi everyone!
    I am having images as members in my frame.What i want is to
    get the name of the member (image) when i click the image.
    I want to write a script on mouseup event of that image and
    should get the name of the image i have clicked,
    Thanks

    on mouseUp me
    put sprite(me.spriteNum).member.name
    end

  • MaxL - Cardinality of Member Names

    I prepared a text file to load a transparent partition via MaxL. The error I'm receiving is "cardinality of member names must match". I am very unsure about the meaning of this error. It seems to have to do with either the Mapped Target Area or the Mapped Globally syntax.
    Mapped targetarea1 ("") to (''NoEmploymentType")
    Mapped targetarea2 ("") to (''NoEmploymentType")
    Mapped targetarea3 ("") to (''NoEmploymentType")
    Mapped Globally ("Periodic") to ("")
    Mapped Globally ("Whole") to ("");
    Can anyone shed some light on this error?
    Thank you

    Hello,
    The error message points to a mismatch in the number of elements you want to connect.
    I am not sure if you are familiar with setting up partitions. In case you have less experience, start small and in the wizard. When this works reliable, start creating them with MaxL. And expand the section onto what is needed.
    Regards,
    Philip Hulsebosch.

  • HT204053 I am having trouble setting up icloud on MAC. In system preference it is listed as mobile me, it asks for member name and password. It also has a learn more button under "try mobileme for free". I am not getting anywhere

    I am having trouble setting up icloud on MAC. In system preference it is listed as mobile me, it asks for member name and password. It also has a learn more button under "try mobileme for free". I am not getting anywhere

    It's evident that you are using Snow Leopard or earlier (or very early Lion) since you have the now obsolete MobileMe preference pane.
    The minimum requirement for iCloud is Lion 10.7.5 (Mountain Lion preferred): the iCloud Preference Pane does not appear on earlier systems - the MobileMe pane appears on Lion and earlier but is non non-functional - you cannot now open or access a MobileMe account.
    To make use of iCloud you will have to upgrade your Mac to Lion or Mavericks, provided it meets the requirements.
    The requirements for Lion are:
    Mac computer with an Intel Core 2 Duo, Core i3, Core i5, Core i7, or Xeon processor
    2GB of memory
    OS X v10.6.6 or later (v10.6.8 recommended)
    7GB of available space
    Lion is available in the Online Apple Store ($19.99). Mountain Lion (10.8.x) is also available there at the same price but there seems little point as the system requirements are the same for Mavericks (10.9.x) - which is free - unless you need to run specific software which will run on Mountain Lion only.
    The requirements for Mountain Lion and Mavericks are:
    OS X v10.6.8 or later
    2GB of memory
    8GB of available space
      and the supported models are:
    iMac (Mid 2007 or newer)
    MacBook (Late 2008 Aluminum, or Early 2009 or newer)
    MacBook Pro (Mid/Late 2007 or newer)
    Xserve (Early 2009)
    MacBook Air (Late 2008 or newer)
    Mac mini (Early 2009 or newer)
    Mac Pro (Early 2008 or newer)
    It is available from the Mac App Store (in Applications).
      You should be aware that PPC programs (such as AppleWorks) will not run on Lion or above; and some other applications may not be compatible - there is a useful compatibility checklist at http://roaringapps.com/apps:table
      If you are running Leopard on an Intel Mac you will have to upgrade to Snow Leopard to access the Mac App Store - it's available in the online Apple Store. However if you have a PPC Mac you cannot run Snow Leopard and cannot proceed further.

  • List of avaliable MDX properties / Always show member name instead of alias

    Hi all,
    does anyone know if there is a list of ALL available MDX properties which can be used in an MDX query with Essbase?
    There is a very small list in the technical documentation (http://docs.oracle.com/cd/E12825_01/epm.111/esb_techref/mdx_properties.htm), however I know there are a lot more properties.
    E.g. one property which is not documented is ANCESTOR_NAMES:
    WITH MEMBER [Year].[dummy] AS '0', SOLVE_ORDER = 0
    SELECT {[Year].[dummy]} on columns,
    [Account].Members properties ANCESTOR_NAMES on rows
    FROM [App.Db];
    Anyone knows if there is such a list?
    And another question:
    The Query always brings up the alias of the members (e.g. [Account].Members). Is there a way that per default the member name instead of the alias is used? Without using the MEMBER_NAME property?
    Essbase version: 11.1.1.3
    Thanks
    Th

    amaerki wrote:
    For the second question regarding the member name try the following statement in a MaxL session:
    alter session set dml_output alias off;works like a charm, many thanks.
    Anyone an idea on the list of properties?
    Edit: found something related to XMLA: http://docs.oracle.com/cd/E12825_01/epm.111/aps_admin/ch03s03s07.html
    However, e.g. the porperty PARENT_UNIQUE_NAME does not work. Also the Book MDX solutions has a list with it with e.g. PARENT_UNIQUE_NAME specified which does not work...
    Anyone an idea how to get a list of all properties valid with MDX using Essbase?

  • Validation Rule Error :Invalid Member Name In Lookup ({|0|}) value

    We defined fdm validation rule as follows.
    |Actual, April, 2010, YTD, ENTITY CURRENCY, Mumbai, TotalAssets, [NONE], [NONE], [NONE], [NONE], [NONE]|-|Actual, April, 2010, YTD, ENTITY CURRENCY, Mumbai, TotalLiabilities, [NONE], [NONE], [NONE], [NONE], [NONE]|= 0
    After testing the above rule definition, it gives below error message.
    Err = Invalid Member Name In Lookup ({|0|}) value in ID indicates invalid member)
    Scenario: ACTUAL [1]
    Year: 2010 [2010]
    Period: APRIL [83886080]
    View: YTD [2]
    Entity: MUMBAI [7]
    Parent Entity: MUMBAI [7]
    Value: ENTITY CURRENCY [-1]
    Account: TOTALASSETS [150]
    ICP: [NONE] [-1]
    C1: [MISSING_VALUE] [-1]
    C2: [NONE] [0]
    C3: [NONE] [0]
    C4: [NONE] [0]
    Lookup Error (2)
    Err = Invalid Member Name In Lookup ({|0|}) value in ID indicates invalid member)
    Scenario: ACTUAL [1]
    Year: 2010 [2010]
    Period: APRIL [83886080]
    View: YTD [2]
    Entity: MUMBAI [7]
    Parent Entity: MUMBAI [7]
    Value: ENTITY CURRENCY [-1]
    Account: TOTALLIABILITIES [-1]
    ICP: [NONE] [-1]
    C1: [MISSING_VALUE] [-1]
    C2: [NONE] [0]
    C3: [NONE] [0]
    C4: [NONE] [0]
    Also we could see in the Expression after lookup substitution (scratch pad): we are getting 0-0=0.
    Please provide you inputs.

    I have not looked closely, but C1 is showing as "Missing Value". Have you checked to see if [None] is a valid member for the account you have selected (TotalLiabilities)?

  • Can we use Aliases instead of member name in Calc Manager

    We migrated business rules to Calc Manager. After migration Calc Managers are not getting validated (stating the member is missing in the database). Later found out that in the script it has alias name instead of member name which was causing this error.
    example
    Member name = C001
    Alias = Texas
    in the script it is mentioned Texas = 5; (this statement throws an error while validating, stating Texas is not present in the outline, even though Texas is present in the Alias table as an alias for C001).
    Once I modify the script to C001 = 5; it gets validated without any issue.
    Does this mean in Calc Manager we cannot use Aliases unlike business rules and Calc Scripts?
    Please advice.

    The 'Defects Fixed' section of the release notes for 11.1.2 includes...
    "Calculation scripts validate inconsistently in Essbase and Calculation Manager (8800397)."
    ...which is pretty broad!
    Can you run the rules OK? If so, I'd just ignore the Calculation Manager validation message.

  • How to truncate the last 4 characters of a member name?

    <p>Hi,</p><p> </p><p>I've got a few accounts with names ending with the 4 characters:".FCT"</p><p> </p><p>The accounts names are of different length like PL20100.FCT andMK110.FCT</p><p> </p><p>I'm trying to create a rule like PL20100.FCT = PL20100</p><p> </p><p>I've tried to FIX on the accounts without the ".FCT"and to concatenate to get the ".FCT" but it's not allowedto concatenate a member name used on the left hand side.</p><p> </p><p>Any suggestion to do this in a smart way would be greatlyappreciated.</p>

    Try wrapping in a calc block<BR><BR>"PL20100"(<BR>@MEMBER(@CONCATENATE(@NAME("PL20100"), ".FCT")) = "PL20100";<BR>)<BR><BR>You might have to play with this a little, but the idea should work.

  • How do I change MobileMe/iWeb member name?

    We registered the iWeb account on my computer in my husband's name because we thought we would use it for family purposes only. Recently, I have realized that I could better use this account for my work. Is there a way for me to change my MobileMe/iWeb member name? I can change account details through System Preferences/.mac, but I am not finding a way to change the member name. I want to change it so the URL will be web.mac.com/myname instead of web.mac.com/hisname. Can I do this?

    Welcome to the Apple Discussions. Technically speaking, using the MobileMe for commercial sites is against the TOU although we've not heard of any sites getting bumped for it. But commercial servers will be faster and more stable since they don't have to facilitate all of the bells and whistles of the MobileMe accounts.
    You can purchase a domain name from one of the providers (GoDaddy.com is one many recommend for names and hosting) and have domain name forwarding activated from your actual site URL (http://web.ME.com/MobileMeAccount_name/your_work_sitename/index.html) to the domain name, www.yourspecialname.com.
    OT

  • ** Invaild Member Names when using @XREF **

    To the Oracle Nation,
    I am using the @XREF function to obtain data from one database to copy to another. an Example of my calc string is as follows:
    Fix(Jan:Dec,Product,NY,Other) - where NY = Next Year Budget
    "Sales" = @XREF(GetData,"Sales Wages",Soda,Entity,"NY working member",West);
    When I run the calculation, the status shows that it has ran to success; however, no data is displayed when data is pulled from the target database. To throw a little twist into the mix, when I change "NY" to "NX" in my target database, it works just fine.
    That being said, is NY, or any other name string, a restricted member name due to conflicts within Essbase. As side not, It also does not work with NNY or NNNY. We are at a lose on this one, and want to put this issue to rest.
    Thank you.
    Concerned Essbase Admin

    To jump on Stuart's comment, I have had exactly this problem with XREF's.
    In the bad old days (Planning 3.5.1, Essbase 6.5.x), I would actually force the creation of blocks in the target by assigning zeros and then clearing the values out to ensure that the calculation went through. Very painful and slow.
    If block creation is in fact your issue, you should be able to use the SET CREATEONMISSINGBLK setting to create your blocks: http://download.oracle.com/docs/cd/E10530_01/doc/epm.931/html_esb_techref/calc/set_createnonmissingblk.htm
    You might want to be careful, however, with how you use that setting and target very carefully what/where you are creating blocks as you might otherwise get way, way more blocks than you want.
    I have not followed my own advice, wondered why my db was so big/slow, and then used SET MSG DETAIL to see all of the blocks roll in. Whoops. At least my numbers calculated. :)
    Regards,
    Cameron Lackpour

  • How to extract Member Names in MDX script?

    I have a MDX script that by default gives me member aliases. How can I change it so it'd give me member names? I know I can use something like that:
    NON EMPTY [Employee].Levels(0).Members DIMENSION PROPERTIES [Employee].[Member_Name]ON AXIS(4)
    but then it gives me member aliases AND member names, and I need the names only.
    Thanks!

    The syntax you have is the way to get the member names, but as I said you wouldn't like the way it is displayed. MDX is not a reporting language and so it does not have the nice formatted selections. You will get both alias and member name by using the properties. you could run the output through some sort of parser (Perl perhaps) to get the format you want

  • Network Error []: Cannot Get Host Name when running business rules

    Guru's
    We are getting the following error intermittently when we are running business rules (Planning Application >>Tools>>Business Rules) or running SmartView refreshes:
    Network error []: Cannot Get Host Name
    The following is then logged in the Essbase Application logs:
    Local/Application/Database/admin@Native Directory/Error(1042022)
    Network error []: Cannot Get Host Name.
    A quick look at the Essbase Error Messages Doc says it is a network error and we have to consult the network documentation. Unfortunately this is not very descriptive so we logged an SR with Oracle but we don't seem to be getting a resolution.
    The environment is 11.1.2.0 and the architecture is as follows:
    Server 1 - MS Server 2008 x64:
    Planning, Calc Manager, Foundation Services, Framework Web Services, EAS, APS, Web Analysis, FR Web Services
    Server 2 - MS Server 2008 x64:
    Essbase Server
    Server 3 - MS Server 2008 x64:
    Framework Services, FR Print Services
    We have tried doing the following:
    1. Put in the server host names into the hosts file on the Hyperion Servers
    2.  Applied the following TCP/IP settings on all the Hyperion Servers and one of the user machines as a test:
          - Added a new DWORD Value named TcpTimedWaitDelay and set it to 30.
         - Added a new DWORD Value named MaxUserPort and set it to 65534.
         - Added a new DWORD Value named MaxFreeTcbs and set it to 6250
    3. Confirmed that there are no packet drops by monitoring the server NICs so no packet loss could be the cause of this issue
    4. The Essbase Config file has the following settings:
    NETDELAY 2000
    NETRETRYCOUNT 2500
    Has anyone come across this issue and if you managed to resolve it, how did you go about it.
    Thanx

    Hi Rahul
    The issue is happening to a number of calcs so it it not one calc specifically. I will ask the functional consultants to enhance the logging in the business rules so that we can see if the issue happens on a specific member\block etc and yes we do use Xrefs
    We can run this as a calc in EAS without any issues and it's intermittent because this business rule runs 95% of the time in Planning Application >> Tools >>Business Rules without any issues.
    Thanks

  • Run Time Prompt - showing alias instead of member name

    We have a Capex Planning application that uses right-click menus to launch business rules with Run Time Prompts. We are using Planning 11.1.2.1. Even we the alias table set, when opening the RTP it pulls in the member name rather than alias.
    There is an Oracle KB article (Show the Alias name in the Business Rule Run-Time Prompt [ID 857832.1]) that has this solution:
    Take the following steps to add the alias name to the run-time prompt along with the member name.
    1. Log in to planning web.
    2. Navigated to File >> Preferences >> Application settings.
    3. Select Show Alias in Member Selection and change the option from no to yes.
    4. Save it.
    But in 11.1.2.1, there is not option for "Show Alias in Member Selection" under Planning Preferences.
    We have an SR open, but figured maybe someone else has run into this issue as well.
    Does anyone know how to get the aliases to show on a Run Time Prompt rule in 11.1.2.1?
    Thanks for your help!!

    Deleting and rebuilding the dimension in the outline will enable you to build the members in the order you may desire if the file is in a given order.

  • BIEE 10.1.3.3.2 do not show dimension member name

    after importing essbase outline, the decentdant name only show in the format (Gen n, Dimension_name), but not the real member name.
    e.g. when using the Demo.Basic database in the Essbase installation, the next generation of Market dimension show in BIEE as Gen2,Market, but the member name is really East or West in the outline.
    chuliang

    Hi,
    Even i am getting the same error:
    oracle.jbo.InvalidOperException: JBO-25221: Method SecurityLimitEventProducer.raiseExitEvent() not supported
    oracle.jbo.InvalidOperException: JBO-25221: Method SecurityLimitEventConsumer.handleExitEvent() not supported
    Actually m trying to create contextual event , in SecurityLimitEventProducer i have created method witch will be raised to pass the data to SecurityLimitEventConsumer.handleExitEvent().
    But it is not working.
    Producer page defn:
    <methodAction id="raiseExitEvent" InstanceName="SecurityLimitEventProducer"
    DataControl="SecurityLimitEventProducer"
    RequiresUpdateModel="true" Action="invokeMethod"
    MethodName="raiseExitEvent" IsViewObjectMethod="false"
    ReturnName="SecurityLimitEventProducer.methodResults.raiseExitEvent_SecurityLimitEventProducer_raiseExitEvent_result">
    <NamedData NDName="helper"
    NDType="com.ui.taskflows.sms.securityLimitTaskflow.view.helper.SecurityLimitHelper"/>
    <events xmlns="http://xmlns.oracle.com/adfm/contextualEvent">
    <event name="exitEvent"/>
    </events>
    </methodAction>
    Consumer page defn:
    <methodAction id="handleExitEvent" InstanceName="SecurityLimitEventConsumer"
    DataControl="SecurityLimitEventConsumer"
    RequiresUpdateModel="true" Action="invokeMethod"
    MethodName="handleExitEvent" IsViewObjectMethod="false">
    <NamedData NDName="object" NDType="java.lang.Object"/>
    <events xmlns="http://xmlns.oracle.com/adfm/contextualEvent">
    <event name="exitEvent"/>
    </events>
    </methodAction>
    </bindings>
    <eventMap xmlns="http://xmlns.oracle.com/adfm/contextualEvent">
    <event name="exitEvent">
    <producer region="SecurityLimitTaskflow1.SecurityLimitTaskflowPageDef.raiseExitEvent">
    <consumer region="" handler="handleExitEvent">
    <parameters>
    <parameter name="payLoad" value="${payLoad}"/>
    </parameters>
    </consumer>
    </producer>
    </event>
    </eventMap>
    Do u find any mistake ...?
    Pls reply.

Maybe you are looking for

  • SolMan 7.1 SPS 11: Can not Maintain a solution

    Hello, I have installed a SolMan 7.1 with SPS 11. I can not maintain any solution. When I click on Maintain a solution in System Monitoring -> Setup, a popup windows opens and close. In solman_ewa_admin, if I click on a solution, no new window is sta

  • IF ELSEIF ELSE  error

    Good Morning This code compiles fine: IF v_status_code = '3' THEN INSERT INTO CRAM_STG (ID, ITEM_NO, CHGNBR, UI, SUPPLYACTIONCODE, QTY, ACCT, RECEIPTDATE, REQUISITIONDATE, PROCESSDATE) VALUES ( to_char(sysdate,'YYMMDDHH24MISS') || test_seq.nextval, n

  • Overprint preview

    I'm using CS2.  Is there a way to get overprint preview to be the default mode for InDesign display?  I'm getting really tired of having to select it every time I launch InDesign.

  • Prgess indicator on long running jobs

    I have an FX application that is directly linked to my database. The program allows all DML operations as well as user defined actions (action commands and various other methods). I have the same application running in Swing, SWT, Canoo ULC and al wo

  • [iOS 8.2] Notification every time you start an app after you turn off the Celluar Data for it.

    Why on earth is this notification ever needed? I turned off Cellular Data for a specific app intentionally to prevent it using Cellular Data!! When it is turned off, I know it, I don't need you to told me about that, OK?! Not to mention it pops up ag