RU's functional currency change in FC

Hello, dear colleagues!
If anyone has an experience in performing RU's currency changes? I mean, how to change functional currency in one or more reporting units from, for example since January of New Year from one USD to EUR? Will be very grateful for any answers! I haven't find any documents or materials about it. Thanks!

Hello, Graham!
Thanks a lot for your answer, but can you please specify, how to find this document? I try to use search in Sap Marketplace within official SAP notes by number 1221228, but without any result. Also i've looked on all articles here on SDN in EPM section with the same result. thanks again!

Similar Messages

  • BEx Analyzer (7.x): currency change when new formula created

    Hi All,
    I have a strange one.  Query is executed in BEx analyzer.  A new formula is created outside the query results window using excel functionality, and the currency changes from USD to DM. 
    Example query results: 
    Cell A1: Var 1 = $150.00
    Cell B1: Var 2 = $160.00
    Cell C1: Var 3 = $70.00
    New formula created using excel functionality:  =sum(A1+B1) displays as 310.00 DM
    The language settings have been checked for the operating system and for SAP (user data) and they appear to be correct.  Is there another setting to be checked?
    Thanks,
    Pam

    sap said it was working as designed.  suggested we look at regional settings on laptop and make a workbook template with us settings.

  • Contextual Event - "Currency Change Event" not raised?

    Hey,
    I am trying to raise contextual event on a table when I click on a row. The event type for a table is eventType="Currency Change Event" But is not working.
    Here is the event in the PageDef file.
    <events xmlns="http://xmlns.oracle.com/adfm/contextualEvent">
    <event name="paramValueChangedEvent"
    customPayLoad="${bindings.PolicyId.inputValue}"
    eventType="Currency Change Event"/>
    </events>
    After that I want to raise custom method:
    <methodAction id="testEvent" InstanceName="myBean.dataProvider"
    DataControl="myBean" RequiresUpdateModel="true"
    Action="invokeMethod" MethodName="testEvent"
    IsViewObjectMethod="false"/>
    Here is the event map:
    <eventMap xmlns="http://xmlns.oracle.com/adfm/contextualEvent">
    <event name="paramValueChangedEvent">
    <producer region="*">
    <consumer region="" handler="testEvent" handleCondition=""/>
    </producer>
    </event>
    </eventMap>
    When I raise the event programmatically, then the event is raised and my function is called.
    Here is the code. I call this function on a custom selection listener of the table.
    public void riseCurrencyChangeEvent(String treeID, String nodeID,
    String attributeValuedPassedName) {
    DCBindingContainer bc = ADFFacesUtils.getDCBindingContainer();
    FacesCtrlHierBinding tbl =
    (FacesCtrlHierBinding)bc.findCtrlBinding(treeID);
    FacesCtrlHierNodeBinding node =
    (FacesCtrlHierNodeBinding)bc.findCtrlBinding(nodeID);
    EventDispatcher dispatcher = bc.getEventDispatcher();
    node = (FacesCtrlHierNodeBinding)tbl.getRootNodeBinding();
    dispatcher.queueEvent(node.getEventProducer(),
    node.getCurrentRow().getAttribute(attributeValuedPassedName));
    bc.getEventDispatcher().processContextualEvents();
    My idea is not to call custom method after clicking on a table row, but I want to raise declaratively the event because I will need so generics.

    Hi,
    there is a bug 10045872 filed for this. The bug is scheduled for fixing in PS4 (11.1.1.5) I'll work on a manual - though code centric - alternative for the time being and publish it on ADF Code Corner when done.
    Frank

  • ColdFusion 11: allowedextforinclude functionality has changed. But the docs haven't been

    G'day:
    I am reposting this from my blog ("ColdFusion 11: allowedextforinclude functionality has changed. But the docs haven't been") at the suggestion of Adobe support:
    @dacCfml@ColdFusionCan you post your queries athttp://t.co/8UF4uCajTCfor all cfclient and mobile queries.— Anit Kumar Panda (@anitkumar85)April 29, 2014
    This particular question is not regarding <cfclient>, hence posting it on the regular forum, not on the mobile-specific one as Anit suggested. I have edited this in places to remove language that will be deemed inappropriate by the censors here. Changes I have made are in [square brackets]. The forums software here has broken some of the styling, but so be it.
    G'day:
    Remember this one: "ColdFusion 11: preventing files from being included? [WTH], Adobe?". I can confirm this verymoderatelyslightly contentious feature has been changed in ColdFusion 11, but the docs have not been updated to reflect the change.
    The issue is summarised thus (from the article linked-to above):
    [...]out of the box ColdFusion 11 will only allow the inclusion of CFML and HTML files. Why? They cite "for security reasons". Here's a quote (posted in the bugtracker, originally from the pre-release forums):
    "Vamseekrishna Manneboina: Yes, this was done as part of a security measure. You can now only include CFM/CFML files by default. You can specify additional extensions via a property called allowedextforinclude in neo-runtime.xml. By default, HTM and HTML file extensions are already added to this list/property, thereby allowing for inclusion of HTM and HTML files too by default."
    OK, I disagree there's merit in this, some others agree, others disagree. But... so be it. I actually thought - if I was in a charitable mood - that the people that were "for" this change made a reasonable case for its inclusion, so - whilst not agreeing with them - I was content to just shrug and go "yeah, oh well".
    Now this feature is still in the docs: "New in ColdFusion 11 - Restrictions", but this is not the way it now works. Initially I thought it had been removed completely (and I am now in the midst of retooling this article from saying that... as I only worked out what was going on 2/3rds of the way through writing it).
    I did a secure install the other day, and one of the first things I tested was this:
    <!---test.cfm---> <cfset message = "before"> <cfoutput> #message#<br> <cfinclude template="code.inc"> <cfset message = "after"> #message#<br> </cfoutput>
    <!--- code.inc ---> <cfset message="within"> <cfoutput> #message#<br> </cfoutput>
    And this all runs fine, as one would expect:
    before
    within
    after
    Next I checked neo-runtime.xml to see if the settings had been augmented to switch this off by default: but I'm buggered if I can see any reference to it anywhere.
    So I then checked ColdFusion Administrator to see if there was any hint of it there, as this was one of the things Adobe said they were going to do in their solution to this. And there it is:
    So by default now, anything is allowed. I figured I must have missed the setting in neo-runtime.xml, so changed the setting to "FOOBAR" so I could easily spot it, and there it is down @ /wddxPacket/data/array/*[16]/var[@name="compileextforinclude"] in neo-runtime.xml:
    <var name="compileextforinclude">    <string>FOOBAR</string> </var>
    And - having changed it back to something sensible: CFM, then the feature now "works":
    before
    #message#
    after
    However this is probably a worse security hole than the one they were trying to fix! It looks OK when looking at the render in the browser, but look at the actual raw mark-up:
    before<br> <cfset message="within"> <cfoutput> #message#<br> </cfoutput> after<br>
    We have unparsed CFML source code sent to the browser. This is awful. What if someone switches this on, and doesn't spot one of their old includes which has less-than-trivial CFML in it? It's now publicly accessible. Adobe have created a feature which has the possibility to leak source code to the outside world. How is that a security feature?
    Also interesting is that with the super-secure profile installed, this is still off by default? I would have thought it'd be on in this case?
    I still don't think this feature has been implemented properly, and it all still points even more to the fact the Adobe ColdFusion bods don't really know what they're doing.
    Anyway, I'll nudge Adobe to at least get the docs sorted out.
    Time for work (3min ago)...
    Adam

    Hi Adam,
    Regarding "What if someone switches this on, and doesn't spot one of their old includes which has less-than-trivial CFML in it?", yeah I agree that'd be a problem.  Hmm, maybe both this.allowedextforinclude *and* this.compileextforinclude should've been supported (instead of replacing the former w/ the latter as was done)?  Example:
    this.compileextforinclude="cfm,cfml,inc";
    this.allowedextforinclude="cfm,cfml,inc,txt";
    That way an exception could be thrown if cf|included file's extension wasn't in the this.allowedextforinclude list.
    Perhaps the above could be shortened to:
    this.compileextforinclude="cfm,cfml,inc";
    this.allowedextforinclude="txt";//implicitly includes * from this.compileextforinclude (since -compile- implies -allowed-)
    Dunno if that'd be confusing.
    Anyhow, just some thoughts..
    Thanks!,
    -Aaron

  • Planning function to change date field value in layout

    Hello experts,
                          I have 1 BPS layout with 2 date fields ( Start date, End date ). With a filter conditions, set of data comes in BPS layout on execution and 2 date fields also contain some value...I want to change values of these 2 dates...both the date fields are char infoobjects..in BPS layout, in planning function I got only 1 function ( Repost function ) to change the value of char infoobject based on some condition. but date field value is not the status field...i want to enter new date instead of old date..if i right exit function in that also i can change only keyfigs values..so please help me to solve this problem..
    Thanks & Regards,
    Priyanka Joshi

    Hi Priyanka,
    As of now master data planning is not so flexibly supported.
    Still u can refer the below link which is enhancement of standard Repost function,and can be used to change master data.
    [http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/10d2b273-0e12-2c10-fab3-a34bde559f92]
    As far as my knowledge goes u cannot directly input date in rows.
    regards,
    Rajendra

  • Using Javascript function to change the value of a request variable

    Have a javascript function that activates onchange within a form variable. Would like the javascript function to change the value of a request variable.
    The javascript function is able to obtain the current value of the request variable ( which is 0 ) however I am unsuccessful in changing the value to 1.
    I have been trying to use the following:
         var vchange = 'request.changes_made = 1 ;' ;
         eval(vchange);
    Any ideas?

    If the user makes a change to the content of the form, and then attempts to leave the form, a javascript alert pops up giving the user the option of cancelling the submit, returning to the form and saving it.
    If there have been no changes, then the user is free to migrate to another page.
    This process is to protect users from losing valuable information but not to annoy them with "R U Sure" messages.
    Knowing the status of the form content is important to the functionality of the application.
    G

  • Payment in other than functional currency and bank currency

    Hi
    I am working in a implementation project, i am facing one issue related to multiple currency transaction.
    client is maintaining one bank account(USD) in other than functional currency(INR), that account they are using for making a payment in USD or other than USD(third) currency, so in case of payment held in third currency, conversion will happen between USD to third currency, hence there is no functional currency is coming in conversion and at bank account level multiple currency check box can not be enabled due to bank account currency is other than functional currency.
    Could you please help me out on this issue.

    Hi Kiran
    Thanks for your reply
    I am required Little more help on this, please find the bellow example
    Example
    Ledger/functional Currency is INR
    bank currency is USD
    Currency conversion rate has been defined for the currency
    invoice is created in GBP, payment need to be make in GBP currency from USD account, because USD$ use for the GBD conversion, now my concern is bank is in USD currency that is other than functional currency, hence multi currency check box can not be enabled, since functional currency is INR so all transaction should be convert to INR for accounting and as multiple currency not allowed at bank therefore enable to make payment from same bank.
    Thanks
    Tarun

  • Cr XIR1 to create a custom function to change the timestamp of a field

    Post Author: palm
    CA Forum: Crystal Reports
    Hi,
    I am trying to create a custom function to change the timezone of a field in the report depending on the timezone selected by the user in the prompt
    I wrote a SQL Expression to do this , but i ended up creating a bunch of expressions for each time zone ,
    So i am thinking of custom fuction some thing like
    TimeZoneConvertor:
    Fuction(TimeStampField ,  Timezone)
    Returns: Timestamp field with newtimezone as selected by user
    Hope you get this and please give me some kind of ideas to acheive this
    Thanks in Advance!!!!!!!!

    Hi
    goto se37...here u need to create a function group... then u need to create a function module. inside assign import/export parameters. assign tables/exceptions. activate the same. now write ur code within the function module
    http://help.sap.com/saphelp_nw04/helpdata/en/9f/db98fc35c111d1829f0000e829fbfe/content.htm
    Look at the below SAP HELP links, These links will show you the way to create a Function Module
    http://help.sap.com/saphelp_nw04/helpdata/en/26/64f623fa8911d386e70000e82011b8/content.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/9f/db98fc35c111d1829f0000e829fbfe/content.htm

  • Difference in between account currency and functional currency

    Hi Sap Experts,
    What is the difference in between account currency and functional currency.
    In which table account currency and functional currency will be stored.
    Regards,
    Rajprabhakar
    Moderator: Please, avoid asking basic questions

    A Payer is the individual or company who settles the invoices foa a service or for delivered goods.
    Whereas the account group determines:
    Which screens and fields are necessary for entering master data
    Whether you can or must make an entry in these fields
    How master record numbers are assigned (externally by you or internally by the system) and the number range from which they are assigned
    Which partner functions are valid
    Whether the business partner is a one-time customer or one-time vendor.
    Reward if useful.
    Amruta

  • In the new iOS-7 Safari, has the "reader" function been changed to eliminate the option to modify font size (and hence to modify the number of words per line), or is it just that I can't find how to do that?

    In the new iOS-7 Safari, has the "reader" function been changed to eliminate the option to modify font size (and hence to modify the number of words per line), or is it just that I can't find how to do that?

    iOS 7
    Seperate text size modification is no longer available in Safari Reafer.
    Use Settings.
    Settings >General > Text Size

  • Is it possible to restart a new PO release when partner function is changed

    Dear all,
    I have encountered an issue from one of our MM users. In the existing setting, system allows user to change the vendor code for the partner function PI (invoice presenter) after the PO has been partially/completely released. From my understanding, purchase order will be restarted to a new release if another release strategy is re-determined by changing the classification value(s). But for my case, the same release strategy need to be restarted.
    I would appreciate to anyone who gives valuable advise is helpful.
    Best and regards,
    Eddy Au

    I almost had this requirement too in my current project, but before I could find a solution for this, the client scrapped the idea. However, now that you have raised this issue, I'd like to figure this out too.
    There is one thing we could try, although I am not sure if this is correct. If we could generate a new print message if the PI Partner function is changed, and for the release indicator in your current strategy which has the 'Released' box checked, we could set the Changeable field to '6'. This way should the partner function PI change, it would generate a new message and restart the same release strategy.
    You could try this, I will also try and figure this out. This would only work assuming the first message generated when the document was saved is already processed, and now a new change message is generated.
    Regards,
    G. Coelho
    Edited by: Godwin Coelho on May 9, 2011 10:44 AM

  • GL: Import Journal only accept those non-functional currency

    Hi,
    I have tried to run import journal using Oracle General Ledger. However, I found that there is always an error 'EC08 - Invalid currency code' when the records contains functional currency code, e.g. HKD. For all other currencies, like JPY, i.e. non-functional currency, the import journal can then be completed successfully. Kindly please explain how to import journal successfully from the data containing the functional currency, like HKD in the Oracle General Ledger module. Many Thanks.
    Please e-mail answer to [email protected]
    Thanks in advance.

    Hi,
    I have tried to run import journal using Oracle General Ledger. However, I found that there is always an error 'EC08 - Invalid currency code' when the records contains functional currency code, e.g. HKD. For all other currencies, like JPY, i.e. non-functional currency, the import journal can then be completed successfully. Kindly please explain how to import journal successfully from the data containing the functional currency, like HKD in the Oracle General Ledger module. Many Thanks.
    Please e-mail answer to [email protected]
    Thanks in advance.

  • Is there api function to change access mode and set a passcode to recording in meeting?

    Is there api function to change access mode and set a passcode to recording in meeting?
    When I'm trying to use "action=acl-field-update&acl-id=SCO_ID_RECORDING&field-id=meeting-passcode&value=MY_PASSC ODE" it just clean the password and do not set it or change.
    And "action=permissions-update&acl-id=SCO_ID_RECORDING&principal-id=public-access&permission- id=view-hidden" do not work too.

    There is not a specific API for doing this. This was discussed in the other Connect forum here, Adobe Connect User Community.
    For you call I would make the second part differently. Instead of 'field-id=meeting-passcode&value=MY_PASSCODE' I would call 'meeting-passcode=MY_PASSCODE' and see if that worked better.

  • Paying Foreign Currency Invoice with Functional Currency

    Hi,
    Can anyone advise if I am able to pay a foreign currency invoice
    using functional currency in AP? Eg. if my functional currency
    is USD and invoice is in GBP, how can I pay in USD against the
    GBP invoice? Thank you and God bless you.

    Most versions of Oracle Financial system, allows the payment of
    Foreign Currency invoices in functional currency. If you tried
    to pay the Foreign Currency invoices in functional currency, and
    if you got error it could be due to of different reasons.
    One very common reason, is the lack of (refer currency
    conversion rate set up if you are not familiar) of a conversion
    rate in the date range of the invoice.

  • (AP)INVOICE입력시 FUNCTIONAL CURRENCY임에도 환율정보가 들어가있는 문제

    제품 : FIN_AP
    작성날짜 : 2004-11-24
    (AP)INVOICE입력시 FUNCTIONAL CURRENCY임에도 환율정보가 들어가있는 문제
    ====================================================
    Problem Description
    외화 Invoice를 copy하여 신규 invoice를 생성합니다.
    생성된 invoice의 Supplier정보를 Functional Currency가
    설정되어 있는 Supplier Site로 변경할 경우,
    Currency정보를 Functional Currency임에도 Exchange Rate와 Exchange Date정보가
    없어지지 않고, 남아있어 Accounting후 금액이 잘못 생성되는 현상이
    발생했을때의 조치방법입니다.
    Solution Description
    Bug 3502444 로 진행된 건으로
    APXINWKB.fmb 115.716 에서 Fix되고, 해당 version은
    AP.M 혹은 Financial Familypack G에 포함되어 있습니다.
    아래는 Code Fix solution입니다.
    1)Open the invoice workbench:-APXINWKB.fmb
    2)Open the program unit:-INV_SUM_FOLDER_ITEM_VENDOR
    3)Goto the procedure:-procedure vendor_site_code (event varchar2)
    4)Goto the condition:-elsif (event = 'WHEN-VALIDATE-ITEM') then
    5)Now thes e are the lines below it:-
    if (:system.mode = 'NORMAL') then
    --bug 2278791 fix START
    if (:inv_sum_folder.vendor_site_code is not null) then
    if (not form_utilities.is_db_record('INV_SUM_FOLDER')) then
    6)Add this line below the last line mentioned above:-
    -- bug 3954132 reinitialize the old currency code, so that it can be
    compared.
    :inv_sum_folder.old_invoice_currency_code :=
    :inv_sum_folder.invoice_currency_code;
    7)Now compile the form and test it.Please follow the "Steps to verify that
    bug is fixed" as mentioned in the base bug.
    8)The problem should not occur.
    REFERENCE
    Bug : 3502444

Maybe you are looking for

  • Error in rescheduling a report programatically

    Hi All, I am trying to reschedule a report to use a new password using a c# program. But when I run the new schedule, the instance always shows "running" status. If I click on the status, I get the message "An error has occurred: The property with ID

  • Display MOTD in Web Browser

    Hi I know that we can display MOTD banner through terminal and Telnet session. IS there anyway to display MOTD banner from the Web Browser interface. That is when I http into the Access Point. I will like to see the MOTD in there. Thank Tan

  • Oracle 11G fusion middleware weblogic server

    Can anyone help me to know all about oracle 11G fusion middleware weblogic server. Please provide me soft stdy material links. prompt reply really appriciated. Regards Piku

  • Turning off automatic update checks

    How do you turn off automatic update checks? Not only do these pop up on their own even though I have all the 'update' options in iTunes set to manual, but when they do pop up, they do so in a top priority fashion, kicking me out of whatever else I m

  • Best method for dynamically populating PDF on the web?

    Hi there, I'm trying to find a web-based solution to populate text within an existing PDF with a person's name (using a name variable within the PDF body copy in several spots).  I know that LiveCycle Designer is the best method for creating dynamic