Lov: How to show Medium Text

Hello,
In a webi report I am using variables which are created in the Bex query, using a variable which is creted on BEX  displays both text and key in the prompt lovs Box/Window.
I am having issues with a variable which is using a Info-object which has short description and Medium description, Looks like BO by default shows short text and key in the promptlovs Box/Window.
Is there any way I can display medium text and key in the prompt lov's?
Thanks
Ram

Hi Rod,
Yep, but how can I use just the code to match with where clause?
I mean in this case I need to create a extra column with code + description to match combo code + description.
Is there any way to work around this e.g: code + description on the combo box and just use the code from the combo to perform the search.....substr( combo box) ?
Cheers,
Alex

Similar Messages

  • How to show long text in TextView control in formatted form?

    Hi,
    I have requirement to show long text from backend text edit control to WD application. I am using READ_TEXT Fm to read the long text and passing it to text view UI element.
    The text is shown in simply one long line but I want it to show in the same format as stored in backend textedit control.
    If I take textedit UI control then it shows the text in formatted form.
    Could you please let me know how to achieve these for TextView control? My requirement is that I have to use only TextView control.
    Thanks,
    Chandra

    Hi,
    The Problem solved to some extend but still the exact formatting is not happening though i am using cl_abap_char_utilities=>newline.
    for eg. if the long text is as below.
    "To display the external component, you can now embed an interface view of any window of this component in a window of your current embedding a view of oneu2019s own component. By setting up navigation from one outbound plug of a view of your inbound plug of the inter external component, you enable the external component to be displayed. New line ."
    and if in backend the Last line " New line ." is on next line, on WD it is not displayed on next line.
    Thanks,
    Chandra

  • How to display medium text for 0FISCPER in Filter area.

    Hi,
    I am having a problem with display of filter values in bex query. In filter section, there is 0FISCPER used. after running query I can see only "JAN" value.
    But user wants to see "January 2007" in place of JAN.
    though 0FISCPER info object has text table T009C. it has two colomns one for short text and one for medium text. and data in table is stored as below -
    Year     Period     Sh.text      Med. text
    2007      001        JAN          January 2007.
    2007      002        FEB          february 2007
    In query, 0FISCPER is taking only Short text for an display settings. While it should take Medium text.
    How can I solve this problem ??
    [email protected]

    Hi,
        In your Infoobject, choose BEx Explorer tab, Check what selected for BEx Description, there choose Medium text instead of Short text.
       Hope this sill be helpfull
    rgrds,
    V.sen

  • How to show the text in a textBlock in my user control?

    in my UC i have a textBlock . the text that i put through the xaml or the text that i put through the C# doesn't show:
    <local1:Cell x:Class="UserControls.HintCell"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:local1="clr-namespace:UserControls"
    mc:Ignorable="d" d:DesignHeight="130" d:DesignWidth="130" Loaded="UserControl_Loaded" >
    <Grid x:Name="hintGrid" MouseLeave="hintGrid_MouseLeave">
    <Grid x:Name="topTriangle" x:FieldModifier="public">
    <Polygon Name="triangle_top" Points="0,0 130,0, 130,130" Stroke="Black" Fill="Red" MouseEnter="triangle_MouseEnter" MouseLeave="triangle_MouseLeave" />
    <TextBlock Name="text_top" Margin="82,20,20,76" FontSize="25" Text="55" Foreground="Black" x:FieldModifier="public"/>
    </Grid>
    <Grid x:Name="bottomTriangle" x:FieldModifier="public">
    <Polygon Name="triangle_bottom" Points="0,0 130,130, 0,130" Stroke="Black" Fill="Red" MouseEnter="triangle_MouseEnter" MouseLeave="triangle_MouseLeave"/>
    <TextBlock Name="text_bottom" Margin="15,80,77,16" FontSize="25" Text="88" x:FieldModifier="public" />
    </Grid>
    </Grid>
    </local1:Cell>
    and the designer:
    but, when debugging the text doesn't show:
    i was told maybe to define the user control or the  text as a dependency property, i don't know how to do it and maybe someone has a better solution?
    thanks.

    thanks. but i didn't really understand, maybe you can give an example with my parameters?
    The text dependency property is called LabelFor.
    It's this bit.
    public string LabelFor
    get { return (string)GetValue(LabelForProperty); }
    set { SetValue(LabelForProperty, value); }
    public static readonly DependencyProperty LabelForProperty = DependencyProperty.RegisterAttached(
    "LabelFor",
    typeof(string),
    typeof(EditRow));
    You would substitute the name of your usercontrol for EditRow when you cut and paste that into it.
    There is a style which defines what EditRow looks like by giving it a template.
    <Style TargetType="{x:Type local:EditRow}">
    <Setter Property="Template">
    <Setter.Value>
    <ControlTemplate TargetType="{x:Type local:EditRow}">
    <Grid>
    <Grid.ColumnDefinitions>
    <ColumnDefinition Width="{Binding RelativeSource={
    RelativeSource FindAncestor,
    AncestorType=local:EditRow},
    Path=LabelWidth, TargetNullValue=2*}"/>
    <ColumnDefinition Width="{Binding RelativeSource={
    RelativeSource FindAncestor,
    AncestorType=local:EditRow},
    Path=PropertyWidth, TargetNullValue=3*}"/>
    </Grid.ColumnDefinitions>
    <TextBlock Text="{Binding RelativeSource={
    RelativeSource FindAncestor,
    AncestorType=local:EditRow},
    Path=LabelFor}"
    HorizontalAlignment="Right"
    Margin="0,4,0,0"/>
    <Border Margin="6,2,6,2" Padding="0,2,0,2" Grid.Column="1" >
    <ContentPresenter HorizontalAlignment="Stretch"/>
    </Border>
    </Grid>
    </ControlTemplate>
    </Setter.Value>
    </Setter>
    </Style>
    That uses binding to give the textblock text property the value of LabelFor.
    You could instead put your markup directly in your usercontrol and bind it like that.
    This bit would then pretty much cut and paste in
    <TextBlock Text="{Binding RelativeSource={
    RelativeSource FindAncestor,
    AncestorType=local:EditRow},
    Path=LabelFor}"
    You would need two of course if you have two textblocks.
    ps
    People have suggested dependency property to you because this is how properties on wpf controls work.  
    If you instead chose to use properties then you lose the ability to set value by style, animation, binding etc Your usercontrol will not behave like a wpf control.  This might not really concern you if you're just working on your own on an app.
    It would if you were working in a team though.
    Personally, I would reject code which exposed regular properties from a usercontrol at walk through.
    Hope that helps.
    Recent Technet articles:
    Property List Editing;  
    Dynamic XAML

  • How to show a text field based on what is entered in a date field

    Hi there LiveCycle experts!
    I have a form with a text field that I want to show only if the value of the previous date field once entered is less than 1 month from today?
    Any help appreciated, been researching in vain for hours!!!
    Sarah

    Wow Steve - thanks so much this is so exciting I just love learning these new scripts.
    I assume I need to make the text field 'Hidden' - ?
    I seem to be struggling a little to get it working - are you able to have a quick squizz at my document - it is in the very early stages!
    Regards,
    Sarah Milne
    FACEBOOK : Join our  'BritBound Social Events' Group on Facebook to receive details of forthcoming social events...click here to join. 
    For a sociable & stress free arrival experience!
    BritBound London Office: Britain & London Visitor Centre, 1 Regent Street, London, SW1Y 4XT.
    Tel UK: | 0845 450 3536 | From OS + 44 (0) 20 7808 3815
    Tel OZ: | Sydney: (02) 8003 7651  | Melbourne: (03) 9005 8304 | Brisbane: (07) 3102 9766
    Tel NZ: | Auckland: (09) 889 3175 | Wellington: (04) 889 2015   | Christchurch: (03) 669 2032
    Website:        www.britbound.co.uk
    E-mail:           [email protected]
    Click Here to find out more about: | UK VISAS  | MOBILE PHONE CONTRACTS FOR NEW ARRIVALS TO THE UK  |  UK ACCOMMODATION  |  AIRPORT TRANSFERS  |  UMBRELLA COMPANIES   |  DISCOUNTED INTERNATIONAL BANK TRANSFERS  |  SOCIAL EVENTS   |  TAX REFUNDS  |  NATIONAL INSURANCE (NI) NUMBERS
    Disclaimer: The information contained in or attached to this message is intended only for the people it is addressed to. If you are not the intended recipient, any use, disclosure or copying of this information is unauthorised and prohibited. This information may be confidential or subject to legal privilege. BritBound cannot accept liability for any virus damage caused by this message. This documentation is for your general information, and is not to be construed as advice. Clients should not act on the information contained herein alone, and should seek independent advice if necessary.

  • LOV how to show code and description

    Hi,
    How can I show code + description in a LOV using disco 4? It seems that I can't do that. I can just pick one value, which should be a code to link to a drill to detail, but how about description?
    e.g
    ID - Countries
    1 USA
    2 France
    3 Australia
    How can I show USA but use id to link to another table?
    Regards,

    Hi Rod,
    Yep, but how can I use just the code to match with where clause?
    I mean in this case I need to create a extra column with code + description to match combo code + description.
    Is there any way to work around this e.g: code + description on the combo box and just use the code from the combo to perform the search.....substr( combo box) ?
    Cheers,
    Alex

  • How to show the text, instead of number

    Hi Buddies;
    I'm creating a form, using oracle forms 10g. In this form I'm showing the equipment information. We sell services, and for some services, we provide the equipment, but we have a lot of a equipment, so we need to keep an inventory of these equipment. So for each equipment we have several status, example; Available, Returned ok, Assigned, Stolen, Returned by Damage .
    These status resides in other table, but in the where I'm getting the info to show thru the screen, just have a code.
    What I want, is to change this code, for the description of that code, example, 01 = Available. So, if the record for status has code 01, instead of 01, I want to show the word Avalaible.     
    Can somebody explain me, how to do this.
    Thanks
    ANG

    oooppss i missed one this there is you code mistake also...
    Begin
         Select status_name into :EQP.status_code -- Here use description field name not the same code field
         from eqp_status
         where status_code = :EQP.status_code ;
    End;Also increase the size of datatype of description item so it can hold description.
    I like to use LIST ITEM in these type of cases ;) Its easy and not required any POST-QUERY and POST-CHANGE code. As craig said you will have to keep on POST-QUERY and any performance issue etc.
    So, i would prefer to use this method...
    1. For that code field set the item type property to LIST ITEM.
    2. Create one record group of your this query like...
    Select status_code, status_name
    from eqp_status3. Populate that record group into that list item. like
    Trigger = WHEN-NEW-FORM-INSTANCE form-level
    DECLARE
      vGrp NUMBER;
    BEGIN
      vGrp:=POPULATE_GROUP('GROUP_NAME');
      POPULATE_LIST('LIST_ITEM_NAME','GROUP_NAME');
    END;Now at the time of query it will automatically show you saved status.
    -Ammad
    Edited by: Ammad Ahmed on Apr 29, 2010 10:02 PM

  • How to show dynamic text in WAD-Template

    Dear BW-Community,
    We are von BW 3.5.
    can someone guide me, how to display a dynamic text (depends on the comparision between two entered variables) in a WAD-Template?
    example: if var1 = var2 then the text should be text1 otherwise text text2.
    Hope this is quite simple as it sounds.
    regards
    Jürgen

    Hi,
    I embedded my CSS code in a dynamic page. I use pl/sql to test if the user is public and print my urls for the menu accordingly. Something like:
    <oracle>
    Begin
    if portal.wwctx_api.get_user='PUBLIC' then
    htp.p('MenuPage Title');
    end if;
    End;
    </oracle>

  • How to show expanded text in popinTextBar in Table, for the first time

    hi everyone.
    For first time, not clicking popin button,  I want to display expaned popInText in textBar in table.
    Is it possible?
    Regards bk Kim.

    Hi kin
    The code you must write in the wdModify(wdthis,edcontext,view,firstTime) method
    This method takes 4 parameters.The last boolean parameter firstTime indicates wether your screen is rendering for the firstTime or not.So in this method
    write
    if(firstTime)
       // write the code you want to do so that it will execute only for the firstTime in   the entire life cycle of a view controller.It will execute with out clicking a button
    regards
    kalyan

  • Need to show the text as 2009 - 10

    HI,
    I am enter the fiscal year value as 2009 at the run time. how to show the text value as 2009 - 10 on the same report.
    Is it possible without creating "Customer Exit" ?
    Please help me ..
    Thanks and Regards
    Rajesh

    HI ,
    I created 2 text variable for 2009 - 2010. 2009 (ZYEAR1- Replacement path) is populating from the year variable (ZFY) which I resticted. For pupulating 2010 (ZYEAR2 - Customer exit) I wrote a customer exit. I checked in the customer exit it is showing 2010, but it is not populating in the variable screen...
      WHEN 'ZYEAR2'.
      DATA: LOC_VAR_RANGE LIKE RRRANGEEXIT.
      DATA: ZNUM(4) TYPE N.
         IF I_STEP = 2.
           LOOP AT I_T_VAR_RANGE INTO LOC_VAR_RANGE WHERE VNAM = 'ZFY'.
              CLEAR L_S_RANGE.
              L_S_RANGE-LOW = LOC_VAR_RANGE-LOW(4).
              ZNUM = L_S_RANGE-LOW.
              ZNUM = ZNUM + 1.
              L_S_RANGE-HIGH = ZNUM.
              L_S_RANGE-SIGN = 'I'.
              L_S_RANGE-OPT = 'BT'.
              APPEND L_S_RANGE TO E_T_RANGE.
              EXIT.
            ENDLOOP.
         ENDIF.
    I placed in the text as &ZYEAR1& - &ZYEAR2&.
    Plz suggest me..
    Thanks and Regards
    Rajesh

  • How can I show only text edits and not text formatting when using print comments summary?

    Acrobat 9.3.0 for Mac.
    Here is the scenario: I used the Compare command to see the changes between 2 PDFs. The resulting file some edits are inserts and some are deletions. I want to print a comments summary only showing the text edits. In the Compare Option pane, I select Text and deselect Images, Annotations, Formatting, Headers/Footers, and Backgrounds. Now on the screen I see inserts are highlighted in blue and deletions are marked with sort of a caret and vertical bar symbol. So all looks good at this point. However, when I show the Comments List, I see addtional comments that indicate "Replace - The following text attributes were changed: fill color." Those comments do not appear in the page view unless I check the Formatting check box to show them. With Formatting unchecked, I print a comments summary and all of the "Replace - Fill Color" comments" appear on the resulting comments summary.
    I only want to show text edits, not text formatting changes. So questions are:
    1. Why, when the Formatting checkbox is unchecked, do the text formatting comments still appear in the comments list when they do not appear on the page display.
    2. How can I print only the text content edits and not show the text formatting changes when using Print Comments Summary.

    Hi,
    You can set ExecuteWithParams as default activity in the task flow then method activity to return total no of rows passing to Router activity if your method has value 0 then call Create insert operation else do directly to page.
    Following idea could be your task flow
    Execute With param (default) > SetCurrentRowWithKey > GetTotalNoOfRows (VOImpl Method)
    |
    v
    Router
    1. If pageFlowScope outcome is 0 then call CreateInsert > MyPage
    2. if pageFlowScope outcome > 0 then MyPage
    hope it helps,
    Zeeshan

  • How To Show Blinking Cursor In Text Input Control

    Hi,
    How to show blinking cursor in a text input control?
    I am using this for login page
    Thanks.

    Hi!
    you can try this!
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" horizontalAlign="center">
    <mx:VBox horizontalAlign="center" paddingTop="100">
    <mx:HBox horizontalAlign="center">
    <mx:TextInput id = "textinput1" />
    <mx:Spacer width="10"/>
    <mx:TextInput id = "textinput2" />
    </mx:HBox>
    <mx:Spacer height="50"/>
    <mx:HBox horizontalAlign="center">
    <mx:Button label="setfocus1" click="setTextInputFocus1(event)"/>
    <mx:Spacer width="5"/>
    <mx:Button label="setfocus2" click="setTextInputFocus2(event)"/>
    </mx:HBox>
    </mx:VBox>
    <mx:Script>
    <![CDATA[
    private function setTextInputFocus1(evt:Event):void{
    textinput1.setFocus();
    textinput1.setSelection(textinput1.text.length,textinput1.text.length);
    private function setTextInputFocus2(evt:Event):void{
    textinput2.setFocus();
    textinput2.setSelection(textinput2.text.length,textinput2.text.length);
    ]]>
    </mx:Script>
    </mx:Application>

  • How to show only date in BO webi 3.1 text box

    how to show only date in BO webi 3.1 text box for e.g:-
    01/01/2005  (no time only date)

    hi,
    just check by which format your date is coming
    just create a one variable and check =UserResponse("Transaction Date From (mm/dd/yy)")
    if your output is in format of("mm/dd/yyyy hh:mm:ss a")
    then some format we have to write in todate syntax
    then your final formula for date would be
    =FormatDate(ToDate(UserResponse("Transaction Date From (mm/dd/yy)");"mm/dd/yyyy hh:mm:ss A");"dd/mm/yyyy")

  • How to show value of COUNT_QUERY in a text Item?

    please tell me how to show value of COUNT_QUERY in a text Item?

    If you look a bit further down the thread Rosario posted, you might find the method DanielLiang posted to be easier to implement for you.
    you can use calculation:
    example :
    Database Data Block: block1 ( Query All Records : Yes )
    not Database Data Block : block2 (Single Record : Yes)
    block2 has a text item (number) ,it calculation property :
    calculation mode : summary
    summary function : count
    summarized block : block1
    summarized item : item1(block1's item)

  • When i go to new sms typing their is always show a text, how can solve this problem?

    when i go to new sms typing their is always show a text, how can solve this problem?

    Delete them and then download them from the desired Apple ID. This may require repurchasing paid applications.
    (95675)

Maybe you are looking for

  • Profit center line item report

    Hello All, A sales order is created with reference to a service order, now when I see Profit center line items, the function area available in Service order is differ from the function area displaying with sales document number in profit center line

  • 10.2.8 client login issues with 10.3.9 server

    Hi we have just updated our computer lab to 10.2.8 client computers and a 10.3.9 server but I am having issues with the client computer loging into the server I am using LDAPv3 and when I try to have a user login to the server from the client at the

  • Running Crystal Reports

    How do I restrict users to being able to run Crystal Reports via "schedule" only? (version X1)

  • Bank of America Flat File in SAP

    Hi, One of our clients wants to use Bank of America Flat File Format for Electronic bank Statement. Is there any standard program in SAP for the same or I need to do a Z development for the same? Please assist on this.

  • Export responses as csv crashes Acrobat

    I'm testing a new form and when I try to export the response as a "CSV" file, Acrobat Pro crashes (9.5.2).  Exporting as a "xml" file works fine.  Thoughts?  Is there a limit on the number of fields or problems with tables?