Requirement to display repeated texts in the wad report

Dear experts,
we are having a requirement to display repeated
texts in the WAD report .As we had unchecked the checkbox
hide repeated key values in BEX query properties and we
are achieving this in BEX report.
Is there any possibility to achieve the repeated key values
in WAD report?
Is there any global t-code or any functional module to do the
wad settings to get the Repeated key values?
Please do the needful.
Thanks,
Chiramana.

Hi,
Check in the following document.
https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/58fd9183-0e01-0010-f183-fdc9019f77ab
Thanks
Reddy

Similar Messages

  • To display a text on the right hand corner of an ALV list in SAP

    Hi All,
    I need to display a text on the right most corner of the ALV list output where there are some details present at the top of the list.
    I tried using the statement  
    CONCATENATE space space space space space space space space space space
                  space space space space space space space space space space 'required text" INTO ls_line-info.
    This ls_line is of type slis_listheader. But this statement did not work.
    Can anyone please help me how do i display this "required text" at the right most corner above the ALV list?
    Thanks.
    Taarikha

    Hi,
    You will have to use I_CALLBACK_HTML_TOP_OF_PAGE instead of I_CALLBACK_TOP_OF_PAGE.
    See the below sample code.
    FORM html_top_of_page USING lw_document TYPE REF TO cl_dd_document .
      DATA : doctable TYPE REF TO cl_dd_table_element,
      col1_t1 TYPE REF TO cl_dd_area,
      col2_t1 TYPE REF TO cl_dd_area,
      col1_t2 TYPE REF TO cl_dd_area,
      col2_t2 TYPE REF TO cl_dd_area.
    * add quick table with five columns
      CALL METHOD lw_document->add_table
      EXPORTING
      no_of_columns = 2
      border = '0'
    * cell_background_transparent = ' '
      width = '100%'
      IMPORTING
      table = doctable.
    * Filling columns in row
      CALL METHOD doctable->add_column
        EXPORTING
          width  = '40%'
        IMPORTING
          column = col1_t1.
    * Filling columns in row
      CALL METHOD doctable->add_column
        EXPORTING
          width  = '60%'
        IMPORTING
          column = col2_t1.
      CALL METHOD doctable->new_row.
      CALL METHOD doctable->add_column
        EXPORTING
          width  = '40%'
        IMPORTING
          column = col1_t2.
    * Filling columns in row
      CALL METHOD doctable->add_column
        EXPORTING
          width  = '60%'
        IMPORTING
          column = col2_t2.
    *Now adding the texts
      DATA lw_text1 TYPE sdydo_text_element VALUE 'Danish'.
    *lw_text1 = 'your first text'.
      CALL METHOD col1_t1->add_text
        EXPORTING
          text = lw_text1.
        CALL METHOD col2_t1->add_text
        EXPORTING
          text = lw_text1.
    *Similarly add text for other columns
    *Adujust % in width to adjust the column as required
    ENDFORM.                    "html_top_of_page
    Regards,
    Danish.

  • I want to change the selection text in the standard report/transaction  .

    I have added one screen field to the standard report , now i want to change the selection text in the standard report/transaction

    Hi,
    >
    scoy123 wrote:
    > I have added one screen field to the standard report , now i want to change the selection text in the standard report/transaction
    Refer:-
    CONSTANTS : c_comment(20) TYPE c VALUE 'write your comment'.
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN COMMENT 1(20) c_comment.
    PARAMETERS : p_matnr TYPE matnr.
    SELECTION-SCREEN END OF LINE.
    Hope this helps you.
    Regards,
    Tarun

  • Nested Table: How to display formatted text in the form ?

    Hi,
    Scenario:
    I have a nested table, say TAB1, containing another table TAB2 which holds the formatted text.
    Sample data
    Entries in TAB1:
    Column1       Column2(TAB2)
    Text1         Data_from_tab2
    Text2         Data_from_tab2
    Text3         Data_from_tab2
    Requirement:
    The requirement is to display the data in TAB1 as it is maintained.
    Trials:
    I am aware of the fact that we can transfer the content of the nested table (in this scenario, TAB2) in another table(of type TLINE) defined as a global variable in the interface of the form. Then in the context area, we can define a 'TEXT' node and bind it to the table and choose the 'Dynamic text' for the 'text type' attribute and maintain the other atrributes.
    But this approach cannot solve the issue as it is a nested table.
    Kindly suggest how can I resolve this issue.
    Regards
    s@k

    Hi,
    if its like colum1, column2 (tab2).
    you can represent column2 as a nested table in the form. and put these tables structure intoa subform of type flowed.
    then you can have the required format.
    the same can also be acheived using nested subforms instead of tables.
    example of such scenario is PO & line items.
    po number1 , items 1
                          item 2
                          item 3
    po number2 , items 1
                          item 2
                          item 3
    hope this helps you.
    Cheers,
    Sai

  • How do you make the title bar display different text than the page title?

    I'm looking for a way for the title bar display of my web page to be different than the text in the actual nav bar created by iWeb. For instance, I'd like the nav bar to just say Home for my main page, but in the title bar in the browser say "blah blah blah."
    I know there has to be a way to do this. iWeb has actually done it on one page already, but I can't figure out how. I think it picked up the title bar text from the first text box in the page. For instance, the page name in the navigation bar is "blahs for today" but the browser title bar when you open that page says "blah blah," which happens to be the first line of text on the page. The page title in iWeb.app, though, is "blahs for today." But if I look at the source code it lists title as "blah blah."
    I'm guessing I might be able to work around by making an invisible text box with the text that I want in the title bar as the very first thing on the page, and hope iWeb makes that the title bar text. I'd rather have a more correct way of doing it.
    Is there a way of doing this in the source code without having to change a lot of stuff?
    Thanks for any help.

    Richard Kirkman1 wrote:
    I think it picked up the title bar text from the first text box in the page. (...) I'm guessing I might be able to work around by making an invisible text box with the text that I want in the title bar...
    Richard ~ The key is the default Title box that iWeb creates for every new page — it's that which you need to edit, not another text box you've created. And to make the text in that Title box invisible, see here.

  • DISPLAY DYNAMIC TEXT ON THE APPLICATION TOOLBAR

    Hi Abappers,
    On the application toolbar i want to display dynamic text depending on which button is selected. can this be done...
    regards,
    Mansi.

    write the conditional setting of titlebar in
    at selection-screen output .
    if <condition> eq 'X' .
        set titlebar 'MAIN' with 'Maintain' .
      else .
        set titlebar 'MAIN' with 'Display'  .
      endif .
    now double click on MAIN, the system will ask youto creat the title click yes
    in the title field you can write static text along with & sign
    (& Test & & &)
    now if you say
    set titlebar 'MAIN' with 'Display'  '1' '2' '3' .
    it will display as
    Display Test 1 2 3 .
    Regards
    Raja

  • WAD result row in the name of the WAD report

    Hi,
    My requirement is we need to show summary of the result rows in front of WAD report output. Is it possible by any means please let me know.
    amit

    our requirement is top management should get summary report like this e.g
    WAD output as of now we have.
    > costing report (Heading of the report) (compress)
              > Query result  (at the top or at the bottom)
    I need Query result should appear at top level before clicking on heading costing report.
    Please let me know if anything required above.
    amit

  • Displaying HTML data in the xml report

    hi
    can anybody help me out on how to display the HTML data in XML report, for example the data in the table is in the following format with HTML tags attached to it
    *&lt;b&gt;Test Good display as normal text&lt;b&gt;*
    +&lt;i&gt;Test Italicized &lt;i&gt;+
    i would like to display the above data in the XML report as a following with "Test Good display as normal text" as BOLD and "Test Italicized" as Italicized
    Test Good display as normal text Test Italicized
    if anybody came across similar issue please help me out.
    Regards
    Hemi.

    Hi..
    Check out this link..hope this helps..
    http://blogs.oracle.com/xmlpublisher/2007/01/formatting_html_with_templates.html

  • PO header text in the PO report

    Hi,
    I try to develop a PO report & want to include the field PO header text.
    Is it possible to extract the header text in a report.
    If possible, can any body so kind to give me the technical specification of the PO header text.
    Thanks in advance.
    Regards,
    sp sahu

    Sahu,
      there are n number of threads with sample coding in the forum for your question, pl just do a search..you could retrieve the po header/item texts using the fm READ_TEXT
    if helpful, reward
    Sathish. R

  • Display only graph in the Crystal report viewer

    Background:
    We used Crystal Reports ver10 to display various graphs in our ASP.Net 2.0 Web Application (Visual Studio 2005)
    We recently migrated our application to .NET 4.5 and Crystal Reports ver13 (Visual Studio 2012)
    Issue:
    Now, the Crystal Report Viewer control loads the graph inside an <IFRAME> which shows the whole page with the graph placed on the right bottom corner instead of just the graph image as it used to previously.
    I have checked various properties that hides the tree and the toolbar and I am unable to get rid of the whole page.
    Query:
    Is there a way to not display the page and display only the image that contains the graph? OR
    Is there a way to not render the whole <iframe> and just display the graph image inside a <div> as it used to happen before?

    Hi Ludek, thanks for your response. Please refer the screenshots below.
    1) CR ver10 - the graph <img> is simply enclosed inside a div
    2) CR ver13 - the graph <img> is enclosed inside an <iframe>'s body - you can also see the scroll bars and "white-page-background" and "grey space" which I am hoping to hide or disable
    3) We are using the same set of CRViewer properties in both cases:
    - DisplayGroupTree = False
    - DisplayToolbar = False
    - HasDrillUpButton = Flase
    - HasRefreshButton = False
    - HasToggleGroupTreeButton = Fasle
    - HasViewList = False
    - HasZoomFactorList = False
    - EnableViewState = True
    4) Here's a screenshot of of the .rpt file opened in the VS 2012:
    We only want to render the graph image on the UI and not the whole page. Is there a property setting that will help us achive this or should we define explicit CSS styles to hide those areas?
    Thank you for looking into this!
    Avrosh

  • Display Subreport Totals in the Main Report

    I am using CF10 Report Builder. I have a main report that show counts/amounts by award type for admitted and deposited students. I have a sub report that shows counts/amounts by award type and level for current students who have registered and those who have not yet registered. I need to show the totals of current students by level and weather they have registered or not.
    I tried adding a sub report to show the totals but the sub report does not show up on the main report. Is there a way to do this that I am missing?

    I created the sub-report because the award information is kept in separate
    tables for incoming and returning students. I will work on combining the
    the two.
    Thanks
        Bonni
    Bonni Harris
    Database Analyst
    Eureka College
    300 E. College Avenue
    Eureka, IL 61530-1500
    309-467-6467
    On Tue, Apr 28, 2015 at 12:25 PM, EddieLotter <[email protected]>

  • Javascript function doesn't display alt text of the initial image in recordset

    I have the following javascript code to display the alt text
    database field of the current moused over thumbnail image. All
    works fine except for the initial image's alt text. It does not
    display:
    PAGE EXAMPLE:
    http://www.canchair.com/new_web_product_detail.asp?ProductID=198&ProductFamily=1&ProductFa milySub=10
    HEAD SECTION JAVASCRIPT CODE:
    <script type="text/javascript">
    <!--
    var currentImage;
    function showBigImage( isource,bigImage,header ) {
    var theImage = document.getElementById( 'largeimage' );
    theImage.src = isource;
    currentImage = bigImage;
    document.getElementById('photoHeader').innerHTML=header;
    document.getElementById( 'largeimage' ).alt=header;
    PAGE CODE:
    <a href="javascript:;">
    <img src="imagescript.asp?path=<%= images.Fields.Item(
    "url_img" ).Value %>&Width=36" border="0"
    onmouseover="showBigImage( 'imagescript.asp?path=<%=
    images.Fields.Item( "url_img" ).Value %>&Width=250','<%=
    images.Fields.Item( "url_img" ).Value
    %>','<%=(images.Fields.Item("alt_img").Value)%>' )" alt=""
    /></a>

    Why don't you show the rendered code? (Not server code)
    Mick.
    aonefun wrote:
    > I have the following javascript code to display the alt
    text database field of
    > the current moused over thumbnail image. All works fine
    except for the initial
    > image's alt text. It does not display:
    >
    > PAGE EXAMPLE:
    >
    >
    http://www.canchair.com/new_web_product_detail.asp?ProductID=198&ProductFamily=1
    > &ProductFamilySub=10
    >
    > HEAD SECTION JAVASCRIPT CODE:
    >
    > <script type="text/javascript">
    > <!--
    > var currentImage;
    > function showBigImage( isource,bigImage,header ) {
    > var theImage = document.getElementById( 'largeimage' );
    > theImage.src = isource;
    > currentImage = bigImage;
    > document.getElementById('photoHeader').innerHTML=header;
    > document.getElementById( 'largeimage' ).alt=header;
    >
    > }
    >
    >
    > PAGE CODE:
    >
    > <a href="javascript:;">
    > <img src="imagescript.asp?path=<%=
    images.Fields.Item( "url_img" ).Value
    > %>&Width=36" border="0"
    onmouseover="showBigImage( 'imagescript.asp?path=<%=
    > images.Fields.Item( "url_img" ).Value
    %>&Width=250','<%= images.Fields.Item(
    > "url_img" ).Value
    %>','<%=(images.Fields.Item("alt_img").Value)%>' )" alt=""
    > /></a>
    >

  • Can I make icons display more text on the Desktop?

    The default size is 64 px by 64px (which stills seems huge to me) but the labels below each icon only display like 6 characters with ellipses in teh middle. It makes it very hard to identify files ... Any way around this without making the icons 128px?

    In the Finder view options (Cmd+J), increase the grid spacing to spread icons farther apart from one another. This will allow more text to appear on each line.

  • Data merged text into boxes assigned for InCopy doesn't display merged text, only the placeholder

    I think I found a bug.
    I created an InDesign document for use in InCopy for a client. The end goal is to data merge a whole array of documents for the client, who can open them in InCopy and update the text.
    I designed the layout
    I created the assignments for InCopy (which stories and images the InCopy user could edit)
    I then set up a data merge to pre-populate content like contact details, portrait photos etc
    When I merged the final document, two things happened.
    The images didn't respond to the Content Placement Options (fill proportionally), they all just got placed at 100% size ratio (they did centre though)
    The data merge fields didn't populate the placeholders with the relevant text. All of the fields just came up as their placeholders <<Phone>> <<Fax>> etc
    As soon as I deleted the assignments and re-merged, the image settings were being applied and the fields were populating the documents.
    I'm using the latest version on CC, 10.0.0.70.
    Anyone else had this issue? It's very specific but it is a bug.

    A couple of other users have reported similar problems, and it appears to be a bug when you go from preview to merge. If you undo out of preview, or skip it entirely, before hitting themerge button, does it work?

  • Is there a faster way to add repeated text besides the hand tool?

    Every day I receive multiple documents to edit and on each and every one, there is one page where I have to enter the date 3 times. The file doesn't originate with me so I can't do the javascript thing others have talked about. I just go to tools, add text (the date) and then use the hand tool to copy/paste it. However,  since the hand tool for some reason just dumps it into the middle of the screen and I have to drag it over to the area I need it, I've found it faster just to keep clicking and typing in the date I need.
    Every time I do this I keep thinking, "there's got to be a better way". Is there?
    Using Adobe Acrobat Pro

    There is no shortcut for this.
    A faster way could be to click and paste instead of paste and drag.
    1. Right click on the page and select 'Add Text'
    2. Click where you want to type.
    3. Paste (Ctrl/Cmd + V)

Maybe you are looking for

  • Office 2004 won't install after Leopard install

    Hi there, So first of all, I've always had a problem with the Office 2004 CDs even running in my CD-ROM. Other CDs work fine, but not Office 2004 (and I've tried multiple copies). Even to install on Tiger, I had to sit there and just keep reinserting

  • My main blog page can't find its entry pages

    When I make iWeb blog entry pages, the main blog page can't find them. It says "Error. The file cannot be found." (even if I just use the placeholder "Blue bird day" page without changing it!) I'm dragging my image onto the placeholder image on the (

  • Can a program a double click event for a button in Flash Catalyst?

    I currently have a button programed in FC with a single click. I would like the exact same behavior to happen whether there is a single or double click on the same button. Is there a way to do this in FC? If not can I pull it into another program to

  • Portege R500 - Question about SSD Connector

    Hello, Can somebody tell me what connector is on the SSD's of a R500? It is NOT a standard ZIF connector... I have a broken r500 laptop and would like to extract the data from it that is still on there. Is there any convertor I can buy? Thank you

  • Apple ID secondary mail address

    Because of a mess-up made by a kid, my Apple ID password has been reset and I received this notification: If you believe you have received this email in error, or that an unauthorized person has accessed your account, please go to iforgot.apple.com t