Exchange Rate Ratio Not Reflected in New Exchange Rate

We've reached the maximum exchange rate value between IDR and USD (9,999 to 1) based upon our current RATIO of 1,000 to 1.  In our sandbox, via t-code OBBS I've changed the ratio for IDR to USD to 10,000 to 1 with a Valid From date of 12/1/2008.  Then, via t-code OC41 I created a new IDR to USD rate with a Valid From date of 12/5/2008.  When I press enter, the OLD ratio of 1,000 is pulled in, not the new value of 10,000.  I've tried several different dates, ensuring that the rate date is the same or after the ratio date.  None of these approaches change the results.  Is there a RATIO activation step I need to perform before adding the new RATE?

The only way around this situation was to write down all the existing IDR-USD rates and their valid from dates and delete them via OC41.  Via OBBS, I left the existing 1,000 to 1 IDR-USD ratio in place and added the new 10,000 to 1 ratio with a date greater than the ratio entry but less than the first rate date.  I then readded the IDR-USD rates, adjusting the values for the new ratio, and they pulled in the 10,000 to 1 ratio.

Similar Messages

  • Cost Planning Details not reflecting in new version

    Dear Experts,
                        .  We created the 'NEW' version . But we want to copy cost planning from u201C0u201D version to u201C1u201D version. For
    this we are executing u201CCJ9BSu201D t-code but after executing this, only cost
    are getting copied. Detail Planning is not getting copied.Kindly look into the matter and helpful solutions are

    Dear Experts,
    . We created the 'NEW' version . But we want to copy cost planning from u201C0u201D version to u201C1u201D version. For
    this we are executing u201CCJ9BSu201D t-code but after executing this, only cost
    are getting copied. Detail Planning is not getting copied.Kindly look into the matter and helpful solutions are.
    i.e
    1 I planned material costs in .Cj40 > Primary Cost > Edit >Detailed Planning >Change
       Here we maintain material cost, service cost, BPO etc
    2.When we copy the version from '0' to new version which i have created copying the 1 version.Or say '0' version to '1' version then material cost is not reflecting in new version cost planning after CJ9BS.

  • Not reflecting the new value of the AWvariable

    I am working with Jdeveloper and BI beans
    we are using Java Analytical workspace API for connecting and saving the user input as a Analytical workspace Variable
    by using fallowing code
    awConn.executeCommand("awvariable=value");
    here the problem is i can not made this assignment perminent in Analytical Workspace
    i.e after execution of the program i checked with AnallyticalworkSpace manager's worksheet it not reflecting the new value of the AWvariable. It is showing only old value.
    how can i do that assignment it from java api .
    any one can help me

    That other post looks different, though - the OP is now manipulating the model.The OPs statement of the problem was:
    Adding new data to the exitsting model causes the JList to display blank when I refresh the screen.
    The suggestion in the other posting was to change the model not the array and the tutorial has a working example of this.
    The OPs question was:
    When my action performed creates a new instance of the model everything works fine but is this how it should work?
    The answer to this is no, you don't need to change the model, just update the model.
    So if the OP read the other posting and read the tutorial they should have an answer to their problem.
    As you suggested there is no need to create a custom model. The example in the tutorial uses the default list model, if the OP read the tutorial they would know that.

  • Site template changes not reflecting in new the already created site

    I couldn’t figure it out myself how to use site template to modify the existing site created from the site template
    So here is the simplified scenario...         
    I created a Site on Dev. SharePoint 2010, added a couple of SPD workflows, customized lists and views etc. Presented the functionality to the Stakeholders and it was accepted.
    Now the Site will be used as a template and many instances of this Site will be created using these settings (template), so I just went ahead and saved the Site as a template.
    Deployed the Site template to the live environment by deploying the .wsp file, and activated it on the desired site collection.
    THE PROBLEM I'M FACING IS IN THE CHANGE MANAGEMENT: i.e. now the sites are being created and at some point in the future there is a suggestion to add functionality or a bug to be fixed.
    MY APPROACH: I have created a sample instance of the template. I made all the changes to that template and re-saved it. This way the new sites which are created from that template do have all the fixes and enhancements.
    THE PROBLEM: How can I update the existing sites that have already been created, to apply the same fixes and enhancements?
    Thanks in advance

    You could look at the Stack Exchange thread that seems to exactly match this question (from
    here).
    Think about using the features framework, as the closest you can get to updating the template is to update all the features that the said template is based on.
    Beyond that, I can't think of anything that might achieve what you're after.
    Steven Andrews
    SharePoint Business Analyst: LiveNation Entertainment
    Blog: baron72.wordpress.com
    Twitter: Follow @backpackerd00d
    My Wiki Articles:
    CodePlex Corner Series
    Please remember to mark your question as "answered" if this solves (or helps) your problem.

  • Saved LKM Options not reflecting in new Interface

    I have modified my LKM option to truncate my target table. When I create a new interface, the LKM is automatically selected, but the options selected are not what I had saved. How can I "really" change my option so that every time I create a new interface, I do not have to change the truncate table option from a NO to a YES?
    Thanks,
    Dinesh.

    Hi Dinesh ,
    When you change the TRUNCATE table option from a NO to a YES inside an Interface , it is applicable to that particular interface only.
    If you want to set the truncate table default option to YES then try the following .
    1. Duplicate the KM (so that original KM remains the same for backup purpose ) , give a name to this duplicate KM . Say XYZ
    2. Expand XYZ , goto the TRUNCATE step
    3. Change the Default value to YES
    4. Save and use it in interface .
    Now onwards you do not have to change the truncate table option from NO to YES
    Thanks,
    Sutirtha

  • Model in my JList not reflecting the new value I added to it?

    uness I create a new model object and modify it then my code does not work as I want. Adding new data to the exitsting model causes the JList to display blank when I refresh the screen. I have created my own implementation of an editable Model.
    When my action performed creates a new instance of the model everything works fine but is this how it should work?
    //In my GUI I have a JList initialized with the model ....
    private EditableListModel model = new EditableListModel();
    model.add("one");
    model.add("two");
    model.add("three");
    colsToDisplayJList.setModel( model );
    I have a button with the following action performed
        private void addActionPerformed(java.awt.event.ActionEvent evt) {                                   
            //model = new EditableListModel();
            model.add("four");
            colsToDisplayJList.setModel( model );
    //EditableModel implementation
    import java.util.*;
    import javax.swing.AbstractListModel;
    public class EditableListModel extends AbstractListModel
        private Vector items = new Vector();
        public Object getElementAt(int key)
            return items.get( key );
        public int getSize()
            return items.size();
        public void add( String item )
            items.add( item );
        public void remove( String key )
            Iterator iter =  items.iterator();
            int index = 0;
            while( iter.hasNext() )
                String item = (String)iter.next();
                if( item.equalsIgnoreCase( key ) )
                    items.remove( index );
                    break;
                index ++;
    }

    That other post looks different, though - the OP is now manipulating the model.The OPs statement of the problem was:
    Adding new data to the exitsting model causes the JList to display blank when I refresh the screen.
    The suggestion in the other posting was to change the model not the array and the tutorial has a working example of this.
    The OPs question was:
    When my action performed creates a new instance of the model everything works fine but is this how it should work?
    The answer to this is no, you don't need to change the model, just update the model.
    So if the OP read the other posting and read the tutorial they should have an answer to their problem.
    As you suggested there is no need to create a custom model. The example in the tutorial uses the default list model, if the OP read the tutorial they would know that.

  • Why is my balance not reflecting my new redeemed itunes card

    My redeemed Itunes balance is not showing up on my itunes account balance.

    Is Automatic Downloads enabled on your New computer... are you using the Same Apple ID... Is you new computer Authorized...
    Automatic Downloads...
    http://support.apple.com/kb/ht4539
    Also see...
    About authorization and deauthorization

  • Compiled CHM File Does Not Reflect New Project Name

    I have read many of the experts' responses to posts and found them extremely helpful. However, I have not seen one that addresses my issue.
    I have RH HTML Version RH8. I renamed a project via 1) File - Rename Project and 2) Single Source Layouts - Primary Layout - Properties - Output Folder and File Name.
    Two problems are: 1) The Project Folder name still reflects the old project name and 2) The CHM file still reflects the old project name.
    As a result, the output Help that the user sees still has the old project name in the title bar.
    All generated files as well as the RoboHelpHTML Project File were changed to the new project name, just as the RENAME PROJECTS Help says it should. However, the CHM file does not reflect the new project name as it says it should.
    1) Can I change the Folder name that was created when I compiled the Help file to the correct name?
    2) Can I change the FILENAME in the SELECT OUTPUT FOLDER AND FILENAME  window?
    3) Can I / should I rename the TOC and Index filenames from the old project name to the new project name? (Help says that changing the project name does not change these file names and it didn't.) 
    Will any of these actions correct the problem? I appreciate any help you can give. 

    Welcome to our community
    Try File > Project Settings.
    And if that doesn't get it, try the Project Set-up pod, windows and change the Window Caption.
    Cheers... Rick
    Helpful and Handy Links
    RoboHelp Wish Form/Bug Reporting Form
    Begin learning RoboHelp HTML 7, 8 or 9 within the day!
    Adobe Certified RoboHelp HTML Training
    SorcerStone Blog
    RoboHelp eBooks

  • Changes to Query not reflected in views

    We want to use various views off of a 'master' query to publish in our portal.  I was working on the assumption that an advantage of the views was that if a change needed to be made it could be made in the query and then all the views off of that query would reflect the change.  However I have discovered that some changes made in the query do not get reflected in the views.  For example if I change the scaling on a key figure, this change does not get reflected in the views.  In one case, as a test, I modified a formula in the query and also changed the scaling.  The view reflected the modified calculation but did not reflect the new scale.
    Does anyone know how to force these type of changes or is there documentation that at least list those changes made to the query that will not get reflected in the views?
    Any help would be appreciated.
    Stan Pickford

    Hi Stan,
    in general: Everything which belongs to the query view object won't be overwritten by query changes.
    What belongs to the query view object? Basically everything you can change during execution of a query (Dynamic filters, Drill-Down-State, Properties of characteristics, structure elements (keyfigures) and Query-View).
    What does not belong the query-view object: Definition of structure elements, Navigation space (characteristics available during runtime), Static filters.
    Heike

  • Updating Flash Player Does Not Reflect In Add-Ons Manager or Plug-In Check

    The add-ons Manager shows I have Flashplayer version 11.3.300.265. The Plug-ins Check shows there is an update, and I downloaded and installed Flash Player version 11.3.300.268. Six times! Each time, the installation shows as successful on the Adobe site, but FF14 does not reflect the new version, and the Plug-in check continues to insist that the version is out of date.
    I had no problems whatsoever updating to the latest Flashplayer version in IE (8). But FF is once again giving me trouble with this.
    In addition, the add-ons manager shows a version of Flash 9.0.45.0, last updated Feb 20, 2007. There's a big red warning that it's out of date. This is in addition to Shockwave Flash (the correct one) and Shockwave for Director (which is current). It's been like this for awhile, and I disabled the antique version of Flash and it does not affect FF or Flashplayer performance.
    I tried deleting my plug-ins database, but I just get all the same info when it is rebuilt. Any suggestions or solutions would be appreciated.

    Such old version are usually located in the plugins folder in the Firefox program folder (C:\Program Files\Mozilla Firefox\).
    You can enable the plugin and verify the path on the about:plugins page.
    You can set the plugin.expose_full_path pref to true on the about:config page to see the full path of plugins on the about:plugins page.
    *http://kb.mozillazine.org/Issues_related_to_plugins#Identifying_installed_plugins
    *http://kb.mozillazine.org/about:plugins
    *http://kb.mozillazine.org/about:config
    It is best not to leave that pref set to true as it exposes that full path to web servers, so reset that pref to false after you are done with the about:plugins page.
    See "Manually uninstalling a plugin":
    *https://support.mozilla.org/kb/Troubleshooting+plugins

  • Free busy information not working in new exchange site.

    HI,
    We have central site Exchange 2010 setup and it working fine . For business requirement we Installed new Exchange server(Mail/CAS/HUB) in new site.
    Post installed, Auto discover and mail flow are working fine but Free/busy information is not working for new site mailbox users(Not working in outlook and OWA also).
    I am having a strange error coming from outlook. When I run "Test E-mail AutoConfiguration" in Outlook, it comes up with Protocol: Exchange Http "wrong server name"
    Please share your suggestion to change/configure  "correct server name"  in "Protocol: Exchange HTTP"
    Protocol: Exchange HTTP
    Server: wrong server name
    Login name: testuser
    SSL: Yes
    Mutual Authentication: Yes
    Note : ( Protocol: Exchange RPC show correct server information and other Urls (OOF, OAB, OWA, Availability server).)

    Hi will martin,
    Thanks for your reply..
    Yes , I already pointed internal web  service virtual directory ( "https://casarrayname/EWS/Exchan...) to CAS server in new site. Other internal URLs (OWA,ECP,OOF,Availability service) also pointed to
    new site CAS server.
    But , when i check Auto discover internal URI and URL. below is the result.
    Result 1
    [PS] C:\Windows\system32>Get-AutodiscoverVirtualDirectory -Server Servername
    Name                                    
    Server                                  InternalUrl
    Autodiscover (Default Web Site)        
    Servername
    Result 2
    [PS] C:\Windows\system32>Get-ClientAccessServer -Identity servername |fl *internaluri*
    AutoDiscoverServiceInternalUri : https://casarrayname/Autodiscover/Autodiscover.xml
    When i tried to set interurl using the below command and it completed with no error but still InterURL not reflect. 
    command : Set-AutodiscoverVirtualDirectory -InternalURL https://casarrayname/Autodiscover/Autodiscover.xml

  • Change in Quota at Exchange Server does not reflect in Outlook

    I have changed the quota for a database on the exchange server from the default 2 GB to Unlimited and even restarted the information store service. The user is able to receive emails and send them as well. However in Outlook the message still persists that
    users quota is 2 GB. Have restarted Outlook several times. Can anyone shed some light why this may be happenning. Also what is the default interval in which the information displayed by Outlok changes after a change at the exchange server?
    Ron
    Ron

    Hi RonMen,
    The change of mailbox quota will not reflect in outlook immediately,  the update occur every 30 minutes by default.
    Updates can be triggered either manually by the user or automatically.
    The following user actions will request the server to update the properties :
    1. Emptying Deleted Items
    2. Emptying a Folder (via the button in the ribbon’s folder tab or right-click on folder)
    3. Permanently deleting (shift-delete) an item
    4. Closing the Archive / AutoArchive dialogs
    There is a more detailed article for your reference:
    Mailbox Quota in Outlook 2010 - general information and troubleshooting tips
    http://blogs.technet.com/b/outlooking/archive/2013/09/19/mailbox-quota-in-outlook-2010-general-information-and-troubleshooting-tips.aspx
    If you have any further questions, please let me know.
    Best regards,
    Eric

  • Exchange servers not reflecting in Server State tab in monitoring in SCOM 2007 R2

    Hi,
    We have added few exchange servers in SCOM 2007 r2 for monitoring, but few of them are not reflecting in the Monitoring> Exchange 2010> Server State tab, whereas they are healthy in admin tab.
    Can anyone help on this?
    TIA

    Check from following:
    open firewall.
    Enable Exchange Rule for monitoring
    Enable proxy Agents
    Check Configure monitoring Exchange 2010 as exist below link
    http://www.msexchange.org/articles-tutorials/exchange-server-2010/management-administration/monitoring-exchange-2010-opsmgr-2007-r2-part1.html
    Please remember, if you see a post that helped you please click "Vote As Helpful" and if it answered your question, please click "Mark As Answer"
    Mai Ali | My blog: Technical | Twitter:
    Mai Ali

  • HT2480 just updated to ios 7 and had to change my password on my exchange account, now it will not recognize my new password

    Just updated my iphone 4 to ios 7.01 and had to change my password on my exchange account.  My exchange account will not verify the new password even though they are the same for both laptop and iphone

    Hi,
    It should allow you to change the password in Settings > Mail, Contacts, Calendars > your account > Account > Password > Done
    Or you can try to remove your account and add it again in Settings > Mail, Contacts, Calendars > Add Account > Exchange
    Hope it helps

  • Excise rates not reflecting in PO based on values entered in newly created condition table in TAXINN.

    Dear SAP Gurus,
    I have created a new condition table using t.code m/03 by taking a copy of existing standard condition table. I have assigned the newly created condition table to access sequence. After assignment of condition table i have entered the relevant excise rates in excise condition types using the newly created key combination through t.code FV12. When i enter the Tax Code in PO, excise duty rates are not reflecting in PO. When i am entering the excise rates in any other standard key combination, excise rates are reflecting in PO.
    Following are the fields in newly created key combination (Condition Table)
    1) Country
    2) Plant
    3) Control Code
    4) Tax Code
    Kindly help me in resolving the issue.
    Regards,
    Vinay

    HI,
    Check whether you have maintained the rates for the new tax code in FV11 also whether you have assigned the tax code to the company code ?
    Compare the tax code which is working in PO with the one which is not & find out if there is any difference.
    If you want to post the tax values to the new G/L in OB40 then maintain the same settings for the tax code which is working in PO.
    Thanks & Regards,

Maybe you are looking for

  • Can I import one chapter of a dvd of old family movies to edit or do I have to import the entire dvd first?

    I had an old family film converted toa dvd. I would now like to use one chapter in a project I'm working on. Can I just import the chapter I want or do I have to import the entire dvd first and then edit. It takes so long to do?

  • How can i update my iTunes to the latest version on window vista?

    how can i update my iTunes to the latest version on window vista?

  • Output audio different than video

    From FCP, timeline highlighted, I exported to Compressor. 30 minutes of video and corresponding audio. When it's finished the video is what was in the timeline in FCP, but the audio is from another clip altogether. I've tried the same steps with othe

  • Problems any idiot can solve

    I don't know why.. I'm new to Java, my previous computer had it already installed, and when I try to access a java-powered chatroom, it doesn't work. I have the java.sun.com/getjava thing already, I don't know why it won't work. My security is low an

  • Adobe 9.3.2

    since i updated my reader, my HDD is getting filled with XXXXX.TMP files at a rate of 10-15GB per day. what can be done to stop this ? location of files under win xp: C:\windows\temp\PDFxxx.tmp