Show sum column item Report in another item TEXT ?

I have a report region to the query "select * from emp" and would like to display the sum of the salt field in another item using the TEXT APEX_APPLICATION.G_F01 rather than run the querie again without using a submit button, or whenever to have a page refresh the data are updated. This has to do?
Ps: My apologies for my English because I used google translate.

you need to use lookup column .
Try this 
http://blogs.sharepoint911.com/blogs/jennifer/Lists/Posts/Post.aspx?ID=53

Similar Messages

  • KE24 line item report  ( profitability line item report)

    Hi all,
    we need sub total sale order wise automatically in KE24 line item report  ( profitability line item report)  . How can i do for this .
    could you please help me.
    Regards,
    K.Satish
    [email protected]

    Hi,
    Please forward the same to my mail id:[email protected]
    Thanks in advance.
    Regards,
    Prasad

  • Create AP/AR line item report for parked items

    Dear all,
    Has anyone been able to create a line item report in AP or AR that includes parked items? I have created an aging report using standard 0SAPDUEAN-01 as a base, using report painter. Now the Finance department want to be able to see the numbers of the parked invoices as well but I am not able to find a way to pull these.
    Does anyone know if this is actually possible?
    many thanks

    Hi,
    by using of TCODE. FBV3 it is displaying parked documents
    based on document type.
    K.Satish

  • Show details from a Report in some items with OnMouseOver-Event

    Hi,
    I am partially successful.
    I have a report where I show LAST_NAME and FIRST_NAME. If I move with the mouse over the report I want so see some details (salary and job) in display-only-items under this report.
    Take a look in this screenshot:
    Screenshot
    This is working if the mouse is over the word of a last name, as example "King" Then I see the details for King. But I want to see also the details, if I am not exactly over the word "King", this have to work also for the whole row. How can I do this? Is there a event "OnMouseOverRow" for tables or like this?
    Here is the select for the report:
    select '<span onmouseover=details("' ||
              e.employee_id || '","' ||
              e.salary      || '","' ||
              e.job_id      || '");>' ||
              e.last_name || '</span>' as last_name,
           e.first_name
    from oehr_employees eAnd this is the JavaScript:
    function details(id, gehalt, job){
      html_GetElement('P1_JOB').value = job;
      $x('P1_JOB_DISPLAY').innerHTML = job;
      html_GetElement('P1_GEHALT').value = gehalt;
      $x('P1_GEHALT_DISPLAY').innerHTML = gehalt;
    }Regards,
    Mark
    Edited by: pinnom on Nov 24, 2011 1:56 PM

    bump
    Thanks.

  • Populate column in reports  like populates item in post query

    hi all
    i have a report that contains the occupation_id and factor_id and i would like to show occupation_description and factor description instead but i don't know how to do it ... i thought of placeholder column but i don't know how to procceed .. any explaination will be appreciated

    thank you very much ... you are right, but you know what i got used to Froms Forum and i have book marked because i always access it ... sure i post my question there ... by the way i have created another query but how to join them, it is been so long i didn't use the report builder, what i remember is draging and droping the factor_id from second to the first query but it doesn't work ...

  • Link a Column on a Report to another column on report on another page Drill

    I would like the user to click on a column value on a report which then should open another page and filter the report to show the related value which was clicked. Basically I would like to create a hyperlink between two reports as in Drill Down Report.
    Edited by: RahulnDeepti on Feb 17, 2010 3:24 PM

    Hi your question is about APEX (other forum)
    but you have to read this turtorial http://download.oracle.com/docs/cd/E14373_01/appdev.32/e13363/rprt_drill.htm#CIHGBADI

  • How to hide/show a column in reports 10g according to the parameter value

    Hi,
    I want to hide a column in the report according to the parameter value, is it possible?
    For example, there is a parameter called P_TYPE. I want to hide a column called 'BALANCE' if the P_TYPE=0.
    This column is not the last one in the table, so if it is hide then that empty space should be occupied by next column.
    Is it possible means please explain me how to do it?
    Thanks in advance,
    SAN

    Create a format trigger (for both the header and the column item) that returns False on you condition.
    Set the horizontal elasticity to Contract (for both the header and the column item).
    Sometimes Contract doesn't work. Try Variable in that case. This has the disadvantage that the field can also expand.

  • One item depending on another item

    Hi All!
    I have a problem in connecting two (select list with submit items) with each other, in order to display a report:
    First select list: select manager_name d, manager_name r
    from manager_list
    [the second item, also select list with submit should refer to the first item, and should show only the employees of the selected Manager_name in item one]
    Second select list: select employee d, (.?.) r
    from employee_list
    where (.?.)
    How do I relate these items with a where clause in the second item in the LOV?
    And what specific code do I have to add to the report's source ?
    Thx for your help!!!!
    Jan

    This is the way it looks like:
    this is the first item (manager table)
    select manager_name||', '||manager_first_name d, manager_name||', '||manager_first_name r
    from manager_liste order by manager_name
    and this is the second one (employee table)
    select ma_name||', '||ma_first_name d, manager_name||', '||manager_first_name r
    from ma_main
    where manager_id= :P11_Manager
    It still doesn't work...

  • Carl - Show Hide columns and report templates

    Carl,
    I've implemented the show/hide report column techniques from your demo pages. Thanks for that, it's working well.
    I am having a slight issue. I'm using theme12, and when I implement the technique there with the alternating row color template, the functionality works fine. But when I switch to standard report template I have some issues.
    Debugging the code :
    function html_HideCellColumn(pId){
    35 var l_Cell = html_GetElement(pId);
    36 var l_Table = html_CascadeUpTill(l_Cell,'TABLE');
    37 var l_Rows = l_Table.rows;
    38 l_CellI = getCellIndex(l_Cell.parentNode,l_Cell)
    39 for (var i=0;i<l_Rows.length;i++){
    40 html_HideElement(l_Rows.cells[l_CellI]);
    41 }
    42 return;
    the pId is what expect before line 35, but after, it looks like the html_GetElement is returning null.
    Is there something in the template that would cause this change? I am able to reproduce this behavior consistently. Thanks for any input.

    Hello,
    The table headers in the standard report template of that theme are missing the id attribute so changing this.
    &lt;th class="t12header" #ALIGNMENT# >#COLUMN_HEADER#&lt;/th>
    to
    &lt;th class="t12header" #ALIGNMENT# id="#COLUMN_HEADER_NAME#">#COLUMN_HEADER#&lt;/th>
    and your good to go.
    Carl

  • How to display value of an item based on another item

    Hi,
    In a page I've to display name for the corresponding id displayed in id item.Can I write a query based on id and display name as soon as I enter into that item.if so are there any properties I need to set ?I'm looking for just post_text_item functionality in forms?
    Thanks,
    Mahender

    Hi,
    I've created sample table with id,first_name and last_name to test:
    I've created AJAX script in application process area with name GET_NAME
    declare
    v_name varchar2(150);
    begin
    select first_name||'-'||last_name into v_name from names
    where id = :P53_id;
    htp.prn(v_name);
    exception when others then htp.prn('An error occurred retrieving name'||sqlerrm);
    end;
    CREATED JAVA SCRIPT IN html headers section of the page p53:
    <script type="text/javascript">
    function get_name(){
    var id = document.getElementById('P53_id').value;
    var get = new htmldb_Get(null,html_GetElement('pFlowId').value, 'APPLICATION_PROCESS=GET_NAME’,0);
    get.add('P53_id',id);
    var gReturn = get.get();
    document.getElementById('P53_name').value = gReturn;
    </script>
    put the following in HTML Form Element Attributes of p53_id :
    onchange="get_name(this,'P53_id)"
    It's not working ?
    Can anyone help
    Thanks
    Edited by: user518071 on Aug 14, 2009 8:14 AM
    Edited by: user518071 on Aug 14, 2009 11:04 AM
    Edited by: user518071 on Aug 15, 2009 5:02 AM

  • "Not linked to another item"    Error  show in   TestTools  formchecker

    Hi all ,
              I have a UDO form with a textBox . A link button added in this text box using Screenpaint .
              i have set  Linkto ="TextBoxUniqID"  , LinkedObject ="4"  in Link button property   and  set Alias ='Table    Columnname'        ,DataBound='true',TableName ='@abcd'  .link button work properly but error Textbox is  "Not linked to another item"  show   in   'B1TE Tools'  formchecker for the  TextBox.
    please any one help  why this error  show that TextBox not link to another item .
    thanks in advance
    surajit

    Hi
    I have pasted Your XML and for my appl 8.8.1 pl 08 this works Great.
    You have to chech if You dont have any event handling in Your addon that caused this error.
    <datasource type="9" size="20" uid="TST" />
       <item uid="LNK_itmmst" type="116" left="390" tab_order="0" width="10" top="400" height="9" visible="1" enabled="1" from_pane="0" to_pane="0" disp_desc="0" right_just="0" description="" linkto="ET_itmcd" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute/>
                  <specific linkedObject="4" LinkedObjectType="4"/>
                </item>
                   <item uid="ET_itmcd" type="16" left="400" tab_order="1" width="110" top="400" height="14" visible="1" enabled="1" from_pane="0" to_pane="0" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                    <AutoManagedAttribute/>
                    <specific TabOrder="1" ChooseFromListUID="">
                      <databind databound="1" table="" alias="TST"/>
                    </specific>
                  </item>
    Regards

  • Most Popular Items Report: items listed in report are not the document names or titles

    I have a document library that's loaded with typical corporate ppt, word, and pdf files.  When I run a Most Popular Items report on the library, the list of items displayed in the report are not the document file names or document titles. 
    Instead, the report is showing information that seems to pulled from within the content itself.
    For example, there's a new corporate ppt template in the document library and the Most Popular Items report shows the sharepoint url for the ppt file as being one of the most popular items.  Let's say that the file is named Standard_ppt_template.ppt. 
    The url for one of the most popular items reflects that in the URL.  However, the item is listed in the Most Popular Item as "Company Confidential".  The report seems to be pulling the words "Company Confidential" listed in the
    footer of the ppt template and showing that as the most popular content item. 
    Is there a reason or setting why the Most Popular Items report is not returning a list of items based on either the file name or the document title?
    Thanks in advance for any advice.

    Hi,
    According to your post, my understanding is that the PPT files items in the “Most Popular Items” report display these items’ names seem to be pulled from the PPT files’ content.
    Per my test, the Word, Excel, PDF, .txt, .png files items in the “Most Popular Items” report will display these items’ names based on the corresponding items’ title value if they have, or the corresponding file name if these items don’t have the title value.
    However, it’s by design that the PPT files items in the “Most Popular Items” report will display these items’ names only based on the beginning of these PPT files’ content rather than these files’ names and the corresponding items’ title value.
    Best Regards,
    Yumi Fu

  • Cannot float item next to another floated item...help needed...

    Hi everyone,
    I'm using DW CS4 and am somewhat in a snag. I am trying to line up an image, text and another image side by side.  I was successfully able to float the text to the right  of the image (by using float: left) and now I am trying to float another image left of the text.  However, when I attempt, the image does not move and the text expands out (I put the text in a DIV container and gave it a width of 800 px); my entire layout is 1280 pixexl.  So what I'm asking is, how can I float an item next to another item?  I've posted the code below.  All help is greatly appreciated.  Thank you!
    **I posted my entire CSS and highlighted the area I am having issues with.
    Website Dimensions:
    body {
              height: 1024px;
              width: 1280px;
              margin:0 auto;
              position:relative
    HTML:
      <!--Main Content Begin-->
      <div id="main_content">
      <!--Top Hat Photo Begin-->
      <div id="Top_Hat_Photo">
          <img src="Dee 201 Big Smile Fade Surgical.jpg" width="438" height="376" alt="Dee Lewis" /></div>
          <!--Top Hat Phote End-->
          <!--Quotes Begin-->
          <div id="Quotes">
          <h1> Main Content</h1>
          <p>&quot;From writer to filmmaker to actress and back again. DeAara Lewis comfortably wears the hats of three crafts.&quot;</p>
      <p> Pearl Washington </p>
        <p> Tri State Defender</p>
        <p> </p>
        </div>
        <!--Quotes End-->
        <!--TV Icon Begin-->
        <div id="TV_Icon">
      <img src="TPIMH TV.jpg" width="303" height="325" alt="The People Inside My Head Coming Soon!" /></div>
      <!--TV Icon End-->
    </div>
    <!--end "main content"-->
    CSS:
    #container #main_content {
    #container #Header #Dee_Title {
              padding-left: 50px;
              width: 600px;
              clear: both;
    #container #main_content #Top_Hat_Photo img {
              float: left;
    #container #main_content #Quotes {
              width: 800px;
              float: left;
    #footer {
              clear: both;
    #Header #Navigation_Menu ul {
              margin: 0px;
              padding: 0px;
              list-style:none;
    #Header #Navigation_Menu ul li {
              float: left;
              text-align: center;
    #Header #Navigation_Menu ul li a:link, #Header #Navigation_Menu ul li a:visited {
              padding:.2em .5em;
              display:block;
              font-family:Georgia, "Times New Roman", Times, serif;
              font-size:1em;
              font-weight:bold;
              color:#000;
              text-decoration:none;
              line-height:1.2em;
              margin-right:.5em
    #Header #Navigation_Menu ul li a:hover {
              color:#C90;
    #Header #Navigation_Menu ul li a.current, #Header #Navigation_Menu ul li a.current:hover, #Header #Navigation_Menu ul li a.current:active {
              color:#00F;
              cursor:default;

    Working with Floats & Margins:
    http://alt-web.com/DEMOS/3-CSS-boxes.shtml
    Captions with Floated Images
    http://alt-web.com/DEMOS/CSS2-Captions-on-floated-images.shtml
    Photo Layout
    http://alt-web.com/TEMPLATES/Dark-Grid-II.shtml
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/

  • How to change column heading in line item report

    Hello Experts,
    How to change the column heading in the line item report CJI4 or CJI3  ?
    for eg: The field WBS will show as Object in the heading. Here  I would like to change to WBS.
    Is there a way to do this without changing ABAP code
    FATMAN

    Not possible through standard I guess.
    Enhancement you should be looking is COOMEP01 which includes the component EXIT_SAPLKAEP_009
    i.e., Line Item Reports: Customer-specific Formatting of the Lists.You use this enhancement to modify column headings.
    Regards
    Sreenivas

  • Error: Show Details cannot be executed when multiple items are selected in a report filter field or in a slicer

    I have connected TABULAR Model to Excel, and in the pivot the filter is on multiple dimensions. When doing the drillthrough action it gives error - Error: Show Details cannot be executed when multiple items are selected in a report filter field or in a slicer
    Is there any workaround to this error?  so that drillthrough can be done even with multiple selection.

    Hi Vikas,
    The reason behind the error message requires the knowledge on what happens at the backend. When you perform a drill-through action, a query is sent to Analysis Services. This query is expressed in a query language called Multi-Dimensional Expression (MDX).
    Since the MDX language doesnot support drill-through command against a set (collection of tuples) an error is persisted. 
    For now, there is no workaround as it is a limitation of the underlying language that is generating the query.
    When multiple items are selected you lose the ability to drill-down on individual metrics. To resolve you must either:
    1. Select a single Item.
    2. Select all items.
    Hope this helps!
    Please mark as Answer if this helps! Thanks, Rajasekhar.

Maybe you are looking for