ALE Filter - Exchange Rates

Hi All,
I have setup a ALE distribution model for sending Exchange Rates. For this model I have setup a filter Currencies. So when  I am sending the IDOC its is picking all the currencies which are not in the filter even.
Please throw some light on the above issue.
Regards,
Raghavendra.M
SAP-Practice.

i do not think this in the right forum

Similar Messages

  • Error in Exchange Rate transfer useing program RFALEX00.

    Hi All,
    We are trying to ALE the Exchange rate from one system to another.
    We are using program RFALEX00. The Idoc generated in host system is successfull where as in target system it's getting in to Error saying "No maintenance authorization for requested data (SV- 052 Message type)".
    I can load the exchange rate manually it will not throw any exception regrding Authorization.
    Could you please guide on this.
    Your help is really appreciated
    Regards,
    Ravi Kasnale

    Difference between authorizations for your userid and the userid that is processing the ALE (maybe WF-BATCH or something like that) may be the cause.

  • Convert a sales value to the reference currency with the exchange rate of a specific date

    Hi Friends,
    I Have 2 Dimensions: Time and Currency
    I also have to fact tables, exchange rate and sales
    Both fact tables have references to Time and Currency Dimension.
    The user want to select using excel the sales in the local currency and the correspondent conversion in the reference currency (the reference currency is fixed) in the selected date.
    To obtain the desired exchange date I need a date and a currency. The user select in excel a specific date but the currency must be the current currency in the sales table. I achived something like this in the query editor:
    with
    MEMBER [Measures].[Current Rate To Euro] AS (
    ([ISO Currencies].[ISO Curr Code].CurrentMember, [Time].[Date Id].CurrentMember, [Measures].[Exchange Rate To Euro]))
    MEMBER [Measures].[Net Sales Euro] AS (
    [Measures].[OOH Net Sales Dom Snapshot]/[Measures].[Current Rate To Euro]
    SET NE_measures as {[measures].[Net Sales Value Domestic], [Measures].[Exchange Rate To Euro]}
    member m_NonEmptyCheck as
    Generate
    NE_measures
    ,{Iif([Measures].CurrentMember, [Measures].CurrentMember, NULL)}
    ).Count = NE_measures.Count
    ,NON_EMPTY_BEHAVIOR =
    {[measures].[Net Sales Value Domestic], [Measures].[Exchange Rate To Euro]}
    select {[Measures].[Net Sales Euro], [Measures].[OOH Net Sales Dom Snapshot],[Measures].[Current Rate To Euro]} on 0,
    Filter(
    {[ISO Currencies].[ISO Curr Code].[ISO Curr Code]}*{[Time].[Date Id].&[2581]*[Customers].[PDU Description].[PDU Description]}
    ,m_NonEmptyCheck
    ) on 1
    from [DM ISR DEV];
    But I don't know how to translate the last select in a calculated measures in order to let the customer only to select this measures in the values area and the time in the filters.
    Any comment would be appreciated
    Kind Regards

    Was not so difficult as I thought, however, it took me several hours to understand how could it work:
    with
    MEMBER [Measures].[Current Rate To Euro] AS (
    ([ISO Currencies].[ISO Curr Code].CurrentMember,[Time].[Date Id].CurrentMember, [Measures].[Exchange Rate To Euro]))
    MEMBER [Measures].[Net Sales Euro] AS (
    SUM([ISO Currencies].[ISO Curr Code].[ISO Curr Code],([Measures].[OOH Net Sales Dom Snapshot]/[Measures].[Current Rate To Euro]))
    select {[Measures].[Net Sales Euro], [Measures].[OOH Net Sales Dom Snapshot],[Measures].[Current Rate To Euro]} on 0,
    non empty {[Time].[Date Id].&[2580]} -- specific datatime, in my db is the 23 Jan. 2014
    *{[Customers].[PDU Description].[PDU Description]} on 1 -- An attribute of the customer hier.
    from [DM ISR DEV]
    I think all of my confusions come from my Sql background. A calculated member is a member that is resolved by calculating an MDX expression to return a value, not a set, for this reason the key to solve my problem was the SUM function.

  • Power Pivot - Calculating Exchange Rates depending on MONTH

    Hello everyone, I have a question, would like to know if someone can help me figuring out a solution. I have created a spreadsheet using powerquery and powerpivot. Loading the data on powerquery from different spreadsheets was a charm, the problem is calculating
    the exchange rates per month. Let me try to explain better;
    The structure is as following:
    I have 3 tables, they are:
    Dates– Just a dates (loaded directly on PowerPivot).
    Invoice – Details of invoices for all customers, gross totals are in different rates (loaded through power query)
    Customer – Detailed information of customers (loaded directly on PowerPivot).
    Currency – exchange rates (loaded directly on PowerPivot).
    Note: I mentioned where they were loaded because I do not know if that really matters, I guess it does not... but extra information will not hurt. Now, let's go to how these tables are connected between each other and their key columns:
    The Invoice table has information on invoices dates, invoice gross total and customer code. This table is related to Customer table, which has the actual name of customers and other details. This link is done through the Customer Code column. The Currency
    table have a relationship with the Customer Table through the Country Column.
    What I want to achieve is a formula to do the exchange rate based on the Invoice Date column present on the Invoice Table. So I have created a column on the Currency Table named at each month of the year and populated it with the exchange rates for all countries
    (countries listed using ISO3 format).
    My problem is while I am able to select a column from the Currency table to do the exchange rate calculation using the below formula, I fail to realize how to do it per month:
    =CALCULATE(sum(invoice[Gross Value])*SUM(Currency[Reverse]))
    *Reverse is the column with the exchange rate for the country money to USD
    What I am failing to do is how to make that calculation to also consider the month of the invoice and pull the exchange rate for the same month from the Currency table… something like:
    Get the invoice date then find the column on Currency[Month] and multiply, providing me the USD amount.
    I was unable to figure out a solution using the filters parameters from Calculate. If some of you ask why I am using SUM inside Calculate, is because if I only use SUM and try to do the math between the two tables I get an error saying that it was not possible
    to determine the value on Currency[Reverse]. Same happens with SUMX. It worked out with Calculate, but then I cannot create other formulas using CALCULATE on that table because it will give that error on redundancy, unless I add a filter on it, which worked
    last time (but I do not remember which thing /parameter used to filter, so do not ask it right now :D)
    To be honest… I do not really need that level of accuracy, but my Virgo perfectionist side demands me to find a solution to that, that will not use a single exchange rate, but consider which is the correct exchange rate for the month of the invoice and calculate
    it correctly for all invoices. Just so you know, the Invoices tables has more than 1million lines.
    Anyone know how to crack this problem or can point me to some site where I can learn how to do it?
    Thanks for the time reading all of this, even if you cannot help, I really appreciate it ;)

    Hi Estevao,
    Having problems to understand how you managed to combine your currency table with the customer table by Country ID. Where’s the 1-side of this relation (many customers in the same country and many months for the same currency)?
    Anyway: Seeing that you already use Power Query, I’d suggest that you prepare your data in a way that you can connect your currency table with your invoice table instead of with your customer table. Create a field in your Invoice Table
    that concatenates Customers CountryID&Month.
    Imke

  • User exit for Exchange rate in PO (ME22n) of Delivery/invoice Tab

    Hi SDN,
    We are using 4.6c. I wanna make the FIELD "Exchange rate" in Purchase Order (Tx: ME22n) of Delivery/invoice Tab into display mode. So can any one tell the USER EXIT i have to use to make SCREEN-INPUT = 0 for this screen field, MEPO1226-WKURS.
    Thanks in Advance.
    Regards
    Basha

    Transaction Code - ME22N                    Change Purchase Order
    Exit Name           Description
    LMEDR001            Enhancements to print program
    LMELA002            Adopt batch no. from shipping notification when posting a GR
    LMELA010            Inbound shipping notification: Transfer item data from IDOC
    LMEQR001            User exit for source determination
    LMEXF001            Conditions in Purchasing Documents Without Invoice Receipt
    LWSUS001            Customer-Specific Source Determination in Retail
    M06B0001            Role determination for purchase requisition release
    M06B0002            Changes to comm. structure for purchase requisition release
    M06B0003            Number range and document number
    M06B0004            Number range and document number
    M06B0005            Changes to comm. structure for overall release of requisn.
    M06E0004            Changes to communication structure for release purch. doc.
    M06E0005            Role determination for release of purchasing documents
    ME590001            Grouping of requsitions for PO split in ME59
    MEETA001            Define schedule line type (backlog, immed. req., preview)
    MEFLD004            Determine earliest delivery date f. check w. GR (only PO)
    MELAB001            Gen. forecast delivery schedules: Transfer schedule implem.
    MEQUERY1            Enhancement to Document Overview ME21N/ME51N
    MEVME001            WE default quantity calc. and over/ underdelivery tolerance
    MM06E001            User exits for EDI inbound and outbound purchasing documents
    MM06E003            Number range and document number
    MM06E004            Control import data screens in purchase order
    MM06E005            Customer fields in purchasing document
    MM06E007            Change document for requisitions upon conversion into PO
    MM06E008            Monitoring of contr. target value in case of release orders
    MM06E009            Relevant texts for "Texts exist" indicator
    MM06E010            Field selection for vendor address
    MMAL0001            ALE source list distribution: Outbound processing
    MMAL0002            ALE source list distribution: Inbound processing
    MMAL0003            ALE purcasing info record distribution: Outbound processing
    MMAL0004            ALE purchasing info record distribution: Inbound processing
    MMDA0001            Default delivery addresses
    MMFAB001            User exit for generation of release order
    MRFLB001            Control Items for Contract Release Order
    AMPL0001            User subscreen for additional data on AMPL
    No of Exits:         35
    USER EXIT
    http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm
    http://www.sapgenie.com/abap/code/abap26.htm
    http://www.sap-img.com/abap/what-is-user-exits.htm
    http://wiki.ittoolbox.com/index.php/HOWTO:Implement_a_screen_exit_to_a_standard_SAP_transaction
    http://www.easymarketplace.de/userexit.php
    http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm
    http://www.sappoint.com/abap/userexit.pdfUser-Exit
    http://www.sap-img.com/ab038.htm
    http://help.sap.com/saphelp_46c/helpdata/en/64/72369adc56d11195100060b03c6b76/frameset.htm
    USER EXIT
    http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm
    http://www.sap-img.com/abap/what-is-user-exits.htm
    http://expertanswercenter.techtarget.com/eac/knowledgebaseAnswer/0,295199,sid63_gci982756,00.html
    Rewards if useful.........
    Minal

  • Automatic Distribution of Exchange Rates between two Systems

    My requirement is to Automatically Update Exchange Rate in ECC 6.0. The Exchange Rates are Maintained in 4.6 C System.
    I am Currently Using program RFALEX00 in 4.6C system to Create IDOCS and Transfer it to ECC 6.0
    Similarly i am Using ExchangeRate BAPI for the Inbound Process in ECC 6.0.
    Now my Problem is this Change Pointers is Not Activated for Transfer of Exchange Rate. If some one Knows How to Activate change pointers for Exchange rate please let me know.
    I also tried Executing RSIMPCURR and RSIMPCURT but it’s giving me a Dump.
    I Donot know what are the Purpose of RSIMPCURR and RSIMPCURT. If Some one can explain this it would be great.
    The Dump is due to this FM in the Program.
    CALL FUNCTION 'RSAR_DESTINATION_GET'
         EXPORTING
              I_LOGSYS      =  L_SOURCE
        IMPORTING
             E_DESTINATION = L_DESTINATION
        EXCEPTIONS
             NOT_EXIST     = 1
              OTHERS        = 2.
    IF SY-SUBRC <> 0.
      MESSAGE X000(RH).
    ENDIF.
    Incase if someone has worked on a similar problem please help.
    Thanks,
    Mithun.

    Hi..
    These are the Steps to configure Change pointers for any master data.
    In your Case you have to use the Message type of Exchange Rates.
    Steps:
    First of All you have to Create the Basic ALE configurations like Port, Partner profiles etc.
    These are the Steps to Cofigure Change pointers:
    Tcode : BD61 - This will Activate the Change pointers Generally
       Here you select the Check box
    <b>   Activate Change pointers Generally</b>
    Tcode BD50 : Activate Change pointers for individual Message types
      Flag the Check box for ur Message types.
      Material - MATMAS
      Vendor - CREMAS
    Now you have to Schedule the Report RBDMIDOC periodically to pocess Change pointers and Send the IDOCs.
    So wheneven you change a material or Vendor the Idocs has to be generated and distributed.
    <b>Reward if Helpful</b>

  • About exchange rate

    Is there any way to post the document using MIGO transaction by using exchange rate given by user i.e. ztype exchange rate , this exchange is dependent on type of vendor i.e. if the vendor is outside of europe then while posting customized exchange rate should be taken instead of standard one.
    Is there any BADI or BAPI or user exit is available to do it.

    You can send exchange rates via RFALEX00 via ALE/BAPI. Set up the ALE connection, message type is EXCHANGE_RATE. Configure the receiver ALE with message type EXCHANGE_RATE and process code BAPI. Do not forget to customize the distribution model on sender with BD64.
    The plan a job calling regurlarly RFALEX00.

  • How to shynchronizes exchange rate

    hi gurus,
    we need to shynchronizes exchange rate between Central System and Sub System.
    how to transfer exchange rate from Central System to Sub System using IDOC / ALE
    thanks for help
    rgds
    echo

    Hi Prashanthi,
                 I just came across the same problem that you happend to cross thru, If u can please share your tots on how u distributed Exchange rate it wlll be very helpuful, I have done the following configurations;
    1. Partner profile configs, Outbound message type give as CURR_A ( Created this message type in WE81? ), and basic type as T_CURR01, correct if my configurations for partner profile are wrong,In the parnter profile i have give message type as CURR_A .
    2. In BD64 i distributed the logical system, added the method exchangerate.getdetail
    3. Then i used RFALEX00 report to distribute it.
    But cudnt get the idocs in WE05...
    Please let me know the reason for not posting the idoc..all your help will be highly appreciated..Hoping you wud reply.

  • Exchange Rate Information Transfer

    Hello,
    I have been trying to find SAP's recommended method of automating the transfer of exchange rate data (v_tcurr) between different SAP systems.  We do not have BW implemented, so RSIMPCURR does not seem to work.  I've also seen RFALEX00 recommended, but I can't figure out how to get that to work.  We are willing to use ale or batch jobs or anything, really, as long as it happens automatically daily.
    Thank you,
    Nathan

    Hi Nathan,
    Please try this out.
    Goto RSA1 -> Source system -> select your source system -> right click -> transfer exchnage rate -> program (from menu) execute in background -> Date and time and select the periodic option and save.
    Also Check these links
    Exchange rate fields get failed when uploading data
    Exchange Rate file format RFTBFF00
    <b>Reward Points if Useful</b>
    All the Best
    Gokul

  • GR/IRclearing in MR11 in case of exchange rate difference

    Hi Gurus,
    My client has got one issue on GR/IR clearing thru MR11.
    There is one PO with IR happend first( lets say on 01/01/2008) and then GR on 15/01/2008 . on the same day of GR , there is Goods return ( 15/01/2008) for complete good receitpt. Credit memo posted in next posting period ( ex. 02/02/2008) . As it is posted in different period there is exchange rate diffenence between Invoice and credit return. So when user is doing MR11 the system saying there is inconsistency for the difference amount. Thats the reason we could not able to clear that PO.
    I need advice to clear the above PO in MR11.
    anyinputs on this highly appreciated.
    regds,
    raman

    Hi Raman,
    Did you ever figure out the issue above ? We have the same problem.
    Thanks,
    Kevin.

  • How to restrict manual change to exchange rate.

    Hello
    Requirement:
    Our requirement is we want to control the manual exchange rate entry(user type or otherwise) at different form e.g. AP Invoice screen,AR Invoice,GL JV.
    What ever the rate defined pops up,should only be used for transactions and no scope should be given to user to change the rate.
    Process:
    Our process is that We have a boundary system and we manually enter the rates daily and upload to Oracle Application by running a program interfaced with the boundary system.The rates fetched from the boundary system sits in daily rate form as spot rate.
    The profile option "AR: Default Exchange Rate Type" has value "spot".
    Similarly in payable option the rate given as "spot".
    Solution provided by our consultant:
    We have Below clarification from the consultant Oracle team on controlling who can enter exchange rates manually vs who can not.
    Pls see response for both sub ledger and general ledger transactions. An ability to limit manual exchange rate entry & view is, therefore, available in Oracle.
    In Oracle, the transactions are created in subledgers and manual journals are created in General Ledger.The defaulting of exchange rate type is done separately for different subledgers. For General Ledger (creating manual journals) the control is separate.
    1)For transactions originating in subledgers , for eg.Accounts Receivable, the name of the profile option is "AR: Default Exchange Rate Type" and looking at your requirement, this should be set at "Corporate" and not "User" or "Spot". Setting it at Corporate, will make the application look at the predefined corporate rates. Similarly for transactions (invoices/payments) in Accounts Payable, the defaulting can be configured through payable options.
    2)For manual journals , the defaulting of exchange rate type is controlled separately. This can also be secured by definition access set which will prevent unauthorized changes to rate type.
    Questions:
    1.Can we take their suggest given our process that changing the rate to corporate will restrict manual intervention of the user.
    2.whether definition access set feature available in 11.5.10.2 and if so how can we configure.
    3.What is the best way to restrict user from manual intervention.

    Hello.
    For the mentioned forms, you can use Forms Personalization to force users to use a certain type(s) of exchange rate.
    Octavio

  • Message no. SG028 Ambiguous... exchange rate relation

    Hi Friends,
    I have a free of charge order. While doing the Post Goods Issue step, I am getting the following error message
    Ambiguous EUR/USD exchange rate relations
    Message no. SG028  
    I have searched in the forum and made sure that in transaction OB08 Exchange Rate EUR/US and USD/EUR (Exchange Rate Type M) has maintained properly in the system.
    I have also made sure that the entries are properly maintained in SPRO - General Settings - Currencies - Define Translation Ratios for Currency Translation.
    But still the error is coming, I saw in one thread, some one has reported the same problem even after maintaining the exchange rates in OB08, but no solution was suggested as far as I check. could anyone please give some inputs why the same error coming even though the exchange rates are maintained and how to fix this issue as I stuck in Post Goods Issue step
    Thank you

    Hi Christian,
    Thanks for your time.
    I've found the below entries in OBBS
    M   USD    EUR     01.01.1900        100 : 1
    M   EUR    USD     01.01.1900         1    : 100
    Alternative currency is blank in both entries
    In OB07 for exchange rate Type M all the fields (Ref. currency, Buy and Sell rate) and the check boxes are blank. it is still unclear for me being a logistics guy
    While doing Post Goods Issue in other scenario I didnt have any error where currency GBP EUR invovled. In this case the OBBS entries EUR/GBP as below
    M   GBP    EUR     01.01.2000        1 : 1
    M   EUR    GBP     01.01.2000        1 : 1
    Alaternative currency is blank in this case as well.
    Does the valid from date or the ratio make any difference?
    I could not clarify with my FI consultant as he is on vacation. Could you please let me know how to fix it.
    Thank you

  • Exchange rate determination at time of Good Reciept

    My client has a manufacturing operations in Venezuela.   They regularly import production materials as well as supplies etc. to run the business.  The Venezuelan government defines the exchange rate on different types of purchases against the US Dollar.  
    When the goods are purchased the exchange rate is not known.  The Exchange rate has to be applied to the transaction at the time of goods receipt.  The exchange rate will be different for different types of purchases.  For example:  Raw materials are 2.6 Bs per dollar, Supplies are 4.3 Bs per dollar and all other purchases are at the rate of 5.3 Bs per dollar.  The exchange rate must be entered correctly at the time of entering the Goods Receipt.
    The exchange rates are controlled by the government and stay static for a certain amount of time, but can be changed with little notice by the Organization in control.  
    Has anyone on a global SAP implementation or who has worked locally in Venezuela encountered this in the past?  
    If so, how have you handled it in the system?

    Hi,
    If the price control is V, there is no issues.  When you make a goods inwards, the rate will be picked on that date and update the price difference to material value itself.  Ensure, that correct rate updated before making the GR.
    Best Regards,
    Madhu

  • In import PO, Exchange rate is not picking from PO

    Hi All
    In import PO, while doing Miro(Customs) and Migo, the system not  taking PO exchange rate But  it is taking Table Exchange rate.
    is there any thing to be done?
    Regards
    manju

    hi
    in po header delivery/invoice tab tick exchange rate fix indicator
    if u dont tick it system will pick the exchange rate what u maintain in OB08
    regards
    KI

  • Exchange rate in header of acc.doc after posting return to vendor

    Hi Gurus,
    in accounting document, when i recalculated amount in doc.currency & amount in local currency in item line was not same with exchange rate in header section...Anyone can explain to me why this miscalculation can happen ?
    Thanks

    Hi Zafar,
    exchange rate in header of this acc.doc was take automatically from table OB08 & the problem is in item line this acc.doc which is generated automatically after posting return to vendor the calculation amount in local currency was not take the exchange rate from header but from exchange rate when GR ( FLow : mvt 101--> mvt 122 ). so this is normal behaviour or there are bug ?
    thanks in advance

