Default currency in price master from customer master

Can the currency in the customer  master be defaulted in to price master.
since the users are using the currency in the price master different from the customer master. Because of this the values are posted to FI as incorrect

Hi Pooja,
              The currency you maintain in the customer master is the currency which is applicable to this customer(for settlement) for the particular sales area. Even If you maintain the currency as 'USD" here and raise a sales order, you can manually change the document currency.The system proposes the document currency from the customer master record of the sold-to party. You can change the currency manually in the document. If you change the currency, the system recalculates prices for the entire document.  But I imagine that your case is that the currency of the condition which you maintain in the condition record and If that's maintained differently by user, system will convert the currency in to the document currency anyway by using the rate maintained in the table "TCURR"/OB01. But there is a control for this in the condition type configuration "V/06" in the control tab "Convert currency" check box. Here we can specify the system whether the currency conversion should be done after multiplying the quantity and rate or before.Kindly please let me know If you need any more information on this.
Regards,
Ram Pedarla
Edited by: RamPedarla on Mar 10, 2010 2:41 PM

Similar Messages

  • Vendor master from Customer master

    Hi Friends
    Is it possible to create a vendor master refering a customer master? If answer is yes, how it can be achieved?

    Hi,
    you can assign customer master to a vendor and same vendor number in customer master, so that to facilitate FI activity in clearing the open items by adjustment.
    Regards,
    gln

  • Payment card retrieved from customer master?

    hi gurus,
    i am using payment card processing. i want to know why i can only manually input card type and no in sales order although i have maintained the information in customer master. can anyone kindly tell me how can i set to enable auto retrieving card type and no from cutomer master into sales order? thanks a lot.

    Hi Daniel,
    i guess you havent missed any config and the payment card details wont copy to sales order by default. I am also working payment cards. Reason why it isnt set in config is, we may want to input a different card number at the time of sales order / or want to use two cards to authorize a sales order / or if one of the cards has expired or invalid then i want to input a second card info.
    Still if you want to pull in the info from customer master you may check with userexit_field_modification.
    let me know if you have more queries on payment cards.
    regards
    sadhu kishore

  • Defaulting values at document level from Vendor Master?

    Hi Gurus,
    Can anyone tell me whether we have a provision in SAP wherein the system defaults all values in vendor master like Payment method, House bank ID  in all the documents wherein the vendor is getting debited or credited with appropriate posting keys.
    Thaks in advance and points will be rewarded.
    Regards
    Gopal

    Dear Gopal,
    You can use OBU1 to default document type and and posting key.
    One way is to default other values as well from vendor master is to implement a proper BAdi/Enhancement that will be called before initialising the screen and default as per your requirement.
    Please check this sample program from other thread to find BADI and enhancement for a given transaction code. You just need to create a custom program in your system by cut and paste below codes.
    REPORT ZTEST.
    TABLES: TSTC,
    TADIR,
    MODSAPT,
    MODACT,
    TRDIR,
    TFDIR,
    ENLFDIR,
    SXS_ATTRT ,
    TSTCT.
    DATA: JTAB LIKE TADIR OCCURS 0 WITH HEADER LINE.
    DATA: FIELD1(30).
    DATA: V_DEVCLASS LIKE TADIR-DEVCLASS.
    PARAMETERS: P_TCODE LIKE TSTC-TCODE,
    P_PGMNA LIKE TSTC-PGMNA .
    DATA: WA_TADIR TYPE TADIR.
    START-OF-SELECTION.
    IF NOT P_TCODE IS INITIAL.
    SELECT SINGLE * FROM TSTC WHERE TCODE EQ P_TCODE.
    ELSEIF NOT P_PGMNA IS INITIAL.
    TSTC-PGMNA = P_PGMNA.
    ENDIF.
    IF SY-SUBRC EQ 0.
    SELECT SINGLE * FROM TADIR
    WHERE PGMID = 'R3TR'
    AND OBJECT = 'PROG'
    AND OBJ_NAME = TSTC-PGMNA.
    MOVE : TADIR-DEVCLASS TO V_DEVCLASS.
    IF SY-SUBRC NE 0.
    SELECT SINGLE * FROM TRDIR
    WHERE NAME = TSTC-PGMNA.
    IF TRDIR-SUBC EQ 'F'.
    SELECT SINGLE * FROM TFDIR
    WHERE PNAME = TSTC-PGMNA.
    SELECT SINGLE * FROM ENLFDIR
    WHERE FUNCNAME = TFDIR-FUNCNAME.
    SELECT SINGLE * FROM TADIR
    WHERE PGMID = 'R3TR'
    AND OBJECT = 'FUGR'
    AND OBJ_NAME EQ ENLFDIR-AREA.
    MOVE : TADIR-DEVCLASS TO V_DEVCLASS.
    ENDIF.
    ENDIF.
    SELECT * FROM TADIR INTO TABLE JTAB
    WHERE PGMID = 'R3TR'
    AND OBJECT in ('SMOD', 'SXSD')
    AND DEVCLASS = V_DEVCLASS.
    SELECT SINGLE * FROM TSTCT
    WHERE SPRSL EQ SY-LANGU
    AND TCODE EQ P_TCODE.
    FORMAT COLOR COL_POSITIVE INTENSIFIED OFF.
    WRITE:/(19) 'Transaction Code - ',
    20(20) P_TCODE,
    45(50) TSTCT-TTEXT.
    SKIP.
    IF NOT JTAB[] IS INITIAL.
    WRITE:/(105) SY-ULINE.
    FORMAT COLOR COL_HEADING INTENSIFIED ON.
    Sorting the internal Table
    sort jtab by OBJECT.
    data : wf_txt(60) type c,
    wf_smod type i ,
    wf_badi type i ,
    wf_object2(30) type C.
    clear : wf_smod, wf_badi , wf_object2.
    Get the total SMOD.
    LOOP AT JTAB into wa_tadir.
    at first.
    FORMAT COLOR COL_HEADING INTENSIFIED ON.
    WRITE:/1 SY-VLINE,
    2 'Enhancement/ Business Add-in',
    41 SY-VLINE ,
    42 'Description',
    105 SY-VLINE.
    WRITE:/(105) SY-ULINE.
    endat.
    clear wf_txt.
    at new object.
    if wa_tadir-object = 'SMOD'.
    wf_object2 = 'Enhancement' .
    elseif wa_tadir-object = 'SXSD'.
    wf_object2 = ' Business Add-in'.
    endif.
    FORMAT COLOR COL_GROUP INTENSIFIED ON.
    WRITE:/1 SY-VLINE,
    2 wf_object2,
    105 SY-VLINE.
    endat.
    case wa_tadir-object.
    when 'SMOD'.
    wf_smod = wf_smod + 1.
    SELECT SINGLE MODTEXT into wf_txt
    FROM MODSAPT
    WHERE SPRSL = SY-LANGU
    AND NAME = wa_tadir-OBJ_NAME.
    FORMAT COLOR COL_NORMAL INTENSIFIED OFF.
    when 'SXSD'.
    For BADis
    wf_badi = wf_badi + 1 .
    select single TEXT into wf_txt
    from SXS_ATTRT
    where sprsl = sy-langu
    and EXIT_NAME = wa_tadir-OBJ_NAME.
    FORMAT COLOR COL_NORMAL INTENSIFIED ON.
    endcase.
    WRITE:/1 SY-VLINE,
    2 wa_tadir-OBJ_NAME hotspot on,
    41 SY-VLINE ,
    42 wf_txt,
    105 SY-VLINE.
    AT END OF object.
    write : /(105) sy-ULINE.
    ENDAT.
    ENDLOOP.
    WRITE:/(105) SY-ULINE.
    SKIP.
    FORMAT COLOR COL_TOTAL INTENSIFIED ON.
    WRITE:/ 'No.of Exits:' , wf_smod.
    WRITE:/ 'No.of BADis:' , wf_badi.
    ELSE.
    FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
    WRITE:/(105) 'No userexits or BADis exist'.
    ENDIF.
    ELSE.
    FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
    WRITE:/(105) 'Transaction does not exist'.
    ENDIF.
    AT LINE-SELECTION.
    data : wf_object type tadir-object.
    clear wf_object.
    GET CURSOR FIELD FIELD1.
    CHECK FIELD1(8) EQ 'WA_TADIR'.
    read table jtab with key obj_name = sy-lisel+1(20).
    move jtab-object to wf_object.
    case wf_object.
    when 'SMOD'.
    SET PARAMETER ID 'MON' FIELD SY-LISEL+1(10).
    CALL TRANSACTION 'SMOD' AND SKIP FIRST SCREEN.
    when 'SXSD'.
    SET PARAMETER ID 'EXN' FIELD SY-LISEL+1(20).
    CALL TRANSACTION 'SE18' AND SKIP FIRST SCREEN.
    ENDCASE.
    Alternatively, you can do the following:
    1. For what ever transaction u want the enhancement .. just check for the System-->status (menu) and find out the PROGRAM name....
    2. Double click on to the program name and go inside the program (Abap editor)
    3. Search for "Call Customer-function " ... and u'll get some search results .. If u get results then u have enhancement in that tcode .....
    4. Then it actually calls a Function module .... copy the Function module name .... go to SE80 (object navigator) click on "Repository Information system" then Customer Enhancements .... Give the Function module name in the "Components" field and click Execute ....
    ull get a list of Enhancements related to that Componene....
    5. Choose which ever enhancement will suit ur business need ..
    6. Go to CMOD... create a project .... assign ur enhancement ... and then code ur logic.... activate ur enhancement in CMOD ....... Ur Buisness need will be solved...
    For a user exit......
    Finding whether there is any User Exit or not for tcode VA42
    1. For what ever transaction u want the user exit .. just check for the System-->status (menu) and find out the PROGRAM name.... ( The program name would be for our scenario "SAPMV45A" )
    2. Double click on to the program name and go inside the program (Abap editor)
    3. Search for the word "USEREXIT" .... u ll find all the user exits in the search result .. and find ur's then ...
    Hope this will help.
    Regards,
    Naveen.

  • Populate payment method automatically in BSEG-ZLSCH from customer master

    Hi Guru,
    Any idea how I can set up SAP so that the payment method in customer master is automatically populated into field BSEG-ZLSCH when posting CUSTOMER invoices.
    I noted that this is automatically done for vendor invoices.
    Many thanks
    Linda

    If it is automatically happening in case of vendor invoice, it is probably coming from the payment method defaulted in the payment term configuration in OBB8.  Payment method does not default from the vendor master or customer master.  Payment term does get defaulted from the vendor / customer master into invoice document entry.
    This is how it works - when you specify payment method(s) in customer/vendor master, automatic payment program considers them along with the payment method configuration in FBZP (payment method in country / company code, bank determination, etc.) and then determines the payment method for the automatic payment program.  When you do not want system to do it, you can override it by specifying a payment method during invoice document entry into the system.
    If you want a payment method to be defaulted during invoice entry, I guess the only way is to write a substitution rule using T Code OBBH.

  • Mapping Sales dist from customer master to 0SD_C01 infocube

    Dear All,
    I have a requirment of mapping Sales Dist ( 0SALES_DIST )  from Customer Master ( 0CUST_SALES ) into report based on Infocube Billing Condition Value ( ZSD_C01 ) . i.e. report should show Sales dist data fro customer master and not from transaction data.
    The infocube ( ZSD_C01 ) contains sold to party ( 0SOLD_TO ) which can not be mapped to 0CUST_SALES .
    Is there any solution for this.

    Dear Alex ,
    When I am doing remodeling to Add 0CUST_SALES in Customer Dimenssion and  using 1:1 maping with characteristics of 0SOLD_TO option . system is giving following error. 
    Characteristic 0SOLD_TO does not have all compoundings of 0CUST_SALES
    Since 0CUST_SALES is compounded with Sales Area  remodeling doesn't work in spite of having all characteristics of Sales area in the infocube.
    Is there any other way to replace the data.

  • Copy mode of payment from customer master data to sales order,

    Hi Gurus,
    Hope all is fine.
    I have a small doubt. If we want to transfer the mode of payment from customer master data to sales order, do we have to use Exit- MV45AFZZ.
    Can't we transfer the data without the exit?

    Hi,
    I have tested this in sand box.Thought the customer master is having payment method ( payer ) ,It is not copying from customer master to sales order but if you maintain manually in sales order ,it is copying into billing document level.FYI see below snap shot.
    Note:If you want it from customer master into sales order,may be you need to take help of abaper on this.
    BR's,
    Naren

  • How to Copy Sales Text Data from Customer Master to Sales Order.

    Hi SAP Guru's
    I have Completed Configuration for Central Text for Customer Master for two texts 1)Additional Attachments 2) Wooden Packing
    I got these two fields in Customer Master.
    I need these data to be copied from  Customer Master to sales order. But i am unable get these two in to sales order.
    Steps which  I have done for Text Determination.
    1) Text Id in for Text Object KNA1
    2)Placed Text Id  in Text Procedure  and assigned   this procedure to Customer Account Group.
    Could you please advice me
    Thanks in Advance.

    Text Control
    In this IMG activity, you define the rules for text determination. You must carry out the following steps:
    Select a text object and define the rules for text determination for this object. Text objects are, for example, the sales texts in the customer master record or the sales document header.
    Define the permitted text types for every text object. If the text types contained in the standard SAP R/3 System are not sufficient, create new ones.
    Define the access sequences. This way, you define how the SAP System should determine the texts for a text type.
    Group the text types together in text determination procedures. The SAP System then proposes the text types from the procedure when you maintain a customer master record or a sales & distribution document. The search for the respective text is carried out using the access sequence which you have stored for each text type in the procedure.
    Allocate the text determination procedures so that a procedure applies to the following criteria in each case:
    account group customer
    sales & distribution document type
    item category

  • Text from customer master to delivery header

    Hi Experts,
    Here we have a requirement, Text what we maintain in the customer master (like Shipping point address) text need to be trigger at Delivery header,
    1) Is it possible in standard text determinaction or we need to go for any user exits?
    2) If we want to use user exits what are the user exits we have to copy the data from customer master to delivery header.
    NOTE: Client doesnt want to use the text from sales order or scheduling agrements.
    Please help me to fill the requirement .
    best regards,
    chiranjeevi

    Hi Chiranjeevi,
    It is possible to achieve this with standard text determination procedure itself.
    Goto transaction VOTXN and in the "Delivery --> Header" create a new access sequence with the Customer Master Text IDs (like the ID which contains the Shipping Point address) from which the text is to be selected. Once done, create or make use of an existing text determination procedure available under Delivery Header and then assign the access sequence to the Delivery Header Text ID into which the Customer Master text is to be copied. Maintain additional settings as necessary. This will ensure that the text from customer master is directly copied over to the delivery header.
    There are many documents already available (search in Google) to explain the text determination process if you need help with the same.
    Regards,
    Som

  • Payment terms based on specific dist.channel, division and Plant but not from customer master.

    Dear All
    I have a requirement,
    Generally payments terms from customer master will flow to sales order. but here my requirement is to get a different payment terms based on specific distribution channel, division, customer  and plant those are there in sales order but not from customer master. is there any user exit or functional module to fulfill this requirement, or any other suggestion appreciated.
    Thanks,
    Reddy

    This Problem you can solve without user exit too.
    The Customer master data itself can solve the problem.
    You can maitain diffrent Payment Term as per the sales area (Dist.Ch+Div+S.org) of customer master.
    and each sales are wise u can change the plant also.
    You just need to set your logic with the combination of sales are and plant. And need to assign which payment term should determine to sales order.
    If you are rasing sales order with X sales area relavent to that payment term will trigger.
    Hope above logic will work, otherwise you can go with user exit.

  • Output proposal from customer master in 4.7

    Hi
      I'm trying to find configuration nodes in spro for <b>output proposal from customer master</b> in SAP R/3 4.7. Strangely it is not where it is supposed to be i.e.
    SD>Basic Functions>Output Control
         I tried by searching but unable to find it. However I found out that you can assign output determination procedure in define account groups.
          Please help me in finding the correct node or the t-codes for maintaining output procedure for output from customer master. Kindly note that I am looking in <b>SAP R/3 4.7</b> version.
    thanks in advance
    Koustav

    Output proposal from the customer master record
    IMG&#61664;SD&#61664;Basic fncs&#61664;Output&#61664;Output determination&#61664;Output proposal from the customer master record, Define output
    In this option one creates output types, such as BA00 (order confirmation). After creating the output type, one assigns the output type to an output procedure, such as DB0001. After the assignment of the output types to the procedure, the output procedure is then assigned to the customer account group. This is a simple procedure and results in the output that is placed on the customer master record being copied into the sales document.

  • Need to pull postal code in SO from customer master instead on postlcd/city

    I want  postal code to be pulled in sales order - partners tab for  bill to party from customer masater/ under PO box adress.
    Currently it is pulling postal code/city from customer master/ under street address.
    Is there any standard con-fig available for same ?
    please reply,
    Thanks and regards,
    Sujit

    normally not but in asset reporting there seems to be a relation between structure and report-name (not tcode)
    go to tcode se11 and search for structures with search term FIAA_SALVTAB* and you'll find some structures.
    The last part of the name (RABEST, RABEWG ) is the link to the report (RABEST01, RABEWG01)
    hope that helps
    Andreas

  • Pulling Over/Under delivery Tolerances from Customer Master into CMIR

    Is it possible to pull the over/under delivery tolerance values from the customer master info the CMIR?  I don't understand why the delivery priority flows from the cusotmer master to the CMIR but the Over/Under Tolerances do not.  I've looked at SAPMV10A ... it looks like I might be able to use an enhancement spot to add the necessary logic but I've not used this type of user exit and I'm not sure if there is a better solution (like some configuration that I'm missing ???)  Any advice would be appreciated.  Thanks!

    Hi Mallisa,
    I tried creating a CMIR record and both Delivery Priority and Over/Under Delivery tolerance were copied in CMIR record from Customer Master.
    BR,
    Anshul Chohan

  • Output determination from customer master

    Hi,
    I am working in ecc6.0,
    i want the output deterrmination procedure should be carried from Customer master.
    For this i want to create a new output determination procedure which i can assign to Customer account group.
    Can any one please tell me the path to define this output determination procedure.Because it is not available in basic function.
    So that i can assign to account group.
    thanks

    Hi Friend
    For Output Detn. following are necessary the steps
    1.SD> BF>Output Control>O/P Detn
    here define Po det Proc for Sale Doc or Billing Doc ,
    a.Selct O/P Type (Maintain Program & Routine)
    b.maintain Acc Seqn
    c.MaintainO/P Det Procedure & Assign to Sale Doc Type.
    If you still have issue witn .
    Check out Comm Strategy & Print Paramets too.
    Thanks
    Saurabh

  • Usage of price group in customer master

    Hello ,
    I have a business requirement like this:
    The price group field is used for different discount rates for the customers   There are 2 types of customers wholesale and retail. I am not sure of the usage of price groups in customer master to use for the discount for the customers
    Thanks and Regards,
    Vimala.K

    Hi
    Price group is a field Where you can group certain customers under one umbrella
    Suppose if you have 3 price groups say price group1 price group2  and price group3
    Say there are 10 customers A to J
    You are assigning customers A to D in price group 1
    You are assigning customers E to G in price group 2
    You are assigning customers H to J in price group 3 in their respective CMRs
    Price group can be added as filed in pricing condition table and you can maintain condition records for them
    In VK11 the table with price group 1 is maintained discount of 5 %
    In VK11 the table with price group 2 is maintained discount of 6 %
    In VK11 the table with price group 3 is maintained discount of 7 %
    So in sales order the customers A to D will get 5 % discount and customers E to G will get 6 % discount  and customers H to J will get 7 % discount
    Regards
    Raja

Maybe you are looking for

  • Purchase order to payment cycle report

    Dear Sir/Madam We want to have a report on the purchase order to payment cycle. this includes the following points: 1. Purchase Requisition is raised in the system 2. PO is raised with various line items 3. Advance payment is done against the PO 4. G

  • My debit card isn't being accepted by itunes;

    Its a visa delta with LLoyds Tsb I've entered all the info in correctly and triple checked it but it still tells me: Your payment method was declined. Please enter a valid payment information. I've used debit before so it should work.

  • Can't open fff file in photoshop cc

    hello, when I had cs5, I could turn off the ACR moving the camera raw.plugin file out of the folder, now there is no folder, nor acr plugin, the acr cannot be dissabled, thus I cant open the imacon fff file at all with photoshop, is there other way t

  • Disk Space decreasing

    Hi everyone, When I leave my computer on for a while, say 3 or 4 days, I notice that my free disk space begins to decrease, even when I have not installed any programs or altered anything. Is this normal? Thanks a lot.

  • Duplicates in Drafts Folder

    We have recently migrated from an IMAP provider to Exchange. Users on 10.5 and 10.6 are experiencing an bug where Drafts are being duplicated over and over again in the drafts folder. This happens whether or not drafts are being saved to the sever. U