I want to set text label and set filter value as header  in query

i want to set any text label or i want to design query in such manner that whatever the value is selected by client in selection screen  is become heading in query . like if i select posting date then that range should be displayed in heading portion of the query.
Edited by: Viral  Shah on Jan 23, 2008 8:30 AM

Goto teh Query Description and select the Text variable Icon (yellow coloured). Create a Text variable with processing type as Replacement path and give the Characteristic as the posting date.
If you are having range then you need to create two Text variables one for FROM and other for TO. Use both the text variables in teh query description..

Similar Messages

  • BI Application Frame - set filter values

    Hi,
    I have a BI application frame in my WebDynpro ABAP component and I want to set filter values. The variables are already defined in the BEx query so I only want to pass the values of the variables.
    Does anybody have an idea how to do this?
    Regards,
    Steffen

    Any help...

  • I want to set the value to the radiobutton dynamically.How it possible

    Hi all,
    I want to set the value to the radio button dynamically.but its giving undefined.
    below is the code...
    <table>
    while(rSet.next())
    String sim=rSet.getString(1);
    System.out.println("the sim value is:"+sim);
    %>
    <tr class="forsmalllabel">
    <td><input type="radio" name="acsRadio"
    value="<%=rSet.getString(1).toString().trim() %>" onClick="validate(this.form)" > </td>
    </tr>
    <% } %>
    </table>
    sim variable giving the correct value ...but here ..
    whenever I am clicking on the button..it giving undefied message.
    my script is below..
    <script language="javascript">
    function validate(value)
    alert("the value is:"+document.ASCCodeform.acsRadio.value);
    return true;
    </script>
    any one help me on this..
    urgent.
    Thank you,
    D.Nagireddy.

    swish is correct, it can be an array of radio button or a single button. If you have created more than one radio button your will have to use
    document.ASCCodeform.acsRadio[x].valuebut if it is only one you will make it:
    document.ASCCodeform.acsRadio.value

  • I want to make address labels and print them out. Does anybody know of a word processing program for Mac that would do this?

    I want to make address labels and print them out. Does anybody know of a word processing program for Mac to accomplish this?

    Have you looked at the previous discussions listed on the right side of this page under the heading "More Like This"?

  • Keep Filter Value and Remove Filter Value

    Hi BI/BW Experts
    Can anyone explain me the concept of Keep Filter Value and Remove Filter Value in Business Explorer Analyzer and the Web Analyzer with a real time examples?
    Thanks
    BI Curious

    Hi,
    Check this links:
    http://help.sap.com/saphelp_nw04s/helpdata/en/43/28d5be53706021e10000000a422035/frameset.htm
    http://help.sap.com/saphelp_nw04s/helpdata/en/45/d45cdc487f6f75e10000000a1553f6/frameset.htm
    http://help.sap.com/saphelp_nw04s/helpdata/en/43/0b532390e96e96e10000000a11466f/frameset.htm
    Hope this helps..........
    Rgs,
    Ravikanth.

  • Want to set messageStyledText value from LOV (In a table)

    Hi,
    I want to set values in non editable fields. These values are being stored in database table (DML operations can be performed on the table).
    The values for these fields is coming from a LOV and setting properly in the fields.
    But on next click(i.e. by clicking any LOV or any button on the page) the values are disappearing from the page. Instead of using non editable fields, if editable fields are used (messageTextInput) then the values is staying on next click.
    I have tried with messageStyledText, messageTextInput by making the fields readonly & disabled but in all the cases the result is same.
    Thanks,
    Arindam.

    Hi Bhowmick,
    I had a similar problem, solve it with the following workaround:
    - set the field read only property to true.
    - add a controller to region page that contains the field and modify processFormRequest as follows:
    public void processFormRequest(OAPageContext pageContext, OAWebBean webBean)
    super.processFormRequest(pageContext, webBean);
    String itemValue= pageContext.getParameter("itemID");
    if(itemValue!= null && !itemValue.equals(""))
    pageContext.putTransactionTransientValue("dummyParameter", itemValue);
    OAMessageTextInputBean mti = (OAMessageTextInputBean)webBean.findChildRecursive("itemID");
    mti.setValue(pageContext,pageContext.getTransactionTransientValue("dummyParameter"));
    Regards,
    Carlos C.

  • Change the Data Elements Text (Label and Description)

    Hi,
    I need to change the data elements label and short description in Development and transpot it into quality and Production system.
    I could change the label and short description using the Menu Goto --> Translation. But the system does not prompt for the transport request. Can you please any one help me how to attach a transport request to the changes (Translations) done on the Data Elements? It would be a great help!.
    Thanks andn Regards,
    Kannan

    I'm not getting a transport request either.  Any I know it is not a local object and not already on a transport.  To attach it to a transport.   Now on the first screen of SE10, there is  a "tool" icon, click it.  In the next screen,  put your cursor on the "Include Objects in a Transport Request and click execute.  On this screen, select the radiobutton for "Selected Objects".  Now in the row for data element, check the check box on the left, and enter the name of the data element on the right.  click execute.  In the next screen, put your cursor on the data element  click save in request.  Here you can create a request.
    Regards,
    Rich Heilman

  • Can we hide the real value of input text box and show other value in ADF?

    Hi All,
    I have a table in which i have one the column as "Quantity" and text box as "quantity" :-
    <af:column sortProperty="quantity" filterable="true"
    sortable="true" headerText="Quantity" id="c3"
    width="60"
    rendered="#{row.bindings.booleanFlag.inputValue != 'E'}"
    filterFeatures="caseInsensitive">
    <div align="center">
    *<af:inputText value="#{row.bindings.quantity.inputValue}"*
    label="#{bindings.queryProductResponseType.hints.quantity.label}"
    required="#{bindings.queryProductResponseType.hints.quantity.mandatory}"
    columns="#{bindings.queryProductResponseType.hints.quantity.displayWidth}"
    maximumLength="#{bindings.queryProductResponseType.hints.quantity.precision}"
    shortDesc="#{bindings.queryProductResponseType.hints.quantity.tooltip}"
    id="it5" partialTriggers="it19"
    readOnly="#{row.activeYN == 'N'}">
    <f:validator binding="#{row.bindings.quantity.validator}"/>
    <af:validateRegExp pattern="^[1-9]+[0-9]*$"
    messageDetailNoMatch="Quantity must be in whole number format."/>
    </af:inputText>
    </div>
    </af:column>
    Now when the user will enter say 400 in input text box "quantity" , the value should be divided in the same row to other column text box say "conversion" which holds the value as 40 , so if the division doesn't give any remainder(means remainder =0 ) means real value(400/40) = 10 then it should set the value of input text box "quantity" as 10 but the user should be able to see 400 which he/she entered before, as we want to send the 10 as request but we have to show 400 to the user and if remainder goes greater than 1 than it should show an error.
    I have to implement this in value change listener of the text box as i need to calculate the real value each time for a row.
    How should i implement this ?
    Thanks .
    Thanks.

    Thanks timo,
    But can you give me full details how should i implement this as i am newbie to ADF. I have found the data control in Data controls tab in left hand side and right click on it -> edit definition -> but it does not give me the option to add attribute , it just give me the option to edit the existing attribute. Can you explain me how to add the transient attribute and how to implement it ? Any sample code snippet ?
    Thanks.
    Edited by: user13644804 on May 15, 2011 10:09 AM
    Edited by: user13644804 on May 15, 2011 10:09 AM

  • Set filter value for a web template with java

    hi experts,
    i need to set a variable dynamicaly  depending on the Logon Name. Ok first step i did, i made a small script for the Username:
    _var url = this.location.href;
    _var x = url.substring(url.length-6, url.length);
    _var lifnr = ("0000" + x);
    _alert (LIFNR);
    ok if the username i.e B200221 my variable LIFNR gets a valid value  in this case 0000200221. but how can i use this variable in the bi commands ?
    here my xhtml coding from my webtemplate, where i want to use my variable LIFNR as template parameter:
    _var url = this.location.href;
    _var x = url.substring(url.length-6, url.length);
    _var lifnr = ("0000" + x);
    _alert (LIFNR);
        QUERY_VIEW_DATA_PROVIDER name="DP_1"
                    INITIAL_STATE type="CHOICE" value="QUERY"
                    QUERY value="VSAG_MM_VMI_KONS_US" text="VSAG_MM_VMI_KONS_US" /
                    INITIAL_STATE
                QUERY_VIEW_DATA_PROVIDER
                TEMPLATE_PARAMETERS name="TEMPLATE_PARAMETERS"
                    WEB_TEMPLATE_ACTIONS type="COMPOSITE"
                        ACTION_BEFORE_FIRST_RENDERING type="COMPOSITE" /
                        ACTION_BEFORE_RENDERING type="COMPOSITE"
                            INSTRUCTION
                                SET_SELECTION_STATE_SIMPLE
                                    TARGET_DATA_PROVIDER_REF_LIST type="ORDEREDLIST"
                                        TARGET_DATA_PROVIDER_REF index="1" value="DP_1" /
                                    TARGET_DATA_PROVIDER_REF_LIST
                                   CHARACTERISTIC value="0VENDOR" text="Lieferant" /
                                    RANGE_SELECTION_OPERATOR type="CHOICE" value="EQUAL_SELECTION"
                                        EQUAL_SELECTION type="CHOICE" value="MEMBER_NAME"
                                        MEMBER_NAME value="0000200221" text="0000200221" /
                                        EQUAL_SELECTION
                                    RANGE_SELECTION_OPERATOR
                                SET_SELECTION_STATE_SIMPLE
                            INSTRUCTION
                        ACTION_BEFORE_RENDERING
                    WEB_TEMPLATE_ACTIONS
                TEMPLATE_PARAMETERS
    how can i use my variable LIFNR  at this point :  MEMBER_NAME value="0000200221"    ?
    thanks for any idea's.
    Tony

    hi experts
    does no one have an idea, how i can use my own java variable at   BI Filter  command's in the XHTML Code ?
    thx
    tony

  • Set default value based on sql query?

    Hi,
    is it possible to set default value of an BC entity attribute by using sql expression?
    Eg. "select max(x)+1 from y where userid=?"
    Rgs
    Jernej

    Jernej,
    Yes, you can do this. Edit your entity object attribute, and in the Edit Attribute dialog select "Derived from SQL Expression". Then you can enter your expression in the Expression text box.
    Blaise

  • Pre-setting filter value

    Hi,
    I have a page wich has a tabstrip with 2 tabs.
    On tab 1 all keyvalues are displayed in a table view, on tab 2 all details for all keyvalues are also displayed in a table view but with a filterfunction.
    When i select a keyvalue on tab1 and navigate to tab2 is want to set the filtervalue of the tableview prior for displaying.
    I'm using the cl_htmlb_manager=>set_filter_row_value when selecting a keyvalue during the DO_HANDLE_EVENT in the ControllerClass.
    But when i navigate to tab2 no filtering is done, the id is correctly filled.
      CASE event.
        WHEN 'id_tabstrip'.
    *     Keuze tabstrip met artikelen
          IF     lrf_model->h_active_tab = 'id_keyvalue'.
    *       User switches to detail tab
    *       Set filter TableView Details
            lh_filter_value = lrf_model->selected_key_value.
            CALL METHOD cl_htmlb_manager=>set_filter_row_value
              EXPORTING
              request           = request
              id                   = 'id_tv_detail'
              column_index = '1'
              value              = lh_filter_value.
    Can it work?

    Hi,
    Is there a possibillity to pre-setting a filter value.
    I cannot filter the table manually and the switch to the next tab because then the filter functionality won't work.
    Hope to hear from you..

  • Crys Reports - Mark the Legend Labels and Chart bar - values custom names

    Hai,
    I want to change the default names/labels of the chart elements (for e.g. bar chart - the labels and values) , in my reports the labels are directly taken from the database columns, how can I change this?,
    Someone please help...
    Thank you in advance.
    Vijay.

    Hi
    You can select the individual elements(for e.g chart title,legend,chart frame,grid lines,individual bars and series risers etc.).
    To do this do a normal left click and then again a left click on the desired object within the chart(which will select the object), and then do a right click which will come up with all possible options.
    Say for e.g you wan't to edit a default data label then follow the steps:
    1. Left click on the chart
    2.Left click on the data label.
    3.Right click>>Chart Options>>Titles
    4.Here you can edit the default title
    Thanks

  • Placing label and an image in Accordion header in flex 3

    Hi all,
    I need to display label and image in accordion header.Please let me know the process.
    Thankig You....

    Hi,
    Pls use the same swc which you are having from the link earlier which is having the CanvasButton.
    After that create the application same as the code is below.It is in the Flex 3.0.I am using three images and 3 labels on the header of the accordion.
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
            layout="vertical"
            verticalAlign="middle"
            xmlns:code="http://code.google.com/p/flexlib/">
        <mx:Accordion width="500" height="300"
            backgroundColor="0xCCCCCC">
            <mx:headerRenderer>
                <mx:Component>
                            <code:CanvasButton>
                                <mx:HBox verticalAlign="middle"
                                     horizontalGap="5">
                                    <mx:Image source="logo.png"/>
                                    <mx:Label text="Label 1"/>
                                    <mx:Image source="logo1.png"/>
                                    <mx:Label text="Label 2"/>
                                    <mx:Image source="logo2.png"/>
                                    <mx:Label text="Label 3"/>
                                </mx:HBox>   
                            </code:CanvasButton>
                </mx:Component>
            </mx:headerRenderer>
            <mx:VBox label=" Account Dept.">
                <mx:Label text="Container 1" />
            </mx:VBox>
            <mx:VBox label=" Admin Dept.">
                <mx:Label text="Container 2" />
            </mx:VBox>
             <mx:VBox label=" Sales Dept.">
                <mx:Label text="Container 3" />
            </mx:VBox>
        </mx:Accordion>
    </mx:Application>
    With Regards,
    Shardul Singh Bartwal

  • Set  filter value by other filter prompt value in Webi on top of BW

    Dear All,
       In webi report which on top of BW cube, I create a filter with prompt for YearMonth selection.
        Is there any way to create another filter for Year which based on the select Year month?   For example , user input YM = 200903 --> Year = 2009
       In bw , we can create variable with exit which read the data from other variable. Is there any exit for filter we can use in webi?
       I am using XI 3.1 & BI 7.0.
    Thx,
    Jeff

    Hi Jeff,
    since you want to limit the normal time dimension on your cube why do'nt you remove the yaer month filter form your SAP BW query and replace it with a month filter?
    Generally you have two options:
    1) You can either add you own filters (using MDX syntax) in the universe.
    [http://help.sap.com/businessobject/product_guides/boexir31/en/xi3-1_sap_olap_universes_en.pdf]
    2) Use local Web filters (these are applied on the report itself).
    Regards,
    Stratos

  • WAD drop-down box and commands on Set Variable values/ Set Filter Values

    Hello to all
    I am confused in WAD and Help online couldn't clarify my concerns. Thus here following issue:
    I am using a WAD, where the data provider (query)  is set dynamically. I would like that
    1 user selects company in  drop-down-box 1
    2 I use commands on drop-down-box 1 to manage the next drop-down-box 2 ( like it becomes input ready)
    3 user selects plant in drop-down-box 2
    4 User selects a tab strip A, where report A of multiple reports is placed. Now in this moment I assign the query A to the data provider A.
    Now my questions:
    - I am not clear how to use the bex-variables required for the query ( like company and plan). If I use in drop-down variables, then I can't set anymore commands
    - What means and makes the command set_variable_state
    - What means and makes the command set_selection_state
    Thanks a lot for your clarification and help
    Christian

    Hi Christian,
    I will try and answer your Qs
    - I am not clear how to use the bex-variables required for the query ( like company and plan). If I use in drop-down variables, then I can't set anymore commands
    >> Can you explain how exactly are you trying to populate the DropDown webitems for Company / Plant data for user-selection.
    - What means and makes the command set_variable_state
    >> SET_VARIABLE_STATE is used to assign input values to your query variables. Here, the command gives you a range of input options to select from such as Characteristic/Text/Formula/Hierarchy Variables & Binding Type Selection. Binding Type Selection in addition gives you more options such as assigning manual input from a Text webitem [ITEM_INPUT], assigning value from another Variable [VARIABLE], or simply assigning the selected value from an underlying Data Provider such as one mapped to a DropDown webitem [DATA_PROVIDER_CHARACTERISTIC].
    - What means and makes the command set_selection_state
    >> SET_SELECTION_STATE is used to assign input values to Characteristics in your query. It serves as a Filter option.
    I think in your case using SET_VARIABLE_STATE makes more sense. You can use Binding Type Selection with [DATA_PROVIDER_CHARACTERISTIC] on both the DropDown webitems to assign the values of Company / Plant to the query on runtime.
    --Priya

Maybe you are looking for