Maybe you are looking for

  • FaceTime doesn't work in Greece?

    Bought iPad for mom so we can talk from the states but trial while here unsuccessful.  Have good wireless connection. Gmail works but my pop account doesn't. Help!  Have loaded skype but..... Thanks for any thoughts or advice!

  • Substing !

    Hi guys. I am bit struct need bit help in the below query... I have one barcode something like this...'11064626|04549580|04549580-0004|NWR|000027.535' now i have to slipt the above information using the query using the pipe character... x=11064626 y=

  • Cannot Save File.  File is Locked

    Good morning.  I just downloaded the Cloud CS6 and am working with Fireworks. I saved a PNG file then later went back to modify and now cannot save the file.  I am trying to save as with a png extension but keep getting the message cannot save file. 

  • Is there a way to recover purged calendar files for Tungsten T5?

    I accidently purged 2 months of calendar files from my Tungsten T5 a few days ago. The kicker to this scenario is I hotsynced my PDA 2 months ago. I did not check the "save archive on pc" in the dialog box. Is there a way to recover the deleted calen

  • Why is adobe download assistant downloading photoshop c6 in stead of Illustrator. How do I download

    How do I download Illustrator...the download assistant keeps going back to the c6 photo shop download and won't download Illustrator. I'm using the button on the "download Illustrator" page. and my computer says it's the same as the other assistant s