Dynamic totals to be displayed  in between dynamic columns

Basically my requirement is to create a report which shows the output in a excel file in the below format:
Customer Name .... Account Id ... JAN..... FEB ..... MAR ..........APR..............................DEC..............TOTAL
BARRY,CINDY........ 879166404 .... 579 ....469........654............232..............................434.........(579+469+654+232+434)
BARRY,EVELYN...... 4312031110 ... 579 ...434.......343............533.............................333.........(579+434+343+533+333)
here the months are inserted dynamically........ and i managed to get the desired output.....with totals showing at the end.
but now the user wants to see totals for every quarter...is it possible to do so - coz the months are inserted dynamically and how would i create a column for total in between for every quarter.
any help would be really appreciated.

Hi srini,
I've sent an email to [email protected] with subject : Dynamic totals to be displayed in between dynamic columns.
Eagerly waiting for your response.
Thanks.

Similar Messages

  • Master page Dynamic data not getting displayed in consecutive pages

    Hi,
       I have buit a dynamic form which has some dynamic content in master page and a dynamic table in the body page.
    Layout is
    Master page
          Sub form
                 Field1 -TextView
                 Field2 - TextField      bind with Node1--->Attribute1
                 Field2- TextField       bind with Node2---->Attribute2
                Field n - TextField
    all the text fields are bound to various nodes from RFC
    Body Page
             Sub form
                  Table -Grows Dynamically
    When i run the application all the fields are displayed perfectly in the first page.
    when the table data goes more than one page the problem arises
    The Text fields in the master page is  not displaying the values in the second page ,but the text views and the table values are fine.
    The values are getting displayed in both pages if i put any attribute inside the parent node.Is there any property i need to set at node level or subform level?
    Thanks in advance,
    Siva

    Hi
    I Would like to give a suggestion eventhough i don,t have answer to you question.
    Master Page is used for static content as per SAP and Adobe like company logo and  company address footer section and placing  watermarks etc....
    I feel because of the Dynamic behavior in master page it Leeds this problem.
    Regards
    Malli

  • Is it feasible to set the rows displayed per page dynamically?

    Hi,
    Is it feasible to set the rows displayed per page dynamically in the table view result as per the user wants eg : the user wishes to see only 25 records or all the records?
    Also what is the maximum limit of rows that can be fetched as per the entry in instanceconfig.xml :
    <ResultRowLimit>65000</ResultRowLimit>
    Is there a limit for number of rows being displayed in table view?
    thanks
    Rishabh

    See this
    How to increase default  number of rows dspalyed ?
    This is your thread only...

  • Dynamic Select List not displaying correct value

    Hi there!
    I have a page with a dynamic repeat region.
    As I press one record I get up all the details based on id on an edit page.
    The problem is that the info that is inserted via a Select List is not displaying correct on edit page.
    All the other values are correct, also the values in the repeat region on index page,
    but the value from the Select List on edit page is just displaying the initially selected item.
    Have tried using SELECT DISTINCT in the SQL statement, but no luck.
    Any other ideas?
    Cut and paste from form:
    <select name="Vegtype" class="ProvDet" id="Vegtype" title="<%=(rsAs.Fields.Item("VegType").Value)%>">
                        <option value="Ev" selected="selected">Ev</option>
                        <option value="Fv">Fv</option>
                        <option value="Rv">Rv</option>
                        <option value="Kv">Kv</option>
                      </select>
    Recordset
    <%
    Dim rsAs
    Dim rsAs_cmd
    Dim rsAs_numRows
    Set rsAs_cmd = Server.CreateObject ("ADODB.Command")
    rsAs_cmd.ActiveConnection = MM_LabCon_STRING
    rsAs_cmd.CommandText = "SELECT DISTINCT DatoM, DatoR, DatoU, Distr, FagFelt, Felt, IntNr, Km, KontrNr, Kontrollor, Masse, MasseBK, Punkt, Resept, TestID, UserID, VegHp, VegNavn, VegNr, VegType FROM tblTest WHERE TestID = ?"
    rsAs_cmd.Prepared = true
    rsAs_cmd.Parameters.Append rsAs_cmd.CreateParameter("param1", 5, 1, -1, rsAs__MMColParam) ' adDouble
    Set rsAs = rsAs_cmd.Execute
    rsAs_numRows = 0
    %>
    Regards,
    Christian
    DWCS5 | .Asp | MS Access

    Ok, here goes the top down approach...
    In the HTML header of my page, i have this reference to a js file containing the javascript - <script src="#WORKSPACE_IMAGES#108.js" type="text/javascript"></script>
    Then in an HTML Region I have the following code to create the divs that will be shown and hidden - <div id="divREGION" class="divs">Select region to get list of countries.</div>
    <div id="divCOUNTRY" class="divs">Select country to get list of cities.</div>
    <div id="divCITY" class="divs">Select city and then press "Get Employees". </div>
    Note that these divs contain static content. You may be able to create dynamic content for these divs by creating dynamic query regions and putting div tags around the region (i havent tried this, it may require template modification).
    The select boxes have this code in the "HTML form elements attributes" - onFocus="javascript:showHideDiv(this,true)" onBlur="javascript:showHideDiv(this,false)"
    This onFocus and onBlur call the showHideDiv() function, passing in the object reference of the select box and a true/false to show/hide the related div.
    The actual javascript function that is contained in the 108.js file is:
    function showHideDiv(objThis, inBool){
         var divid = "div" + objThis.id.substring(3);
         if (inBool) {
         ShowDiv(divid);
         else {
    HideDiv(divid);
    That function in turn calls either the ShowDiv() or HideDiv() functions, depending on the true or false, passing in the ID of the div to be changed...
    function ShowDiv(divid){
         eval('document.all'+ '["' + divid + '"]' + '.style' +'.display = "inline"');
    function HideDiv(divid){
         eval('document.all'+ '["' + divid + '"]' + '.style' +'.display = "none"');
    Hope this helps.

  • Urgent : Problem in displaying 0fiscper as dynamic data col.

    Hi SEM gurus,
    I have a problem in displaying 0FISCPER in data columns. Say, in my planning level I have restricted 0FISCPER to 0001.2005 to 012.2005. and I did selected in data column,  “Dynamic for 0fiscper”.
    Now when I run my lay out for keyfig. 0Amount the lay out is like this…
    Customer Amount Amount Amount
    Xxxxxx       10  20     30
    Its not displaying the month…what I want in the lay out should be like this…
             001.2004  002.2004  003.2004 …………………
    Customer Amount Amount Amount Amount
    Xxxxxx     10     20      30    40   .........
    Can any one Please help me out to fix this ???
    Thanks a bunch in advance…
    Rohith.
    Message was edited by: rohith gentle
    Message was edited by: rohith gentle

    Rohith,
    change HEADING column in the 2nd screen of the layout design to "0FISCPER Amount".
    I think, current HEADING is named as only "Amount".
    This will give layout as
    Customer 001.2004Amount 002.2004Amount 003.2004Amount
    hope that helps.
    Hari Immadi
    http://immadi.com
    SEM BW Analyst

  • Dynamic gallery won`t display once uploaded on FTP

    Hi, I builded this dynamic gallery page that display the
    pictures using an UI Loader component.
    When I test the movie in Flash the gallery loads and displays
    the external picture with no problems. However, once the html and
    SWF file are upoladed on line you can see everything correctly but
    the clickable thumbnails won`t open any picture.
    In the FTP I`m keeping the same exact path as my directory.
    The code says
    btn1.addEventListener(MouseEvent.CLICK, ldr1)
    function ldr1 (e:Event) {
    my_ldr.source = "PICTURES/FASHION/fashion1.jpg";
    So, I have a PICTURES folder in the same directory as the SWF
    and HTML document and inside of it I have the FASHION folder
    containing the pictures called "fashion1", "fashion2", and so
    forth...
    I can send more code if necessary. It seems a pretty
    straightforward process and it should work, but I can gigure out
    why is not working.
    Anybody have any idea why?
    Here` s the website in progress
    http://www.erinbarry.co.uk/staging/home.html

    I see in the directory tree of your web host that all of your
    jpg's have all caps for their extensions (fashion1.JPG not
    fashion1.jpg). If you change the path in the Flash or change the
    filenames this will work. Often, your local computer OS doesn't
    care about caps vs no-caps, whereas web servers often do care, and
    in this instance your web server does.
    To test this, if you put "
    http://www.erinbarry.co.uk/staging/PICTURES/FASHION/fashion1.jpg"
    into the browser path you get a "404 Not Found" error. If you
    change it to "
    http://www.erinbarry.co.uk/staging/PICTURES/FASHION/fashion1.JPG"
    you get the image.

  • Displaying images in dynamic text fields

    Hi, I am having some difficulty getting my images to display
    in a dynamic text field. The images are linked from a txt file with
    the <img src=""> tag however they are not showing up in the
    text area. The rest of the html are rendering fine except the image
    tag. My example online is here:
    www.supernaturalmedia.com.
    Here is the code I used in Flash:
    var style_sheet = new TextField.StyleSheet();
    var css_url = "global.css";
    style_sheet.load(css_url);
    news.StyleSheet = style_sheet;
    loadVariables("projects_news.txt", this.news);
    My css styles also isn't loadin so i temporarily am using
    html styles for formatting. I'd like to get the css to work as
    well.
    My movie is published as Flash Player 6, AS 2.0.
    I'd appreciate any helpful advice.
    Thanks,
    Stanton

    1. don't assign the stylesheet property of your textfield
    until loading of global.css is complete. ie, use the onLoad handler
    for stylesheets.
    2. you have movieclip images that are linked for export and
    you're using their linkage id in src property of the img
    tag?

  • Difference between dynamic report and template

    I think the subject line covers it, I am trying to find out, that when I save the report, I can save it as static or dynamic report or as a template. but what is the diff between dynamic report and template?
    Thanks.

    Hi Zack,
    SAP provides some standard templates as report templates. The users are provided with the option to save their own versions of reports as 'Report Templates' for future use. As a super user one could create a custom template and save to the template library which the other users could access from the template library.
    For example if you have 'ACCOUNT' drilldown as a standard report template, you could define a new template as for example, 'Entity' drilldown template.
    Hope it is clear now.
    Thanks,
    Sreeni

  • Dynamic text won't display

    I don't know if this is a bug. I have a movie that contains a
    dynamic text. When I run it, the text displays fine. But when the
    said movie is run through another movie clip (using loadMovie), the
    dynamic text won't display. Any ideas why? Thank you.

    dongzky wrote:
    > Actually, there was no code involved. The dynamic text,
    with borders around it,
    > I tried to put a value for testing. It works fine when
    run. But when called
    > by another movie clip, although the movie with the
    dynamic text still loads,
    > the text won't display anymore. Even the borders were
    gone.
    Than again, it's a bug on your end :)
    Dynamic text is a text container, it's to be use with
    dynamically given data, from
    source file or variable string on timeline. It's not meant to
    be for regular text
    display. You need to use Static text. The fact that you can
    see it it's just flash
    being tolerant but it only lasts for as long as the movie is
    getting more complex.
    You can get away with somethings even tho you should not be
    using them, does not
    mean they will work all the way. Dynamic text, as said above
    is for text that comes
    to flash from outside source and this is when it works best.
    Best Regards
    Urami
    <urami>
    If you want to mail me - DO NOT LAUGH AT MY ADDRESS
    </urami>

  • Dynamic select list with display,return val & join condition issue.

    hello,
    I am having a dynamic select list with display, return value
    say for example my select statement is
    select distinct dname d, deptno r
    from dept dt
    right join emp e on (e.deptno=dt.deptno)
    where (condition)
    when i tried this query for my select list, it is not working. It saying that
    " LOV query is invalid, a display and a return value are needed, the column names need to be different. If your query contains an in-line query, the first FROM clause in the SQL statement must not belong to the in-line query. "
    I am not able to understand the problem. Can anyone help me out with this issue?
    thanks.

    Shouldn't your join have dept as the driving table?
    select distinct dname d, deptno r
    from dept dt
    right join emp e on (dt.deptno = e.deptno)
    where (condition)
    Or using older Oracle standard join
    select distinct dname d, deptno r
    from dept dt, emp e
    where (dt.deptno (+) = e.deptno) AND (OTHER WHERE condition)
    OR
    (Since a right join is just getting the values from the driving table that are NOT in the associated table)
    select distinct dname d, deptno r
    from dept dt
    WHERE dt deptno NOT IN (SELECT deptno FROM emp) AND (OTHER where condition)
    Thank you,
    Tony Miller
    Webster, TX

  • Dynamic select list with displaying a description

    Hi,
    I want to have a select List, my list refer to a lov, and the lov refer to a table contaning 2 columns : code and description,
    The list must display only the code, but I want having an item beside the list dispaling the description....
    I have used a select list with the query :
    select code d, code r from prog_theme order by 1 desc
    and Now : what is the way for displaying the description
    Thanks!!
    Lila

    Ok, here goes the top down approach...
    In the HTML header of my page, i have this reference to a js file containing the javascript - <script src="#WORKSPACE_IMAGES#108.js" type="text/javascript"></script>
    Then in an HTML Region I have the following code to create the divs that will be shown and hidden - <div id="divREGION" class="divs">Select region to get list of countries.</div>
    <div id="divCOUNTRY" class="divs">Select country to get list of cities.</div>
    <div id="divCITY" class="divs">Select city and then press "Get Employees". </div>
    Note that these divs contain static content. You may be able to create dynamic content for these divs by creating dynamic query regions and putting div tags around the region (i havent tried this, it may require template modification).
    The select boxes have this code in the "HTML form elements attributes" - onFocus="javascript:showHideDiv(this,true)" onBlur="javascript:showHideDiv(this,false)"
    This onFocus and onBlur call the showHideDiv() function, passing in the object reference of the select box and a true/false to show/hide the related div.
    The actual javascript function that is contained in the 108.js file is:
    function showHideDiv(objThis, inBool){
         var divid = "div" + objThis.id.substring(3);
         if (inBool) {
         ShowDiv(divid);
         else {
    HideDiv(divid);
    That function in turn calls either the ShowDiv() or HideDiv() functions, depending on the true or false, passing in the ID of the div to be changed...
    function ShowDiv(divid){
         eval('document.all'+ '["' + divid + '"]' + '.style' +'.display = "inline"');
    function HideDiv(divid){
         eval('document.all'+ '["' + divid + '"]' + '.style' +'.display = "none"');
    Hope this helps.

  • Limit to rows displayed in a Dynamic Parameter?

    Post Author: shecter
    CA Forum: General
    Hi,Does anyone know if there is a limit to the number of rows that can be displayed in a dynamic parameter? I have set up a parameter that needs to let the user choose from 2700 book titles A-Z. But it only show titles A-R. -Marc

    Post Author: SKodidine
    CA Forum: General
    It is limited to 1000 rows by default.  Check this KBase article on how to increase the number.
    http://technicalsupport.businessobjects.com/KanisaSupportSite/search.do?cmd=displayKC&docType=kc&externalId=c2017238&sliceId=&dialogID=19032644&stateId=1%200%2019034607

  • Regarding Dynamic Table UI columnwise display

    Hi,
    I have an requirement such that I need to display a structure from an RFC in a Webdynpro Table UI.  I want to display the values columnwise and not row.  The values from the RFC should be added to the column(horizontally) instead of row. Please give me your views on this.
    Kind Regards,
    Vivek.S

    hi Vivek,
    you mentioned you need to display a structure. If it is a structure it should be containing one record which you can show in one row of the table.
    In case of multiple records you have to manage it dynamically depending upon the number of records returned.
    Dynamically add attributes in a value node and columns to the table.
    set cardinality for the value node as 1..1.
    Iterate over your model node elements and then set corresponding values in the value node's current element.
    You can explain more about your problem.
    Hope this helps!
    Monalisa

  • Displaying notes on Dynamic Menus in TEM

    Good morning
    When a note is attached to an attendee on a course in TEM, is there a way that there cam be an indicator displayed on the dynamic menus (PSV1 and PSV2) against the attendee that when you click on it, it goes directly to the note.
    Many thanks
    Dawn

    Hello Dawn,
    You need additional development to do that.
    Go and copy SAP standard function RH_MORINFO and change the resulting function acc to your requirements.
    Then in the T77S0 table write down the name of your Zfunction as SEMIN MINFO value.
    In standard, you can make "key", "additional info" and "abbreviation" fields visible in PSV1 and PSV2 transactions.
    To customize the user view, use Change settings button - View tab.
    Regards,
    Dilek
    Edited by: Dilek Ersoz Adak on Jan 14, 2010 1:37 PM

  • Dynamically the buttons should display as per input no's.

    Hi friends,
    I have BSP with 1 page .
    Input is Enter No
    If i enter 3 as input my layout should display 3 buttons with name BUTTON1 BUTTON2  BUTTON3
    If i enter 1 as input my layout should display 1 buttons with name BUTTON1
    Means dynamically the buttons should display as per input no's.
    Suggestion pls.
    I am displaying my button like below
    <input type=submit name="onInputProcessing(B1)" value=" BUTTON1">
    Suggestion pls.
    Moosa

    Hi,
    I have given the entire code here as mentioned the procedure by abinav
    Layout
    <%@page language="abap" %>
    <%@extension name="htmlb" prefix="htmlb" %>
    <htmlb:content>
      <htmlb:page>
        <htmlb:form>
          <htmlb:inputField id            = "t1"
                            value         = "<%= value1  %>"
                            submitOnEnter = "X" />
          <%
            if value1 is not initial.
            data: text type string,
                  no type n value '1'.
             do value1 times.
             concatenate 'BUTTON' no into text.
          %>
          <htmlb:button id     = "<%= sy-tabix   %>"
                        text   = "<%= text  %>"
                        design = "small" />
          <%
            no = no + 1.
            enddo.
            endif.
          %>
        </htmlb:form>
      </htmlb:page>
    </htmlb:content>
    OninputProcessing
    DATA: event TYPE REF TO cl_htmlb_event,
          input TYPE REF TO cl_htmlb_inputfield.
    event = cl_htmlb_manager=>get_event( runtime->server->request ).
    input ?= cl_htmlb_manager=>get_data( request = runtime->server->request
                                             id = 't1'
                                             name = 'inputfield' ).
    IF input IS NOT INITIAL.
      value1 = input->value.
    ENDIF.
    and define page attribute value1 type n.
    I hope it helps you...

Maybe you are looking for