Reporting Doubt on Condition.

Hi ,
I have a doubt on applying condition on the summary level of the report:
Here is an example,
Claim No      Line of Business        Claim Count       Payment       Reserve 
     1                  Creditor                       1                     10                110
     2                  Property                      1                     10                200
     3                  Property                      1                     20                150
     4                  Creditor                       1                     15                  50
Now, I have applied a condition on RESERVE amount where Reserve>100; so the report should show me 2 rows Claims No 2 & 3. But I dont want to apply the condition at claim number level. So assume I pput the CLAIM NUMBER in the free charecteristics box.
My desired output is:
Line of Business    claim count      Payment        Reserve
       Property                    2                 30                350
But when  I am not using claim numebr I ma not getting this out put, can you please tell me what all changes I need to do make this happen.
Regards,
Kironmoy Banerjee.

Select the condition
goto characteristics assignment tab
select individual chars option
select Line of Business radio option and try executing the query once .

Similar Messages

  • Report for freight condition records

    Dear Freinds
    In my transportation module project, requirement is report for freight condition records.
    We have been created two tables in one access sequence, two tables are: 1. route/ship-to-party 2. route
    They maintained more condition records. They want to see all vondition records in one single report.
    Report based on those two tables. But those two tables are storing in KOMG Structure.
    But price is storing in KONP table. How to fetch both in to repor.
    With regards
    Lakki

    Let us say the condition tables are 001 and 002
    Now you need to go to database tables A001 and A002 in SE16
    Give the name of your condition type for which you want to get all the condition records
    Execute now.
    Now you will get all the condition records for the condition type created for the table say A001
    Hope this solves your problem. You can reward if this helps.

  • BAM Alerts - When a data field in a report meets specified conditions

    Hi ,
        Please find the below mentioned issue , which I am facing at the time of creating BAM alerts.
      I have created a data object, when i am creating the bam alert  [ create new alert --> create rule --> when i select an even " When a data field in a report meets specified conditions" and "When a data field in a data object meets specified conditions" then below in rule expression I am unable to edit the expression of  "this data fields has a specified condition of x".]
                          Appreciate your quick response.
    VAMSI.P

    Hi,
    I am having the same issue, and I am on IE9.  When I was on IE8 I had no problems.  Are you also on IE9
    Thanks
    Judy

  • Standard report for pricing condition.

    Hello everyone,
    Is there any standard report to see the price maintain in particular condition record in VK11 with different key combination. can anybody tell me in which table it is maintain.
    Regards,
    Naveed Ansari.

    Hi
    The Standard report for Pricing condition is V/LD.
    You can get datas like Material prices, Individual prices, discounts & surcharge prices, Material list/Material pricing Group with & without scal display, Price list types with & without scale display.
    V/LB   SAPMV14A       Change Pricing Report
    V/LC   SAPMV14A       Display Pricing Report
    V/LD   SAPMV14A       Execute pricing report
    V/LE   RV14ALLE       Generate pricing reports
    Award if useful to you
    Thank you
    Edited by: narendran vajravelu on Oct 14, 2008 7:23 AM
    Edited by: narendran vajravelu on Oct 14, 2008 7:25 AM

  • Can i get a report using join conditions

    please provide me some sample reports using join conditions.
    thanks

    Hi,
    You may use the sample code:
    PARAMETERS: p_cityfr TYPE spfli-cityfrom,
                p_cityto TYPE spfli-cityto.
    DATA: BEGIN OF wa,
             fldate TYPE sflight-fldate,
             carrname TYPE scarr-carrname,
             connid   TYPE spfli-connid,
           END OF wa.
    DATA itab LIKE SORTED TABLE OF wa
                   WITH UNIQUE KEY fldate carrname connid.
    SELECT ccarrname pconnid f~fldate
           INTO CORRESPONDING FIELDS OF TABLE itab
           FROM ( ( scarr AS c
             INNER JOIN spfli AS p ON pcarrid   = ccarrid
                                  AND p~cityfrom = p_cityfr
                                  AND p~cityto   = p_cityto )
             INNER JOIN sflight AS f ON fcarrid = pcarrid
                                    AND fconnid = pconnid ).
    LOOP AT itab INTO wa.
      WRITE: / wa-fldate, wa-carrname, wa-connid.
    ENDLOOP.
    Regards,
    Renjith Michael.

  • In ALV report doubt

    Hi Expart,
    In ALV report ,what is the work of
    1) REUSE_ALV_VARIANT_DEFAULT_GET function module
    2) SLIS_LAYOUT_ALV
    Regards
    Bhabani

    Hi,
    1.SELECTING THE VARIANTS FOR INITIAL LIST DISPLAY (DEFAULT VARIANT)
    The variants in the list display can be both user-specific and general. The user can programmatically set the initial (default) variant for list display.
    The default variant can be found using the function module 'REUSE_ALV_VARIANT_DEFAULT_GET'.
    Sample code:
    CALL FUNCTION 'REUSE_ALV_VARIANT_DEFAULT_GET'
           EXPORTING
                i_save     = variant save condition ( A=all, U = user-specific )
           CHANGING
                cs_variant = internal table containing the program name (and the default variant---optional )
           EXCEPTIONS
                not_found  = 2.
    2.A layout is build for the report output list description USING the internal table declared above (I_LAYOUT).
    Output list description structure.
         The parameters are described under the following heads:
    •     Display options
    •     Exceptions
    •     Totals
    •     Interaction
    •     Detail screen
    •     Display variants (only for hierarchical-sequential lists)
    •     Color
    •     Other
    The layout table is of type slis_layout_alv_spec and has the following fields:
    Reward,if useful.
    Thanks,
    Chandu

  • Interactive Report Performance With Conditional Link

    Apex 3.2
    I have a interactive report.
    The underlying sql would return 127000 rows
    The sql is
    select
      lde.ods_system,
      lde.ldekey,
      msg.sendersystem, 
      msg.messagetype,
      msg.messageversion,
      msg.msgseqnumber,
      msg.alternatekey,
      msg.crudmarker,
      msg.clrbookdate,
      msg.clrbookresult,
      lower('udf_'||msg.messagetype) button,
      lde.ldekey||'.'||msg.alternatekey||'.'||msg.msgseqnumber udm_key
    from
      clr_esbmessageheader msg,
      clr_adm_systemmessage adm,
      udm_lde lde
    where
      adm.ldeid = lde.ldeid and
      msg.sendersystem = adm.system and
      msg.messagetype = adm.messagetype and
      msg.messageversion = adm.messageversion and
      msg.receiversystem = 'SCIPS'
    order by msg.clrbookdate desc
    This report only takes 1 second to display.
    I need to add a conditional link to another page, so I used
    case
    when lower('udf_'||msg.messagetype) = 'udf_distreceipt' then
    '<a class="type" href="' || apex_util.prepare_url('f?p='||:APP_ID||':52:'||:APP_SESSION||'::'||:DEBUG||':RIR'||':IR_MSG_KEY,P52_PG:'|| lde.ldekey||'.'|| msg.alternatekey ||'.'|| msg.msgseqnumber ||','|| 50, null, 'SESSION') || '"title="Go to udf_distreceipt Report">udf_distreceipt</a>'
    else 'no link' end table_link
    The sql seems to be ok, because the report accepted it, but selecting the new column and saving the report takes forever (over 2 mins)
    Now the report takes over 2 minutes to run and I still need to add more conditions.
    Have I coded the link incorrectly ?
    Gus

    Hi Gus,
    Are you wanting to put the link in the query for a specific reason?
    I had to do a similar thing in the past and just completed the column link section for the column.
    Why not just have the following in the query:
    case
    when lower('udf_'||msg.messagetype) = 'udf_distreceipt' then
    udf_distreceipt
    else null END table_link
    Then do the linking using column link section:
    You would specify your link text as #TABLE_LINK# which should then be conditionally displayed due to the case statement, then add in all the page item and values to pass across using a normal link column.
    Thanks
    Paul

  • Report generation toolkit conditional format - how to?

    Hi
    We are using the Report generation toolkit (2010 version), and have a question regarding this tool.
    I see functions for setting the number format, but not a conditional format. Does this not exist?
    http://zone.ni.com/reference/en-XX/help/372120A-01/lvoffice/excel_set_cell_format/
    This page refers to an example which from the name sets a conditional format. However as I understand it, this example is setting a custom number, not a conditional format.

    Hi,
    the simplest way to do this I guess you can provide a template for your Excel sheet, where you can set the conditional format there.
    From LabVIEW you can just send the values into this sheet-template.
    Maybe you can try these if you want
    http://forums.ni.com/t5/LabVIEW/Using-conditional-formatting-in-excel-through-LabVIEW-activeX/td-p/1...
    http://forums.ni.com/t5/LabVIEW/Excel-Colour-properties-modified-via-LabVIEW/m-p/573748?query.id=218...
    Regards,
    Yan.

  • Checkbox in alv report-doubt

    hi all
        can anybody tell me the coding lines for
    1)when checking a check box 'test run' in selection-screen,
    a particular output field(for eg.,itab_final-WBS1) has to be updated in standard table(e.g,CATSDB-WBS)  ,if not checked,it should not be updated,just the user has to view the report
    thanks in advance
    Moderator Message: Please do your on work. If you get stuck after putting some effort from your side, then ask a specific question here.
    Edited by: kishan P on Apr 7, 2011 10:30 AM

    Hi,
    1.SELECTING THE VARIANTS FOR INITIAL LIST DISPLAY (DEFAULT VARIANT)
    The variants in the list display can be both user-specific and general. The user can programmatically set the initial (default) variant for list display.
    The default variant can be found using the function module 'REUSE_ALV_VARIANT_DEFAULT_GET'.
    Sample code:
    CALL FUNCTION 'REUSE_ALV_VARIANT_DEFAULT_GET'
           EXPORTING
                i_save     = variant save condition ( A=all, U = user-specific )
           CHANGING
                cs_variant = internal table containing the program name (and the default variant---optional )
           EXCEPTIONS
                not_found  = 2.
    2.A layout is build for the report output list description USING the internal table declared above (I_LAYOUT).
    Output list description structure.
         The parameters are described under the following heads:
    •     Display options
    •     Exceptions
    •     Totals
    •     Interaction
    •     Detail screen
    •     Display variants (only for hierarchical-sequential lists)
    •     Color
    •     Other
    The layout table is of type slis_layout_alv_spec and has the following fields:
    Reward,if useful.
    Thanks,
    Chandu

  • Report for Customer Condition Records

    Hello ABAPers,
    I want to write ABAP report to list out Material,Customer,Tax type and Tax amount. The data is available in tables A005 and KONP and the joining condition would be A005-KNUMH and KONP-KNUMH.
    But since A005 s a Pooled table am not able to write a correct join condition.
    Can any one guide me on how we can write this join condition?
    I tried with FOR ALL ENTRIES IN TABLE but the output was not reading the value of Amount(KONP-KBETR).The amount is coming as zero always.
    The code i'm using is:
        SELECT MATNR KUNNR VKORG VTWEG KSCHL KNUMH INTO TABLE ITAB_JEXP FROM A005 WHERE KSCHL = 'JEXP'.
    IF NOT ITAB_JEXP IS INITIAL.
        SELECT  KNUMH KOPOS KSCHL KBETR  INTO TABLE ITAB FROM KONP FOR ALL ENTRIES IN ITAB_JEXP
                WHERE KNUMH = ITAB_JEXP-KNUMH AND KSCHL = ITAB_JEXP-KSCHL.
      APPEND ITAB.
    ENDIF.
    LOOP AT ITAB_JEXP.
    MOVE-CORRESPONDING ITAB_JEXP TO ITAB.
    APPEND ITAB.
    ENDLOOP.
    Thanks,
    B P Shah
    Message was edited by:
            Bhavin P Shah

    Hi,
       Use FOR ALL ENTRIES  for that joins are not allowed on cluster n pooled tables
    refere these
        LOOP AT it_kjmseg INTO wa_kjmseg.
          lv_index = sy-tabix.
    *--Select condition record number from table A006
          SELECT SINGLE
                 knumh
                 FROM a006
                 INTO lv_knumh
                 WHERE kappl EQ 'V'
                 AND   kschl EQ 'ZR00'
                 AND   vkorg EQ '0010'
                 AND   vtweg EQ '00'
                 AND   pltyp EQ '01'
                 AND   waerk EQ 'USD'
                 AND   matnr EQ wa_kjmseg-matnr
                 AND   datbi GT wa_kjmseg-fkdat.
          IF sy-subrc NE 0.
    *--Select condition record number from table A004
            SELECT SINGLE
                   knumh
                   FROM a004
                   INTO lv_knumh
                   WHERE kappl EQ 'V'
                   AND   kschl EQ 'ZR00'
                   AND   vkorg EQ '0010'
                   AND   vtweg EQ '00'
                   AND   matnr EQ wa_kjmseg-matnr
                   AND   datbi GT wa_kjmseg-fkdat.
          ENDIF.
    Regards,
    Prashant

  • Discoverer Report - Not In condition

    Hi,
    I am somewhat new to Discoverer but pretty computer savvy. The problem I am having revolves around the inability to display employees who do not have a certain “competency” associated with their training records.
    For example I will set a condition in Discoverer that states: competency_level Not In WHMIS.
    What this will do is return all the competencies that not equal WHMIS, such as First Aid, CPR ect. Really what I want is for the report to display a listing of employee who do not have the associated competency.
    Here is the SQL statement that is generated:
    SELECT O100713.CANDIDATE_CODE, O100713.FIRST_NAME, O100713.LAST_NAME, O100610.LEVEL_CODE
    FROM P2K.P2K_CP_COMPETENCE_LEVELS O100610, P2K.P2K_CP_COMPETENCE_USAGES O100611, P2K.P2K_RE_CANDIDATES O100713
    WHERE ( ( O100610.ID = O100611.CCCL_ID ) AND ( O100713.ID = O100611.RCA_ID ) ) AND ( O100610.LEVEL_CODE NOT IN (( 'WHMIS-ORIENTAT' )) )
    I believe that my problem is in the WHERE clause ( O100610.ID = O100611.CCCL_ID ). I believe that I need to remove this from the statement but I am unable to do so.
    Any help would be greatly appreciated.
    Chris

    Chris,
    Bit of a pain this one. The report is probably doing literally what you are asking for. What I reckon you really need is a subquery first to identify all the employees without this particular value and then use these employee numbers withing the main body of your query to restrict to who you want and bring back the associated training records.
    Discoverer whilst having the ability to do sub queries, I have found to be a bit hit and miss depending on the volume of data that you are trying to pull back. Personally I'd try to build a custom view to handle such or if it's a one of then just use Toad or whatever and run the sql.
    Scott

  • AJAX Report Refresh  a_report- Condition for display not being validated

    Hi ,
    I have a report which has the following condition for dispaly:
    Exists(SQL query returs atleast one row) - SELECT * from temp1The query for the report is : select * from temp1 Now I have a button on the page and on click of the button I call the below Javascript :
    function f_insert_Temp_table(pTrans){
          var l_Return = null;
          var get = new htmldb_Get(null,$x('pFlowId').value,
                  'APPLICATION_PROCESS=temp_table_insert',206);       // ODP to insert into temp1
          get.add('TRANS_ID_ITEM',pTrans);
          gReturn = get.get('');
         //alert(gReturn);
         //$x_Show('6342610690289435');
         $a_report('6342610690289435','1','15','15');
    }Everything executes fine and the report refreshes the rows but the condition used for display doesn't get checked when I call $a_report() ...
    I can see the ODP execute successfully and row gets inserted into temp1 which means report condition is satisfied .
    If I remove the condition for the report, I can see the report getting refreshed and showing new rows through the $a_Report() call.
    Is there something that needs to be added to the script or $a_report call to validate the condition too ?Is there a way I can validate the region condition too ?
    Appreciate any suggestions/pointers here. I really do not want to refresh the whole page.
    Thanks,
    Dippy
    Edited by: Dippy on Feb 5, 2010 11:05 AM

    Hi Flavio,
    Thanks for your support.I figured where I was going completely wrong.
    Its just that when the page loads for the first time the temp table is empty and hence the report is not being displayed which simply
    means that the report id Im passing into the a_report function is not rendered on the page. Hence no matter what the temp table contains the report id is absent from the page.
    I fixed it as follows :
    Remove the condition for the report.
    Added and item and computed(P_Compute) its value using select count(*) from temp.
    Added an onload JS function which does a $x_Show('Report_Region') if P_Compute > 0 or $x_Hide('Report_Region') if P_Compute <0 .
    Now in my JS function which has an AJAX call to an ODP does an $x_Show('Report_Region').
    Flavioc : the query for my report is simple
    select * from tempIt finally dawned upon me that I'm trying to catch hold of an ID that's not rendered.
    So one issue is solved now the other part would be figuring out how to make $a_report work with pagination etc .

  • Report for PO conditions

    Hi All
    Is there any report where I can get conditions and each condition amount against each PO.
    Regards
    Satish Kumar

    Dear,
    There is no such kind of report available in SAP.  You can develope report with your technical consultant help.
    if you want to fetch data directly from table there there are two table which are useful in your case..
    EKKO : Header condition
    KONV: Conditions (Transaction Data)
    Since KONV is Cluster table you can't make join Hence in this SAP Query can't be utilised.
    Regards,
    Rajesh koladiya

  • How to not print a page of a report under a condition

    Hi,
    I need to build a report with a specific layoutdepending on a user paramater.
    Ex:
    If parameter value is 1, then display the layout of the first page of the report
    If parameter value is p_layout2, then display the layout of the second page of the report
    If parameter value is p_layout3, then display the layout of the third page of the report
    If parameter value is p_layout4, then display the layout of the fourth page of the report
    So I built a report, putting on page 1 the first layout, page 2 the second etc.
    I put each layout into a frame, with FormatTrigger as of: IF :paramater IS 'p_layoutx' THEN TRUE ELSE FALSE.
    The output prints only the frame needed (the one attached to the value passed by the parameter) BUT prints blank pages for all others (the 3 remaining ones).
    So, how would I do to make the report NOT to print these blank pages, having only one page printing, the one that matches the condition?
    Thank you in advance.

    I found a way to achieve my goal: Instead of creating a frame with formattrigger for each of my layouts and inserting in it all my objects (text fields and graphics), I don't create any frame, put all my objects on the desired pages and put the formattrigger conditions on these objects with vertical elasticity for all of them. When not the condition is not met, then all objects are shrinked. It is weird that the behavior is not the same with a frame (the frame with vertical elasticity should "shrink" itself; or maybe I missed something).

  • Condition report in PO condition tab

    Dear SAP Gurus,
    Kindly let me know, is there any report/Tcode in SAP wherein which we can find the condition mentioned in the Purchase orders of condition tab.
    Kindly revert back.
    Regards,
    Prashanth Pai

    Hi There
    Check T Codes- MEKA and MEK3
    Thanks
    Senthil

