Long text of InfoObject in Query Designer

Hi Experts,
In my InfoObject I have Long Text and Short Text.
I have maintained both.
In my Query Designer I'm only getting the short text and same text is getting displayed when I run the Report. Can anyone tell me how do I view the long text please in Query Designer please.
Thanks

Hi,
Thanks all for your help,
The description issue is resolved but My data which come under that Column is not getting displayed fully.
The length I have defined in the infoobject is 40 by it is only displaying me 25 char information in the report.
Can anyone help me with this please.
Thanks
Edited by: MO AHMED on Mar 17, 2010 3:07 PM

Similar Messages

  • Display long text of characteristic in Query name

    Hi All,
    I have implemented RRI between my sender and receiver query.
    When user will click on WBS Element in my sender query <b>the receiver query name will be the name of that WBS Element.</b>
    After execution,I am able to see the Short text associated with Characteristic WBS ELement but<b> i want to display Long text of WBS Element in Receiver query name</b>.
    I have tried to implement the same logic as suggested by Bhanu in following blog:
    <u>Variable screen in Web report</u>
    Kindly,suggest the appropriate solution for this issue.
    Thanks in advance.

    Hi All,
    I am still facing the same problem.
    Kindly suggest me the appropriate solution for displaying WBS Element's Long Text in Receiver's Query Name.
    Thanks in advance.
    Best Regards,
    Nilima Rodrigues

  • Long text problem in BW query and Key figure name

    Hello
    We're using SAP BO 4.0 (IDT) and SAP BW as a datasource. Maybe someone knows:
    1. How to change the name of keyfigure, which now appears as Formula 1, Formula 2 etc. In BW every single key figure has it's own name Sales, Purchases etc. What I'm missing here?
    2.As you well might know every single char infoobject has it's own Long\Short\medium which now appears as an attribute. When I choose multiple Long definitions then the execution of a BEx query fails with 'Inconsistent answers'. In Universe Designer we can change the objects name, but how to proceed here. Do I need to change something on a Bex query level?
    I'm well familiar with SAP BO, but due to lack of experience in SAP I'' ve hit astumbling block with these 2 things> Any assistance would be more than welcome
    Thanks in advace

    Hi,
    for (1)  - that doesn't sound right...   i think your KF are calculated KF (CKF)  possibly with a formulae variable .. or something, which is supposed to populate the name, based on a user response ? 
    Or maybe you've got non-unique KF descriptions, and this is some system imposed nomenclature?
    for (2)  i'm not so sure, but you may have to change the infoobject text setting, globally, in RSA1.   webi won't like non-unique labels if the keys are different.. How does it look with the default 'key and text' (medium) setting?
    yes you can change the characteristic display properties in Bex query designer, but i have a funny feeling that it doesn't get consumed by webi over that API.  (it's native OLAP stuff for BEx really...)
    Good luck
    H

  • Display long text in an ABAP Query.

    Hi all,
    Could any one please help me in guiding me, to tell how can I display the long text which is got from the function module 'READ_TEXT'  in an ABAP query.
    The issue here is that Iam able to loop at the <itab> table and get the long text for each of the records any, but Iam not able to display it on an infoset..
    Send me the examples if any..
    Thanks & Regards,
    Sanjay Mankar.

    Dear dont try with ABAP Qualry
    use alv or like that
    sample code is attach here
    if you have any claryfication reply me
    *&      Form  F001-BasicData_LText
          text
         -->IN_PAR     text
         -->OUT_PAR    text
    FORM F001-BasicData_LText TABLES in_par  STRUCTURE itcsy out_par STRUCTURE itcsy.
      DATA :
           IT_LTEXT       TYPE STANDARD TABLE OF TLINE,
           WA_LTEXT       TYPE TLINE,
           W_FTEXT(100)   TYPE   C,
           W_FTEXT1(100)  TYPE   C,LW_LEN TYPE I.
      DATA :
           W_ID          LIKE thead-tdid,                  "Text ID
           W_LANGU       LIKE THEAD-TDSPRAS,              "Language
           W_NAME        LIKE thead-tdname,                "Name
           W_OBJECT      LIKE thead-tdobject.              "Texts:
      READ TABLE in_par WITH KEY 'EKPO-MATNR'.
        w_NAME = in_par-value.
      W_ID      =  'GRUN'.
      W_OBJECT  =  'MATERIAL'.
      W_LANGU   =  SY-LANGU.
      CALL FUNCTION 'READ_TEXT'
        EXPORTING
          ID                      = W_ID
          LANGUAGE                = W_LANGU
          NAME                    = W_NAME
          OBJECT                  = W_OBJECT
        TABLES
          lines                   = IT_LTEXT
        EXCEPTIONS
          id                      = 1
          language                = 2
          name                    = 3
          not_found               = 4
          object                  = 5
          reference_check         = 6
          wrong_access_to_archive = 7
          OTHERS                  = 8.
      Loop at IT_LTEXT into WA_LTEXT.
        W_FTEXT1 = WA_LTEXT-TDLINE.
        CONCATENATE W_FTEXT W_FTEXT1 INTO W_FTEXT SEPARATED BY SPACE.
      Endloop.
    LOOP AT out_par WHERE name EQ 'W_FTEXT'.
          out_par-value = W_FTEXT.
          MODIFY out_par.
        ENDLOOP.
    ENDFORM.                    "F001-BasicData_LText
    *&      Form  F001-LTEXT_DEVIDING
          text
         -->P_IT_DVTXT  text
    FORM F001-LTEXT_DEVIDING TABLES in_par  STRUCTURE itcsy out_par STRUCTURE itcsy.
    DATA : W_TEXTLINE(100)    TYPE  C,
           W_DELIMITER        TYPE  C,
           W_OUTPUTLEN        TYPE  I,
           W_FTEXT(100)       TYPE  C,
           OUT_LINE1          TYPE  C,
           OUT_LINE2          TYPE  C,
           OUT_LINE3          TYPE  C,
           W_LINE1(35)        TYPE  C,
           W_LINE2(35)        TYPE  C,
           W_LINE3(35)        TYPE  C.
      READ TABLE in_par WITH KEY 'W_FTEXT'.
          W_FTEXT = IN_PAR-VALUE.
          W_TEXTLINE   = W_FTEXT.
          W_DELIMITER  = ' '.
          W_OUTPUTLEN  = 30.
      CALL FUNCTION 'RKD_WORD_WRAP'
        EXPORTING
          TEXTLINE    = W_TEXTLINE
          DELIMITER   = W_DELIMITER
          OUTPUTLEN   = W_OUTPUTLEN
        IMPORTING
            OUT_LINE1 = W_LINE1
            OUT_LINE2 = W_LINE2
            OUT_LINE3 = W_LINE3.
      LOOP AT out_par.
        if out_par-name eq 'W_LINE1'.
        out_par-value = W_LINE1.
          elseif out_par-name eq 'W_LINE2'.
          out_par-value = W_LINE2.
            elseif out_par-name eq 'W_LINE3'.
            out_par-value = W_LINE3.
        endif.
      MODIFY out_par.
      ENDLOOP.
    ENDFORM.                    " F001-LTEXT_DEVIDING
    rewads if helpful

  • Restricting infoobject in query designer with authorization object

    Hi,
    We have to restrict CUSTOMER infoobject with a authorization object in query designer.
    How to do this task ? Request kindly suggest.

    thr RSSECADMIN tcode. Search with this key word you will get good docs & Wikis in SDN
    bhaskar

  • How to create Text Variables in BEx Query Designer

    How  can i create Text Variables in Bex Q.D.
    I am able to create characteristic variables
    but i can't find option to create text variables.
    What's the requirement to create Text variables in Bex Q.D.
    When i try to create Text variable for 0calDay.. the variable type is characteristic by Default and disabled.
    How can i create text variables related to 0CalDay with which i need to work in Customer Exit.

    Hi,
    You have to create characteristic variable processing by Customer Exit by considering 0CalDay as a Reference Characteristic
    After creation of the above variable, you restrict your KF with the above created variable.
    Now you can create a Text variable for the description of your KF. This way it works...........
    Regards,
    Suman

  • BI Bex Query Designer

    Hi SDN Guru's,
    I am working SAP BI  Reporting Area, My Customer asking we want to BI Report with Value and Description how to make this.
    We have only Product Hierachy with value Ex:- 000000211210042803, My Client expecting with description Manoj & Co like that.
    How to do in BI Bex Query Designer, can you please explain step-by-step.
    Thanks in Advance Guru's.
    Regards,.
    Kumar.

    Hi,
    Pre-Requisiite:  Both Key and Text should be maintained in BW system for this Infoobject
    In Query designer, Click on Characterstic properties-> Select Key and Text-> Save-> Run the report
    Regards,
    Suman

  • Variable not visible in query designer

    Hello,
    I have 4 variables created for an InfoObject. But for one of my query written on Infoset, under that InfoObject in query designer it only shows me 2 variables.
    Any ideas what is causing the other 2 variables not to be visible?
    Thanks in advance,
    vamsi.

    which type of variables have you created?
    Regards,
    Chandra.

  • Universe Designer not pulling Long Text from BEx Query / Info Object

    In the BEx query on which my universe is built, all the characteristics display with Long Text. In each of the info objects (RSD1), the long text option is selected in the BEx properties. However, when the Universe builds, it pulls the short text for the names of the classes, dimensions, and details that get created. I don't want to have to manually change every line to the long text, so I would love to hear if there's some setting in the designer that is causing this to happen.
    Anyone know how to fix this?
    Thank you!
    AZ

    Another interesting data point to add to this:
    The long description is transfered for Key Figures, but not for Characteristics.

  • Displaying long text fron the query designer

    Hi,
    I have a long description for my infoobj I want to display the long desc for the report sohow can this be done from the query designer
    Regards
    Priya

    Hi Prahib,
    Thanks for ur reply
    the problem is I cant see long tetx option when i rc on the infoobj ,but when i ruun my query and say display as i CAN SEE dispaly as long decriptiopn
    why I am unable to see it in query designer

  • How to merge text attribute in query designer

    Hi,
    please does anybody know, how to merge, let say, two text attributes of one characteristic into one long text? I know, that it is possible with method, which is finally called in the Web Application Designer. But I need to proceed this on the query level. It means, when I display result of query in query designer, I need to have two attributes merged into one long text. Is there some exit, method or something else, where can I do it?
    Thank you very much
    Best Regards
    J.

    Hello,
    I don't think so we have string concatenation at query level.
    You have to create / use existing info object and use string functions to achieve this.
    Might be you could wait for some time to get more replies.
    Regards,
    Venkat

  • Query Designer&WAD: Variable search help - Display Key/Text button

    Good day.
    Please, can you write me some solution of my problem.
    I have the character with hierarchy.
    In tab "Business Explorer" of character set display as "Text".
    When i run my query on SAP Portal and enter to search help of character, it is displays text of my ZCHARACTER(not key and text). But name of levels(0HIER_BODE) display key and text... (NODENAME and TEXT).
    When i run query in BEx Analyzer, in search help all correct. My ZCHARACTER and 0HIER_NODE displays only text.
    When i press tech button "Display Key/Text", a see marked "Text". I cannot find the same button when run search help in Query Designer, WAD(or Portal).
    How can i display only texts of 0HIER_NODE? But no [Key] Text.
    Thank you for answer.
    Regards
    Update. Can be usefull:
    View table RSDVDPA with key DPNAM='0HIER_NODE' consist field CHAPRSNT with value = '0' (Key and Text).
    When i change value of table
    UPDATE RSDDPA SET CHAPRSNT = '4'
      WHERE DPANM   EQ '0HIER_NODE'
        AND objvers EQ 'A'.
    All works correct!
    Change this value directly not correct. I think, that it is change of value of parent character. But when?

    I have created own 0HIER_NODE character - ZNODENAME.
    Only root node infoobject is 0HIER_NODE. All another - Z.
    Thanks! ^)

  • Text value is not getting displayed in Query designer !!

    Dear experts..,
    i have created a new query in query designer using my info provider and then selected one field in default value and then trying to restrict that particular field while selecting the restriction in query designer am getting the exact text value but after generating the report instead of text value , key value is getting displayed....so how can i get text instead of key value??
    please help me friends....
    i have posted in OSS mesage also...i got a reply like...even i didnt understand his reply too...what he is trying to say?
    whether can i get text display or not???
    can any one help me in this regard???
    SAP Reply----
    Hello kumar,
    After another analysis I have to inform you about general concept of
    "compounded characteristics".
    A compounded characteristic bounds two characteristics. The technical
    name is generated by both technical names of the two characteristics
    combined by two underlines "__".
    An individual text is only available for one single combination of both
    characteristics.
    Example:
    =======
    Compounded characteristic "Famous family name" is a combination of
    characteristic "COUNTRY" & "ETHNIC". Technical name: COUNTRY__ETHNIC
    Values for Country: USA, Australia
    Values for Ethnic: Asian, Latino
    Possible value combinations with individual text:
    USA & Asian; text: "Ling"
    USA & Latino; text: "Sanchez"
    Australia & Asian; text: "Chu"
    Australia & Latino; text: "Garcia"
    (Keep in mind the individual text only valid for the specific
    combination.)
    In analogy to the issue that you reported, you want to restrict this
    compounded characteristic. In the window where you select the restrictedvalue (called Selector) you'll see on the left hand side all available
    combinations of the characters with an individual text.
    You select family name "Chu" and drag'n'drop it to the right side.
    Actually you can only restrict the right compounded characteristic. In
    our example you would restrict on characteristic "ETHNIC" with value
    "Asian". (When you switch on technical names this comes more clear). Thetext "Chu" is displayed in the context of Selector because you selected
    value combination Australia & Asian. But in the end it's just a
    placeholder(!) for any combination of characteristic "ETHNIC" and value
    #Asian#; in our example it could be USA & Asian "Ling" or Australia &
    Asian "Chu").
    By leaving the Selector the individual text is gone because now the
    context is lost between the two characteristics. You have just a
    restriction on characteristic "ETHNIC" with value "Asian". An individualtext can't be displayed because the compounded characteristic is not
    specified for this restriction.
    You're right, it is confusing when "loosing" the text of a restriction.
    But accoring to the concepts of the compounded characteristics it
    is a correct behavior.

    Hi anandkumar,
    I belive this issue can be resolved by changing the  Query proprties for the perticular field.
    Kindly check the Field proerties in query designer and ensure that Text is enabled ather than Key.
    __Field property check up:__Go to query designer->click onn the field-> Right hand side in properties click on display tab-> select Text in drop down menu of Display as tab.
    FURTHER CHECK UP: check the master data avaiulability for the perticular info object, if masterdata is not available, do the text data for txt data availability in report level.
    Hope this helps you!!
    Best Regards,
    Maruthi

  • BW 3.5, BEx Query designer issue with text of the characteristics

    Hi All,
    We are currently using BEx 3.5 Query Designer to design the queries. We have one of the ODS on which we are querying for.
    We have 3 different types of Customer in this ODS. 0Customer, 0BBP_CUSTOMER and 0GN_CUSTOMER. The problem is when we open this ODS in Query designer we see their text name on the left hand side column where it shows data fields as the same text name Customer.
    Now the our Power users have raised the issue that it is very confusing even when there are 3 different technical names for these characteristics.
    2 Questions I have.
    1) Why is something like this happening? is it some issue with the Patch or something. We will be migrating to new BI soon but in the mean time if I could resolve it that will be the best. Or does it even get resolved with new BI???
    2) what is the way in which we can resolve it?
    Thanks in advance and points will be given generously.

    HI BI Consul!
    Things like this happen, when it is called customer it could be different customers, 0customer is the standard R/3 customer and 0BBP_customer is objects from CRM and most likely 0GN_Customer might be customer from different system.
    Sure, power users should be told which customer is customer and you could also change the discription of the object, to match the definition on the other system. You could also just create z object and replace the existing confusing object with something meaningful to users.
    thanks.
    Wond

  • How to display long text in SAP Query ALV layout? It only show 129 char now

    I have a SAP Query which show a remark field(Max length more than 500 char), but it only show max length 129 char now. In fact, the lenght of remark field text is more than 300, and i had debug the source code, the field text value do is correct, its length do is 376.
    Do anybody can help me solve the issue, let the query ALV layout can show the long text field value?
    thanks very much in addvance.

    Hi,
    ALV can show only a restrict value length around 128 characters, many experts said that we can not extend. many suggestions is split text into some column.
    Regards,

