Only values in InfoProvider not working for ODS

Hi,
I'm on BEx 3.5 and I'm trying to use a variable in a query on an ODS. The InfoObject is set to "Only Values in InfoProvider" in RSD1 in the Query Execution Filter Val Selectn entry. The same setting has also been done in the ODS InfoObject specific properties for that InfoObject.
In spite of this, whenever I run the query and press F4, it shows all the values in the master data table of the InfoObject.
I've run it in BEx, and also in RSRT after deleting the cache. Nothing works.
Any ideas how I could proceed to fix this.
Regards,
Suhas

Hi,
Thanks for the note, it does explain this behaviour.
But that in turn begs the question of what is the point of allowing the option of ODS-specific properties of InfoObjects if an ODS can fetch F4 help only from the master data table!
Regards,
Suhas

Similar Messages

  • Value help does not work for ONE person only !

    Hi,
    we have a strange problem. In the Web IC, we are using a standard value help for the country field for a Business Partner. This works fine for everyone (ie, it picks up the country and slots it into the field) except one person. For her, it never returns any value into the country field. We are guessing that it's not Web IC related but is something in her browser settings etc...but haven't been able to pin it down. Can anyone offer any advice on this ?
    thanks for looking.
    Malcolm.

    Hello Malcolm,
    If this error occurs for one user only it's definitely related to the clients PC.
    Did you already delete all temporary files and the cookies on that PC? Usually this does the trick!
    If this does not solve the problem, try to let that particular user login on another PC where the problem does not occur. (If the error does occur on another PC too it's probably profile/authorization related)
    Hope this helps!
    Regards,
    Joost

  • After deploy in server, integrated Security works for all users but only one user does not work for one user

    hi
       i'd like to ask for help.here is a brief introduction.
          i publish a web project on a server(the name,"server-deploy"),(it connect with sql server datavvase with connection string  of database  "Trusted_Connection=Yes",with web config file <authentication
    mode="Windows" />    <identity impersonate="true"/>
       there are some users whose Impersonae_clients_after_authentication are enabled. and most of them can connect to database via the deployed project .
      but one user,he was told 'NT AUTHORITY\ANONYMOUS LOGON', and according to even viewer("security of "windows log") of "server-deploy",it shows "Audit failure"(the Task category is "credential validation")
    and here is some information
    [ Name]  Microsoft-Windows-Security-Auditing
       EventID 4776
    The computer attempted to validate the credentials for an account.
      PackageName MICROSOFT_AUTHENTICATION_PACKAGE_V1_0
      TargetUserName (user)
      Workstation (Workstation)
      Status 0xc0000064
       while when other user do login ,there is no log whose Task category is "credential validation".
      COULD ANY ONE CAN DO ME A FAVOR TO HELP ME?ANY HELP IS APPRECIAT. THANK U VERY MUCH IN ADVANCE :)
    best regards
    martin

    and i made a small windows form application here
       private bool impersonateValidUser(String userName, String domain, String password)
                WindowsIdentity tempWindowsIdentity;
                IntPtr token = IntPtr.Zero;
                IntPtr tokenDuplicate = IntPtr.Zero;
                if (RevertToSelf())
                    if (LogonUserA(userName, domain, password, LOGON32_LOGON_INTERACTIVE,
                        LOGON32_PROVIDER_DEFAULT, ref token) != 0)
                        if (DuplicateToken(token, 2, ref tokenDuplicate) != 0)
                            tempWindowsIdentity = new WindowsIdentity(tokenDuplicate);
                            impersonationContext = tempWindowsIdentity.Impersonate();
                            if (impersonationContext != null)
                                CloseHandle(token);
                                CloseHandle(tokenDuplicate);
                                return true;
                if (token != IntPtr.Zero)
                    CloseHandle(token);
                if (tokenDuplicate != IntPtr.Zero)
                    CloseHandle(tokenDuplicate);
                return false;
      and here is the code of buttonclick
     if (impersonateValidUser(user,psw,doman))
                    if (!System.IO.Directory.Exists(this.textBox1.Text))
                        MessageBox.Show("not exist with imper");
                    else
                        MessageBox.Show("exist with imper");
                    undoImpersonation();
                else
                    MessageBox.Show("fail login.");
       and i was told "exist with imper"(usually if Impersonae_clients_after_authentication is not enaled would told "not exist with imper" )

  • Wifi is not working for me but woking for everyonne else in my house

    Hi my wifi on my ipod5 is not working I am the only one it is not working for.. also I turned off my imessage because I noticed it was taking a very long time to send the message and it made me sign in like normal and i was not able to sign in because i didn't have wifi. PLEASE HELP!!!

    open settings, wifi and find the network name.  Does it connect?  Does it prompt for a password?  What happens?

  • Profile value per_person_id is not listed for $PROFILE$ block

    Hi All,
    I have reqirement to retrive the person_id to default Employee number in Personal analysis descriptive flex filed segment.
    When i tried using $PROFILES$.PER_PERSON_ID or fnd_profile.value('PER_PERSON_ID') is not working for me.
    Then i have checked the profile value list using "diagnostic-->examin" option in the application where i am not able to find the Per_person_id in the list.
    Note: We are using the Oracle Applications : 11.5.9
    Is there any way to meet my reqirement?
    Appriciate your contribution towards this issue.
    Thanks in advance.
    Kumar
    Edited by: Kumar Kasinathan on 04-Jul-2012 00:07
    Edited by: Kumar Kasinathan on 04-Jul-2012 00:14
    Edited by: Kumar Kasinathan on 04-Jul-2012 00:16

    Hi, I need to attach a value set to attribute12 which should not be the employee number, attribute12 of per_all_people_f and employee_number of a custom table and the number for the attribute12 should be the unique value.
    The steps i have followed
    1. created a table file_number to hold the numbers from 0000001....to...9999999
    2. created a view-file_number_v to have unique numbers as
    SELECT fn.file_number
    FROM file_number fn
    WHERE NOT EXISTS (SELECT 1
    FROM per_all_people_f pap1
    WHERE pap1.employee_number = fn.file_number)
    AND NOT EXISTS (SELECT 1
    FROM per_all_people_f pap2
    WHERE pap2.attribute12 = fn.file_number)
    AND NOT EXISTS (SELECT 1
    FROM table1 t1
    WHERE t1.employee_number = fn.file_number)
    3. Created a table validated value set based on the above view and attached it to the Attribute12 of the DFF
    Its worked fine for new inputs, but when ever i try to requery the employee,hence the number is inserted in the attribute12 column of per_all_people_f table the value set validates and provides error message.
    To avoid this i have used the following temp table query,
    (select file_number fn from file_number_v
    union all
    select attribute12 fn from per_all_people_f where attribute12 = :PERSON.ATTRIBUTE12:NULL) temp
    I have used the above query as table in the valueset.
    Now i have to get the person_id to use it on the above query to avoid the issue which i have mentioned in previous discussion.

  • Selection of Filter Values for Query Execution -Only Values in InfoProvider

    I created a query based on an ODS. For the query charateristic 0NFCAT_CODE a variable was created by me. To the time of query execution F4 shows all values available in the charateristic, but only values available in the ODS are expected.
    The characteristic 0NFCAT_CODE is a reference characteristic to 0CAT_CODE. 0NFCAT_CODE is compounded with 0NFCAT_TYPE (reference to 0CAT_TYPE) and 0NFCAT_GRP (reference to 0CAT_GRP). All characteristics 0CAT_CODE, 0CAT_TYPE and 0CAT_GRP are set to “Query Def. Filter Value Selection” =  “Only Values in InfoProv” and “Query Execution Filter Val. Selectn” =  “Only Values in InfoProvider”.
    Could anybody give me a help? Thanks in advance.

    Hi,
    that is master data of 0NFCAT_CODE.
    Regards,
    San!

  • I purchased Adobe photoshop elements II and Adobe premiere elements II. They are both on one disc. My computer crasded and I had to reload Windows. I only have one serial number and it only works with photoshop II. The same serial number will not work for

    I purchased Adobe photoshop elements II and Adobe premiere elements II. They are both on one disc. My computer crasded and I had to reload Windows. I only have one serial number and it only works with photoshop II. The same serial number will not work for Premiere. I dont have any other serial numbers. What do I do???

    Static_Unit
    I am getting a bit concerned about what is happening in your situation. Yesterday you posted your question in at least two different forums, one of them being here in the Premiere Elements Forum.
    Don't Have Serial Number for Premiere, Only Photoshop?
    Wherever you posted, the reply was to contact Adobe via its Adobe Chat. It is the only one who can sort out this matter for you.
    In the thread cited above I offered to help you with the difficulties that you were having visualizing the Adobe Chat in its web page. I was waiting for your follow up on that in the above thread. Instead, I find your same question in a new Adobe Premiere Elements Forum thread this afternoon with no refer the prior threads or prior recommendations given you.
    I will also mention again...when you buy the Photoshop Elements and Premiere Elements bundled in one packaging and with installation files for each on the same installation disc, each program has its own serial number. The Photoshop Elements serial number does not work for Premiere Elements and vice versa. The serial numbers are on labels on a box which houses the installation disc envelope(s). So, if you purchased both programs and found the Photoshop Elements serial number, then the Premiere Elements serial number should be in a label right underneath the label with the serial number for Photoshop Elements. I recall writing this in your yesterday's thread on this matter.
    The moderator will no doubt be along shortly to close or delete this thread. So, just in case, please bookmark your yesterday's thread cited above so that we can continue this communication which is trying to help you.
    Thanks.
    ATR

  • I have an hardware issue with my iphone 5 64gb. its lock button in not working. for a fact i know that it can be replaced but my question is this that do they require the bill or anything to replace or they only require the phone in usa

    i have an hardware issue with my iphone 5 64gb. its lock button in not working. for a fact i know that it can be replaced but my question is this that do they require the bill or anything to replace or they only require the phone in usa

    Warranty and support is only valid in the country of origin.  The only exception being the EU where a device bought in any EU country can get warranty or service in any EU country.
    Warranty is determined by device (serial number), no documentation required.
    Apple does not repair devices, they replace them.  For that reason, ensure the device is backed up and any pictures take with the device are copied off the device prior to going in for service.

  • SPSecurity.RunWithElevatedPrivileges Not Working for Read Only Permissions Users

    I have the following code in a method that generates tabbed web parts on any page in SharePoint 2010.
    The problem is that it will not work for users who have Read access only on a SharePoint site.  It will work when those users have Contribute access.  
    So even though I have elevated permissions in the code it does not actually elevate the permissions at the point where it is needed.
    if (panel != null)
    try
    using (SPLimitedWebPartManager wpManager = SPContext.Current.Web.GetLimitedWebPartManager(HttpContext.Current.Request.Url.ToString(), PersonalizationScope.Shared))
    try
    // Elevated previleges required for EXPORT and IMPORT. Else Users with normal read access will get errors.
    SPSecurity.RunWithElevatedPrivileges(delegate()
    // Retrieve the web part titles in the ConfigureTabs XML string for this tab.
    var webPartTitles = from t in xDocument.Descendants("webPart")
    where (string)t.Parent.Attribute("name") == (string)e.Item.DataItem
    select (string)t.Attribute("title");
    foreach (string wpTitle in webPartTitles)
    foreach (System.Web.UI.WebControls.WebParts.WebPart webPart in wpManager.WebParts)
    // Find the matched closed web part in WebParts collection
    if (webPart.Title == wpTitle && webPart.IsClosed == true)
    string errorMessage;
    //ADD EXPORT PROPERTY
    webPart.ExportMode = WebPartExportMode.All;
    MemoryStream stream = new MemoryStream();
    XmlTextWriter writer = new XmlTextWriter(stream, System.Text.Encoding.UTF8);
    // Export the closed webpart to a memory stream.
    wpManager.ExportWebPart(webPart, writer);
    writer.Flush();
    stream.Position = 0;
    XmlTextReader reader = new XmlTextReader(stream);
    // Import the exported webpart.
    System.Web.UI.WebControls.WebParts.WebPart newWebPart = wpManager.ImportWebPart(reader, out errorMessage);
    reader.Close();
    writer.Close();
    // Show the imported webpart.
    panel.Controls.Add(newWebPart);
    break;
    catch (Exception ex)
    // For debugging use only.
    Label label = new Label();
    label.Text = "Please check your XML configuration for error. " + Environment.NewLine + ex.Message;
    panel.Controls.Add(label);
    catch (Exception ex)
    // For debugging use only.
    Label label = new Label();
    label.Text = "Please Check SPContext.Current.Web is not null. " + Environment.NewLine + ex.Message;
    panel.Controls.Add(label);
    This snippet of code was originally pulled from a microsoft technet article on creating Tabbed web parts "the correct way" but it doesn't work in all scenarios.
    Is there a way to get this code working for Read/Visitors to a SharePoint site?

    From initial observation what I see is that your SPLimitedWebPartManager is not created from an elevated web. Try like below
    SPSecurity.RunWithElevatedPrivileges(delegate()
    using(SPSite elevatedSite = new SPSite(SPContext.Current.Site.ID))
    using(SPWeb elevatedWeb = elevatedSite.OpenWeb())
    using (SPLimitedWebPartManager wpManager = elevatedWeb.GetLimitedWebPartManager(HttpContext.Current.Request.Url.ToString(), PersonalizationScope.Shared))
    { //Rest of your code
    Geetanjali Arora | My blogs |

  • When I click PDF file, the file does not open and  installation software for creative suite automatically begin to start. Even after re-installation of creative suite 5.5, only acrobat reader dose not work and the same phenomena occurs.

    When I click PDF file, the file does not open and  installation software for creative suite automatically begin to start. Even after re-installation of creative suite 5.5, only acrobat reader dose not work and the same phenomena occurs.

    Did you ever install Acrobat? It is not installed automatically with CS, but requires an extra installation step.

  • My laptops QWERTY row of keys does not work for long periods at random intervals and only after pushing all the buttons on the row does it eventually turn back on and then will still cut out every now and again, anyone know how to solve this?

    My laptops QWERTY row of keys does not work for long periods at random intervals and only after pushing all the buttons on the row does it eventually turn back on and then will still cut out every now and again, anyone know how to solve this? If not is there any way to actually get a genuis appointment lol to get one of them to have a look at the hardware on the keyboard?

    Apple Support (formerly ExpressLane):
    https://getsupport.apple.com/GetproductgroupList.do
    https://getsupport.apple.com/GetSASO?SG=SG001&locale=en_US

  • Style Code Not Working for Read Only Users !

    Hi 
    Can anyone help us with this issue. We have created some special Styling code in order to hid the Quick Launch on the home page of our main SharePoint site. The Styling works no problem at
    all for users with edit rights, however we found that the styling did not work for users with read only access.  What we found was that if we switched on the "Edit Items  -  Edit items in lists, edit documents in document libraries, and
    customize Web Part Pages in document libraries." in the List Permissions for the Permission Levels for the Read Access group, the Styling then works no problem at all. HOWEVER it then gives those users the ability to EDIT the site page, as it then
    puts the Edit option on the page top right for the user to click and then mess up the web page, which we can not permit. 
    SO..... How do we get this styling to work for ALL user types ?

    Hi,
    This usually happens when the CSS file is not published or approved, please check it.
    If the CSS files uploaded in the Style Library, please check whether you had to check in those CSS files or not.
    Best Regards
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • [svn] 3921: Fix for - @inheritDoc tag not working for get/ set overrides when you only override the setter of a base class

    Revision: 3921
    Author: [email protected]
    Date: 2008-10-28 06:23:00 -0700 (Tue, 28 Oct 2008)
    Log Message:
    Fix for - @inheritDoc tag not working for get/set overrides when you only override the setter of a base class
    QE Notes: Baselines for framework test will need to be updated.
    Doc Notes: None
    Reviewer: Paul
    Bugs: SDK-17304
    tests: checkintests
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-17304
    Modified Paths:
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/asdoc/ASDocExtension.java
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/asdoc/ClassTable.java

    Revision: 3921
    Author: [email protected]
    Date: 2008-10-28 06:23:00 -0700 (Tue, 28 Oct 2008)
    Log Message:
    Fix for - @inheritDoc tag not working for get/set overrides when you only override the setter of a base class
    QE Notes: Baselines for framework test will need to be updated.
    Doc Notes: None
    Reviewer: Paul
    Bugs: SDK-17304
    tests: checkintests
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-17304
    Modified Paths:
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/asdoc/ASDocExtension.java
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/asdoc/ClassTable.java

  • Speakers not working for Skype only on Windows 8.1

    My speakers or headphones are not working for Skype desktop but work fine for any music or videos or other programms. Any help to resolve it? in Tools>Options>Audio Settings> headphones does not show up. Everything was working fine but it just happend a day before., i havent installed any program that could make problem.

    This is very strange because, as you are saying this happened without any change to any software on your computer. I suggest the following:
    1. To help the team analyze the issue, provide logs as described in this link  under Skype for Windows Desktop and attach it to your post.
    2. As an interim solution you can try using a virtual audio device that will be a middle man between skype and your physical audio device.

  • HT4946 My sound is not working for Siri, voice mail, Itunes,and ringer tones... the only sound that works is the buzzer. I was told at Verizin to try and update my I tune app off my Home computer and that might make the sound , will this help or is the sp

    Sound is not working for Siri, voice mail, ringer tones, movies or music. I was told by verizon that the speaker maybe out, but that i might want to try and reload or update my itunes by plgging into my home computer... will this help and if so how do I do this?

    Basic troubleshooting from the User's Guide is reset, restart, restore (first from backup then as new).  Try each of these in order until the issue is resolved.

Maybe you are looking for

  • HP LaserJet 4MP jobs stopped message

    I realize that many people have had this issue, but I haven't seen my specific situation in the discussions archives, so here goes: My old LW 4/600 died recently. It was connected to my G4 "Pixar" iMac, OS X 10.4.11, via an AsanteTalk bridge Ethernet

  • Acrobat 9 ad in not working in excel.

    The ad in is there, when I hover mouse over option to create PDF I get additional options, but when I go to choose the option I want, it fades away.  I can create PDF's within Acrobat 9 program, but really need to have the ad in work in excel.

  • AE CC Pre-Comp Issue

    Please review the screen shots. As you can see the Comp preview in After Effects looks quite a bit different than what Media Encoder and Premiere Pro is displaying. This seems to be related to pre-comping because if I pre-comp the layers in AE I get

  • Google Chrome displaying incorrect fonts

    I have just downloaded google chrome for the first time and tested a site I have built in it, and all the fonts are times/serif style when I have created the style sheet to have ariel/helvetice/sans serif as the default body font. Every other browser

  • Trusted authentication from two systems to BOXI

    Hi, We have a system that currently uses trusted authentication to direct users to infoView.  Is it an option for us to use trusted authentication from SharePoint to BOXI at the same time? BOXI 3.1 SP5. Thanks, Sam