Maybe you are looking for

  • My Test pilot icon at the bottom of the window is gone! how do i get it back

    An annoying message keept poping up, somthing with JavaScript so i went into safe mode and that fixed it. Then when a new test pilote study appeared it fist came out of the tools tool bar then it went to the right of the search bar in a distorted tes

  • V.V.Urgent(PF Status)

    I need to put some fields in the menu bar. I got a T.code Z123. If i executed it goes onto report screen 1000 and then calls Screen painter 100. I need to put some  menu foelds in the Report screen. I am sending the code to. where to write PF status

  • Premiere Elements 9 Watched Folders

    Bottom Line: Based on working with the Premiere Elements 9 trial version, it appears that you do not need Photoshop Elements 9 installed on the same computer as Premiere Elements 9 in order to be able to use the Watched Folder feature in Premiere Ele

  • Captivate 6 files open with 'fatal error' message.

    I was working on Captivate files fine yesterday, but when I open the files today I'm having trouble. The first problem is the initial screen won't close (the one that allows you to access recent files or create new files). Then the .cptx file that is

  • Missing Character Types at iWork08

    Iv a relative new MB Pro (app. 6 weeks) and the brand new iWork08. When I started iWork the Mac gives following error: "Missing character type: Copperplate", Missing caracter type: BlackmoorLetPlain". I am wondering, because the Apple out of the box