Problems with groups in OBI EE 10.1.3.3

Hi
I have been worked in the configuration LDAP integration with OBI EE. I have access to OID LDAP server fine and I Can login in Answers with my LDAP user. I have a PLSQL procedure that work with the DBMS_LDAP package for read the GROUP information for the user. The procedure works fine. I found this solution in the next page: http://oraclebizint.wordpress.com/2007/10/10/oracle-bi-ee-101332-using-ldapoid-authentication/
I have two initialization blocks in BI Server . The first called IB_LDAP use the system variable USER with the uid from LDAP server. The second initialization block use the USER variable to access the database with a SQL Query and use the GROUP variable to get the GROUP information.
In the second Initialization Block, I have active the option "Execution Precedence". But when I try to see the GROUPS (Value of session GROUP variable) in answers I receive the next error:
[nQSError: 10058] A general error has occurred. [nQSError: 23006] The session variable, NQ_SESSION.GROUP, has no value definition. (HY000)
SQL Issued: SELECT "Sales Facts"."Amount Sold", Products."Prod Name", VALUEOF(NQ_SESSION.GROUP) FROM SH
I think that the second Initialization Block can't receive the value from the first initialization block. How can I test this or how can solve this problem?
Thanks
Edwin

The NQServer.log don't show any error, The first Init Block have the "Required for authentication" check and works fine.
Inicially I had not the groups defined in the repository, then I used the option "Import" and select the groups byt I received the error "[53002] LDAP search failure: No such object". Then I created the groups manually.
However the problem persist.
I have been noted that the NQServer show the information for the user Administrator because this user have a lolevel in 2, but because the users from LDAP don't show its LDAP attributes I can't set up the LOGLEVEL value in 2 and I can't see information in the LOG.
Edwin

