How to get rid of unassigned values in the report

hai to all,
here is the issue,
   while running a report(sales per country), iam getting the data,after that when i drill down on <u><b>sales document number</b></u> iam getting some unassigned data, with Sales document number as #, and some value in the keyfigure.what is the reason behind this?
Here is another issue that i want to find all the sales documents which have the value # in the report?, is it possible?    the same case with <u><b>Customer country</b></u>, on the same report.
pl anyone help me
br
venkat/shyam

Hi Shyam.
Regarding the first issue: Well, you've loaded some data records into your cube where the "Sales Doc Field" is empty.  Did you load through PSA? The best way to scan your PSA (I believe) is to find the underlying table and have a look at it via SE16. In this way you don't have to  scan through every data single package. This can be done via "display data flow" from your cube and switch on technical names. There you have it. (It's called /BIC/B00...etcetc you might have to add i few zeroes though when you enter it into SE16). Get request ID from "Infocube Managment". In SE16 seelction screen use F2 to set the "sales Doc No." field even to blank.
Second issue is a bit easier: in your query (or a working copy of your query) restrict on "Sales Doc No" or "Customer Coutry" to only include value "#". In the same way you can remove the unassigned values be excluding value "#".
Hope this works for you.
Chears, Jørn

Similar Messages

  • Can anyone explain to how to get rid off restore session on the mozilla firefox it keeps coming up every time i click on mozilla firefox it comes up restore session why is this it is driving me nuts

    can anyone explain to me how to get rid off restore session on the mozilla firefox it keeps coming up every time i click on mozilla firefox it comes up restore session why is this i want to get rid of it it is driving me nuts

    What do you have checked in Firefox Preferences>General?
    Ciao.

  • How to get relationship between two  views in the  reports

    How to get relationship between two  views in the  reports, I am doing a deletion program , it is fully relates to views , how to get relationship between them in the reports

    Hi,
    Please explain your question in detail...what do you want to read ?
    If you want to know about the navigation links between the views then you can use APIs  like
    wdComponentAPI.getComponentInfo().findInWindows("windowName").getViewUsageByID("Name").getNavigationLinks();
    Iterate through the navigationLinkInfo from above collection and can read the other properties .
    I haven't tried the above , but it should work !!!
    Regards,Anilkumar

  • How to get rid of No Value in Olap cube based SSRS report

    hi there, I am trying to create a report based on SSAS cube.  As you can see, some returns 0 while some does not return anything. This actually messed out the border style as well... Any idea on how to get rid of this? 
    thanks
    --Currently using Reporting Service 2000; Visual Studio .NET 2003; Visual Source Safe SSIS 2008 SSAS 2008, SVN --

    Hi  Cat_ca,
    Are you using SQL Server Reporting Services 2000? Currently, we do not have SSRS 2000 test environment, and SQL Server 2000 was out of support since April 2013.
    I have tested it on SSRS 2008 R2, everything works fine. It display nothing on the cell for the NULL value. Please refer to the screenshot below.
    In your scenario, to avoid this issue you can use NonEmpty function in your query to remove the NULL values.
    NonEmpty (MDX)
    If I have anything misunderstand, please point it out.
    Regards,
    Charlie Liao
    TechNet Community Support

  • How to get rid of compounded keys on WebI report

    Hello,
    I am (very) new to Business Objects and Web Intelligence, and have created a Universe on a BW multicube.<br />
    When I setup the WebI report doc, the Fiscal year (and Fiscal Period/year) are showing with the Fiscal Variant as a prefix (e.g. Z3/2009). <br /> <br />
    Using a formula to 'strip' the characteristic to 2009 confuses the data (as there is no 'key' of 2009, only Z3/2009).
    Filtering by Fiscal Variant (the Z3 part) doesn't seem to change things, or even putting the fiscal variant in as a column (these techniques used to work quite nicely in Bex and Web Bex).<br />
    Is there some magic I have missed in the Universe building process (which I have purposefully kept very simple, as there are plenty of these to build!!).<br /> <br />
    I am sure folks have seen (and sovled) this before, as Fiscal Year (and Fiscal Period/year) must be used often, and these are standard SAP time fields.<br />
    However, i can find nothing in help or even forums (perhaps I am not searching for correct key words).<br /> <br />
    I haven't tried building the universe off a Bex Query, and am kind of reluctant to do this, as it builds in another layer to maintain.<br /> <br />
    Anyone know how to get rid of the compounded part of the (fiscal year) objects?<br /> <br />
    Your help and comments are much appreciated.<br /> <br />
    Regards,<br />
    Martin.

    Hi Ingo,
    I am also facing the same problem.
    I have an object Showing (TR/1223xxxx). I was able to remove "TR/" in bex by dragging the compunded object in Rows section and supressing it to "No Display" but in Webi I am still getting (TR/1223xxxx).
    In Webi if I create a formula and trim the above value, i am getting "#UNAVAILABLE" in Key Figures, i.e. measures (smar Measures)
    Is there a way to get rid of this compunded value.
    One more requirement, in Bex Query, I am giving dislay as "Key and Text" but in Webi, i get only "Text" for that object. I have to explicitply drag and use the Object - key (detail object of that particular dimension). Is there a way to get both Key and Text in Webi using a single object.
    Kindly help. Thank You!
    Edited by: Aikansh on Mar 9, 2012 8:49 AM

  • How to get ridd of Garbage Values in the row from the Tables

    Hi Experts,
    I have an excel Sheet which has a value as
    Name
    ABC
    PQR
    XYZ
    MNO
    STU
    DEF
    JKL
    So i converted that to a csv (Comma de-limited) file and created an external table out off it.
    So when i try to match to "select * from table;" it displys the vlaue as below
    *"ABC*
    however, it should have been just ABC.
    select length(Name) from Table;
    O/p: 4 (It Should have been 3)
    How to get rid off this garbaje character?
    Please Help!!!!!!!
    Regards,
    Ravi R

    You didn't post CSV file. I can't reproduce your issue using the following CSV:
    "ABC"
    "PQR"
    "XYZ"
    "MNO"
    "STU"
    "DEF"
    "JKL"
    SQL> CREATE TABLE EXT_EMP
      2  (
      3  EMP_L VARCHAR2(255)
      4  )
      5  ORGANIZATION EXTERNAL
      6  ( TYPE ORACLE_LOADER
      7  DEFAULT DIRECTORY "TEMP"
      8  ACCESS PARAMETERS
      9  ( RECORDS DELIMITED BY NEWLINE
    10  CHARACTERSET WE8MSWIN1252
    11  STRING SIZES ARE IN BYTES
    12  BADFILE "EXT_EMP.BAD"
    13  NODISCARDFILE
    14  LOGFILE "EXT_EMP.LOG"
    15  SKIP 1 FIELDS TERMINATED BY ','
    16  OPTIONALLY ENCLOSED BY '"' AND '"'
    17  NOTRIM
    18  (
    19  EMP_L CHAR
    20  )
    21  )
    22  LOCATION
    23  (
    24  'Employess.csv'
    25  )
    26  )
    27  REJECT LIMIT UNLIMITED;
    Table created.
    SQL> SELECT  *
      2    FROM  EXT_EMP
      3  /
    EMP_L
    PQR
    XYZ
    MNO
    STU
    DEF
    JKL
    6 rows selected.
    SQL> SY.

  • How to get rid of error message for the material?

    Hi everybody,there is a material which is showing an error message whenevr try to create a sales order, i've checked the material master...there is no check in X-plant Mtrl or X-dist chan or any flag for deletion...but still the red error message comes up while creating a sales order...how to get rid of this error?

    this means material is blocked for procurment
    three kinds of block can be there
    01 Blocked for procment/whse
    02 Blocked for task list/BOM
    03 Blocked for Purchasing
    GOTO MM42 give material n plant data
    Select BESIC VIEW
    there is a field called as material block remove the blocking reason
    Hope this will help
    Edited by: WISH on Mar 24, 2008 6:33 AM

  • Another web browser has hijacked my Firefox and I cannot see how to get rid of it. In the meantime, I have stopped using Firefox on my laptop because I do not trust this other web browser.

    A website I was using to find out some transport information has hijacked my Firefox on my laptop and I am unable to get rid of it. I do not trust this other browser so I have stopped using Firefox altogether on my laptop until I find out how to get rid of this other browser. I have an Apple MacBook.

    Hi there and thanks for replying. I am not quite sure what you mean by 'restore back to the troubled date'. Would you please explain how I should do this?

  • How to get rid of wind noise on the audio track

    I am sure there must be a method to get rid of wind noise on the audio track. Can someone tell me what the best filter is for this purpose as I shoot mostly outdoors and even with a sock covered mike I pick up the wind noise? I have FCS and therefore Soundtrack Pro. Are there filters in the audio filters section of FCP or must I go to STP? Thanks in advance!
    Powerbook G4   Mac OS X (10.4.7)   4 x La Cie 250Gb HDD
    Powerbook G4   Mac OS X (10.4.7)   4 x La Cie 250Gb HDD

    I shoot mostly outdoors too, and it gets pretty windy where I live!
    > I shoot mostly
    outdoors and even with a sock covered mike I pick up
    the wind noise
    I hope you mean you have a Rycote "Softie" or something similar protecting your mic . . ?
    If so, you should be able to shoot in quite a high wind without any "wind noise" - but of course, even if your "sock" is correctly fitted and working well, you'll pick up the sound of the wind (different thing altogether).
    If you have the right gear and are experiencing the buffeting sound you get with an unprotected mic, then I suspect there are gaps somewhere - so tape them up!
    Either way, for removing unwanted sound, I know of no tool like the Linear Phase EQ filter in STP. Like everything new, it takes a little time to learn but it's very well worth it. With practice, you can almost slice out much unwanted sound like a knife.
    I'm not sure why you don't want to use STP - it opened up a whole new world to me - and it's easier to learn than FCP IMHO.
    Andy
    G5 Quad. 8 GB. 250 & 500 GB Internal HDs. G-Tech G-Raid 1 TB. FCP 5.0.4 (Studio)   Mac OS X (10.4.7)   Sony HVR-Z1E.
    You can't educate pork . . ..

  • How to get rid of IDES logo in the SAPScript Layout PSFC_PRINT_LAY ?

    Hello Guys,
    I am trying to print the standard production order.
    The printout has the IDES logo on top left corner for the SAPScript Layoutset PSFC_PRINT_LAY.
    How do I get rid of it?
    Is there a config setting for that?
    How do I insert my own logo?
    Thanks
    George King

    hi
    I tcode se78 where you have to import your logo from outside to SAP system. and then copy this to the  smartform of PSFC_PRINT_LAY
    but for this you have to consult with ABAPER
    Regards
    Pravin

  • How to get rid of an entry in the Finder sidebar?

    In the finder window sidebar there is an entry called "Untitled CD", with the burn icon next to it.  How do I get rid of it?  Using v10.6.8, on an iMac.

    Control (right) click on it and select Remove from Sidebar.

  • How to get rid of user tip on the screen of windows 8

    hi
    I do not want the display of "switch between apps" user tip that keeps on populating everytime.
    How can i get rid of it,please suggest. Thanks In advance.
    My PC configuration 
    Link to image 1
    Link to image 2
    Moderator note: large image(s) converted to link(s):  About Posting Pictures In The Forums

    hi saichandra38,
    Welcome to the Forums.
    Can you try to follow the guide below on how to disable App Switching and observe.
    How to Turn App Switching On or Off in Windows 8 and Windows 8.1
    Let me know how it goes.
    Regards
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"! This will help the rest of the Community with similar issues identify the verified solution and benefit from it.
    Follow @LenovoForums on Twitter!

  • How to get rid of this screen to the left of my timeline

    Hi I was working on my project and I tried to select the beginning of my timeline and all of a sudden this stupid screen to the left pops up...How Do I get rid of it? I tried Revert to original Layout...Closing and opening and trying to grab it but it won't close? Anyone?

    Shift-Cmd-2 or the second button in the lower left.

  • How to over ride a parameter value in the URL

    Hi
    I am calling a 10g report through a form as ...
    web.show_document('/reports/rwservlet?MYKEYINCGICMDFILE'&report=stock_status','_blank');
    MYKEYINCGICMDFILE is a key in cgicmd file where I have passed values like userid,destype, desname etc.
    Now I want to change the destype for a specific report and I want to pass the parameter through URL, how can I override the destype value provided in the key and pass through URL?
    I tried as ...
    web.show_document('/reports/rwservlet?MYKEYINCGICMDFILE'||'&desformat=spreadsheet&destype=file&desname=c:\stock_check.xls&report=stock_status','_blank');
    but still getting the value from the key.
    Thanks

    Leave out MYKEYINCGICMDFILE on the URL and specify all the parameters. That of course exposes un/pw.
    Or create a second key.
    Better still: use run_report_object in Forms instead of calling a report via web.show_document. This takes un/pw from the currently logged in user.

  • How to get rid of username lists in the Gmail window. I access Gmail with Firefox.

    It is a small but annoying problem. I, and sometimes friends, use my Gmail account to check their email. In the username window of Gmail, which I access with Firefox 3.6.9, a list of all past users shows up when I click in the window. I cleared Google cookies, and All history, but the list remains! I can hide the list, but not clear it, if I check 'Form and search history'. But the list is alive and well when I uncheck this option! Is there a way to get rid of the list?

    See https://support.mozilla.com/en-US/kb/Form+autocomplete#Deleting_individual_form_entries

Maybe you are looking for

  • Use of READ REPORT and INSERT REPORT

    Hi Guys, i need a small help from u guys....... i want to know the use of READ REPORT and INSERT REPORT  with Example the requirement is... i want to declare an internal table with fields from custom table. if any field is aded in the custum table th

  • Can't locate or eject CD

    My dad has an iMac and he has shoved a CD in the drive which he says he thinks had photos on it. He couldn't see the CD or what was on it and now he can't eject it either. I have tried the usual things, restart holding mouse button down etc and nothi

  • Best Practice for Droid Gmail Contacts with Exchange ActiveSync?

    Hi, folks.  After going through an Address Book nightmare this past summer, I am attempting to once again get my Contacts straight and clean.  I have just started a new job and want to bring my now clean Gmail contacts over to Exchange.  The challeng

  • Input readiness when "Local calculations" on key figure changes

    Hi all, i have a planning query with a key figure, posting period and fiscal year (just naming the important chars). the query is input ready but calculates the wrong result. so i wanted to change the way it calculates the result in the query designe

  • How can transport XI object?

    Hi Friends, I wanted to transport the XI object like repository and directory to Q,P system? Could an one help regarding this? I got stuck up. regards Mc