Parallel Currency Urgent simple question

How can I figure out if my client is using Parallel Currency Valuation. Please let me know. I have used  T.code OB22 however I dont see our company code in the overview screen.

Hi
Post any document in F-02 when you simulate the transaction there wii be a tab called display currency click on that tab there if you could see the other currencies then your company code is working with parallel currency
Regards
Sandy

Similar Messages

  • URGENT : Simple Question

    I know that my question may be strange but I have some problems doing this. I want to know how to validate that a file browser content is null. I want to be sure that the user did not forget to click on my 'Join' button before submitting the page.
    Thanks

    You could create a on demand page process that could check to see if file browse field is null.

  • A very simple question..Very Urgent

    HI,
    I have a very simple question.I am able to set up the client authentication as well as server authentication. Now do i need to authenticate (both server as well as client auth.) for every request i send to the server on https...i think it should be like that it should authenticate only for the first time and for the next upcoming requests in same session should not require any server or client authentication.. i think as it happens in browsers..
    what is the fact actually??..can somebody put some light...right now in my case it is authenticating for every requests..
    This is what i have done..
    /****constructor part********/
    // and tm are arrays of keymanagers and trustmanagers for client keystore and truststore
    sslContext.init(km, tm, null);
    HttpsURLConnection.setDefaultSSLSocketFactory(ssf);
    HttpsURLConnection.setDefaultHostnameVerifier(new MYHostNameVerifier());
    /****Method to send the request and response*********/
    urlConn = (HttpsURLConnection)url.openConnection();
    urlConn.setDoInput(true);
    urlConn.setDoOutput(true);
    OutputStream os = urlConn.getOutputStream();
    ObjectOutputStream oos = new ObjectOutputStream(os);
    oos.writeObject(someobject);
    oos.flush();
    InputStream is1 = urlConn.getInputStream();
    ObjectInputStream ois = new ObjectInputStream(is1);
    SomeObject retObj = null;
    retObj = (SomeObject)ois.readObject();
    ois.close();
    System.out.println("Get String>>>>> "+retObj.getString());
    I am creating the object of this class..and calling the method again and again for sending requests and response..so i think handshake everytime i call the method...what i want is that handshake should happen for the first time and for the next requests no handshake or certificates should be checked or processed..
    is it possible ..how..what i need to do for that..
    please help me in this..
    Akhil Nagpal

    Hi,
    how could I achieve SSL Session Resumption using HttpsURLConnection.
    Thanks.

  • Parallel Currencies and Depreciation areas

    Hi all
    I have a simple question. When we maintain multiple currencies for a company code, what are the requirements for maintaining depreciation areas? Do we need to maintain a seperate depreciation area per currency? I am unsure of the link between multiple currencies and depreciation areas.
    Need ur expert help to help me understand this better.
    Thxs in advance.
    Hrishi

    HI
    Any Depreciation Posting should automatically post to all the currencies that are active for a company code. In your case Parallel currency. Depreciation area has no link to the currency.
    Regards

  • Parallel Currency Depreciation Areas.

    Hi,
    I have activated parallel currencies (Hard Currency - EUR & Indexed Based - USD) concept to my company code.  I am trying to settle WBS, that time I am getting error message "Company code XXXX manages parallel currencies in Asset Accounting. For each area that posts automatically online to FI, you have to define one dependent depreciation area that adopts both identical values and depreciation terms from depreciation area 01, and which is assigned to currency type 40 and currency EUR. There is no depreciation area of this type defined for depreciation area 01"
    For the above error how to create dependent depreciation area and attaching to currency type EUR". 
    Help is needed very urgent.
    Thanks in advance for the same.
    Regards.

    Hi,
    Normally when you activated parallel currencies, then you should have minimum 2 depreciation area. First is Book Depreciation , and the second is "Group Currency"  Depreciation.
    You can define depreciation Area for "Group Currency" in :
    SPRO -> Asset Accounting -> Valuation -> Define Depreciation Area
    Then you should Specify Area Type in t-code : OADC. Set "Typ"= 6 (group Valuation) for the "Group Currency" depreciation area.
    Then Specify Transfer of APC Values in t-code : OABC , fill "ValAd"= 01 and tick column "Identical" for "Group Currency" Area.
    Do the same thing in t-code : OABD.
    Then You should define currency for those depreciation area in t-code : OAYH.
    Last, you should Specify the  use of parallel currencies in :
    SPRO=> Asset Accounting -> Valuation -> Currency ->Specify the  use of parallel currencies .
    For "Group Currency" Depreciation area , Fill following :
    "Currency Type" = 30 Group Currency
    Tick "IdAPC"
    "Ttr" = 1 book depreciation
    Tick "Indnt Trn"
    Hope It can help.

  • Urgent SQL question : how to flip vertical row values to horizontal ?

    Hello, Oracle people !
    I have an urgent SQL question : (simple for you)
    using SELECT statement, how to convert vertical row values to horizontal ?
    For example :
    (Given result-set)
    MANAGER COLUMN1 COLUMN2 COLUMN3
    K. Smith ......1
    K. Smith ...............1
    K. Smith ........................1
    (Needed result-set)
    MANAGER COLUMN1 COLUMN2 COLUMN3
    K. Smith ......1 .......1 .......1
    I know you can, just don't remeber how and can't find exactly answer I'm looking for. Probably using some analytic SQL function (CAST OVER, PARTITION BY, etc.)
    Please Help !!!
    Thanx !
    Steve.

    scott@ORA92> column vice_president format a30
    scott@ORA92> SELECT f.VICE_PRESIDENT, A.DAYS_5, B.DAYS_10, C.DAYS_20, D.DAYS_30, E.DAYS_40
      2  FROM   (select t2.*,
      3                row_number () over
      4                  (partition by vice_president
      5                   order by days_5, days_10, days_20, days_30, days_40) rn
      6            from   t2) f,
      7           (SELECT T2.*,
      8                row_number () over (partition by vice_president order by days_5) RN
      9            FROM   T2 WHERE DAYS_5 IS NOT NULL) A,
    10           (SELECT T2.*,
    11                row_number () over (partition by vice_president order by days_10) RN
    12            FROM   T2 WHERE DAYS_10 IS NOT NULL) B,
    13           (SELECT T2.*,
    14                row_number () over (partition by vice_president order by days_20) RN
    15            FROM   T2 WHERE DAYS_20 IS NOT NULL) C,
    16           (SELECT T2.*,
    17                row_number () over (partition by vice_president order by days_30) RN
    18            FROM   T2 WHERE DAYS_30 IS NOT NULL) D,
    19           (SELECT T2.*,
    20                row_number () over (partition by vice_president order by days_40) RN
    21            FROM   T2 WHERE DAYS_40 IS NOT NULL) E
    22  WHERE  f.VICE_PRESIDENT = A.VICE_PRESIDENT (+)
    23  AND    f.VICE_PRESIDENT = B.VICE_PRESIDENT (+)
    24  AND    f.VICE_PRESIDENT = C.VICE_PRESIDENT (+)
    25  AND    f.VICE_PRESIDENT = D.VICE_PRESIDENT (+)
    26  AND    f.VICE_PRESIDENT = E.VICE_PRESIDENT (+)
    27  AND    f.RN = A.RN (+)
    28  AND    f.RN = B.RN (+)
    29  AND    f.RN = C.RN (+)
    30  AND    f.RN = D.RN (+)
    31  AND    f.RN = E.RN (+)
    32  and    (a.days_5 is not null
    33            or b.days_10 is not null
    34            or c.days_20 is not null
    35            or d.days_30 is not null
    36            or e.days_40 is not null)
    37  /
    VICE_PRESIDENT                     DAYS_5    DAYS_10    DAYS_20    DAYS_30    DAYS_40
    Fedele Mark                                                          35473      35209
    Fedele Mark                                                          35479      35258
    Schultz Christine                              35700
    South John                                                                      35253
    Stack Kevin                                    35701      35604      35402      35115
    Stack Kevin                                    35705      35635      35415      35156
    Stack Kevin                                    35706      35642      35472      35295
    Stack Kevin                                    35707      35666      35477
    Stack Kevin                                               35667      35480
    Stack Kevin                                               35686
    Unknown                             35817      35698      35596      35363      35006
    Unknown                                        35702      35597      35365      35149
    Unknown                                        35724      35599      35370      35155
    Unknown                                                   35600      35413      35344
    Unknown                                                   35601      35451      35345
    Unknown                                                   35602      35467
    Unknown                                                   35603      35468
    Unknown                                                   35607      35475
    Unknown                                                   35643      35508
    Unknown                                                   35644
    Unknown                                                   35669
    Unknown                                                   35684
    Walmsley Brian                                 35725      35598
    23 rows selected.

  • Parallel Currencies

    I need to know if we will need to configure The Parallel Currencies. I've never used them but I believe the answer is "Yes", as we'll need a Group Currency for reporting in consolidated USD, as well as a local foreign currency. Can you provide some guidance?

    Hello Swathi
    Currency is very complex matter in SAP, hence do not play with it. As such to make it simple use as under:
    1)     1st Local currency = Company Code currency (Currency code 10) in India INR
    2)     2nd Local currency = Group Currency (Currency code 30) usually USD
    Needless to mention both of them would you legal valuation.
    Hope this clarifies the currency.
    Should you need any other information, write with full but relevant details.
    Ambadas

  • Copy parallel currency depreciation area

    Hi Gurus,
    We are migrating to New GL. As a part of this, I am creating 4 new depreciation areas (one for LC1 in non-leading ledger - 61, One for LC2 (GC) in non-leading ledger - 71 and the other two for delta between 01 - 61, and 31-71). I have marked 71 depreciation area as identical and adopting values from 61. I want to copy the values from the existing group currency depreciation area(31) into 71 as I want 71 to be a replica of 31 and I do not want the system to again convert the LC1 into GC using historical rates and I want to avoid writing an LSMW as they are lots of assets. Can someone advice how I can copy over dep area 31 to 71 using AFBN. System does not allow 71 to reference 31 in OABC for take over of same values. Thanks.

    Hi,
    For a correct and simple parallel valuation scenario, please review SAP Note 1433535 which provides the necessary instruction how to create a ledger scenario, including parallel currency areas.
    (For posting indicators and their meaning you can check KBA 1572318).
    Please verify in your system and take into account the following information regarding ledger scenario logic: also, please refer to the standard ledger scenario logic documentation.
    In short, this is a basic configuration of depreciation areas and posting indicators in asset transaction OADB:
                                             Posting to G/L         Ledger
    Area 01 HGB                    1                             0L
    Area XX IAS                     3                             1L (your ledger code)
    Area YY (IAS - HGB)        6                             1L (your ledger code)
    Same setup is valid for the other ledgers that you may have.
    You should also beware that according to the ledger scenario logic: Acquisiton/transfer/retirement postings in area 01 go to ALL ledgers, independently of the setting in OADB (this is not an error).
    The difference is posted through the derived area.
    Here I list again the 3 most relevant SAP Notes listed in regard to creating a ledger scenario:
    1433535    Parallel valuation: Ledger approach
    1594311    Duplicate posting in non-leading ledger when APC tr
    1572318    Meaning of field "Posting in G/L" in  transaction OADB
    Hope this helps you.
    Best regards,
    Brigitte

  • Current Year and current month?simple question

    How can i get four Digit current Year and two digit current month. So if is march it should get me as 03 and the Year as 2002. Please do help me, is a simple question isn't it ?. Thanks for your earliest response.
    Thank you.

    i have a directory structre of the format
    REPTS2000209/E200209-98000001
    in which 2002 is current YEAR
    09 is current month
    and 9800001 is the code i would submit(list box) from a form
    so what i need is a program that can generate the above path and open that particular PDF file
    so basically E200209-98000001.pdf is the PDF file.
    i am submitting it from JSP page. PLEASE HELP ME how can i program.

  • This might be a simple question.   On those sites that do not differentiate between models when on the internet I.e. Facebook when after your comment and you cannot hit "enter" on an iPad for examp. And speed is slow to connect.  What is = to post?

    This might be a simple question. On those sites that do not differentiate between CRT, laptop, tablet etc. such as an iPad Mini and using the Facebook site fir example when going to post a comment and you do not have a enter button on the IPad and the speed is slow how do you get your comments to post if we do not have a enter button? 
    <Email Edited By Host>

    I don't have facebook so I cannot answer but for your personal security, I have asked the hosts to remove your e-mail address.   It is very unwise to publish this.

  • A simple question on random number generation?

    Hi,
    This is a rather simple question and shows my newbieness quite blatantly!
    I'm trying to generate a random number in a part of a test I have.
    So, I have a little method which looks like this:
    public int getRandomNumber(int number){
            Random random = new Random(number);
            return random.nextInt(number);
        }And in my code I do int random = getRandomNumber(blah)...where blah is always the same number.
    My problem is it always returns the same number. What am I missing here. I was under the impression that nextint(int n) was supposed to generate the number randomly!! Obviously I'm doing something wrong or not using the correct thing. Someone please point out my stupidity and point me in the right direction? Ta

    I think the idea is that Random will generate the same pseudo-random sequence over and over if you don't supply a seed value. (The better to debug with, my dear.) When you're ready to put an app into production, the seed value should be the current system time in milliseconds to guarantee a new sequence with each run.
    Do indeed move Random outside the loop. Think of it like a number factory - instantiate it once and let it pump out the random values for you as needed.

  • A simple Question about % in CR Chart!

    Hi, I have another simple question.
    When i use SQL to storage data and wanna Crystal Report to display the data in chart using %
    which data type should i use?
    float or string?
    and I found when i use 0.12 as 12% in database , It could not display in Crystal Report line chart normally.
    What should I do??
    Please Help!!!
    Thank you VERY MUCH!!!

    If you have the datatype as string from your database then try adding the string field as a summary field in chart and select maximum instead of count and if you have them in number format then you can directly select the percentage in chart.
    Regards,
    Raghavendra

  • Simple question about generate proxy

    Hi guys...
    This is a simple but a truly simple question....
    When trying to create a proxy from our messages interfaces using SPROXY, i'm not able to get the Software component versions that were used from the sld...
    Do I have to export them? Or import them?

    Hi Goncalo,
    Check if it helps...
    Re: SW component version not visible in SPROXY
    Regards
    Anand

  • Simple question:  I want to use iCloud as a back up disk for my documents folder.  How can I do this?  If I cannot do this, why am I paying for access to "the cloud?"

    Simple question:  I want to use iCloud as a back up disk for my documents folder.  How can I do this?  If I cannot do this, why am I paying for access to "the cloud?"

    iCloud does not provide general file storage or backup, so you cannot back up your Documents folder using it. You will need to find a third-party alternative - this page examines some options (some are free):
    http://rfwilmut.net/missing3
    iCloud at basic level, with 5GB is storage, is free: you only pay anything if you want to increase the storage space.

  • How to delete the parallel currency of Company code

    Hi,
    I am facing some problem with parallel currency.now i need to delete the parallel currency.
    kindly tell me the process to delete the parallel currency in the company code.
    Thanks
    Kishore

    Additional currencies' assignment to company codes can be changed using transaction OB22.

Maybe you are looking for

  • How to delete a write protected file from nokia x7...

    There are some files that i need to delete from my nokia x7 phone memory.  ( one mp3 file and a photo). It says that the file is write protected. Pls advice me

  • Strange email address associated with my apple id?

    A few months ago I got an iphone5c to replace my iphone 4. I hadnt bought credit for itunes until a few days ago. This morning I tried to purchase an album but it said because this was my first time buying anything from the device I needed to prove I

  • Tomact connection

    I have problem of odbc. i have tomcat 4.0.When i go through menu and start the tomcat then my jsp working fine. But when i go to window 2000 Services then start the Apache tomcat service and after that i run jsp then it so error.This is error type Ex

  • Poor printing results

    Pesky problem: prints too dark and colors lack saturation. Have been printing on an Epson Artisan 50 with good results. Have added a new R2880. Both print with the same poor results NOW. Use OS Mavericks, a 2-year-old iMac calibrated with Color Munki

  • Oracle Connector for Outlook over https?

    Microsoft have had this feature since a long time. Is this somehow possible with the Connector? Or are users from the "outside" bound to use the webmail client or a vpn connection. best regards Mats