Maybe you are looking for

  • Doubts in BAPI_ACC_DOCUMENT_POST

    Hai, we haven't any user exit for the Bapi, BAPI_ACC_DOCUMENT_POST. If i want to write a user exit means what can i do? I have written the functions in the function module do i need to configure any thing? plz suggest me. thanks, elamran

  • How to join the Rule ID to the Error Excel data table.

    I have a requirement to get the invalid active rule ID from the rule table for the interface errors Interface has the logic to log an error, if more than 1 rule found for same combination of product, location and carrier.  The error log is monitored

  • Configure Workflow Manager 1.0 in Project Server 2013 with FBA

    Hi, Please suggest the ways to configure Workflow manger in Project server 2013 where PWA using FBA we have tried for below situation, but no luck!! The workflow manager configured using windows login account, we are associating a FBA site with workf

  • My iphone 4 is disabled and i forgot the apple id that i used to setup the iphone with

    I have an iphone 4 from verizon. Ive had for little over a year now. i put a password on it and i forgot it and at i first i didnt want to reset my iphone because nothing was backed up but then i decided if i had to reset my iphone then i guess that

  • Broadband Infinity Connection Problem

    Hi, I've recently been experiencing problems with the connection for broadband. The green light appears only to turn orange and then the red broadband sign appears. I have checked all the wires are correctly in place and i have also followed the trou