How to get the details of Calc. Formula

Hi,
Please let me know where can I check the detailed formula which is defined for subtotals(ex. Net value, list price etc.) in the pricing procedure that means how get the details of Calculation Formula which is maintained for price condition in the pricin procedure in CRM and ECC.
Please do needful
Thanks and Regards,
Venkat

Hi Venkat,
the source of a calculation formula in ECC can be reviewed either by transaction VOFM or by using the F4 help for the calculation formula in the pricing procedure definition (source code button).
As the formulas in CRM are implemented in JAVA and deployed on the VMC the source code is not available. Nevertheless the note 809820 and the attached guide provide some details. Nevertheless the VMC mini debugger provides some possibility to review the JAVA source code (see SAP note 1114609, transaction VMCJDB, double-click on dbsources and double click the JAVA source you like to review.
Best Regards,
Michael

Similar Messages

  • How to get the detailed version of ORACLE?

    hi,
    the version of Oracle Enterprise Version is 9.2.0.2.0, recently I patched it to 9.2.0.6.0, and wanted to get the detailed version by using MetaData in OCCI, but what I got is still 9.2.0.2.0. how can I get the "9.2.0.6.0"?
    thanks for your help!
    scripts:
    Environment env = Environment::createEnvironment(Environment::OBJECT);
    Connection conn = env->createConnection("billing", "billing", "boss");
    MetaData meta = conn->getMetaData("testdb", MetaData::PTYPE_DATABASE);
    db_ver = meta.getString(MetaData::ATTR_VERSION);
    cout << "database version: " << db_ver << endl;
    sap

    I just patched client-side, not server-size. so I guess the returned value from MetaData::getString(MetaData::ATTR_VERSION) represents the server's version.

  • How to get the details inside base domain name?

    I need to extract the details inside the base DN like ou="" ,cn="" and so on..
    Somebody please help me in getting the details inside the base domain name. I could able to get the attribute names and values for the domain name...
    Anyone please help me?
    Thanks in advance...
    Edited by: Preethi_Engineer on Aug 3, 2010 9:54 PM

    Hi Vipin,
    This code snipet show that how to find the login user to the portal
    public void LoginUser( )
        //@@begin LoginUser()
         String LogonID;
           try{
              // create an user object from the current user
              IWDClientUser wdUser=WDClientUser.getCurrentUser();
              IUser user=wdUser.getSAPUser();
              //LogonID=user.getUniqueName();
              wdComponentAPI.getMessageManager().reportSuccess(user.getFirstName()" "user.getLastName().toUpperCase());
              //wdComponentAPI.getMessageManager().reportSuccess(LogonID.toUpperCase());
              wdComponentAPI.getMessageManager().reportSuccess("Logon User ID : "+wdUser.getClientUserID().toUpperCase());
           }catch(Exception e){
              e.printStackTrace();
        //@@end
    Note:  You also need to add"com.sap.security.2.0.0" jar file into your java build path liberary.
    Thanks
    Anup
    Edited by: Anup Bharti on Oct 13, 2008 2:18 PM
    Edited by: Anup Bharti on Oct 13, 2008 2:29 PM

  • How to get the Details Regarding the tcode like used by  and used in .

    Hi all,
    My requirement is if i give the Z* Tcode in the selection screen I should get the details like program Name and Creator Name and created on and last Changed by and used by and used in Related Data.
    Somehow i managed to get all the data except for two fields used by and used in .Please let mke know is there any Function Module to fetch the used by(User Name ) and used in data or any table where this data is saved.
    Thanks in Advance.
    Regards,
    Naveen

    Hi Naveen,
    What are you exactly looking for in "used by" (if it's who launched the transaction lastly -> performance statistics, transaction ST03N, search forum how to read it) and "used in" (programs in which the transaction is statically defined in CALL TRANSACTION, and other statements -> CROSS table)?
    BR
    Sandra

  • How to get the details of the readings in counter tab in crm order

    Hi experts,
    I have the following requirement.
    I am creating service order thru crmd_order.In Transaction data tab - > in counter tab-> i have readings. These belong to the readings of the vehicle. I want to read these details. I am not able get the way.
    Pl suggest me how can i get the details of the readings in counter tab of the transactional data of a crm service order.
    Thanks,
    mallik

    Hi experts,
    Even I am facing the same issue
    Kindly provide some inputs
    Thanks,
    Surjeet Bhati

  • SSAS : How to get the details of a mesure by script

    Hi,
    I have 5 cubes in my DB. I have regulare mesures (count, min, max, ...) on the fact (see the botton ones in the print screen below)... but also some other calculations (see the top 3 ones in the print screen below).
    When i use this MDX script....
    SELECT [CATALOG_NAME] as [DATABASE],
        CUBE_NAME AS [CUBE],[MEASUREGROUP_NAME] AS [FOLDER],[MEASURE_CAPTION] AS [MEASURE],
            [EXPRESSION], [MEASURE_IS_VISIBLE]
    FROM $SYSTEM.MDSCHEMA_MEASURES
    WHERE CUBE_NAME  ='EPE'
     ORDER BY [MEASUREGROUP_NAME]
    I get as a result this :
    I need to get the details (expression) of 8 botton mesures ... as with the 3 top ones ...
    example : the last one is 'Somme Montant' (in english is : SUM Amount). It is a sum on the musure 'Montant' (Amount).... as : SUM(Montant)
    i want to show the real calculation  behind it with the real name (as is on the fact) of the column on with the mesure is based.
    Thank you for your help.
    Nacer CREPUQ BI Developer

    Thank you Dareen and Jerry,
    I wasn't able to make it work ...
    1. my case here do not work.
    2. i don't see how to get the column name of the mesure as it is on the fact table. with MEASURE_NAME_SQL_COLUMN_NAME it shows its name as is displayed for the use.
    ie: please show me how i can do what you sayed : you can overwrite the expressions of regular measures and list them out by script.
    Please advice.
    Thank you.
    SELECT MEASURE_AGGREGATOR, MEASURE_NAME_SQL_COLUMN_NAME, MEASURE_AGGREGATOR
        , CASE [MEASURE_AGGREGATOR]
              WHEN 1 THEN 'Sum'
              WHEN 2 THEN 'Count'
              WHEN 3 THEN 'Min'
              WHEN 4 THEN 'Max'
              WHEN 8 THEN 'Distinct Count'
              WHEN 9 THEN 'None'
              WHEN 10 THEN 'AverageOfChildren'
              WHEN 11 THEN 'FirstChild'
              WHEN 12 THEN 'LastChild'
              WHEN 13 THEN 'FirstNonEmpty'
              WHEN 14 THEN 'LastNonEmpty'
              WHEN 15 THEN 'ByAccount'
              WHEN 127 THEN 'Calculated measure'
              ELSE 'N/A'
       END AS AggregateFunction
    FROM $SYSTEM.MDSCHEMA_MEASURES
    WHERE CUBE_NAME  ='EPE'
    Nacer CREPUQ BI Developer

  • How to get the details of Transports which are yet to be imported

    Hi Experts,
    Kindly let me know how to get the Transport request details which were not yet imported.
    For example:
    We have two client in development system 300 and 400, The transports which are created in 300 and imported to 400 (in SCC1).
    I need to know the details of transport requests related to 300 which are yet be to moved to 400.
    Where can i get these details.
    Thanks,
    Narasimhan Krishna

    Narasimhan,
    Take a closer look at Yves KERVADEC's approach. The issue here is that typically SCC1 is used to move transports which have not yet been closed.  You can see the details of any transport via se01/se09/se10, whether open or closed, but my interpretation of your question is that the customer wants to know which transports have been imported into the unit test client (400) via SCC1, which transports have been brought in by the transport system (after they were closed), and which transports have not yet been sent to either the unit test or QA system (i.e. are still open).
    My guess is that you are trying to track down why things work in the unit test client and not in the QA client. That is actually a different question with a different approach, but if that's what you really want to answer, go ahead and ask that question in a separate thread and you'll get a ton of techniques.
    Back to the question you actually asked: By writing a query, you can get a list of transports which have been brought in to the unit test client via SCC1. You can also get this information from SCC1 --> Goto --> Log Display. Then click All Transport Requests and doubleclick on the client. This will give you the import log of your unit test client with date/time stamp. Analysis of that data indicates to me that perhaps you may want to look at CC0_RSCCPROT03_ALV, but I'm not an ABAPer so the previously mentioned tables are probably better.
    Anyway, once you have a list of transports which have been imported, you can subtract out the ones that have been closed and transported downstream (and back into the unit test client.. your transport path does re-import the final version of the transports into the unit test client... right?). You can get that information from another query or you can get the list from STMS as suggested by Aparajit Banik.Then you'll have a list of transports which have been imported into the unit test client via SCC1 but have not yet been released and made it downstream. This will give you a "hit list" of transports which might be causing a mismatch between your unit test and QAS clients. You would then inspect them more closely with SE09/SE10/SE01 (I prefer se01, but different folks prefer different version of the transaction).
    Again, there are better ways to deal with client mismatches, but I'm answering the question you asked in case I misunderstood the underlying subtext.
    I hope this helps!
    Best regards,
    --Tom

  • How to get the details of entry date in SQ00.

    Hello,
    Can anybody let me know the steps how to get the entry date in the report SQ00.Here when i am selecting entry date its coming as 00.00.00.(as zero).please let me know how to correct the steps with proper steps.

    Hi
    Apply the SAP NOTE 562031. This will rectify the error. I too faced similar problem which was then corrected when this Note was applied.
    Test it first an then let me know

  • How to get the Details when we checked with check box?

    Hi....
    I want to display all the records of perticular checked vendor_id's. n for this checking I want to display series of checkbox along with vendor_id's. could U please give me the code for this.

    actually I'm not getting the logic how to get the vendor_id's which are checked in checkbox...... infact I'm not familier with checkbox properties also.....
    i can able to display series of checkboxs along with vendor_ids . but when I clicked perticualar checkboxes which vendor_id's I wanted. how can display only these checked vendor_id's records. ???? Can U help me????

  • How to get the details of MIGO num/MIGO Doc year and Ref MIGO Doc item num

    Hi,
    Currently I am working on a requirement to post an Incoming Invoice and using the BAPI 'BAPI_INCOMINGINVOICE_CREATE' to upload the data into SAP.
    In the Input file(to be uploaded to SAP) I was not getting details like REF_DOC(Document No. of a Reference Document), REF_DOC_YEAR(Document No. of a Reference Document) and REF_DOC_IT(Item of a Reference Document) and so I need to derive these 3 fields and feed into the interface parameter 'ITEMDATA'  of the BAPI.
    If I do not give any input values to these 3 fields, BAPI was throwing a message saying that, the mandatory fields were missing in the structure 'ITEMDATA'. So I need to pass these 3 fields mandatorily.
    I have in the input fields PO Number and PO item( only from these 2 fields ) and I need to get the above fields.
    So please provide me inputs as how I can get these 3 fields from the PO number and PO item.
    Thanks for the help in advance.
    Regards,
    Vishnu.

    Hi Vishnu,
    The code mentioned by Vinod is OK, but You will also have to check whether the GR has not been cancelled. For this you need to add selection criteria of
    Fetch the latest GR date (movement type will be 101)
    select max( budat )
    into w_budat
    from    ekbe
    where ebeln = <Po number>
    and     ebelp = <po Line Item>
    and     vgabe = '1'
    and     bwart = '101'.
    Fetch the latest material document
    Select gjahr  "(Reference document year)
               belnr  "(Reference document No)
               buzei "(Reference document item)
    from    ekbe
    where ebeln = <Po number>
    and     ebelp = <po Line Item>
    and     vgabe = '1'
    and     budat = w_budat .
    Regards,
    Birendra

  • How to get the details of a LUN (Storage Logical Units) presented to an ESX host thru SCVMM 2012

    Hi,
    We are working with a UI Add-in for SCVMM 2012 where we should support both Hyper-v and ESX hosts. When added the ESX host and presented few LUNs (out of band operation) from the HP 3PAR array,
    we are unable to view the Storage details like Storage Logical unit, Storage Pool and Storage Array when we select the same LUN in the Classification and Pools section of SCVMM.
     We tried even with the PowerShell, but couldn’t help. Can you please guide us, how we can get the storage details of a LUN presented to the ESX host which is added in the SCVMM 2012.
    Thanking you.
    Regards,
    Hari

    Hi Jiannan,
    No worries, you can go to UDDI client from the main page of PI  i.e. http://<serverName>:<serverPort>/
    And you use the search function for  the TModel for your Physical System. Search parameters can use the % wildcard.
    Hit the search and you find the UDDI Key for the Physical System.
    Cheers.
    Hemant Chahal

  • How to get the details of the document uploaded at the catalog area header?

    Hi,
    Can someone explain how we can get the properties(guid class etc) of the uploaded document by using the details of the catalog area (guid)?. Do we have standard FMs available to fetch the required information?
    Please assist.
    Regards,
    Vaibhav

    got the FM

  • How to get the number of TCS attached to a Defect

    Hi All,
    I have requirement, where in I want to find the number of TCS attaached to one defect.
    For example I will create the Defect in CRMD_ORDER transaction and insert this defect in STWB_2 for some TEST plan againgt the TCS. so here i would insert the same defect for  4 TCS.
    Suggest me wheather this is good practice or not. And  how to get the details of all the TCS attached to a particular Defect.
         Thanks in Advance
    Regards,
    Bharathi.

    Hi All,
    I have requirement, where in I want to find the number of TCS attaached to one defect.
    For example I will create the Defect in CRMD_ORDER transaction and insert this defect in STWB_2 for some TEST plan againgt the TCS. so here i would insert the same defect for  4 TCS.
    Suggest me wheather this is good practice or not. And  how to get the details of all the TCS attached to a particular Defect.
         Thanks in Advance
    Regards,
    Bharathi.

  • SAP Cloud Application Studio How to retrieve the details based on OVS in Product ID

    Hi Experts,
    I have small requirements in AdvanceListPanel. I have custom BO as mention below,
    businessObject Demo {
                   element ID : ID;
                   node Sporoduct [0,n] {
                        element P_ID : ProductID;
                        element P_DES :   SHORT_Description;
                        element P_QTY : Quantity;
                        element P_NET :  Amount;   
    I have attached the OVS on Product ID (P_ID) element.
    I want to auto-fill the details under the AdvanceListPanel ( Product Desc , Product Net value ( Price) ) 
    1) How to get the details of Product ( Prod Descr, Product Price etc ).
    Please anyone have idea about this share your thoughts.
    Many Thanks,
    Mithun

    Hi, Mithun
         What you want is to auto-fill the related details when you select a product from your OVS.
         That means you have to write your codes in Event After Modify.
         We normally use QueryByElements or some other query options given for a particular standard BO.
         It would be like that.
         var query=Product.QueryByElements;
         var selParams=query.CreateSelectionParams();
         selParams.Add(query.ProductID ,"I","EQ",this.P_ID );
         var result=query.Execute(selParams);
         for(var product in result){
         this.P_DES =product.Description;
    What I have just written is just a sample code. You have to find the exact name of the attributes of a standard BO in Repository Explorer.
    Hope this helps,
    Fred.

  • How to get the network details in flex4.5 web application

    How to get the network details in flex 4.5 web application
    similar to the nativeinterface in air application

    checkout this document for secure web application
    http://help.adobe.com/en_US/flex/using/WS2db454920e96a9e51e63e3d11c0bf6167e-7fff.html    

Maybe you are looking for

  • Can no longer send mail from other apps

    Problem: If I go into any app (other than Mail) and try to send a message (via email) and I either get nothing or some apps will say that "Mail needs to be configured in order to do this."  After doing a restore on my iPod touch (4th Gen., running th

  • "Macromedia Flash Player"; vs. "Flash Player?"

    My new camera says I need to download "Macromedia Flash Player": is that the same as "Flash Player? I tried to download the new Flash Player just in case and kept getting an error.  During the download attempts it said I already had it (flash player)

  • Compared to other *nixes

    Compared to other *nixes, does OSX spend a LOT of time with "super" processes? Roger

  • Podcast "home page" doesn't update

    Any help would be appreciated. Two of our five podcast "home pages" don't show new episodes. However, current subscribers receive the episodes. A lack of new episodes at the home page for these podcasts makes it look dated. I can't seem to find a dif

  • Calculation Builder

    Hi, I am trying to use the index function of advanced arithmetic calculation through JDEveloper. After Selecting the index function when click next button I get the following exception. Please let me know what could be the reason of this error and wa