I need to add header in the WAD

Hi All,
I have a requirement of adding header in WAD/Bex,were there are 8 Columns to be displayed in the report as below
     Response time                                                                    Resolution Time
Min
Max
Average
SD
Min
Max
Average
SD
Were in Respone time time and Resolution time are Key figures.
Min,Max,Average,Standard Deviation(SD)are calculated Keyfigures in Bex query designer.
Now I have displayed each of these 8 columns as Min of Respone time | Max of Response time and so which needs to scroll to right a lot users wants the header to be diplayed as above example.
Can please anyone guide me on this,is it possible in WAD or Bex?
Thanks in advance
Preethi.

Hi Preethimanj,
We can acheive this through BEx and WAD combination.
1. We need to creat two queries with different set of CKF.. one is for Response time and other is for Resoultion time.
2. In WAD use the web item TABLE with two rows and two columns., on the first row keep the headings Response time and Resolution time then on the second row keep the two queries Response time and Resoultion time respectively. ( I think you are getting my point).
In this we can achieve this .
Hope this helps.
Veerendra.

Similar Messages

  • Need to add Header  and footer in an alv grid display output.

    How can I add header and footer in an alv grid dispay output.
    For the grid display, I am using the function module "REUSE_ALV_GRID_DISPLAY".

    HI,
    call function 'REUSE_ALV_GRID_DISPLAY'
           exporting
                i_callback_program      = gd_repid
                i_callback_top_of_page   = 'TOP-OF-PAGE'
                i_callback_html_end_of_list = 'END_OF_LIST_HTML'
                is_layout               = gd_layout
                it_fieldcat             = fieldcatalog[]
                i_save                  = 'X'
           tables
                t_outtab                = it_ekko
           exceptions
                program_error           = 1
                others                  = 2.
    FORM end_of_list_html USING end TYPE REF TO cl_dd_document.
      DATA: ls_text TYPE sdydo_text_element,
            l_grid     TYPE REF TO cl_gui_alv_grid,
            f(14) TYPE c VALUE 'SET_ROW_HEIGHT'.
      ls_text = 'Footer title'.
    adds and icon (red triangle)
      CALL METHOD end->add_icon
        EXPORTING
          sap_icon = 'IL'.
    adds test (via variable)
      CALL METHOD end->add_text
        EXPORTING
          text         = ls_text
          sap_emphasis = 'strong'.
    adds new line (start new line)
      CALL METHOD end->new_line.
    display text(bold)
      CALL METHOD end->add_text
        EXPORTING
          text         = 'Bold text'
          sap_emphasis = 'strong'.
    adds new line (start new line)
      CALL METHOD end->new_line.
    display text(normal)
      CALL METHOD end->add_text
        EXPORTING
          text         = 'Nor'.
    adds new line (start new line)
      CALL METHOD end->new_line.
    display text(bold)
      CALL METHOD end->add_text
        EXPORTING
          text         = 'Yellow '
          sap_emphasis = 'str'.
    adds and icon (yellow triangle)
      CALL METHOD end->add_icon
        EXPORTING
          sap_icon = 'IC''.
    display text(normal)
      CALL METHOD end->add_text
        EXPORTING
          text         = 'Mor'.
    *set height of this section
      CALL FUNCTION 'GET_GLOBALS_FROM_SLVC_FULLSCR'
        IMPORTING
          e_grid = l_grid.
      CALL METHOD l_grid->parent->parent->(f)
        EXPORTING
          id     = 3
          height = 14.
    ENDFORM. "end_of_list_html.
    This will solve  it. Post if you need more help in this.
    Regards,
    Madhu.

  • Mail from RVADOR01 need to add body of the mail

    Hi Experts,
    How to add mail body for the below case?please look
    I am using output tupe Zmail attached to Program ZRVADOR01 and script form ZRVORDER01.
    The Program ZRVADOR01 and the script ZRVORDER01are copied from standard prog RVADOR01  and standard script RVORDER01.
    And this output type is attached to VA02.
    In the Zprogram i could able to give mail subject in OPEN_FORM function module in OPTIONS parameter.
    And i am sending to the exterid which is outlook.
    For giving the email id i have added some code from the note .357137 before calling the OPEN_FORM function module in the program..
    mail is coming with subject line and attachment of script document .
    But the only thing needed is , add body text for the mail.
    How can i do this?
    Regards
    Ramakrishna

    Hi Rama, I am trying to do the same and noticed that your comments/question appears as "ANSWERED" at the top of the thread.
    Were you able to accomplish this?
    Jacob

  • I need to add tab in the existing B1 scree

    Hai,
      I need to add two more additional tab in the production order screen. Please let me know how can i do this.
    regards
    Suresh S

    Hai,
    Thanks for you reply. I have gone through the example what you have suggested. Please let me know how i can add the item for production order.
    eg,
       For Sales Order it has been mentioned as  126. How can i identiy these 126
            '// use an existing item to place youe item on the form
            oItem = oOrderForm.Items.Item("126")
    For Sales Order it has been mentioned as 44. How can i identiy these 44
    '// use an existing item to place youe item on the form
            oItem = oOrderForm.Items.Item("44")
    And Form type :
    FormType = 139
    how following numbers can be identified for Production Order Form

  • Need to add $ symbol in the amount column

    Hi All,
    i need to add a $ symbol in one of the value column in my SSRS Report.(SSRS 2008 R2).
    But , the problem is $ should be Left Aligned and Value should be
    right aligned.  If the value is zero then also $ has to display as most left aligned as below "$                0".
    Can any one suggest me to get it done.
    Thanks n advance.
    bala krishna

    Hi balakrishna141,
    Based on your description, you want to add a “$” together with the Amount in one textbox, The”$” align to the most left of the textbox and the Amount align to the most right of the textbox, right?
    I have tested on my local environment and find there is some limitation of using the HTML and as you mentioned that the solution provided by Visakh16 have some little problem, so ,we can use another method by creating an rectangle(The rectangle should be
    the same size as the cell of the table) and put two textboxes (TextBox1 to put the value of “$”,TextBox2 to put the value of Amount) in it and replace the [Amount] TextBox with this rectangle, then set the properties of both TextBox(TextBox1:TextAlign=Left,
    TextBox2:TextAlign=right)
    Details steps below for your reference:
    Create an rectangle and place 2 textboxes inside a rectangle
    In the first text, put the $ and right align it
    In the second textbox, put the value of amount and left align it
    Make sure that the width of the first textbox1 is less as it just has to accommodate the $ symbol and give more width for the second textbox2 of amount
    Similar thread are for your reference:
    https://social.msdn.microsoft.com/Forums/sqlserver/en-US/66d91599-d186-46f2-be03-5278612e6c91/right-align-dollar-sign-with-left-justified-number-in-ssrs-2005-matrix-report-column-?forum=sqlreportingservices
    If you still have any question, please feel free to ask.
    Regards
    Vicky Liu

  • JAXB / Needs to add header tag and close the header tag at the bottom

    I have successfully generated a XML file based on the XSD. I want to add another tag to my generated XML which is not the part of the XSD. Its like adding my whole xml inside a new tag. Is there a way to achieve it?User_10111723083878.xml
    to this xml, I want to add as the parent element "<addRequest targetID="BottomLineTarget" executionMode="asynchronous" xmlns="urn:oasis:names:tc:SPML:2:0">
    <data>" and close it at the bottom of the xml.
    Is it possible?

    the easiest way would be to create an xsd which includes this new wrapper element, and wrap the original object with your new wrapper object before serializing.
    an alternative would be to serialize the original object into a DOM object, then add the wrapper element manually before serializing that DOM object to your final destination (e.g. the xml file).

  • Need to add tables in the pricing report(V/LB)

    Hi
    I want to add some table in the existing pricing report.But I am unable to do so.
    My requirement was to add some new selection field in the Pricing report which is possible by adding the table in the existing pricing report.
    But I found If I go to EDIT>Tables.there is one option is called  "add table" which is appearing grey.
    Can you found it the way to add the tables in the Pricing report.

    Hi Sumit,
    You cannot add anything to existing report - you need to create new one and there you will be able to choose more tables than you use now.
    Regards,
    Marcin

  • Need to add tab in the me21 and the fields to that tab

    i have one requirement i which i have to  add one tab in the PO thru me21n and that tab is to be placed after the shipping tab.i have to add then the user input fields to it.please suggest me how to find that include,will it be screen exit that i need to create.do i require the access key from SAP for this.
    kindly suggest.
    thnaks

    These are following exits .
    LMEDR001 Enhancements to print program
    LMELA002 Adopt batch no. from shipping notification when posting a GR
    LMELA010 Inbound shipping notification: Transfer item data from IDOC
    LMEQR001 User exit for source determination
    LMEXF001 Conditions in Purchasing Documents Without Invoice Receipt
    LWSUS001 Customer-Specific Source Determination in Retail
    M06B0001 Role determination for purchase requisition release
    M06B0002 Changes to comm. structure for purchase requisition release
    M06B0003 Number range and document number
    M06B0004 Number range and document number
    M06B0005 Changes to comm. structure for overall release of requisn.
    M06E0004 Changes to communication structure for release purch. doc.
    M06E0005 Role determination for release of purchasing documents
    ME590001 Grouping of requsitions for PO split in ME59
    MEETA001 Define schedule line type (backlog, immed. req., preview)
    MEFLD004 Determine earliest delivery date f. check w. GR (only PO)
    MELAB001 Gen. forecast delivery schedules: Transfer schedule implem.
    MEQUERY1 Enhancement to Document Overview ME21N/ME51N
    MEVME001 WE default quantity calc. and over/ underdelivery tolerance
    MM06E001 User exits for EDI inbound and outbound purchasing documents
    MM06E003 Number range and document number
    MM06E004 Control import data screens in purchase order
    MM06E005 Customer fields in purchasing document
    MM06E007 Change document for requisitions upon conversion into PO
    MM06E008 Monitoring of contr. target value in case of release orders
    MM06E009 Relevant texts for "Texts exist" indicator
    MM06E010 Field selection for vendor address
    MMAL0001 ALE source list distribution: Outbound processing
    MMAL0002 ALE source list distribution: Inbound processing
    MMAL0003 ALE purcasing info record distribution: Outbound processing
    MMAL0004 ALE purchasing info record distribution: Inbound processing
    MMDA0001 Default delivery addresses
    MFAB001 User exit for generation of release order
    RFLB001 Control Items for Contract Release Order
    MPL0001 User subscreen for additional data on AMPL
    Also some of them you can find thru transaction SPRO going into Purchase Order->System Modifications .

  • Need to add Header condition

    HI All,
    Good Morning!!
    I have one requirement ,wherein  my client is asking to  put $50 at header level inspite of how many items are there in order.
    This Fine should not be distributed among items of the order.
    For ex:-
    Item 1- 100
    Item 2- 200
    Total Value- 300 +50(Fine)
    Total value Header = 350
    Please do the needful.
    Thanks,
    Vaibhav

    Hi,
    Go to SPRO
    In condition type setup, tick 'header condit'.
    In your SO, the condition type should be appeared on header only.
    Hope my solution can help you.
    Thanks.

  • Need to add field in the standard screen

    Hi
    As per my requirementn  we have to add one field in the Material master(MM01/MM02). Mentioned path below.
    MM01/MM02)-->  MRP1 tab --> in the MRP areas > click on MRP AREAS button>Pop will come with MRP AREA --> double cleck on entry > MRP area screen will appear> In general data tab> MRP group field is availble> Beside that i have to add one field.
    Program Name--> SAPLMD_MGD1
    Screen --> 0030
    As it is separate pop kind screen not sure whether we can add or not. Please let me know if there is any chance to add the field with procedure.
    Regards
    Raj.

    hi
    For this you have to find the screen EXITS.
    GOTO MM01->click on SYSTEM->then STATUS mow click on the program and find our the package name.
    NOW GOTO -> se84 ->click on ENHANCEMENT-> give the package name here and EXECUTE you find all the EXITs.
    hope this helps
    Regards
    Ritesh

  • Need to Add BKTXT in the dynamic selection in FB03

    Hi Gurus,
    In the dynamic selection FB03, the field BKTXT is not included in the dynamic selection. Would it be possible to add this field?
    Youre inputs would be greatly appreciated.
    Thanks and best regards,
    JeCCas_DJ

    Hi,
    You wants to add the BKTXT field on the selection screen of FB03?
    Why? for what purpose?
    Better copy the program related FB03 to some Zprogram and modify it by writing a select statement to get this BKTXT firld form BKPF/BSEG tables.
    SInce this is a text field, normally we don't put onthe selection screen.
    Regards,
    Anji

  • I deleted a friend and need to add him but the nam...

    i by mistake deleted a friend after i thought him a stranger. i want to re add him ......but...however.. in the search ...the name alwayes do not excist....pls help me

    try asking/searching for their username, or registered email address.
    IF YOU FOUND OUR POST USEFUL THEN PLEASE GIVE "KUDOS". IF IT HELPED TO FIX YOUR ISSUE PLEASE MARK IT AS A "SOLUTION" TO HELP OTHERS. THANKS!
    ALTERNATIVE SKYPE DOWNLOAD LINKS | HOW TO RECORD SKYPE VIDEO CALLS | HOW TO HANDLE SUSPICIOS CALLS AND MESSAGES

  • DefaultListModel  HELP =P  i need to add something to the JTextField

          add.addActionListener(addtext);
      }   // End of the constructor
    private JTextField boxlist = new JTextField();      <--  Box that is supose to show what do we add to the list.(Display the names)                  
    private JTextField boxname = new JTextField("type your name here...");   <--- We right something and add to the boxlist
    private JButton add = new JButton("ADD");
    private AddButton addtext = new AddButton(); 
    private DefaultListModel listmodel = new DefaultListModel(); 
    private class ADDButton implements ActionListener{
              public void actionPerformed(ActionEvent e ){
                   listmodel.addElement("something")   <--------- don't what to do we this handler, it is supose to give action to the Button (ADD)
         }thanks

    Swing related questions should be posted in the Swing forum.
    If I understand your question then you should read the Swing tutorial on [url http://java.sun.com/docs/books/tutorial/uiswing/components/list.html]How to Use Lists for an example that upates a list with the text entered in a text field.

  • Have existing Logical Diagram - need to add entities to the left side

    Is there a way to create space on the left side of a diagram without manually shifting all of the entities to the right.
    Thanks,
    Bob Larsen

    Do ctrl-A - that selects all the objects on the diagram. Then you can shift them all right without losing the layout.

  • How to add field to the header for FBL5N ALV report

    Hi,
       I need to add fields to the customer line item display ALV report(FBL5N) header part.Right now there are four fields in the header like customer, company code, name and city, after that I need to add first name last name and phone no. Can any one tell me where exactly I need to add and populate there fields to be appear in ALV output list.
    Thanks in Advance
    Swapna

    Yes I have tried, I have place a break point in that perform but it does not stop. I think that is not the correct place to added and populate fields. That routine is for populate selection screen ranges single and multiple values and parameters only.
    Thanks
    Swapna

Maybe you are looking for