Show blank texts instead of key or 'not assigned' in query-result

Hi,
is there a way / workaround to
1. suppress # / 'not assigned' in query results?
or
2. show blank texts (if maintained) instead of the key
    (when showing texts for a characteristic in a query all characteristics with blank texts - none or ' ' -
     will show the key instead of the blan text) ?
Thanks,
Christoph

Hi Christoph,
there have been several posts concerning this topic. As Saad told there is no direct way within SAP standard to reach this aim.
Depending on the Front-End Tools you are using these posts may help:
Not assigned and # in BEX 7.0 WAD
how to set field to blank if the data is # or unassigned
Brgds,
Marcel

Similar Messages

  • Still some 'Not Assigned' in query result

    Hi,
    In fact, I've built a query on a multiprovider ( 1 Cube + 1 ODS )
    The ODS and the Cube are joined by the material (0material).
    The Cube and the ODS are well filled. Queries on each Infoprovider correctly display the results.
    When I launch my query on the Multiprovider, it seems the "joined" between the 2 infoproviders doesn't work as
    I've still some '#' / 'Not Assigned' value in the query result, and it should give me a result.
    In fact the data from the ODS aren't retrieved, they are replaced by '#'. And I don't why ?
    Please help.
    Thx a lot,
    Erwan

    Yes you are right.
    I made a mistake in my explanation.
    But the problem is that the characteristics from the ODS aren't displayed though the characteristic from the cube are correctly displayed.
    eg.
    In the ODS I've :
    ( Material, ZCHAR )
    'ART01'  '315'
    'ART02'  '412'
    'ART03'  '999'
    In my Cube I've :
    'ART01'  '12,36€'  '59,00€' '30 ST' 
    'ART02'  '12,96€'  '89,00€' '40 ST' 
    In the query(on the multiprovider) result I've :
    ( Material, ZCHAR, other values...)
    'ART01' '#' 'Not assigned' '12,36€'  '59,00€' '30 ST' 

  • My iPhone shows black text instead of blue btwn iPhone users, Why?

    My iPhone is shows black text instead of blue to different iphone users, what does this mean?? Thank you.

    No matter what you send a normal text or iMessage the color of the "text" will remain black,but if you send a iMessage,the color of the message bubble will be blue and if you send a normal text message the color of the message bubble will be green.

  • My appstore says cannot connect to iTunes and it shows blank page i tried all advices but there is no result shall give my iPad to the apple store to make it

    My appstore says cannot connect to iTunes and it shows blank page i tried all advices but there is no result shall give my iPad to the apple store to make it   

    I think you should probably also read the iPad User Guide. You didn't say what version of iOS your iPad is running, so here's the links to both the iOS 6 and iOS 7 (PDF) versions:
    iPad User Guide for iOS 6
    iPad User Guide for iOS 7

  • Adding Notes to a query result

    Is there a way for end users to add notes to a query result, then have those notes show up when another user runs the query?
    If so, how long would those notes be avalible? In other words, are there any BI events that would clear ot the note(s)?
    Where would I go to get the documentation on this (if it exists)? Thanks!!!
    Mark

    Hi,
    You can add notes in query result, write click on the particular cell, there you will have option to add notes.

  • How to get Text instead of key in a ListBox or DropDown

    Hi,
    I have a Listbox Country and I would like to get the Country name selected instead of key.
    for example if i select India , i am getting corresponding key value for India not the actual text India.
    How would i get that
    I am using this.rawValue to get the key
    Thanks
    Bala Duvvuri

    Hi Bala,
    Have you tried this:
    Place the following JavaScript code on the Change event of your ListBox
    xfa.host.messageBox("TEST: " + xfa.event.newText);
    This code should give you the actual Text for your entries.
    Hope this helps,
    Harman

  • Create a Blank Text file if it does not exist in a Given Directory

    Hi,
    I would like to check if text file in a given folder exists or not if not then create a blank text file in a given directory. I was checking File system task, it has options to create directory and move files, copy files but not creating files.
    How can I create a blank text file in a given directory in SSIS using script task or any other way.
    Many thanks.
    Mustafa
    MH

    Thanks Saravana for your help. I am using the following code in the script Task two
    Imports System
    Imports System.Data
    Imports System.Math
    Imports Microsoft.SqlServer.Dts.Runtime
    Imports System.IO
    Imports System.Object
    Imports System.Security.Cryptography
    Imports System.IO.Compression
    <System.AddIn.AddIn("ScriptMain", Version:="1.0", Publisher:="", Description:="")> _
    <System.CLSCompliantAttribute(False)> _
    Partial Public Class ScriptMain
    Inherits Microsoft.SqlServer.Dts.Tasks.ScriptTask.VSTARTScriptObjectModelBase
    Enum ScriptResults
    Success = Microsoft.SqlServer.Dts.Runtime.DTSExecResult.Success
    Failure = Microsoft.SqlServer.Dts.Runtime.DTSExecResult.Failure
    End Enum
    ' The execution engine calls this method when the task executes.
    ' To access the object model, use the Dts property. Connections, variables, events,
    ' and logging features are available as members of the Dts property as shown in the following examples.
    ' To reference a variable, call Dts.Variables("MyCaseSensitiveVariableName").Value
    ' To post a log entry, call Dts.Log("This is my log text", 999, Nothing)
    ' To fire an event, call Dts.Events.FireInformation(99, "test", "hit the help message", "", 0, True)
    ' To use the connections collection use something like the following:
    ' ConnectionManager cm = Dts.Connections.Add("OLEDB")
    ' cm.ConnectionString = "Data Source=localhost;Initial Catalog=AdventureWorks;Provider=SQLNCLI10;Integrated Security=SSPI;Auto Translate=False;"
    ' Before returning from this method, set the value of Dts.TaskResult to indicate success or failure.
    ' To open Help, press F1.
    Public Sub Main()
    ' Add your code here
    Dim inputFile As String
    Dim outputFile As String
    Dim encoding As String
    Dim PrivateKeyInXML As String
    inputFile = Dts.Variables("Item1Path").Value.ToString()
    outputFile = Dts.Variables("OutputFile1").Value.ToString()
    encoding = Dts.Variables("Encoding").Value.ToString()
    PrivateKeyInXML = Dts.Variables("PrivateKey").Value.ToString()
    Dim CallCryptoReader As CryptoReader = New CryptoReader(inputFile, outputFile, encoding, PrivateKeyInXML)
    Dts.TaskResult = ScriptResults.Success
    End Sub
    Public Class CryptoReader
    Private _FileStream As FileStream
    Private _CryptoStream As CryptoStream
    Private _ZipStream As GZipStream
    Private _RSAPrivateKeyinXML As String
    Dim _CryptoAgent As New System.Security.Cryptography.AesCryptoServiceProvider
    'System.Text.Encoding
    Sub New(ByVal inputFile As String, ByVal outputFile As String, ByVal encoding As String, ByVal PrivateKeyInXML As String)
    _RSAPrivateKeyinXML = PrivateKeyInXML
    'Create the crypto agent
    _CryptoAgent = AesCryptoServiceProvider.Create
    '''''''_CryptoAgent.GenerateIV()
    '''''''_CryptoAgent.GenerateKey()
    'Open cypher text for reading in
    _FileStream = New FileStream(inputFile, FileMode.Open)
    ReadHeaderFromFile() 'write out aes key to header
    'Create the stream to decrypt the AES part of the file
    _CryptoStream = New CryptoStream(_FileStream, _CryptoAgent.CreateDecryptor, CryptoStreamMode.Read)
    _ZipStream = New GZipStream(_CryptoStream, CompressionMode.Decompress)
    'setup complete - run decrypt to unprotect the rest of the file
    DecryptFile(outputFile)
    Flush()
    Close()
    Dispose()
    End Sub
    Public Sub Close()
    _CryptoStream.Close()
    _ZipStream.Close()
    _FileStream.Close()
    End Sub
    Public Sub Dispose()
    _CryptoStream.Dispose()
    _ZipStream.Dispose()
    _FileStream.Dispose()
    End Sub
    Public Sub Flush()
    _CryptoStream.Flush()
    _ZipStream.Flush()
    _FileStream.Flush()
    End Sub
    Private Sub ReadHeaderFromFile()
    'Read the AES Key (Protected by RSA Key) and then the IV
    Dim UnProtectedAESKey() As Byte
    Dim buffer(_CryptoAgent.BlockSize - 1) As Byte
    'Read in protected AES Key
    _FileStream.Read(buffer, 0, _CryptoAgent.BlockSize)
    'Decrypt AES Key
    UnProtectedAESKey = releaseKeyFromRSA(buffer)
    _CryptoAgent.Key = UnProtectedAESKey
    ReDim buffer(_CryptoAgent.IV.Length - 1)
    'get IV
    _FileStream.Read(buffer, 0, _CryptoAgent.IV.Length)
    _CryptoAgent.IV = buffer
    End Sub
    Public Sub DecryptFile(ByVal outFilePath As String)
    Dim outFile As New FileStream(outFilePath, FileMode.Create)
    Dim count As Integer = 1024
    Dim buffer(count - 1) As Byte
    Do Until count = 0
    count = _ZipStream.Read(buffer, 0, count)
    outFile.Write(buffer, 0, count)
    Loop
    outFile.Flush()
    outFile.Close()
    outFile.Dispose()
    End Sub
    Private Function releaseKeyFromRSA(ByVal key() As Byte) As Byte()
    Debug.Print("Protected AES Key - " & key.ToString)
    Dim cspParam As New CspParameters()
    Dim RSA As New RSACryptoServiceProvider(1024, cspParam)
    'private
    RSA.FromXmlString(_RSAPrivateKeyinXML)
    Dim decryptedAsByte() As Byte = RSA.Decrypt(key, True)
    Debug.Print("Release RSA - " & System.Text.Encoding.ASCII.GetString(decryptedAsByte))
    Return decryptedAsByte
    End Function
    End Class
    End Class
    I am using the Outputfile1 variable. this is the variable where the path of the file will come which was created in the previous script task. In this task i got the exception that it is alread in use.
    MH

  • Selection options for field display text instead of key

    Hi All,
    In the selection screen in my reports, when the user clicks on the selection options for one the fields to display the possible values they can use. Instead of the key the pop up box only displays the text for that field. This is an issue because one of the fields is equipment number and the user needs to be able to see the key not the descriptions. This is occurring in multiple reports and for multiple fields. I haven't been able to find anything in the infoobject properties or the query properties to change this.
    Please help!
    Edited by: Anthony Loh on Sep 29, 2010 10:57 PM

    Hi Anthony,
    Cud u pls check in backend how it is created ...
    RSA1>Mdeling>IO Properties>Second tab BEx properties>Display-->it shud be Key and not text...
    Check this and come back ..
    Rgds
    SVU123

  • Show clear text pre shared key asa 5500.....

    I have read several of the posts on how to show your pre shared keys in clear text.  I am in the process of converting a 5520 over to a 5525-x and I got to the point where I need the pre-shared keys
    the    more system:running-config     command does NOT show the clear text of the keys nor does access the file via https:// either.
    the 5520 is running Software Version 8.4(2)18
    any thoughts how I can wrestle this info out of the asa as I'm not getting anywhere with what seems to have worked for a few others.
    Thank in advance
    Sincerely
    Paul

    The command  more system:run  should show you those keys.
    Couple things that I have seen
    I have seen it where someone configured pre-shared key by cutting and pasting the key as it is shown when you do a show run, so it was entered as ****. You can check this buy entering a dummy config with a key and then run the more system:run and see if it shows up.
    also check the privilege level of your login and make sure it is 15.
    Mike

  • Selection Screen - Text instead of Key in the value help

    Hi ,
    I have implemented selection options for Web dynpro.
    The value help for the selection fields displays the key of the selected value (standard).
    I would like to know if there is an option to display the text (instead of the key) in the field.
    Key Text
    01    AAAA
    02    BBBB
    03   CCCC
    So if I select say - 01 and 03 in the value help, Can I display AAA, CCCC in the field (or next to the field)
    Thanks,
    Sri
    Edited by: Sri on Sep 29, 2010 8:19 AM

    HI,
    You can dispaly it as dropdown and it shown the text:Use the beloe code refernce;
    DATA lt_valueset TYPE wdy_key_value_table.
      DATA ls_valueset LIKE LINE OF lt_valueset.
      ls_valueset-key = '1234'.
      ls_valueset-value = '1234test'.
      APPEND ls_valueset TO lt_valueset.
      ls_valueset-key = '1235'.
      ls_valueset-value = '1235test'.
      APPEND ls_valueset TO lt_valueset.
      ls_valueset-key = '1264'.
      ls_valueset-value = '1236test'.
      APPEND ls_valueset TO lt_valueset.
      CALL METHOD wd_this->lo_select->add_selection_field
        EXPORTING
          i_id = 'CAND_ID'
      it_result                    = lt_range_table
          i_as_dropdown                = abap_true
          it_value_set                 = lt_valueset
    *      i_read_only                  = ABAP_FALSE
    *      i_dont_care_value            =
    *      i_explanation                =
    *      i_tooltip                    =
    Regards,
    madhu

  • YouTube embedded video shows blank in Safari firefox says file not found

    Dear all,
    I have embedded YouTube and Vimeo videos in a website in adobe dreamweaver 5.5, MacOS 10.7.5. They show blank in Safari, and firefox says (translated from German): "File not found. The files under (embed code) could not be found." My slightly older embeddings (also "i frame") in the same website work fine though.
    I have updated today Safari, Flash Player, and Java; reset both browsers, nothing changed.
    Have spent ours googling this already, no help.
    Thanks for helping.
    Tobias

    Check with Adobe. They may be able to offer some suggestions.
    Dreamweaver Help

  • Key date not work in query on infoset

    hi experts,
    i have a infoset, which includes a time-dependent infoobject eg.0employee and an ods eg. ods1
    i set the ods time-dependent by setting from ods1-field1 to ods2-field2, and link the 0employee to ods1.
    then i create a query on the infoset and set a key date in the query, eg20061231.
    but the query result goes wrong, the key date doesn't work, the result shows below:
    employ1 1000.12.31-2008.01.01   $123 (this record is right,because i want the key date to be 20061232)
    employ1 2008.01.02-9999.12.31   $123 (but this record should not be displayed)
    i haven't set any field in infoset to be key date, just set the "from" and "to".
    pls help and thanks a lot!

    Hi
    Check the link.
    http://help.sap.com/saphelp_nw04/Helpdata/EN/11/723c3b35703079e10000000a114084/content.htm
    Chandu.

  • Display Amounts for Region "not assigned" in Query

    Hi,
    I have created variables for "Region" that assinn all EAST values to EAST and WEST to WEST. I would however like to assign all values that does not have an assigned region to another variable or character. How can I do this in the query?
    Thanks

    Hi,
    Please explain your problem in detail.
    What I get from it: you want to display blank values of key figure with some 'not assigned' text. For this you can use value display property of query to dispaly zeros as soem default text.
    Hope it helps...
    Regards,
    Ashish

  • Hierarchy node text shows short text instead of medium text in WebI report

    Hi,
    We have created a simple Hierarchy suing Tx RSH1.
    US -> North Carolina
              South Carolinakey
             Rest of America
    Please note "North Carolina" is the medium text for the node while the short text which can contain max of 10 chars is "North Caro"
    We have used and activated the hierarchy within the BEx query. Text display with "Medium Text" has been enabled for the InfoObject. The display on the BW report is as expected showing the medium text for all levels and all modes.
    When a universe is built on the query and a WebI report is created based on the universe everything works fine other than than the Hierarchy text for different levels and nodes. Instead of showing the Medium text, the short text is getting display.
    We took out the text object from the Universe in the Universe designer and went ahead with the key and medium text, but that did not help.
    Is this a known bug? Is there a workaround for this issue?
    We are on XI 3.1 SP3.
    Rgds

    Hi,
    I am working on BO XI 3.1 SP2.
    I have displayed the medium text for the hierarchy nodes as:
    In my universe three detail objects(key, medium name and long name) gets generated for each hierarchy node.
    I have copied the definition of L01 Medium name (detail object) in the L01 dimension object. similarly for other hierarchy nodes.
    i.e. L02, L03.. etc.
    Now the master data which have been loaded for the medium name will be displayed.
    Regards,
    Rohit

  • Firefox 11 beta is having issues loading Flash and HTML content, shows plain text instead of images

    I'm not sure what is causing the problem but it has been happening since beta 10 and now its also in beta 11. Randomly when I load any web page the page is displayed in plain text leaving all the HTML or flash content blank. Yes I have the most recent version of flash installed along with Java just in case it was looking for that mess as well. Sometimes the pages load fine, and sometimes they don't, it's like playing lotto with the internet. The only fix I know of is to either keep refreshing the page and "hope" it catches it on the reload, or closing Firefox and running CCleaner. Some times FF will load some of the visual data and leave gaps but usually its just basic text mode. I'm at a loss as to whether the problem is from Firefox or my ISP being a douche, either way its annoying that Firefox is not showing internet pages like it used to.
    Hate to see it happening but it looks like Firefox is on its way to being just another Internet Explorer clone (failure). Should have stayed with your original team, all the new folks you have hired are really mucking up the whole project and its goal of a free and open internet. Not to mention writing bad code and costing you money and more importantly the user base.
    (Update, now it's not doing it go figure, but I'm sure it will do it again at some point, perhaps its not Firefox and something else, I'll keep my eye on it and try to report any findings)

    If you use extensions (Tools > Add-ons > Extension) like <i>Adblock Plus</i> or <i>NoScript</i> or <i>Flash Block</i> that can block content then make sure that such extensions aren't blocking content.
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

Maybe you are looking for

  • Using Calculate tab in a field.  Not letting me choose fields to use.

    I am trying to make one field calculate a few other fields into a sum.  But in the Calculate tab it seems I can pick all of the fields on the sheet or none at all.  It's not letting me pick and choose.  What am I doing wrong?

  • ITunes on MacBook Pro: Option for "kitchen" speakers vanished

    Posted earlier in iTunes forum. Not answered. Suggested I post here. It used to be, when running iTunes, I had an option bottom right for which speakers iTunes would come out of: • on MacBook Pro • in "kitchen" (through Airport) • both Then, "suddenl

  • JavaHelp problems

    Hi I am using JH2.0 with JDK 1.4.1. JavaHelp mostly works, but I am having a few problems that I cannot find answers for in the forum or documentation. 1. On first use of context-sensitive help, the help viewer opens at the default page, not the requ

  • Download previous versions of FireFox

    I currently downloaded a new version of FireFox 3.6.17 however a program I use for work on FireFox does not work with this version and I need to find a downloadable version of 3.6.16 for MAC. Does anyone know where I can find this.

  • Address Labels in iWork

    I've converted from Word to iWork. I can't figure out how to print labels using Pages.  How do I do it?  Thanks