Hot to get group name in obiee 11g

Hi All,
We have a requirement that whenever user login in answers, based on his group he should be able to see only his department data.If some how captures the group name we can filter the data by assisgning the group name to the variable but we stuck up with getting the group name.Please help us

VALUEOF(NQ_SESSION.GROUP) shud give u the value of GROUP
http://108obiee.blogspot.in/2009/10/referencing-group-session-variable-in.html
http://gerardnico.com/wiki/dat/obiee/system_session_variable
Pls mark answered if it solves the issue.

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.

  • Cannot get into 'Dashboard Properties' (OBIEE 11g) using IE 8

    When I enter an OBIEE 11g dashboard (as an Administrator) and click on "*Edit Dashboard*" & then click on "*Dashboard Properties*":
    1) the "*Dashboard Properties*" box pops up but...
    2) only the upper porting of the "*Dashboard Properties*" box displays
    3) the lower portion of the box never displays...it just stays all white. This portion is where the grid that would normally display the list of dashboard pages (where I could choose to hide pages)
    4) at the bottom left-had part of my browser, it says "*(11 items remaining)*"
    5) my browser stays locked like this & the only way to get out of it is to ctrl+alt+del
    Several things to note:
    1) I'm not sure when this started happening, but I noticed it sometime last week. I know in the past I was able to get into the dashboard properties, but now I cannot.
    2) I am on OBIEE 11.1.1.5.0
    3) I am on Win7 32-bit
    4) I am on version IE 8.0.7601.17514
    5) I can run OBIEE in Firefox and edit the dashboard properties just fine. This issue does not seem to exist in Firefox
    6) If I change to "*compatibility view*" in IE 8, I seem to be able to go into the "*Dashboard Propeties*" box just fine...HOWEVER, when I try to go into "*Edit Dashboard*" (while in "*compatibility view*") many of my objects (columns/sections) overlap & are weirdly placed all over the screen.
    7) I have tried modifying the httpd.conf file as per the official Oracle white paper relating to OBIEE 11g in IE8 (Doc ID 1312299.1) and it didn't seem to fix my issue
    8) I have also tried uninstalling & re-installing IE8 but that also did not seem to fix my issue.
    Has anyone else encountered this issue? If so, any suggestions on what one might do to fix it?
    Any help is greatly appreciated.

    Good suggestion. I have tried IE 8 and 9 and Firefox with the same results. An error is thrown in IE 8:
    "Message: Can't move focus to the control because it is invisible, not enabled, or of a type that does not accept the focus."
    I believe this is referring to the fact that it cannot move focus to the username text field as the field is not displayed.
    Another note, our steps for upgrade were as follows so not sure if this is part of the problem:
    1. Install 11.1.1.3 OBIEE
    2. Upgrade to 11.1.1.5 OBIEE
    3. Run ua.bat for publisher schema and repository
    4. Now, do not see username/pw at login and thus cannot login

  • When I enter a group name into the Bcc field and try to send the message, I get "[group name] is not a valid e-mail address..."

    Been using the same template to send a weekly newsletter for a year or two but now with a recent update to Thunderbird the group name is rejected when I try to send the message:
    With a group name in Bcc field, when I press "Send" and try to send the message, I get this alert: "[group name] is not a valid e-mail address because it is not of the form user@host. You must correct it before sending the e-mail."

    This has been reported as [https://bugzilla.mozilla.org/show_bug.cgi?id=1060901 Bug #1060901]. If you have an account on Bugzilla, please consider voting for that issue.
    Several other people have sent in the same support request as you, noting this happened after they upgraded to version 31.1.
    The exact error message is: XXXX is not a valid e-mail address because it is not of the form user@host. You must correct it before sending the e-mail.
    '''This happens in Thunderbird 31.1.0 when your mailing list description includes several words separated by spaces.'''
    Although not ideal, these workarounds should let you use your mailing lists until a proper fix is implemented:
    * While composing an email open the address book and select the list you are trying to send to, highlight all the names in the list and drag them to the To: box. This uses your existing data without modifying it.
    * Replacing the blanks " " between the words in such lists' descriptions with an underscore "_". This requires modifying your mailing list(s) description(s).
    * Downgrade to a previous version and disable automatic updates (Windows)

  • Getting group names for a list of IDs

    I've got the list of group IDs of which the user is a member, and I'm trying to get the group names in a single query. I've got it working where I get each name in a loop, but I'm concerned about performance if a user is a member of a large number of groups.
    This is the Java code I've been fooling with:
    Object qFilter[][] = new Object[3][1];Integer ids[] = new Integer[iGroupIDs.length];for (i = 0; i < iGroupIDs.length; i++) { ids[i] = (Integer)iGroupIDs; }
    qFilter[0][0] = new Integer(PT_PROPIDS.PT_PROPID_USERGROUP_GROUPID); qFilter[1][0] = new Integer(PT_FILTEROPS.PT_FILTEROP_IN);qFilter[2][0] = ids;ptQueryResult = objMgrGroups.Query(PT_PROPIDS.PT_PROPID_USERGROUP_SIMPLENAME, -1, PT_PROPIDS.PT_PROPID_USERGROUP_SIMPLENAME, 0,-1,qFilter);
    I keep getting an exception:
    Native exception: The parameter is incorrect. (0x80070057): [ParseQueryFilter error on clause #0
    (0x80070057) Invalid property ID specified (0x10000)] (612,PTDispatch.cpp)
    I'm new to PT programming so I'm a bit stumped as to what is the issue. Any hints anyone can offer is appreciated. Thanks!

    Thanks to everyone - responded.
    This is group set up when creating user. This is standard functionality.
    What we do:
    Step 1.
    Using "Administer" tab in portal, then using "Create new groups" link, We have created various groups. We assigned six digit numeric value to group name. We have several groups, such as 001234, 002235, 003348. These group's have different privilege.
    Step 2.
    Using "Administer" tab, we create new user on a regular basis using "Create new users" link. Later on, we assign these new user to a group created in step 1.
    We have a custom table, where we store, user and their corresponding group information, such as:
    record user name group name date created
    1 aaa 001234 01-02-04
    2 bbb 001234 01-04-04
    3 ccc 002235 01-05-04
    Key in the table is based on both user and group name.
    What I need to find out is, when user 'aaa' logged in, to find out who is the user and what portal group this user belong to.
    Then join these two value to our custom table to make sure to match the user and his group name, and get other value from other table and display in the LOV.
    But I am not sure what API need to use in my query in LOV. Or is there any other way?
    Thanks

  • How to get Group Name of current Group Portal session?

    How do I obtain the Group Name associated with the Group Portal of the current user session?

    Michel,
    Thank you that worked. I have a follow up question that I am hoping you can answer.
    I am trying to build a drop menu for all the Portal Pages that appear in the nav
    bar. The drop down menu items should correspond to the users visible portlets for
    each Portal Page.
    The following code works if the ProfileIdentity is created for the Group, but does
    not return any results if the ProfileIdentity is created with the User.
    PagePersonalization pagePersonalization = portalPersonalization.getPagePersonalization(pageState.getPageIdentifier());
    if (pagePersonalization != null) {
         Iterator menuItr = pagePersonalization.getPortletPersonalizations();
         while (menuItr.hasNext()) {
              PortletPersonalization portletPersonalization = (PortletPersonalization)menuItr.next();
              String portletName = portletPersonalization.getDisplayName();
    Is there another way to obtain the information I am looking for?
    Thanks,
    Diana
    "Michel Bisson" <[email protected]> wrote:
    >
    Diana,
    You can retrieve the group name for the current session as follows:
    // Sample code... (disclaimer: not compiled!)
    import com.bea.portal.appflow.PortalAppflowFactory;
    import com.bea.portal.appflow.PortalSession;
    import com.bea.p13n,usermgmt.profile.ProfileIdentity;
    PortalSession portalSession = PortalAppflowFactory.createPortalSession(request,
    false);
    ProfileIdentity profileIdentity = portalSession.getIdentity();
    String groupName = profileIdentity.getGroupname();
    You can read the Javadoc online http://edocs.bea.com/wlp/docs40/javadoc/wlp/index.html
    for the classes used above.
    Hope this helps.
    Michel.
    "Diana" <[email protected]> wrote in message news:3ce1ac7c$[email protected]..
    How do I obtain the Group Name associated with the Group Portal of thecurrent user session?

  • Getting error while installing OBIEE 11g

    Hello,
    I am trying to install OBIEE 11g to my machine.I created the schema and all.
    at the end got this error at the installation progress step.
    The status bar shows 46% .
    Installation Failed. OUI Session failed invalid entry CRC (expected 0xa8bed9c4 but got 0x87bc0dd6).
    What to do now?
    Thanks

    Hi,
    Deinstalled & clean your registry and delete the obiee folders from the drive and follow the below steps,
    Reference link: Courtsey to Atulkumar.
    http://onlineappsdba.com/index.php/2010/08/14/obiee-11g-111130-documentation-installation/
    or
    - installed RCU
    - installed 64 bits JDK (jdk-6u21-windows-x64.exe)
    - installed Weblogic (wls1033_generic.jar) (Find the Steps : and Specify the installation Drive)
    - installed OBI as "software only" (hesr follow as per Viktor Kibsgaard said) (*Here also Specify the same installation Drive*)
    - configured OBI (config.bat you can find in <obi11g home>\Oracle_BI1\bin)
    Steps : You can find the generic jar here:
    http://www.oracle.com/technetwork/middleware/ias/downloads/wls-main-097127.html
    and take the generic one (http://download.oracle.com/otn/nt/middleware/11g/wls1033_generic.jar)
    You may install this by a command like this : java -XXm.... .... wls1033_generic.jar
    Then a installer pops up.
    Reference link: Courtsey to Atulkumar.
    http://onlineappsdba.com/index.php/2010/08/14/obiee-11g-111130-documentation-installation/
    Hope this works for you too.

  • Hot to get ITEM NAME

    Hello,
    is it possible to use *#CURRENT_ITEM_NAME#* in a function parameter?
    I want a function based validation and create a function. Then I created a element validation in my page with the PL/SQL-Expression Type and insert this code to start the function.
    rpf.vornamecheck(:#CURRENT_ITEM_NAME#)= 1
    In this point I dont want to insert the name of the Item manualy, because if I change the item name i also have to change it in the parameter of this validation.
    I test it a lot of times, but it doesn't work. Is there a other way to get the Name of an item (NOT LABEL)??

    I understand completely what you mean and I agree that it would be very good to have more ways to indirectly reference things to avoid
    hard coding page numbers and column_names. I am a newbie also and did not know javascript but I quickly discovered that it was easier to deal with javascript than to try to do things via plsql because javascript is easily available in the running page whereas to call plsql you have
    to know a lot more about the page load and page submit and partial page refresh and ajax and so forth. I simply do not know myself if there is a way that a change or blur can trigger a plsql check of that which changed. Maybe so using html_db? There's a big gap in my brain regarding that. I have made a personal choice to just go with javascript and not have to tackle the other ways of doing this because they
    are actually harder to understand than I am finding it to learn javascript.
    This is the two part javascript way. In this example we call a very simple javascript function timehourCheck which is defined in the
    javascript section of the page (other locations are possible). If it doesn't like the hour it actually nukes the item value. Note passing this the event object to the function. Some things 'this' has are this.id (the id which is what you asked about) and this.value the value.
    so a question would be is there an equivalent plsql based way of creating the kind of information passing that is obtained via the
    this event object in javascript?
    html form element attributes
    for the page item to be checked:
    onBlur="timehourCheck(this);"
    javascript part of page contains this:
    function timehourCheck(thisobj) {
    var mytext = thisobj.value;
    if (mytext.length == 0)
        {return;}
    if (mytext * 1 > 12)
       {alert('ERROR time hour ' + mytext + ' is > 12');
       thisobj.value = '';
    if (mytext * 1 < 0)
       {alert('ERROR time hour ' + mytext + ' is < 0');
       thisobj.value = '';
    } // end timehourCheck

  • Can't get Group name to be accepted in Mail

    I have  a group created in Contacts but Mail won't accept it or any other Group name in the To: line. When I hit Enter, the name just disappears. When I click on the plus sign at the right of the To: line, the Group names appear but when I double-click any of them, nothing happens. What am I doing wrong?

    As a work around until Apple fixes this, open Contacts, select the group, and control - click on it. It gives you an e-mail option.
    10.9.1 beta released

  • Get group Name

    Hi all !
    I developp an application with labview 2009. Different user can use this application. Each user may have specific rights depending on the group he belongs to. e.g. admin, operateur....
    To do this, i created severeal group in Windows XP, and severeal user in each group. In my application i want to retrieve the user ans the group of the user which is logged in. I found how to retrieve the user name, but i can't find anything to get the group he belongs to... i read severeal post in the forum and it seems to be impossible to do ....
    Any idea how to do this ??? Thanks for your future answer....

    I would search the registry, if the information is stored there. Look under the key CURRENT_USER.
    Felix 
    www.aescusoft.de
    My latest community nugget on producer/consumer design
    My current blog: A journey through uml

  • How to Perform Group By operation in OBIEE 11g

    Hi,
    I have created a report for the "Nationality count in department wise manner", since for this i need to give 'group by department' for getting correct answer...
    But in OBIEE 11g on presentation service how i need to give "Group BY" operation....for viewing correct count in nationality wise......
    Regards,
    Harry...

    Hi sai,
    U mentioned, but i couldn't clearly able to understand that.......Since to perform Group By i need to make some setting changes in content in Advanced Tab setting like that it is mentioned, but i need to perform in the following manner
    select count(nationality), nationality
    from per_all_people_f, per_all_assignment_f, hr_all_organization_units
    group by department
    Note: per_all_people_f-----------> dimension table, per_all_assignment_f--------------> fact table
    nationality from per_all_people_f and count(nationality) from per_all_assignment_f
    But department is from hr_all_organization_units--------->dim table
    I dont want to see the departments but i need to group the result in department manner that i was taking from the table hr_all_organization_units.....
    How to perform Group BY in OBIEE 11g.......
    Thanks,
    Harry.........

  • How to get tag group name?

    Hi experts,
    I am new in PCO Queries.
    I have requirement of fetching Tagname , Description and TagGroup name from OPC and  insert into Sybase db table.
    how can I write the PCO Query to fetch tag's  group name and tag description .
    Tagnames are configured as alias in agent instance instead of subscription items and entered manually with data type as float.
    I am assuming that Description and Group name should configure while adding tags in PCO as alias then write a PCO query and send to Sybase tables.
    Please help me to get group name and Description of tag which belongs to it.
    your earliest help would be highly appreciated.
    Thanks&Regards,
    Pooja.
    Message was edited by: pooja rani

    Hi Steve,
    Thanks for your reply.
    RSView 32 OPC server and PCO2.3 and MII server 14.0  we are using.
    Thanks&Regards,
    Pooja.

  • OBIEE 11g having problems with password protected PDF files.

    I have been able to get an analysis in OBIEE 11g to display PDF files.
    However, some of these documents contain sensitive information and must be secured. Since anyone with access to the file name
    could simply type in the proper path in the browser window, this is unacceptable. In order to try and prevent this, I created a pdf file
    that is protected with a password.
    Opening the file by itself, produces the desired results. The password is requested before the file will open.
    When I open the file through my analysis in OBIEE, Adobe reader activates, but the password is not requested and the file does not open.
    It is as if OBIEE is somehow not sensing that Adobee is asking for a password.
    Does anyone have any experience with this?

    FYI, in case anyone is interested, I found out what is going on.
    I created the original password protected PDF using Microsoft Word. I did this because I do not have a full version of Adobe Acrobat that allows me to create files.
    On a hunch, I found someone that has a full version of Acrobat, and had them create a password protected PDF file. This file worked perfectly.
    Apparently, Word is not strictly adhering to PDF guidelines, and OBIEE senses the differences, resulting in the file not opening properly.
    Something to keep in mind for anyone linking to password protected PDF files in OBIEE.

  • Security question in obiee 11g

    Hi,
    I have a question on security configuration on what we have in 10 and deploying to 11g.
    Q1. how deploy external database security(users, groups) to OBIEE 11g.
    we used external database security in 10g. all the users and groups maintained in database and obiee rpd has security groups. repository has group information only so it is deployed groups information to obiee 11g by upgrade assistant but how can it deploy users in external database?
    Q2. all the users and roles in LDAP server. in this case how obiee 11g read users and group information?
    Thanks
    Jay.

    Q1. how deploy external database security(users, groups) to OBIEE 11g.
    we used external database security in 10g. all the users and groups maintained in database and obiee rpd has security groups. repository has group information only so it is deployed groups information to obiee 11g by upgrade assistant but how can it deploy users in external database?
    Solution:
    http://www.varanasisaichand.com/2011/09/external-table-authenticationorder-of.html
    http://www.rittmanmead.com/2012/03/obiee-11g-security-week-connecting-to-active-directory-and-obtaining-group-membership-from-database-tables/
    http://obieeblog.wordpress.com/2009/06/18/obiee-security-enforcement-%E2%80%93-external-database-table-authorization/
    Q2. all the users and roles in LDAP server. in this case how obiee 11g read users and group information?
    Obiee11g is intergated with weblogic fusion middleware (Console,EM). in that console have feature to enable mulitiple LDAP authentication
    while configuring AD via weblogic console we need to give the users and group info
    Solution refer:
    http://obieeelegant.blogspot.com/2012/01/obiee-11g-integration-with-ldap.html
    http://docs.oracle.com/cd/E23943_01/bi.1111/e10543/privileges.htm#BABCDCFE
    Thanks
    Deva

  • Essbase reports in OBIEE 11g

    Hi Experts,
    The Essbase reports in OBIEE 11g is displaying the member names instead of the Alias names. However in OBIEE 10g the Alias names are rightly displayed.
    Can anyone please suggest on how it is possible to display the alias names in OBIEE 11g?

    Hi,
    thanks for ur reply. I checked the above workaround but found that the option Display Column -> Alias is not enabled. So am not able to select it. Hence now Member names is selected.
    Please let me know if i am missing something else.

Maybe you are looking for

  • DVD from Animations - Help please if you can

    We have an 3min animation sequence that needs to be put to DVD. Animation was created in Maya, it's a 3D building walkthrough, constant movement. It is supplied as AVI (video track is WRAW) 720x576 (for PAL) We have placed it on FCP sequence set to A

  • What is the cost for replacing a new complete keyboard set for a 15-inch MBP Retina?

    When I went back to home today, I noticed that a small amount water has been splitted on my keyboard. Several keys did not work then. I tried to use a hair dryer to dry it but it did not work. I guessed the keyboard may have short-routed, unfortunate

  • Using Email to initiate a BPEL Process

    Hi All, We have a request to process a .csv file which comes as an attachment thru Mail. we are able to do the setup to invoke the BPEL Process as the mail is received. We want to know how to get attached file in BPEL Process to process it further. W

  • Currency by default into the conditions types

    Hi Experts, I have the following scenario. The Company where I work carries out purchase orders that requires to maintain two kind of currency for two conditions types. So, I wonder if it's possible to customize the currency by default into the condi

  • Problem wth incomplete returns orders -  Shipp pt and route are greyed out

    Hi This is the problem with the incomplete return orders (v.02). All the subsequent documents are in complete process, but the returns order status is showing  open status. This is because the user tried to remove the delivery block in returns order