Counterparty info not displayed in query

we use logical db BPF,  below is the screen, actually we have more than 50 BP in the system, why it says : no list displayed, the design (other data fields is kept as default) and input screen is shown in the same picture

Hi,
GO to t-code RSH1 and check first if hiearachy is active.
Then run the hiearachy attribute change run.
One helpful url is as follows:-
http://help.sap.com/saphelp_nw04/Helpdata/EN/80/1a67ece07211d2acb80000e829fbfe/content.htm
Regards
Rahul Bindroo

Similar Messages

  • Infoobject in infoset but not displaying in query designer

    Hi,
    I have created a query on infoset(ods1 & ods2).
    a custum defined infoobject (fiscyr) is not displaying in query designer while it is present in infoset.
    pls give your inputs,for why this infoobject is not available in query designer.
    Thanks
    Radika

    Hi Radika,
    I cannot think of anything other than the solutions already mentioned in this thread (checking the IOBJ in infoset, running RSISET and activating it). I just had a foolish idea that you might not be looking for the right IOBJ. All the IOBJs from an infoset are not displayed with their original technical names in the query designer. They are disdplayed in the format: <infoset_technical_name>_FXXXXX where XXXXX is a number.
    Also try one more thing. Go to transaction RSISET and type in the technical name of the infoset there.
    Right below the box where you type the Infoset name is a check button. Check your Infoset there and then activate it from within the RSISET transaction (the activate button is right after the check button). With Infosets, sometimes just activating it from within RSA1 does not work but RSISET always seems to work.
    Do this and see if it helps.
    Thanks & regards,
    Nikhil

  • Customer number is not displayed at Query

    Hi to all,
    I have created a query where i need to display the Receivables aging Report.
    when i check data at Cube level data is coming properly for Every Customer.
    but when i filter customer at Query level data is not displayed at query level.
    Please can any one provide me solution.
    i shall be thnakful to you for this.
    Regards
    Pavneet Rana

    Thanks for Reply,
    For some customer i am getting correct data, and for some customer i am not getting any data at Query level,
    although correct data exist for every customer at CUBE level.
    Regards
    Pavneet Rana

  • Time dependent Hirerachy data not display at query level

    Hi all,
    I have loaded a time dependent hirerachy from flatfile,it showing same data as in flat file at RSMO,where as if I am executing query ,report displaying in hirerachy structure format,but DATE-TO and DATE-FROM are not displaying .
    Ex:On ZEMPLYOE i have created ZMANAGER as hirerachy,report giving ZMANAGER&ZEMPLOYEE details correctly in hirerachical format,but Date-to and Date-from are not displaying at report level,where as entair data is loaded to ZEMPLOYE without any error.
    If any one has come across the same situation,what are additional steps need to have take.
    your help will be appreciated
    Regards,
    Praveena.

    Yes, date-from and date-to are not meant to be displayed in the report.
    Let me take an example to tell the purpose.
    Suppose your hierarchy displays employees managerwise.
    If you create hierarchy telling
    from 01-01-2009 to 31-03-2009, employee E1 will report to Manager M1
    from 01-04-2009 to 31-05-2009 , E1 will report to M2.
    then, until March, E1 will be displayed under M1 node in the report, and in April and May, he will be displayed under M2 node.
    So, we create hierarchy only once, but they change in the report depending on the month.
    Hope this helps.

  • Check info not displayed

    Hi,
    I'm looking up FBL1N for cleared items for a certain vendor. There are 4 clearing documents with doc type ZP. The payment method for this vendor is Check. The latest two clearing document has check information available (when i click on check info at the header) however when I select the two other clearing document for this vendor and click on display check information at the header it says "no check information exists for this item".
    Thanks
    Shine
    Edited by: Shine Pillai on Feb 9, 2009 5:07 PM

    Please save the correct print variant for check (Make sure somebody has not edited the print variant for e.g. to void and reprint, re-start check no, payment doc etc) and do the printout again for the relevant payment run.
    But if you are looking for creating check just for a particular payment document(s), enter the document number(s) in the payment document number field in the print variant itself and do the printout. Please make sure you are deleting these entries in the variant and saving after the check print, so that you don't get error in the next run.
    Thanks
    Ron

  • Edmx cannot mapped stored procedure column info not displaying

    Hi,
    I'm trying to follow the QBE on how to mapped stored proedure in EF.
    Everything works fine until I need to Add Import Function where I could not see the list of column info.
    I'm using .NET 4.5, EF 5.0, 11gR3 DB, VS 2012 & ODP 11.2.0.3.60 (beta)
    Below is my app.config.
    <oracle.dataaccess.client>
    <settings>
    <add name="HR.UPDATE_AND_RETURN_SALARY.RefCursor.NEW_SALARY" value="implicitRefCursor bindinfo='mode=Output'" />
    <add name="HR.UPDATE_AND_RETURN_SALARY.RefCursorMetaData.NEW_SALARY.Column.0" value="implicitRefCursor metadata='ColumnName=FIRST_NAME;BaseColumnName=FIRST_NAME;BaseSchemaName=HR;BaseTableName=EMPLOYEES;NATIVEDATATYPE=Varchar2;ProviderType=Varchar2'" />
    <add name="HR.UPDATE_AND_RETURN_SALARY.RefCursorMetaData.NEW_SALARY.Column.1" value="implicitRefCursor metadata='ColumnName=SALARY;NATIVEDATATYPE=Number;ProviderType=Int32'" />
    </settings>
    </oracle.dataaccess.client>
    As far as I can tell it seems like VS would use the tags above to figure out the return column info and create a complex type. I could not see why it is not recognizing it.
    Please note that I can access an Oracle table successfully and display rows in VS.
    Thanks in advance

    I'm not sure if you're the person that just logged a SR on this, but I just recently worked the same issue.
    It turns out that
    a) if you don't pay attention, adding a new Oracle Connection in Server Explorer defaults to the MANAGED ODP.NET (you can still create a connection using UnManaged though).
    b) the metadata for MANAGED ODP.NET is different than the metadata for UNManaged. Here's the correct mapping for MANAGED ODP:
    oracle.manageddataaccess.client>
        <version number="*">
          <implicitRefCursor>
            <storedProcedure schema="HR" name="UPDATE_AND_RETURN_SALARY">
              <refCursor name="NEW_SALARY">
                <bindInfo mode="Output" />
                <metadata columnOrdinal="0" columnName="FIRST_NAME" providerType="Varchar2" nativeDataType="Varchar2" />
                <metadata columnOrdinal="1" columnName="SALARY" providerType="Double" nativeDataType="Number" />
              </refCursor>
            </storedProcedure>
          </implicitRefCursor>
        </version>
      </oraclemanaged.dataaccess.client>

  • View Column info not displaying in Columns Tab

    Running XP SP2 and SQL Developer 1.5.1 5440
    When looking at views that are using tables from another schema. I don't see any of the columns information. I have DBA role
    In rel 1.1.2.25 2579 I see them just fine. (Both loaded on machine right now)
    Is this a bug or do I have a setting problem?

    Barry,
    As a "disclaimer", the points below are based on my usage of SQL Developer and things that bug me about how it works or doesn't work - I know that there are more important things to fix than a number of these.
    On to the basics ... and the most basic of the basics for a tool like SQL Developer:
    1) Problems with data dictionary queries in navigator or object tabs:
    - Triggers not listed in Table tab if trigger owned by different schema to table owner
    - Index columns not listed in Table tab if index owned by different schema to table owner
    - View columns not listed in View tab if view owned by different schema to current user
    - Dependencies not listed in Table/View tab if other object owned by different schema to object owner
    - Performance of Table Node (outer join added in 1.5.1)
    - there are a lot of other posts about the supplied data dictionary queries not producing the right results and I often find that I am querying the data dictionary directly in a SQL Worksheet for information that should be correct in the navigator/object tabs
    Basic things that I expect to work in a tool like SQL Developer (or to work given that they have been included):
    1) Popup Describe problems
    - schema name is case sensitive, so doesn't find owner.object
    - synonym overrides schema name (OWNER.OBJECT will describe local OBJECT synonym instead of OWNER's object)
    - position based object name selection includes punctuation
    2) Bind variables that work properly in PL/SQL (both Execute Statement and Run Script)
    3) Package decomposition in object navigator doesn't report variables or constants of custom types and lists object.column%type constants as "constant"
    4) Exporting query results re-executes query to display Export dialog - this presents as SQL Developer freezing after selecting the Export menu option for queries that take a long time for first record to appear
    I would use SQL Developer more (or more of SQL Developer) if:
    1) More integrated file based development - I still do the bulk of my object creation (largely PL/SQL and views) editing in Wordpad and running via SQL*Plus largely because I get better error reporting.
    - display the compile message tab when using the compile button for a file
    - show errors doesn't work for views
    2) Running Reports hang SQL Developer - I still have my SQL scripts for my common queries, which I can run through SQL Worksheet in a much friendlier fashion (I can cancel them and they don't hang SQL Dev) than I can run reports
    Problems that detract from the "polish" of SQL Developer, but don't really have a big impact on usage but discourage me from trying to "convert" non-techie TOAD using colleagues:
    1) Multiple TNSNAMES files read - generates multiple entries
    2) Export of long string literals causes ORA-972 error
    3) "Statement Processed" feedback is extremely sensitive to spaces ("create Statement Processed" where two spaces between the create and view keywords) and assumes simple statements ("create unique Statement Processed" or "create or replace force Statement Processed" as examples)
    I think that makes 10 basics to fix (although some as just issues that make the tool look unpolished), however, it does seem as though testing in the following areas could be significantly better:
    1) Regression testing - a number of bugs seem to crop up again after being fixed in earlier versions
    2) Navigator/object tab queries - especially with multi-schema applications (ie Oracle eBusiness Suite) and just generally objects owned by other schemas
    3) Performance with large DBs in terms of object count (ie Oracle eBusiness Suite)
    As a final note, it is my impression that SQL Developer development has been unbalanced in focusing too much on including new functionality (which is good) and not enough on getting existing functionality right (which is better).
    I hope this helps (and wasn't too long) ...
    theFurryOne

  • VALUE CREATED, but not DISPLAYED IN QUERY

    Hi dear all,
    I have created a value under InfoObject A by going to RSA1.
    Now while creating a Query, i have to use this value.
    But this created value is not seen under that Navigational attribute,
    B__A
    What shud i do???
    Need Help..
    Thanks,
    Sowrabh

    When you right click on the Charachteristic and say restrict. You are not able to find the new value. Is this your issue??? try the folloiwng.
    In 3.5
    Right Click on the Characteristic and say restrict and go to fixed values.
    At the Bottom you can see a Display Other Valu Option(Yellow-green Colour Arrow)
    Click on that. this opens a new window.
    In this Window uncheck the Only Values From infoprovider
    Also uncheck the Authorized Values Only Checkbox
    Also Set the Number of Displayed Values to All
    Now Click OK. This will show you all the values for that particular Characteristic.
    In 7.0
    When u restrict a Charachteristic, u will see an option called Setting which is on top
    When u click on that it will open a new Window . In that window, select value restrictions.
    in that select the Radio Button All values And Read Mode Setting as Values in Master data.
    Thsi will give you all the values

  • Key figure attribute not displaying in query

    Hello experts.
    I have a key figure attribute called Credit Limit.  It is an attribute of Customer.  The key figure is type CURR with 2 decimal places. 
    When I maintain master data for Customer, I can see the value fine e.g. 2,000.00
    When I run a BEx Query the very same value displays as 0,00.
    Does anyone have any idea why this could be?
    For info we run BW 3.5.
    Thank you.

    Hi,
    1.please ensure that your master data is activated (right click the IObj, Activate Master Data)
    2. how do you display this attribute? as attribute of the customer? as Nav? as a formula variable ?
    let us know
    Olivier.

  • Key Figure Attribute not displaying in Query Designer

    Hello Experts,
    I have an InfoObject which has Key Figures as attributes.  When creating a query I <b>once</b> was able to see these Key Figure attributes in the Query Designer.  Howerver, recently I am not able to see them anymore in our DEV environment. 
    In our QA and PROD environment I am to see these Key Figures attribues in Query Designer.  Is there a setting that I am overlooking?  We are currently on BW 3.5 with SP 19.
    Please help!
    Thanks in advance,
    BQ

    Hi Jaya,
    Thanks for the quick response.  But how to I check the authorization for 1KYFNM and what am I looking for?
    Thanks,
    BQ

  • Attribute data is not displaying in Query

    Hi BW Experts,
    i enahnced some of the fileds to 0employee iam able to see the data in RSA3 and infoobject master data.bu when i executed the query these enhanced fileds data  is not diplaying may i know what is the reason ,i executed attribut change run also . can any one suggest on this issue.
    Regard
    sivaraju

    Hello Sivaraju ,
    Are u using navigational attribute of the enhanced char  of 0employee in the query ?
    if yes , then after loading the master data of 0employee have you run atttribute change run from rsa1..>menu bar tools...attribute change run .
    check master data of 0employee and see whether R3 data is matching with BI for the enhanced char or not ?
    also check in infocube whether u can see the enhanced char of 0employee correctly ?
    My suggestion is to use only navigational attribute of enhanced char or you can add the char to infocube and then in update rule master data look up option . In later case you need to reload the data of infocube.
    This can be avoided by using navigational attribute.
    Check the cube data for the employee along with the enhanced char .
    create a new query along with 0Employee and enhanced char and one key figure and run it for testing purpose and see the result.
    regards ,
    Amol

  • Profiler info not displaying

    I have a package function (pipelined) that has several profiler runs created by DBMS_HPROF. All the expected run data appears to be in the dbmshp* tables.
    SqlDeveloper does not show any of this run information under the Profiler tab for the package/function that is profiled; the original runs were profiled in sqlplus, then a couple runs were created through sqldeveloper. Neither the sqlplus runs nor the sqldeveloper runs show as runs in sqldeveloper, no runs show in sqldeveloper.
    That is, I highlight the package spec and refresh the profiler tab - nothing displays, I highlight the package body and refresh the profiler tab - still nothing, I highlight the package function and refresh the profiler tab - still nothing, I highlight another function that is called within the package and refresh the profiler tab - still nothing. But, if I highlight a different package that is called from one I am profiling, I see run data for that package.
    I should emphasize that the dbmshp* tables do show the run data for the package calls I am interested in.
    Is sqldeveloper unable/unwilling to show these package runs?
    As a comparison, TOAD does show some of the information in its profiler display, whereas sqldeveloper shows none for the same run. I should add that for the pipelined function, I need to wrap the call in an anonymous block for TOAD to display the data, as opposed to "select * from table(pipelined function)" - but it does display.
    I've used plshprof on the output file, and the html shows all the profiled run data - but it's use and display is somewhat inconvenient.
    The only piece that seems off is sqldeveloper - what do I need to do to have it display profiler runs for profiled package calls?
    Thanks,
    Steve

    Ok, after searching some of the topics on here I found that the issue I described is fully covered in the existing discussion topic "Problems with iPad Music App in iOS 5"
    So if someone figures this out that will be great.  As others have stated in that thread, this is really disappointing, especially for a Apple Product.  I would have thought Apple would have found a solution by now.  Hopefully, my IPod won't experience the same problem!

  • Heirarchy Changes not displayed in query

    Hi,
    We are using 0ACCOUNT's heirarchy in a query.We changed the node of a particular range of account numbers from A to B.After changing the heirachy,saved and activated it.
    The problem is when we execute the query,it stil shows that particular range of numbers under the old node A instead of showing it under new node B.
    Any pointers on this would be of great help
    Thanks in Advance,
    Bhagyarekha.

    Hi,
    GO to t-code RSH1 and check first if hiearachy is active.
    Then run the hiearachy attribute change run.
    One helpful url is as follows:-
    http://help.sap.com/saphelp_nw04/Helpdata/EN/80/1a67ece07211d2acb80000e829fbfe/content.htm
    Regards
    Rahul Bindroo

  • Why is my Hard drive info not displaying the correct availability

    I can open "About This MAC" and click on more info it lets me check my hard disk usage under storage. It shows I have 81 GB available of 499.76. However it shows 98 GB of Backups, what could that be?
    Now when I actually right click on Macintosh HD it says I have 437.22 GB available of 499.25 GB. I just don't understand, and I don't believe either is right. If I right click my user file in MAcintosh HD it says I have 165 GB on disc. What gives?

    Welcome to the Apple Support Communities
    That's normal. OS X Lion and Mountain Lion, when you have turned on Time Machine, create "local snapshots" on the hard drive of portable Macs. See > http://pondini.org/TM/30.html
    One of the "features" of local snapshots is that Disk Utility detects them as used space and Finder detects them as free space. That's the reason why you are seeing different free spaces depending on the application you use. There's nothing wrong in making local snapshots

  • Master Data(texts) not displayed in Query/Analyser

    Hi ALL,
    I hv master Data's like Cost center,Cost element,vendor,Customer, for which the data is displayed only as key and no text is displayed,even though i hv selected key and text option,,also i hv checked their corresponding master datas,,i c that all the data has been loaded respectively.
    Please advice  on how to solve this...asap
    Thanks

    Goto RSA1 and double click on the infoobject.
    Goto the Business Explorer Tab and make the Display Option as Key and Text.

Maybe you are looking for

  • My scroll bar dissapears when my firefox screen isn't maximized - how do I make it show up when not full screen?

    This just happened spontaneously yesterday - did I press some strange shortcut to make this happen? How do I get my scroll bar back when not in full screen? Please help!

  • Flex datagrid not populating anymore

    Original CF server version: 7,0,1 Flash version: 9 After installing ColdFusion MX 7 Updater 2, I am unable to populate a SWF datagrid that was compiled from Flex 1.5. We call a ColdFusion CFC by passing in 4 arguments to the cffunction. The function

  • Using assert or exception?

    I have been struggling with the methodology of using assertions for some time now and would like to have an objective viewpoint. It primarily has to do with the use of assertions for pre-conditions. Let's say we have some class, for demonstration pur

  • Flex with EP7

    has anyone used the flex  runtime with EP7? what is the way. regards, ggl

  • How to make a Netowrk Completely Trusted

    My computers are connected to two networks (via cable). One network uses a router and provides access to internet. This network is designated as public network. The other network is a switch based network with a file server attached to it (FreeNas).