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

Similar Messages

  • How to get net value in sap crm opportunity

    hello all,
    i want to create an opportunity with product details including  sales potential , weighted potential.
    how to configure perticular  product.
    please help me out.
    Ahmad

    Muhammad,
    Net Value gets populated if you have pricing information maintained on the Product and the Opportunity Item category has Pricing Enabled.
    Based on the pricing conditions maintained the Net value get populated on the Opportunity.
    Hope this helps !
    Regards
    Naveen

  • How to Enable password saving in SAP Logon for Windows

    how to Enable password saving in SAP Logon for Windows

    Even though password saving, in SAP Logon for Windows is disabled by default, this can be enabled following the steps listed below:
        Open the command prompt by navigating to Start → Run and by typing “cmd”.
        Go to the \SAP\FrontEnd\SAPgui directory (in Program Files), through the command prompt.
        Create the necessary value in Windows registry by typing: sapshcut -register An information message will appear.
        Open the registry editor, in order to access Windows registry, by navigating to Start → Run and by typing “regedit”.
        Go to the HKEY_CURRENT_USER\Software\SAP\SAPShortcut\Security registry key.
        Change the value data of “EnablePassword“ from 0 to 1.
        Close SAP Logon and open it again, in case it was open during the whole process.

  • How can we delete prospects from SAP CRM

    Hello All,
    How can we delete prospects from SAP CRM in back ground for a list of selected BP's.
    Thanks,
    Raj.

    Hi Raj,
    You can use tx BUPA_DEL to delete the BP's you don't need anymore.
    Cheers,
    Heber Olivar

  • How Microsoft access could possibly an SAP CRM table

    ould anyone know if it is possible for a Microsoft access system to read an SAP table. If so, how? I have to implement an interface btw MS Access and SAP CRM and I am trying to see how to get it to work.

    Dear Abdul!
    There are probably many ways to achieve what you´re looking for. It heavily depends on several factors, which solution turns out to be the best for you. You should take into account security, data integrity and sensitivty, business context and system architecture, among others.
    First of all though, you should specify wheter you want to access the SAP table for unidirectional read access only, or if you have the requirement to also update data in any SAP table (are you talking about a SAP standard table or a customer Z-table?)
    If you´re looking for a straight forward solution for read-only access, you can create a custom Z* RFC-enabled function module that reads out your SAP table and returns the values to your calling application. You could also use the WebServices interfaces of your SAP WebApplicationServer, depending on your release level. Furthermore, kindly check, if there are standard BAPI´s available that contain the data you need in their return parameters.
    Of course, you also could directly interface on a DBMS level between MS access and your underlying SAP DB, but most likely such a solution will never be supported in any productive environment, and for good reason. So you should look into one of the other options mentioned.
    I´ll gladly provide more detail about any of the mentioned approaches, but would like to have a little more input about your requirements before, so the optimal solutions can be found.
    Kind regards
    Christoph

  • How to mark product mandatory in SAP CRM Opprotunity and Quotation?

    Hello All,
    We are using SAP CRM 4.0 and have one requirement as follows:
    Through Configuration ,I am not able to find the the way to mark mandatory for the fields Product , Description,Quantity,Exp.total Value under the Products Tab for the Opportunity. Also the field product under products Tab for the Quotation.
    Can this be done through Config or Technically?  please provide the steps for the needful and also advise do i need to put this at header or item level?
    Thanks in advance.
    Cheers
    Sreedhar

    Hi, Sreedhar
    You have to write program for Badi ORDER_SAVE or use incompleteness check.
    How to maintain the fields mandatory in Opportunity and quotation SAP CRM?
    making activity reason as incompleteness field
    Denis.

  • How to enter Net Value manually on item level?

    Hi Experts:
    My client wants to enter Net Value of opportunity position directly on item level, that is without entering manual condition. The reason is, that the process o entering manual condition is very long: opening price list - creating new codition - choosing price element.
    How can I do so??
    Best regards,
    Cristina

    Dear Cristina,
    I guess you are working on CRM 2007 or CRM 7.0.
    In new WEBUI in assignment block "item" your are able to enter the price in column "Net Value" .
    The column can be added by button personalization on the right side.
    I  hope this info helps,
    Regards
    Rene

  • How To Display Minus value in SAP SCript

    Hello Guys.
    I am working on a Script. My Problem is that For a fields BSAD-DMBTR.
    I have to show this fields value as minus or plus as per condition with fields
    <b>bsad-shkzg</b>. In my Internal table it's update as minus but when  I am calling  Write form with loop.  the value is not display with minus sign.
    How can I display value with minus sign in SAP script.
    Regards
    Swati,,

    Hello Guys..
    Thanks for Reply. But I am doing that thing already. My Internal table is updated with minus value. My Problem is not That.
    let's suppose.
    itab-name  =  'xyz'.
    itab-value   =   100.
    append itab.
    itab-name  =  'xyz1'.
    itab-value   =   -1 * 100.
    append itab.
    loop at itab.
    CALL FUNCTION 'WRITE_FORM'
        EXPORTING
            element                  = 'LINE'
            function                 = 'SET'
            type                     = 'BODY'
            window                   = 'MAIN'
          EXCEPTIONS
            element                  = 1
            function                 = 2
            type                     = 3
            unopened                 = 4
            unstarted                = 5
            window                   = 6
            bad_pageformat_for_print = 7
            spool_error              = 8
            codepage                 = 9
            OTHERS                   = 10.
        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.
    Now when value is printed in SAP Script both value is display as plus .I want to display secound value as minus.
    Please reply it's urgent.
    Thanks
    Swati....

  • How to hide net value of $0 on Credit Memos from rejected return?

    We are creating a credit memo request with a second line item which contains rejected returns.  Basically line item 1 contains the actual qty which we are refunding and line item 2 is the qty which we will not be refunding.  When we create the the credit memo from this document in VF04, the line item two is showing on the credit memo with a net value of $0.
    Is there a way to hide this net value of $0 or rejected return items from coming over onto the credit memo.  We would like to just show positive values on the CM.
    - Chuck

    The reason for rejection is set in when the credit memo request is craeted and the net value of $0 still appears on the credit memo.. how ever the pricing values are in an unprocessed (yellow) status.
    So after running a few test when the billing block was set on the credit memo request.. I noticed that the credit memo request was still open after VF04, would appear as unprocessed, and always show up when VF04 is ran.
    Is there some other way to get the net value of $0 to NOT appear on the credit memo beyone reason for rejection and billing block.  Maybe something in the configuration copy control??

  • How  to update marketing attributes in sap crm 7.0

    hi sap gurus,
    I want to understand how to update the marketing attributes in sap crm, basically I want the logic to update the marketing attributes in the system. which tables I should verify & then I need to write an abap program  to update/modify the marketing attributes.I know the beginning validations,  the bu_group =zul1-outlet master from but000 table , after that I am stuck up with the logic. I know the field which  I need to update: in table cabnt, atinn field.
    Edited by: packframe2585 on Feb 23, 2012 7:47 AM

    Hi,
    i´m using FM CRM_MKTBP_MAINTAIN_OW. But this is also not very good from a performance point of view.
    Kind regards
    Manfred

  • How to Configure Table Graphics in SAP CRM 7.0

    Dear all,
    What is the main use of Table Graphics and How can we configure table graphics functionality in SAP CRM 7.0.
    Kindly suggest in case any best practice documentation or other configuration document is available
    Your help will be highly appreciated
    Best regards
    Raghu ram

    Hello Devi,
    There are three ways you can load Master Data in BPC
    1) Copy and paste.
    Download master data in flat file .Copy the  master data and paste in members of dimension after that process the dimension.
    2) Using SISS Pakage - load Flat File into BPC-Cube
    3) Using SQL Command.
    Thanks.
    With regards,
    Anand Kumar

  • In Price determination process,how to correct Net values ?

    In me23n, how can I correct Net value inclusive of tax & final price ?
    Netvalue inclusive of tax = basic + NAVD(deductible) + NAVS(non deductible)
    When I go to me23n screen, when I click on invoice tab the screen contains basic price ,deductible tax and non deductibe tax.
    Invoice tab
    JSTD A/P Service tax ded        12.000 %         5,148.00            
    JSTE     A/P Ed Cess ST ded        2.000 %         102.96            
    JSTH     A/P SEd Cess ST ded   1.000 %          51.48          
    Total deductible tax(NAVD) is 5302.44
    but when I go to condition tab
    NAVD     Deductible Tax       6,266.49      INR     
    because NAVD calculated incorrectly,hence netvalue inclusive of tax is calculating wrong values.
    How can I correct NAVD?
    Regards,
    Rachel
    Edited by: Rachel on Oct 14, 2008 8:41 AM

    Hi,
    You can check in the Pricing Calculation Schema.The addition and subtractions steps are done there. check the step numbers given are correct.
    For that, in Vendor AMster Purchasing view check the schema assigned and go to  Customisation for MMPurchasing-Conditions----Define calculation Procedure. assignment of Calculation schema to schema....
    Hope this will help.
    Regards,
    Smitha

  • How to integrate a Widget in SAP CRM Webclient UI Homepage?

    Hello Experts,
    i´m new with CRM Webclient UI. Can somebody explain me how to integrate a widget in the Home - Page of SAP CRM Webclient UI?.
    Maybee one of you can recommend also a good widget for weather forecasting?
    Thank you.
    Best regards
    Manfred

    Have a look at these posts...
    Customer Relationship Management (SAP CRM)
    Customer Relationship Management (SAP CRM)
    Google or Yahoo Widgets are pretty good, you can customise them on the website below and then copy and paste the code into your BSP component.
    http://www.google.com/ig/directory?synd=open
    Regards,
    David

  • How To upload business partner into sap crm using xif Adapter by XML File

    HI Guru's,
                 I got Requirement to upload the business partner information into sap crm system using xif adapters from xml file , please give  imformation how can achive this .
    Regards,
    Naveen Kumar MS

    Dear Naveen,
    please see the information given in note 448742 General notes on CRM external interfaces!
    Hope you can find the information!
    Regards, Gerhard

  • Urgent! How foreign languages are treated in SAP CRM

    How are foreign languages' characters treated in SAP CRM?. If a person's name or address is entered in say Japanese or Greek characters, how would it reflect in reporting. Would it have anything to do with the communication language selected for the contact?
    Urgent

    If the Data is entered in a foreign Language it will show same in the reports too. SAP has translation service too but that wouldn't be affective and suitable to conversion. So if it is entered in Japanese you will see in Japanese only. But one thing is to make sure your language packs are loaded in to your landscape.
    Thanks
    Raja

Maybe you are looking for