Delete currency values while using cells

Hello experts, we are having trouble with Currency Key (0CURRENCY) values. On a certain query, we are using cells (we have one structure in rows and another one in columns). For all key figures in which Currency Key is used, the value of the currency in question appears on every cell. We need to eliminate this value, if possible show the value alongside the key figure (if the key figure is in columns, the value would be shown at the top).
I know that one solution is to use NODIM function over the key figure, and I also know that changing scaling factor can show both the selected factor as well as the currency alonside the key figures. However, both solutions are feasible when not working with cells. The main problem we have is that this query has around 400 cell values (due to this, the query runs much more slowly than other queries, even in the Query Designer), so changing everything (every single cell) to the formula that uses NODIM will take too long. And for some reason, changing the scaling factor over the key figure is not working. I also tried changing the scaling factor over the non-key figure structure, but it did not work. Finally, I tried selecting all values of the individual cells and changing the scaling factor, but it did not work either.
Is there an easier way, or should we create the key figure with the NODIM function and have all cells use it?

In the end we decided to do it manually, although it took a very long time to finish.

Similar Messages

  • IP : Delete a value in e cell without entering zero

    We have an input ready planning layout created with WAD. In WEB user deletes a value in a cell without entering zero instead. When we refresh data former value appears again. When the user enters zero to the cell we have no problem. When we execute the query with BEX and delete the value in cell without entering zero, there is no problem also. Is there a parameter in WAD to check this?

    Hi
    If you create a "Delete" function and provide the same on layout it will delete the same from the cube. However, the user need to enter the line # which he/she wants to delete from the layout. Ofcourse, entering zero in the input for Key Figure will help delete the values from cube but if it has any corresponding calculations (say salary or revenue)....it will not get nullified. It is always good idea to provide a standard delete function on the layout.
    Regards
    Srinivas

  • How to get default values while using the transaction "BP"

    Hi Group,
    I have a query on how to get default values while using the transaction <b>BP</b>?
    The thing is:
    when I enter into the transaction "BP", I need to see some default values to some of the input fields in the screen.
    how can I achieve this?
    So please kindly let me know the procedure to achieve this.
    Thanks & Regards,
    Vishnu.

    Hi,
    The events of BDT can be used to default some fields on creating a partner.
    For this create a function module for ISDAT. attach that event in BUS7.
    In the ISDAT funtion modulethe following code should be used.
    For example to set the nationality:
    I_BUSDEFAULT-NATIO = 'DE.
    CALL FUNCTION 'BUP_BUPA_FIELDVALUES_SET'
    EXPORTING
    i_busdefault = I_BUSDEFAULT
    Regards, Smita.

  • Photoshop file gets deleted in network while using on IMAC

    photoshop file gets deleted in network while using on IMAC. I have tried on different server also. How to reslove the issue. Please help me ?

    This is the boilerplate text often used in connection to saving to a network (please NOTE the part where it explains that normally, it does work, but that it is impossible to troubleshoot someone else's network remotely, and that's why it's not supported by Adobe):
    If you are opening files over a network or saving them to a network server, please cease and desist immediately in the event you are currently experiencing problems with one or more files. Working across a network is not supported.
    See: 
    http://kb2.adobe.com/cps/406/kb406793.html
      Copy the CLOSED file from your server to your local hard disk, work on it, save it again to your local hard disk, close it, and copy the closed file back to the server.
         Of course, the fact that Adobe does not support working across a network does not necessarily mean it won't work.   It should.
        Adobe's position is that there are too many variables in a network environment for them to guarantee that everything will work correctly in every network, especially given the fact that if something does not work properly, it's probably the network's fault, and Adobe has no way of troubleshooting your network.
      If you can't work locally, you are on your own, and if something happens, you're on your own. If you must work from a server, make sure your network administrator is a competent professional.
    When problems arise, a lot of valuable work can be lost.

  • Yellow warning messages while Using cells in a query

    I created a query that uses cells and in each one there is a calculation.  In my rows i have a structure that contains just titles, like Plan, actual, etc.  I keep getting yellow warnings saying they are not defined.  It lets me run the query and the results are right.  How do I get rid of the warnings and more importantly are they something I need to be concerned with.
    thanks

    Technically the selections are empty and nothing has been defined in them. But you ignore the messages and suppress them in Bex as well as in RSRT.
    Hope this helps...

  • Assign defaulit values while using PNP

    Hi Everybody,
    I am using Logical Database PNP for the one of my implementation. i have to develop a new report using PNP logical database. Now I have to assign default values for Employee status and Employee Group. while executing the report, in the selection screen default values must be "3" and '1" . How to assign them.
    Thank and regards,
    giri.

    Initialization.
      pnpstat2-sign = 'I'.
      pnpstat2-option ='EQ'.
      pnpstat2-low = '3'.
      APPEND pnpstat2.
      CLEAR pnpstat2.

  • Missing Parameter Values while using Change SubReport links

    Hi,
    I am using Change SubReport Links to pass data from Main Report to the SubReport. The report works fine at design time when I preview it, but at runtime I get "Missing Parameter Values" error.
    As I have used Chanage SubReport Links do I still need to pass the parameter to the SubReport from the code.
    cr.Export gives this error.
    Below is the code
    ExportOptions crExportOptions;
            DiskFileDestinationOptions crDiskFileDestinationOptions;
            string Fname = string.Empty;
            string strReportName = string.Empty;
            ReportDocument cr = new ReportDocument();
            string strReportPath = Request.PhysicalApplicationPath.ToString() + @"Members\Reports\UnPaidReceipt.rpt";
            if (!System.IO.File.Exists(strReportPath))
                throw (new Exception("Unable to locate report file:\n" + strReportPath));
            cr.Load(strReportPath);
            MtollBLL Unpaid = new MtollBLL();
            cr.SetDataSource(Unpaid.GetUnpaidPayments().DefaultView.Table);
            // Set the Crytal Report Viewer control's source to the report document.
            CrystalReportViewer1.ReportSource = cr;
            MtollBLL Violation= new MtollBLL();
            cr.Subreports[0].SetDataSource(Violation.GetReportViolation().DefaultView.Table);
            // cr.PrintToPrinter(1, False, 0, 0)
            Response.Write( cr.Subreports[0].DataDefinition.ParameterFields.Count);
            Fname = Request.PhysicalApplicationPath.ToString() + Session.SessionID.ToString() + ".pdf";
            crDiskFileDestinationOptions = new DiskFileDestinationOptions();
            crDiskFileDestinationOptions.DiskFileName = Fname;
            crExportOptions = cr.ExportOptions;
            crExportOptions.DestinationOptions = crDiskFileDestinationOptions;
            crExportOptions.ExportDestinationType = ExportDestinationType.DiskFile;
            crExportOptions.ExportFormatType = ExportFormatType.PortableDocFormat;
            cr.VerifyDatabase();
            cr.Subreports[0].VerifyDatabase();
            cr.Export();//' The following code writes the pdf file to the Clientu2019s browser
    Please Advise.

    Please post your SDK development questions to the Developers forum

  • How to Add and delete a row while using Abstract Table Model

    Hi,
    I need to do the following functionalities in JTable.I've done tht but a small problem.
    1. Adding a row (Using addRow() method from DefaultTableModel).
    2. Deleting a row(Using setRowCount() method from Default Table Model).
    3. Sorting the table based on the selection of column(Using TableSorter which is using AbstracTableModel).
    As the sorting is mandatory i've to change my model to Abtract Table Model
    The problem is this Abstract Table Model doesn't have any methods to Add a row or deleting a row (setRowCount()).If anybody has written any utility method for this using Abstract Table Model help me.

    Using TableSorter which is using AbstracTableModel).If your talking about the TableSorter class from the Swing tutorial, then you create the TableSorter class by passing it a TableModel. There is no reason you can't use the DefaltTableModel.
    I changed the code in TableSorterDemo as follows:
            String[] columnNames = {"First Name",
                                            "Last Name",
                                            "Sport",
                                            "# of Years",
                                            "Vegetarian"};
            Object[][] data = {
                {"Mary", "Campione",
                 "Snowboarding", new BigDecimal(1), new Boolean(false)},
                {"Alison", "Huml",
                 "Rowing", new BigDecimal(3), new Boolean(true)},
                {"Kathy", "Walrath",
                 "Knitting", new BigDecimal(2), new Boolean(false)},
                {"Sharon", "Zakhour",
                 "Speed reading", new BigDecimal(20), new Boolean(true)},
                {"Philip", "Milne",
                 "Pool", new BigDecimal(10), new Boolean(false)}
              DefaultTableModel model = new DefaultTableModel(data, columnNames)
                   public Class getColumnClass(int c)
                        return getValueAt(0, c).getClass();
            TableSorter sorter = new TableSorter(model);
    //        TableSorter sorter = new TableSorter(new MyTableModel()); //ADDED THIS

  • Balance in transaction currency Error while using J2IUN

    Dear Expert,
    Hope you all must be doing great.
    While running the J2IUN transaction, System is generating Balance in Transaction currency becouse Cr PLA HECess repeatation.Here Credit side is 600 higher than Debit entry.please find the details of Accounting entry of Utilization.
    Dr     0000168204     92,667.36     Excise Duty Payable(S&H Education Cess)1%
    Dr     0000168200     9,266,733.62     Excise Duty Payable
    Dr     0000168205     185,334.71     Excise Duty Payable(Education Cess)
    Cr     0000168210     1,300.00     Excise - PLA Depositable
    Cr     0000168215     400.00     Excise - PLA Depositable(Education Cess)
    Cr     0000168227     300.00     Excise - PLA Depositable(S&H Education Cess 1 %)
    Cr     0000168227     300.00     Excise - PLA Depositable(S&H Education Cess 1 %)
    Cr     0000168227     300.00     Excise - PLA Depositable(S&H Education Cess 1 %)
    Cr     0000120030     9,265,433.62     Service Tax- Plant @ 10%
    Cr     0000120035     184,934.71     Service Tax- Plant -Ecess @ 2%
    Cr     0000120033     92,367.36     Service Tax- Plant -S&H Ed Cess @ 1%
    Please help me.
    With Regards,
    Manoj Singh

    Hi Manoj,
    Check settings in
    SPRO - Logistics general - Tax on Goods movements - India - Basic settings - India - Account Determination - Specify Excise Accounts per Excise Transaction
    (the duplication could come from here)
    and also check for GL assignments in next step
    Regds,
    Sany

  • Color subtotal value while using class "cl_gui_alv_tree"

    Dear All,
    Can we color subtotal value?? I am using class "cl_gui_alv_tree" to creare alv tree.  if yes please let me know how.
    Regards.
    Gyanendra

    Hi gop4sap11 ,
    Autometically subtotal is coming  coloured that is fine,but my requirment is like,,,  
    can i manually coloured subtotal value of any particular node of any column based on some condition??
    for ex: node name  : -
    af
    coloumn name : ---abc    bcd
    60       70
    can i colore 60 or 70 in red colore?
    subtotal is calculating using standard method
    call method tree1->update_calculations.  of class "cl_gui_alv_tree"
    after that , i tried to use following method
    LOOP AT lt_node_temp INTO ls_node_temp.
                      CALL METHOD TREE1->GET_OUTTAB_LINE
                           EXPORTING
                             I_NODE_KEY     = ls_node_temp-lv_p_node_key
                           IMPORTING
                             E_OUTTAB_LINE  = lv_E_OUTTAB_LINE
                             E_NODE_TEXT    = LV_E_NODE_TEXT
                             ET_ITEM_LAYOUT = LV_ET_ITEM_LAYOUT
                             ES_NODE_LAYOUT = LV_ES_NODE_LAYOUT
                           EXCEPTIONS
                             NODE_NOT_FOUND = 1
                             OTHERS         = 2
                         IF SY-SUBRC <> 0.
                         MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                                    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
                         ENDIF.
                         CALL METHOD TREE1->CHANGE_NODE
                           EXPORTING
                             I_NODE_KEY     = ls_node_temp-lv_p_node_key
                             I_OUTTAB_LINE  = lv_E_OUTTAB_LINE
                             IS_NODE_LAYOUT = LV_ES_NODE_TEMP_LAYOUT
                             IT_ITEM_LAYOUT = LV_ET_ITEM_TEMP_LAYOUT
                             I_NODE_TEXT    = LV_E_NODE_TEXT
                            I_U_NODE_TEXT  =
                           EXCEPTIONS
                             NODE_NOT_FOUND = 1
                             OTHERS         = 2
                         IF SY-SUBRC <> 0.
                         MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                                    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
                         ENDIF.
    ENDLOOP.
    this method must be called to send the data to the frontend
      call method tree1->frontend_update.

  • Capturing Excise values while using BAPI_GOODSMVT_CREATE

    Hi,
        I am able to successfully create the GR using BAPI_GOODSMVT_CREATE taking PO as the reference but unable to capture the excise values.
       I am trying to use BAPI_EXCINV_CREATE_FROMDATA to capture excise values but without success.
      I have already checked the forum but have not found any suitable answer.
      pls guide me through this....
    murali.c
    Edited by: murali ch on Nov 25, 2009 4:24 AM

    Hi Murali,
    Could you Let me know how you sort out this issue. I am facing a similar problem.
    I created the Goods movement for MIGO with 101 and I am trying to post excise details with the bapi
    BAPI_EXCINV_CREATE_FROMDATA,
    The Return messsage are zero but its actually not posting to excise tables.
    Regards
    Aromal R

  • Getting incorrect values while using getLineMetrics()

    following e.g. finding x position of word "Adobe flex".
    if container of TextArea is not scaled then its giving
    correct value
    but after doing zoomin/zoomout its giving incorrect value
    Plz help me to figure out this.
    Thanks
    Kaushal
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    layout="absolute">
    <mx:Script>
    <![CDATA[
    import mx.controls.Alert;
    private function onClick():void{
    cnvs.scaleX = cnvs.scaleY = 1;
    cnvs.validateNow();
    var obj:TextLineMetrics = ta.getLineMetrics(0);
    lbl.text = "X: " + String(obj.x);
    private function onZoom(val:Number):void{
    cnvs.scaleX = cnvs.scaleY += (0.25 * val);
    ]]>
    </mx:Script>
    <mx:Button x="75" y="285" label="Find X"
    click="onClick()"/>
    <mx:Canvas x="75" y="10" width="382" height="201"
    id="cnvs">
    <mx:TextArea x="4" y="46" color="#000000" id="ta"
    borderStyle="none" textDecoration="underline" text="adobe
    flex"
    fontSize="28" width="361" height="54" textAlign="center"/>
    </mx:Canvas>
    <mx:Button x="75" y="219" label="-"
    click="onZoom(-1)"/>
    <mx:Button x="123" y="219" label="+"
    click="onZoom(1)"/>
    <mx:Label x="159" y="287" text="" fontSize="13"
    fontWeight="bold"
    id="lbl"/>
    </mx:Application>

    Yes number of pages are correct even though the values are different
    If I drilldown these reports for week 04.2008 – 09.2008 by Sales office only – and add the totals in Excel to double check then they are more or less the same.  Then I drilldown by Sales Office, ASM, Week & Sub Trade Channel.  Then export this into excel and add the totals to double check but then I get totally different amounts as to what they are supposed to be.
    Please waiting for help
    Thanks
    S
    Edited by: Shiva on Mar 6, 2008 12:52 PM

  • Deletion of plannable values in a cell does not result in zero value

    Hi,
    In a planning report when I wanted to set the values in a plannable cell to '0', I just deleted the value in that cell without actually setting a '0' expecting a '0' to appear in that cell after I refresh my report. But instead I get my original value back in the cell. Is this standard behaviour or a bug or do I need to change some setting to get a '0'.
    I run my planning reports on the portal.
    Thanks.
    Regards,
    Jaya

    Hi,
    Check this out please.
    [Re: Cannot Save empty cell, can only save 0|Re: Cannot Save empty cell, can only save 0]
    regards,
    Ergin Ozturk

  • I have a problem in formatting cells in Excel while using OLE method.

    Hi All,
    I have a problem in formatting cells in Excel while using OLE method.
    My requirement is to have certain fields of a cell as text and amount fields should be in number format.
    How to format a cell in Excel in OLE method of downloading data to excel.
    For example I have plant field whose value is 0002 in internal table while coming to excel it is showing as 2 .
    I want that field to be shown as 0002.(text format)
    Material field whose value in internal table is 000000000000000051 is shown as 51 which has to be shown as
    000000000000000051.(text format).
    Amount field should be in number format so that totalling is possible .
    So I need some cells in text format and some in number format.
    Please suggest a sloution.
    Thanks in advance,
    Regards,
    vidyulatha.U

    https://forums.sdn.sap.com/click.jspa?searchID=21931962&messageID=6852860
    hope this helps.

  • Reading deleted field values using change pointer

    hi
    i am triggering DEBMAS06 using change pointer technique for XD01/02/05/06 transactions.
    now when i delete data(make nulll values) in partner functions the generated IDOC is not showing the complete field itself.when i am deleting the field value and making it null the IDOC must send the fields with null values.but unable to trace out how to do this.
    can anyone let me know how to handle this situation?
    and i have extended DEBMAS06 with customer hierarchy data i.e. KNVH.i have written change pointers.now how can i populate these fields into my extension?

    Hello Moorthy,
    1. This message function in the Idoc is populated as 005 then it should replace the entrire values while posting,
    2. To populate KNVH extension you have to populate this only if you have KNVV data.. so you can either create enhance menti perfrom FILL_SEGMENT_E1KNVVM i(nf Function moduler MASTERIDOC_CREATE_DEBMAS) inclduer LVV01F01. or you can write the logic in BAdi CUSTOMER_ADD_DATA->FILL_ALE_SEGMENTS_OWN_D or in user eixt EXIT_SAPLVV01_001.
    Regards
    Naresh

Maybe you are looking for