Similar Messages

  • Result set problem with GROUP BY

    hi there, this should be the simplest of queries but.........
    when run, the list size is 13, this is the number of letting units in the table. it appears not to be grouping by the property id.if it was doing this there should only be 8 rows. having said this, the while loop should output the count of each row, it does this 8 times with the correct counts. it then crashes with a invalid curser error. it appears the query is workig correctly but the resultset thinks its got 13 rows when it only has 8.
    accessing ms access db
    using jdbc:odbc
    heres the code
    searchResults = stmt.executeQuery(
    "SELECT Count(*) AS FreeUnits " +
    "FROM letting_units " +
    "GROUP BY letting_units.property_id");
    searchResults.last();
    listSize = searchResults.getRow();
    searchResults.beforeFirst();
    System.out.println(listSize);
    while (searchResults.next())
    System.out.println(searchResults.getString(1));
    hope someone can help me
    cheers
    andy

    It's not the problem with GROUP BY. You should use scrollable result set to move in both directions (forward and backward).
    In your code
    searchResults.beforeFirst(); line may return false. So you will get the searchResults.next() false. Once you move forward in non-scrollable cursor cannot come back. So when you create the statement object use TYPE_SCROLL_INSENSITIVE or TYPE_SCROLL_SENSITIVE constants provided in the ResultSet.

  • Problem with Group policies and Administrator count

    I have one problem with Group policies and Admnistrator count.
    Win XP, Client 4.91, Client Zen 4
    I use DLU for users.
    the Group policies are well applied and i keep them after logout for
    security reasons.
    But my problem is, after logout, the Administrator count becomes this
    Group policies, and the only technique that I use, is to remove the
    repertories c:\windows\system32\GroupPolicy*. Administrator must
    loguing again for having good policies.
    Can you help me?

    Bill,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Do a search of our knowledgebase at http://support.novell.com/search/kb_index.jsp
    - Check all of the other support tools and options available at
    http://support.novell.com.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://support.novell.com/forums)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://support.novell.com/forums/faq_general.html
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://support.novell.com/forums/

  • Problem with Grouping in Interactive Forms by Adobe

    Hey Guys!
    I have a problem using the group function for a table in Interactive Forms by Adobe and I have not found a solution yet, so I hope anybody can help me.
    I've created the table in the LiveCycle Designer using subforms and I want to use the group function for a specific field of my table. Now the problem is that the entries of the table are not shown grouped for the same values of my specific field but there is still one row for each entry. How do I have to edit binding, flow etc. for the subforms of a group?
    I hope anybody can help me or provide me a better solution.
    Thanks in advance.
    Martin

    Hi Otto,
    thanks for your reply.
    I'm sorry the 'grouping function' I've announced is called 'control levels' in English I can set this function for a field of a table in the context of the form in the transaction SFP in SAP. Then in the hierarchy the field is displayed above the group of the other fields of the table. Usually in the form this should lead to a 'grouping' for the specific field so if you have identical values there is just one entry in the form and all the rows that have this value should appear behind. My problem is that there is still one entry in the form for every row.
    Right now I'm using the solution you mentioned with the nested tables but i have some problems with the layout and page breaks (pagination).
    Thanks for your help.
    Martin

  • Anyone else having problems with group messages in iOS 7?

    Upgrade to iOS7 went fine. Everything worked smoothly up until about 6:30pm Central time. Can't send/receive group messages in iMessage. Anyone else?
    Not sure if this is a problem with my phone or iMessage.

    It has failed to work on two of my iOS devices. I am using air 2.6.
    This is my code:
    Bookmark = SharedObject.getLocal("bookmarkData", "/");
    if (Bookmark.data == undefined){
         Bookmark.data['lessonIndex'] = 0;
    lessonIndex = Bookmark.data['lessonIndex'];
    LessonIndex is always 0 at the start of the program. This is a product killing problem. If I cannot resolve this 3 years of work has just been flushed down the toilet.

  • Problems with GROUP BY - not a GROUP BY expression

    Hello,
    I am fighting little bit with GROUP BY expression.
    After some tests I am able to reduce the problem to following...
    When can I use column numbers in GROUP BY expression?
    Consider this situation:
    CREATE TABLE EMP4 (
       NAME VARCHAR2(10)
    COMMIT;
    INSERT INTO EMP4 VALUES('Tamara');
    INSERT INTO EMP4 VALUES('John');
    INSERT INTO EMP4 VALUES('Joseph');
    COMMIT;
    SELECT NAME, COUNT(*)
    FROM EMP4
    GROUP BY 1;
    00979. 00000 -  "not a GROUP BY expression"
    -- This is working
    SELECT NAME, COUNT(*)
    FROM EMP4
    GROUP BY NAME;Why is the GROUP BY 1 not workig?
    I am using the GROUP BY 1 because in real query there is some PL/SQL function which somehow modifies the column NAME, so I can't use the column name
    SELECT TEST_PACKAGE.AppendSomeCharacter(NAME), COUNT(*)
    FROM EMP4
    GROUP BY 1;Of course I can nest the query and move the COUNT and GROUP BY to outer query or maybe something else, but I was just curious why is the GROUP BY not working...
    Also in real query, there are 3 columns in the GROUP BY expression, so I have there GROUP BY 1, 2, 3
    Thanks for help

    hai
    try the following
    CREATE TABLE TBL(ID NUMBER,VAL VARCHAR(20));
    INSERT INTO TBL VALUES(1,'Z');
    INSERT INTO TBL VALUES(2,'X');
    INSERT INTO TBL VALUES(1,'Z');
    INSERT INTO TBL VALUES(2,'X');
    INSERT INTO TBL VALUES(3,'A');
    INSERT INTO TBL VALUES(4,'H');
    INSERT INTO TBL VALUES(5,'B');
    INSERT INTO TBL VALUES(6,'C');
    INSERT INTO TBL VALUES(7,'T');
    INSERT INTO TBL VALUES(3,'A');
    INSERT INTO TBL VALUES(4,'H');
    INSERT INTO TBL VALUES(5,'B');
    INSERT INTO TBL VALUES(6,'C');
    INSERT INTO TBL VALUES(7,'T');
    CREATE TYPE SAMPLETYPE AS OBJECT ( ID NUMBER, NAME
    VARCHAR2(25) ) ;
    CREATE TYPE SAMPETBLTYPE AS TABLE OF SAMPLETYPE;
    CREATE OR REPLACE FUNCTION SAMPLEFUNC
    p_colname varchar2
    )return SAMPETBLTYPE pipelined as
    ret_val SAMPLETYPE;
    TYPE cursor_ref IS REF CURSOR;
    fcur cursor_ref;
    di TBL%ROWTYPE;
    sqlstr varchar2(1000);
    colname varchar(30):=p_colname;
    begin
    sqlstr:='SELECT * FROM TBL ORDER BY '|| colname ;
    DBMS_OUTPUT.PUT_LINE(sqlstr);
    open fcur FOR sqlstr;
    loop
    FETCH fcur INTO di;
    EXIT WHEN fcur%NOTFOUND;
    ret_val:=SAMPLETYPE(di.ID,di.VAL);
    PIPE ROW(ret_val);
    end loop;
    close fcur;
    return;
    end;     
    select * from table(SAMPLEFUNC('ID'));
    select * from table(SAMPLEFUNC('VAL'));

  • Problem with Group Currency

    I looking for help!!
    We do a initial loading of financial postings with LSMW. We had a big problem!!
    The postings were made without the amount at the group currency.
    Now we show it at the reports of Controlling, too late for change the postings.
    We need a solution for change this without do a new posting. Someone can help us?
    The values at the local currency ARS are correct, we have just the problem with the group currency EUR.

    IF the posting were made with out group currency, There is no way you will get the group currency. What you need to do is just load the balances in group currency using the tcode FBB1 and leave document and local currency fields zero.
    Assign points if helpful

  • Has Yosemite fixed Maverick's Mail problem with Group email addresses?

    Does anyone know if Yosemite has fixed the problem that Maverick's Mail program had with Contacts? Maverick's Mail program cannot show Group Address names in the email "To:" window. By default, it shows all of the email addresses in a Group rather than the Group name. The work-around requires putting Group Addresses in the "Bcc:" window. Has that problem been fixed in Yosemite?
    Many thanks,
    Bob Winckler

    Hi Barney,
    Just found out that Maverick's problem with Mail's Group address procedure has resulted in my email accounts being put on hold by my Internet Provider. I'm the president of a local club, and I routinely send out emails to 200+ email addresses several times a month. Since Maverick's Mail now doesn't keep Group addresses hidden when shown in the email "To:" window, we have to put those Group addresses into the "Bcc:" window.  The first couple of times that I did that, the emails went through, but the third time that I tried to send out such an email, my Internet Provider shut down my email account with the statement "Your ability to send new mail has been suspended as a high volume of suspicious mail has been sent from your account recently. Please contact your IT administrator."  The IT administrator required me to run a virus check and then set a new password for my account before they would reactivate it. In my discussions with several of my Internet Provideer's tech reps, it appears that the way the way that the Internet Provider has their server's security system set, a high volume of email addresses in the "Bcc:" section of emails is enough to shut down an account as suspicious. Until Apple gets this problem fixed, my only options are to switch internet providers (after finding one that will let high volumes of "Bcc:" go through) or switch to an older Mac operating system, which I've done (now using an ancient iMac 400DV running Tiger (OS 10.4.11).  Given the high number of businesses, etc., likely to be using Macs, I'm really surprised that Apple has let this problem with Maverick's Mail program go uncorrected.
    Best regards,
    Bob W

  • Problem with Groups from Address Book in Apple Mail

    I have set up a group in my address book. When I use Apple Mail I use this group to send specific messages to. But for some reason I keep getting error messages saying that my outgoing sever encountered a problem with the messgae. It only happens when I send messages with a group, not if I send messages to single recipients. The group consists of 90 emails, so I can't enter their emails each time I want to send a message to the group.
    Thanks in advance,
    Regards

    I am having a similar problem. All the addresses are correct, and I know this because I use them all the time with no errors. BUT when bundled into a group - actually any group I set up I cannot send successfully. I have two groups in my mail program and neither will work.

  • Reinstallation for IOS skype. problems with groups and contacts

    I was having a problem with Skype on my Iphone; new messages wouldn't load, and if they did it was around 10 minutes after they sent them. So I uninstalled the app and then reinstalled it. As soon as I logged into my account I realized most of my contacts didn't have a profile picture, nor did it have our conversations. It also got rid of all my skype groups; I still got notifications for those groups, but if I clicked on them it would bring me to a page saying that it's an empty group. Also if I get on skype on my laptop everything is fine, I still have my groups, my contacts all have pictures and our conversations are still there. I tried to reinstall it on my phone again, but this time all my groups were still gone, but different contacts wern't complete. Because I still had the contacts I tried to send a message on of my contacts that didn't have a profile picture and although it said it sent, I never got a reply. So I got on my laptop and asked if he got it, and he said he didn't.  Is anyone else haing this problem? If so do you know how to fix it? Thank you

    Ok I just talked to support via chat and apparently this is a known iPhone mobile App issue.  This is exactly what he said to me: "I was informed that this issue already have a ticket to our engineers and they are already working on this one. This has something to do with the latest version of Skype for tablets and mobiles.  We may release another version of Skype app so once an update is avaialble, update the app on your phone ASAP." Hope this ease some frustration.

  • Has Yosemite corrected Mavericks' Mail/Contacts problem with Groups?

    After I switched from Snow Leopard to Mavericks, I found that I could no longer list a Contact Group name in the To block of an email without all of the addresses in the group showing, despite having Mail Preferences set so that all of the addresses wouldn't show. The work-around for this problem is having to put Contact Group names in the Blind Copy section of an email. Does anyone know if Yosemite has corrected this problem?
    Thanks,
    Bob W.

    Thanks Barney. I assumed that Yosemite hadn't corrected the problem.
    However, I'm not sure where you got the information that the "BCC" section on Mail email forms was designed to be used for "Group" addresses from Mac's Address Book (now Contacts).  The "BCC" section of the email form was designed to be used by email composers who wanted copies of their emails to go to addresses that they wanted to keep hidden from those whose addresses appeared in the "To" section of the email.
    The "Group" address feature in Contacts were created to allow email senders the option to send emails to large numbers of addressees that had something in common (such as a group of relatives of the sender, or in my case, members of a club), so that you didn't have to type in large numbers of addresses in the "To" window every time you wanted to send to such a group. At the same time, it kept the addresses hidden from all of those who received the email as well as from spammers.
    Mac also gives (or did give) you the option to have the addresses in the Group in the "To" window to show or not to show. Go to "Preferences-Composing" section in Mail and you'll see that under the "Addressing" heading, you're given the option "When sending to a group, show all member addresses."  Since that option is normally unchecked, the default is to not have the addresses show. Unless you opt to allow the addresses to show, only the name that you've given the Group shows in the "To" window of the email. 
    If the Group addresses in Contacts were designed to be placed in the "BCC" section of an email, there would be no purpose in having that Preference option available in Mail Preferences.  The problem with having to use the "BCC" section of the email for Group addresses is that many email server companies assume that high numbers of addresses showing in the "BCC" section of an email is an indicator that the email is coming from a spammer, so the use of "BCC" for large numbers of email addresses can cause problems. The use of "Group" address names in the "To" window avoids those problems.

  • Recent Problem with Grouping in P6

    Recently I am having a problem with the grouping activities option in P6, 8.2.  While I used to be able to group with no problem, now when I try to perform a customized grouping, I am not able to get to the grouping bands.  It seems like this is a P6 software bug, not a database bug.  Has anyone seen this problem before and if so, how did you fix it?

    Hi,
    This is a known issue. As a workaround you just need to expand the window. For a solution, please refer to:
    Fields Are Cut Off Or Missing In P6 Dialog Boxes With Incorrect DPI (Doc ID 897035.1)
    ========
    Was our answer helpful?
    If so, highlight the information for other Community members by rating it or marking the answer as correct.
    Just hit the “Correct Answer” link on the answer, or rate it by clicking "Helpful Answer" or "Like".

  • Flash Islands, AdvancedDataGrid, problem with grouping

    Hello,
    I am trying to show a table from SAP into an AdvancedDataGrid:
         <mx:AdvancedDataGrid dataProvider="" width="100%" rowCount="13" >
              <mx:columns>
                 <mx:AdvancedDataGridColumn dataField=""
                  headerText="Monat" />
    This works very well. Now I am trying to build a tree with grouping in the same grid:
    <mx:AdvancedDataGrid width="100%"      rowCount="13">
         <mx:dataProvider>
              <mx:GroupingCollection source=""/>
              <mx:Grouping>
                   <mx:GroupingField name=""/>
                   <mx:GroupingField name=""/>
              </mx:Grouping>
         </mx:dataProvider>
         <mx:columns>
              <mx:AdvancedDataGridColumn dataField="" headerText="Monat"/>
    Unfortunatly I get an empty table. Does anybody know my mistake?
    regards
    stefan

    Thx for reply. I understand what you mean. I was a littlebit to hasty. I should have waited until finishing everything. Point 3.c in the chapter mentioned above states it clearly.
    Sorry 4 that.

  • Excel 2003 problem with group policy

    When I manually install EMET Excel 2003 works. When Emet is installed via Group Policy Excel 2003 fails to open. Excel 2010 works whether EMET is installed locally or with Group Policy. Any ideas?

    I would try exporting the policy on both installs using emet_conf --export and comparing the 2 policies
    GBS Premier Field Engineer Cybersecurity Check out my blog http://blogs.technet.com/kfalde or better yet check out http://technet.com/wiki and start contributing :)

  • Problem with "Group By" in Views - Not Displaying the Same for All Users

    We have an Announcements List with its only View being set up to group by a metadata category field. We've done this many times on other kinds of lists and never had a problem. But with this list, about half the users can see only the ungrouped
    set of announcements, whereas others actually see the items within their groups.
    Those with "View" rights only can't see the grouped items - but that appears to be a coincidence as I promoted them to the same rights as others who can see them correctly, and that did NOT solve the problem. Everyone is using the exact same browser.
    Note: the users who do NOT see the groupings see only a single category entry that displays only the name of the category list (but not the names of the actual categories within the category list). All the announcements are grouped under that one
    entry for those users. This display looks exactly like it would if the categories had been left blank when the original announcements were created. But the categories are NOT blank, and the rest of the users can see them just fine, and the announcements display
    within their appropriate groups.
    I can't find anything in the View, the List Settings, or the User Permissions to explain this. What could be causing it, and how can I fix it?

    Browser settings are controlled by central IT and are all identical. 
    The only difference I can detect is the second set of users (that don't see the category options) have only Read rights, whereas those with Contribute (or above) rights can see the categories. It doesn't make
    sense that permissions would affect this, but I can't come up with any other differences.
    Microsoft will not allow me to upload images. it says I can't upload images until they have verified my account, but there is no clue as to how, if or when that might happen. If you can tell me how to fix that, I can provide samples.

Maybe you are looking for

  • Is there a way to print multiple Indesign CS6 files...

    ...via a script or plug-in? I periodically have to print many separate indesign files, and I'd like to be able to drag them to a droplet, or script on my desktop instead of opening each one individually and printing that way. Thanks, Scott

  • Third party for subcontractor

    Hi, Kindly help me to map below scenario: I have 2 company codes AAAA and BBBB.BBBB is a customer to AAAA. BBBB place a order to AAAA,AAAA in turn place an order to its sub-contracting vendor XXXX. AAAA sends component material to XXXX and ask him to

  • Printing or saving specific PDF crashes Preview

    My VP e-mailed me a PDF this morning that she couldn't print. I opened it on my Mac, and I also couldn't print it. Every time either of us tries to print it, Preview crashes. It also crashes if I try to Save As. I'm using the current aluminum MacBook

  • Migration from enterprise to HFM

    Hi Can anyone help me with a migration from enterprise to HFM ? I am looking at a complete migration. Any help will be highly appreciated. I would also like some proper documentation .If you do have one please forward to [email protected] Edited by:

  • Error - Inconsistent Situation in Vendor Evaluation

    I am following Vendor Eval: Config Guide Release 500.  I am on SRM_Plus 5.5 (Highest Level SAPKIBK007).  When I execute Vendor Evaluation from Vendor List - I am getting error "Inconsistent Situation in Vendor Evaluation".  Per config guide, it tells