How to enable repetitive values in report.

hi,
I dont want to supress values in my report. my report is being displayed  in following way.
plant     price
1000     200
blank    300
blank    400
2000     500
blank    600.
But i want to display the report in following way. I want plant (characteristic)value to be displayed in every row instead of one time in first occurence.
plant     price
1000     200
1000     300
1000     400
2000     500
2000     600.
Is this possible in BW 3.5?
Thank you in advance.

thank you very much for your reply. But here plant is not a key figure. I have unchecked 'hide repeated key values' option. but I did not get the required result.
I want the plant values (char) to be displayed in each row. As of now, plant values are being displayed only one time (only first occurance).
pls reply. points assigned.

Similar Messages

  • How to enable net value in sap crm opportunity

    hello all ,
    how to enable net value in sap crm opportunity and item category.
    please help me out i am new in sap crm
    Ahmad

    Hi Ali,
    Every transaction which you create have some predefined rule in the form of procedure which is attached in the transaction level. You can follow below path and check for the transaction which are the rule maintained.
    CRM->Basic setting-> Define transaction types.
    Search for your transaction type and double link in order to see all the rules attached to transaction level.
    You also need to define which item categories you wanted to configure for particular transaction type which you all ready have done it seems.
    You also need to define pricing procedure to the transaction where you need to checked for errors.
    Below is the path
    CRM->Basic setting-> Define transaction type-> open your transaction
    step 2:click on assignment of business transaction categories than select category as Sales
    than click on  Customizing Header option to see attached pricing procedure with it.here you need to check for your error.
    to check partner determination rule please follow below path in SPRO. -> partner determination procedure
    Check in head of transaction which partner procedure is attached.
    Than search for partner determination procedure in below path.
    I hope this will help you to validate the setting for your transaction and will be helpful to solve your issue.
    Thanks,
    Prem

  • How to get parameter value from report in event of value-request?

    Hi everyone,
    The customer want to use particular F4 help on report, but some input value before press enter key are not used in event of "at selection-screen on value-request for xxx", How to get parameter value in this event?
    many thanks!
    Jack

    You probably want to look at function module DYNP_VALUES_READ to allow you to read the values of the other screen fields during the F4 event... below is a simple demo of this - when you press F4 the value from the p_field is read and returned in the p_desc field.
    Jonathan
    report zlocal_jc_sdn_f4_value_read.
    parameters:
      p_field(10)           type c obligatory,  "field with F4
      p_desc(40)            type c lower case.
    at selection-screen output.
      perform lock_p_desc_field.
    at selection-screen on value-request for p_field.
      perform f4_field.
    *&      Form  f4_field
    form f4_field.
    *" Quick demo custom pick list...
      data:
        l_desc             like p_desc,
        l_dyname           like d020s-prog,
        l_dynumb           like d020s-dnum,
        ls_dynpfields      like dynpread,
        lt_dynpfields      like dynpread occurs 10.
      l_dynumb = sy-dynnr.
      l_dyname = sy-repid.
    *" Read screen value of P_FIELD
      ls_dynpfields-fieldname  = 'P_FIELD'.
      append ls_dynpfields to lt_dynpfields.
      call function 'DYNP_VALUES_READ'
        exporting
          dyname     = l_dyname
          dynumb     = l_dynumb
        tables
          dynpfields = lt_dynpfields
        exceptions
          others     = 1.
      check sy-subrc is initial.
    *" See what user typed in P_FIELD:
      read table lt_dynpfields into ls_dynpfields
        with key fieldname = 'P_FIELD'.
    *" normally you would then build your own search list
    *" based on value of P_FIELD and call F4IF_INT_TABLE_VALUE_REQUEST
    *" but this is just a demo of writing back to the screen...
    *" so just put the value from p_field into P_DESC plus some text...
      concatenate 'This is a description for' ls_dynpfields-fieldvalue
        into l_desc separated by space.
    *" Pop a variable value back into screen
      clear: ls_dynpfields.
      ls_dynpfields-fieldname  = 'P_DESC'.
      ls_dynpfields-fieldvalue = l_desc.
      append ls_dynpfields to lt_dynpfields.
      call function 'DYNP_VALUES_UPDATE'
        exporting
          dyname     = l_dyname
          dynumb     = l_dynumb
        tables
          dynpfields = lt_dynpfields
        exceptions
          others     = 0.
    endform.                                                    "f4_field
    *&      Form  lock_p_desc_field
    form lock_p_desc_field.
    *" Make P_DESC into a display field
      loop at screen.
        if screen-name = 'P_DESC'.
          screen-input = '0'.
          modify screen.
          exit.
        endif.
      endloop.
    endform.                    "lock_p_desc_field

  • How to enable detail view interactive report as default for public user?

    Hello all,
    I'm currently developing a search results page.
    I'm trying to do a nice view instead of a default table like view from the interactive reports. So in this case i enabled the detail view so i could make fancy designs.
    all worked well and looked neat but however when i pass value from my search page using IR_ROWFILTER and clear the results page using page_no,RIR, it brings me to the interactive reports result page with the default table like view.
    i have to press the detail view to get it. i tried saving it as default but it wont work. this issue is for public user.
    if i make the page requires authentication, and save the detail view as default i would not have any problem. i could search and it will straightly bring to the detail view of the search page.
    of course the other reason i found is because im using the IR_ROWFILTER and clearing page using page_no,RIR..without it,it works well but i need it coz im doing a a search result. i need to send search text from another page and put it in the filter in the search page. i would need to use RIR to clear it for searching again.
    is this a limitation for public user? it doesnt happened for authenticated user though..
    how can i make this view as default for public user?

    T101_cyberdyne wrote:
    how can i make this view as default for public user?
    Flip the report into Detail view on page load using an Page Load dynamic action with the following Execute JavaScript Code true action:
    gReport.data.view('DETAIL');
    I'm trying to do a nice view instead of a default table like view from the interactive reports. So in this case i enabled the detail view so i could make fancy designs.
    Do you really need this to be an IR? Other than the detail layout, do you require any of the interactive features? If not, try using a standard report with a custom report template.

  • How to get negative values in Report?

    Hi,
    i have to do 1 FI report in that if it's debited value have to come negative. How can i do the same?

    see this example
    IF ittaxdet-shkzg = 'H'.
                     itsumtax-add_tax  = ittaxdet-hwste * -1.
                   else.
                       itsumtax-add_tax = ittaxdet-hwste.
                   ENDIF.

  • How to display customize values in report?

    I need to be able to show certain customize values in a report portlet. Preferably just above the table of results. How do I do that?
    Grateful for any help...
    Bryan

    Hi Bryan,
    If customized values means the parameters of the dynamic report you can do the following:
    <ORACLE>
    Declare
    v_deptno number :=(:deptno); /* :empno is the bind variable*/
    Begin
    htp.p('<table border=1>');
    htp.p('<tr>');
    htp.p('<td>');
    htp.p('<FONT face="Times New Roman" color=#000080 size=+1>');
    htp.p(v_deptno);
    htp.p('</FONT>');
    htp.p('</td>');
    htp.p('</tr>');
    htp.p('</table>');
    htp.p('<BR>');
    htp.p('<table BORDER=1 WIDTH=100%>');
    htp.p('<tr>');
    htp.p('<td nowrap bgcolor=#6666CC align=left><FONT face="Times New Roman" color=white><B><U>Last Name</U></B></FONT></td>');
    htp.p('<td nowrap bgcolor=#6666CC align=left><FONT face="Times New Roman" color=white><B><U>First Name</U></B></FONT></td>');
    FOR c IN (SELECT lastname, firstname from emp where deptno = v_deptno) LOOP
    htp.p('</tr>');
    htp.p('<td nowrap align=left>');
    htp.p('<FONT face="Times New Roman" color=#000080 size=-1>');
    htp.p(c.lastname);
    htp.p('</FONT>');
    htp.p('</td>');
    htp.p('<td nowrap align=left>');
    htp.p('<FONT face="Times New Roman" color=#000080 size=-1>');
    htp.p(c.firstname);
    htp.p('</FONT>');
    htp.p('</td>');
    htp.p('</tr>');
    END LOOP;
    htp.p('</table>');
    END;
    </oracle>

  • How to include #/Blank Value in Report

    Hi,
    Our cube is loaded with Flat file,The cude didn't had any master data only transaction data.The records are based on user name in flat file there some records with out user name in flatfile with BLANK which is #
    The data is loading into cube where blank is loaded as balk spack
    but in report i want to restrict the user name to exclude the bank (User Name) Records with out user name...But the # is not appearing in the user name list in Bex to restrict...how can i include the #
    Thanks

    Krishna,
    In the report you want to exclude the data where username is #. Correct? And when you try to do that in the Query Designer, you don't see the # value in the list?
    In the list if you dont see it, simplest way is this... There is a search box at the bottom of that screen. In that type #. Dont hit search. Click on the left arrow which moves the values to the right. Now right click on the value and say "Exclude from Selection".
    Let me know if I understood your question correctly and if you can get it to work.
    Gova

  • How can i display Value in Report which i select from Multiple select list

    Dear All,
    i am using multiple select List in form with report page.
    When i create new Entry with select Multiple value in Multiple Select List then in report Value display me in below format
    my SQL Query are
    select NAME D, CODE R from  COUNTRY_MAS WHERE ACTIVE_FLG ='Y' order by NAME
    AS:AI:AG:AM these are return value .i want to display NAME in report .
    How can i do this ?
    Thanks
    Edited by: Vedant on Apr 25, 2012 11:14 PM

    Short answer, use the apex_util.string_to_table to convert to a table; then you can either iterate through the table to generate a string of names, or accomplish the same with a bulk operation.
    http://docs.oracle.com/cd/E23903_01/doc/doc.41/e21676/apex_util.htm#CHDFEEJD
    Encapsulate all this within a pl/sql function.

  • How to restrict  redundant value in report while using left outer urgent

    Hi frineds
          i am developing pp report,
    i am using the select query,
      the output instead of one i ,got two for every one
    ex reason badm-- onlyone
    but igives badm
                    badm
      SELECT FMATNR FAUFNR FPSMNG GXMNGA GPERNR GBUDAT GGRUND GVORNR  GAUFPL  GIEDD H~GRDTX INTO CORRESPONDING FIELDS OF TABLE IT_AFPO_IDEL
             FROM AFPO AS F
             INNER JOIN AFRU AS G ON FAUFNR = GAUFNR
            INNER JOIN TRUGT AS H ON GGRUND = HGRUND
             LEFT OUTER  JOIN TRUGT AS H ON GGRUND = HGRUND
             WHERE F~MATNR IN S_MATNR AND
                   F~AUFNR IN S_AUFNR   AND
                  G~ISDD IN S_ISDD AND
                   G~IEDD IN S_IEDD AND
                   G~WERKS IN S_WERKS AND
                   G~XMNGA <> 0 .
    how can i restrict ,give me solution ,very urgent
    Thanks in advance
    Regards
    ds

    Hi Chandran,
                I got that Idea too. I created a authorized customer, I created a authorized Object and assigned to a role.But in the role, when I am changing the object to generate profile, it is asking to select list of customers from the customer table.If the customers are always constant then this would work,  but in my scenario, customers for the sales rep changes over time and when I ever reps open the query, they should see updated list of customers assigned to them only, as we update the master data everyday from source system and that shud reflect in the value help.
    I am trying User Exit to achieve this, but I am not getting proper ideas how to do this.
    Any Help on this issue with user exit code???
    Thanks in Advance
    regards,
    PNK

  • How to show paramerts value on Report

    Hello,
    I have created 4 parameters and added the parameters into the Report>Selection Formula>Record and tested the report which is working with no problem.
    How I can print the parameters the users selected on the report? I would like the parameters values selected to print on one of thage page headers selected.
    I have the following parameters:
    ShcheduleNo
    FromItem_ToItem
    FromLocation_ToLocation
    FromDate_ToDate
    FromItem_ToItem, FromLocation_ToLocation, and FromDate_ToDate parameters are setup as Dynamic, and change the value option for range to "true".
    I am using Crystal Reports 12.0.0.683.
    Thanks,
    J
    Edited by: J K on Dec 3, 2008 6:17 PM

    I did that but they don't appear.
    The user will get a prompt to make the following selection
    Schedule Number - A drop down list showing available schedules
    Item Number - This allows from item to item selection.
    Location - THis allows from location to location selection.
    Date - This allows from date to date selection.
    Thanks,
    J

  • How to change the values in report level..

    Hi All,
    I have country dimenssion column in this column haveing more then 500 values.in this I filter 6 countries.
    country names like this
    1.BankUSAgroup-BUG
    2.BankUKGroup-BUG
    3.BankAfricaGroup-BAG
    Like This I want Change this values to USA,UK,Africa.
    Any Help.......
    Thank You,
    Edited by: 958741 on Nov 6, 2012 7:07 AM

    If it's only 6 values you need to change (and not the 500!!) you could use a case statement in the report column formula.
    An example of the syntax is:
    CASE ("GL Calendar"."Fiscal Period Number")
    WHEN 1 THEN 'January'
    WHEN 2 THEN 'February'
    ELSE 'Other'
    END
    So here I'm taking the period number and converting into a period name so you can use the syntax and substitute into this your column and values.
    If its 500 values you might need a more technical solution (e.g. add another column to the dimension and change the ETL to populate this, or have a static lookup table you can use)
    Please mark if helpful or answered
    Thanks

  • Group by - How to merge repeated values in reports?

    Hello,
    I am trying to build a report in OBIEE 10g using sum (AmountSold by CalendarYear) in one of the columns. The result is this:
    [http://postimage.org/image/2gvvw8qv8/]
    What I really need is to "merge" together the repeated columns by year, so it looks like the following:
    [http://postimage.org/image/9bp1gskk/]
    Is there a way to achieve this? Thank you!
    João Vitor Moreira

    Hi,
    sum(amount_sold) -> Column properties-> column format->select suppress or default under value suppression
    if default is selected then try to exchange the columns Sum(Amount_SOLD) and Amount_SOLD
    Cheers,
    Aravind

  • How to enable negative values allowed in depreciation area?

    < MODERATOR:  Message locked.  Please post this message in the [Asset Accounting forum|SAP ERP Financials  - Asset Accounting;. >
    hello,
    i'm trying to make negative vals allowed in AS02 -> depreciation area , but this element is desabled, how to anable it ?
    thanks

    Hi,
    Check OABN transaction and change the settings to the dep. area.
    Regards,
    Eli

  • Stock value and report

    Hi,
    how determing <b>stock value with reports</b>?
    Best regards

    Hi,
    There are quite a few standard reports which will give you the stock value report, you can try
    MC.1 to MC.9 (gives you various stock value analysis reports), MMBE, MB5W etc.
    Alternatively you can extract this data from MARD table.
    If you are looking for a specific report, please let us know the same & we can be more precise in the output.
    Hope i was able help you on this issue.
    Regards,
    Vivek

  • How to get the value entered in input enabled field of a list output?

    Hi all,
    I am developing a program to display  list with two input enabled fields . After users enetered the values into these fields I need to do some calculations based on these values and modify the value of another field in the list.
    But i couldn't have an idea how to read the values after users enter into these fields.
    Please help me on solving this problem?  If possible please provide the sample code.
    Thanks,
    Aravind.

    You can enable disable screen fields in at selection screen output event.
    And by using loop at screen.
    And for changing the values you can do in initialization event.
    I Hope you are doing these in Reports.

Maybe you are looking for

  • Error message on the new iOS 4.3.5 update (err= -3259).

    Ive tried to update my 3G Ipod Touch with the new iOS 4.3.5, but when the download is on the last 0.1 MB it says ive lost connection, when I havent. Everytime it stops working I get a error message (err= -3259). How can I fix this without taking down

  • Problems detecting if the Producer is authenticated without sending a message

    Hello friends, I have a flex-blazeds apllication for which authentication is done based on session level and not at client level (e.g. when user opens another tab is should be allready authenticated). For this I have declared a secured destination in

  • Help with install

    How do I re-install Photoshop elements 11 on my new laptop?

  • URGENT!!! IE 5.0 + ACROBAT READER 4.05 PROBLEM...

    Hi there! I've a very big problem displaying reports output (PDF). If in acrobat reader settings web integration is checked the IE show me 1 blank page or ask me to download the activex for this file (PDF). If in acrobat reader the web integration in

  • IPhoto messed up my photos. How do I get them back?

    I inserted my SD card and it imported half and the other half turned out to be blank. This has happened with other photos from over a year ago, I just went back to go look through them all and they are ALL blank square blocks....WHERE ARE MY PICTURES