Difference betwen object currency,area and transaction currency

Hello all
what is the difference betwen object currency,area and transaction currency.
and frome where i can change it?
Thanks

Check this link for currencies in Controlling:
http://help.sap.com/saphelp_erp60_sp/helpdata/en/02/30793485231774e10000009b38f83b/frameset.htm
By understanding their definition from the above link, am sure you'll also understand the difference (or the purpose) of them.
Changing the currencies, after the transaction data posted is not easy, even if possible in some cases. I'm sure this question of yours is in academic interest, rather than a project need.
Hope this helps.

Similar Messages

  • What is difference 4.7 business area and ECC6  business areas

    hi
    plz tell me what is difference 4.7 business area and ECC6  business areas
    thank u
    shusma

    Different is there for 4.7 & ECC
    Ex: you select Business area Zero Chebox in ECC .
    1 - Debit Balance and Credit Balance should be the same with Business Area
    Expences Dr  MUM  500
    Cash       CR MUM   500
    Business Area MUM it should be the Zero
    2 - In 4.7 System not control Business Area wise Zero Values
    Expences Dr  MUM  500
    Cash       CR HYD  500
    System not control BA wise Balances
    Regards,
    Viswa

  • [Qualif.] Difference between object type 'Q' and infotype 0024

    Hi,
    For the xRPM 4.0 solution, we need to maintain skills for resources. There is a HCM integration functionality to import skills from a HR system to Business Partners (which - basically - represent users that can be staffed on a project in the xRPM solution).
    Today, there is no skill management in our HR system.
    There are 2 notions that look very similar to me :
    - <b>Infotype 0024</b> [Transaction PA20/PA30] : contains Qualifications of a user in PA (Personal Adminsitration) with the standard table T574A holding the possible values
    - <b>Organizational Structure</b> (HRP1000/HRP1001) [transaction BP / PP* ?]: with the objects Qualifications 'Q' and Qualifications Group 'QK'
    It seems taht the integration operates on the Organizational Structure. But we would like to assess both solutions.
    <b>What is the difference (pros&cons) between the 2 of them ?</b>
    Thanks in advance.
    Best regards,
    Guillaume
    Message was edited by:
            Guillaume GARCIA

    To be precise, the way Infotype 24 behaves depends on whether integration between PA and PD is active.  This is controlled by setting PLOGI QUALI in table T77S0.  There are also other settings in this table that affect how quals work in an integrated scenario, you will find these in the QUALI XXXX section.
    If integration is active, the qualifications are maintained in a catalogue via transaction OOQA.  What you see in IT0024 are the object Q <--> P relationships as mentioned above once a qualification object has been assigned to the employee.  This option has the advantages of being able to use the integrated objects in othe modules e.g. as prerequisites or imparted quals in the training module, skills/requirements matchup etc.  The down side is that being PD objects, these are more difficult to report with SAP Query or Adhoc Query tools, but there are ways of doing it.
    If integration is not active, the data is simple stored in PA table PA0024 and the quals themselves are set up via the IMG.  The data really can't be used in any other module, but the reporting aspects are much easier with the standard query tools.
    Regards,
    John

  • Difference between Object equals() method and ==

    Hi,
    Any one help me to clarify my confusion.
    stud s=new stud();
    stud s1=new stud();
    System.out.println("Equals======>"+s.equals(s1));
    System.out.println("== --------->"+(s==s1));
    Result:
    Equals ======> false
    == ------------> false
    Can you please explain what is the difference between equals method in Object class and == operator.
    In which situation we use Object equals() method and == operator.
    Regards,
    Saravanan.K

    corlettk wrote:
    I'm not sure, but I suspect that the later Java compilers might actually generate the same byte code for both versions, i.e. I suspect the compiler has gotten smart enough to devine that && other!=null is a no-op and ignore it... Please could could someone who understands bytecode confirm or repudiate my guess?Don't need deep understanding of bytecode
    Without !=null
    C:>javap -v SomeClass
    Compiled from "SomeClass.java"
    class SomeClass extends java.lang.Object
      SourceFile: "SomeClass.java"
      minor version: 0
      major version: 49
      Constant pool:
    const #1 = Method       #4.#15; //  java/lang/Object."<init>":()V
    const #2 = class        #16;    //  SomeClass
    const #3 = Field        #2.#17; //  SomeClass.field:Ljava/lang/Object;
    const #4 = class        #18;    //  java/lang/Object
    const #5 = Asciz        field;
    const #6 = Asciz        Ljava/lang/Object;;
    const #7 = Asciz        <init>;
    const #8 = Asciz        ()V;
    const #9 = Asciz        Code;
    const #10 = Asciz       LineNumberTable;
    const #11 = Asciz       equals;
    const #12 = Asciz       (Ljava/lang/Object;)Z;
    const #13 = Asciz       SourceFile;
    const #14 = Asciz       SomeClass.java;
    const #15 = NameAndType #7:#8;//  "<init>":()V
    const #16 = Asciz       SomeClass;
    const #17 = NameAndType #5:#6;//  field:Ljava/lang/Object;
    const #18 = Asciz       java/lang/Object;
    SomeClass();
      Code:
       Stack=1, Locals=1, Args_size=1
       0:   aload_0
       1:   invokespecial   #1; //Method java/lang/Object."<init>":()V
       4:   return
      LineNumberTable:
       line 1: 0
    public boolean equals(java.lang.Object);
      Code:
       Stack=2, Locals=2, Args_size=2
       0:   aload_1
       1:   instanceof      #2; //class SomeClass
       4:   ifeq    25
       7:   aload_1
       8:   checkcast       #2; //class SomeClass
       11:  getfield        #3; //Field field:Ljava/lang/Object;
       14:  aload_0
       15:  getfield        #3; //Field field:Ljava/lang/Object;
       18:  if_acmpne       25
       21:  iconst_1
       22:  goto    26
       25:  iconst_0
       26:  ireturn
      LineNumberTable:
       line 6: 0
    }With !=null
    C:>javap -v SomeClass
    Compiled from "SomeClass.java"
    class SomeClass extends java.lang.Object
      SourceFile: "SomeClass.java"
      minor version: 0
      major version: 49
      Constant pool:
    const #1 = Method       #4.#15; //  java/lang/Object."<init>":()V
    const #2 = class        #16;    //  SomeClass
    const #3 = Field        #2.#17; //  SomeClass.field:Ljava/lang/Object;
    const #4 = class        #18;    //  java/lang/Object
    const #5 = Asciz        field;
    const #6 = Asciz        Ljava/lang/Object;;
    const #7 = Asciz        <init>;
    const #8 = Asciz        ()V;
    const #9 = Asciz        Code;
    const #10 = Asciz       LineNumberTable;
    const #11 = Asciz       equals;
    const #12 = Asciz       (Ljava/lang/Object;)Z;
    const #13 = Asciz       SourceFile;
    const #14 = Asciz       SomeClass.java;
    const #15 = NameAndType #7:#8;//  "<init>":()V
    const #16 = Asciz       SomeClass;
    const #17 = NameAndType #5:#6;//  field:Ljava/lang/Object;
    const #18 = Asciz       java/lang/Object;
    SomeClass();
      Code:
       Stack=1, Locals=1, Args_size=1
       0:   aload_0
       1:   invokespecial   #1; //Method java/lang/Object."<init>":()V
       4:   return
      LineNumberTable:
       line 1: 0
    public boolean equals(java.lang.Object);
      Code:
       Stack=2, Locals=2, Args_size=2
       0:   aload_1
       1:   instanceof      #2; //class SomeClass
       4:   ifeq    29
       7:   aload_1
       8:   ifnull  29
       11:  aload_1
       12:  checkcast       #2; //class SomeClass
       15:  getfield        #3; //Field field:Ljava/lang/Object;
       18:  aload_0
       19:  getfield        #3; //Field field:Ljava/lang/Object;
       22:  if_acmpne       29
       25:  iconst_1
       26:  goto    30
       29:  iconst_0
       30:  ireturn
      LineNumberTable:
       line 6: 0
    }

  • Difference between Production Supply Area and a Storage Location

    Hello Experts,
    Basic question but wanted to get more clarity on the concept as i never worked on the PSA
    Can someone tell me the exact difference between PSA and a SL. I understand PSA is a Kanban, WM and SL is an IM concept. Can a work center have a storage location assigned or just a PSA? Can a GI be done from PSA or just from a storage location.

    Hello
    The production supply area is a master data used by WM, while the storage location is used by MM-IM.
    Check this link for details:
    Production Supply Area - Warehouse Management System (WMS) - SAP Library
    The goods issue is done with reference to the storage location
    It is possible to assigne a storage location to a production supply area and assign the production supply area to the work center.
    BR
    Caetano

  • Difference betwen srvctl relocate scan and scan_listener?

    Hi all,
    I have a 2 node RAC cluster using 11.2.0.2 Grid Infrastructure.
    I am trying to get clear in my mind what the difference is between relocating the SCAN using srvctl relocate scan and SCAN_LISTENER using srvctl relocate scan_listener
    Can anyone provide me with an explanation of when you would use each command and the effect it has?
    Many thanks.

    Hi,
    see here for a closer explanation of SCAN:
    http://www.oracle.com/technetwork/database/clustering/overview/scan-129069.pdf
    Regarding your questions: The difference between a SCAN VIP and a normal RAC VIP, is that the RAC VIP has a node it want's to run on and each node has one (whereas you only have 3 SCANs). If it fails over to another node, the normal VIP exists, but does not accept connections, whereas the SCAN is not fix to a node and can run on any node in the cluster (and will accept connections anytime).
    Now that this works, the SCAN VIP will always move with the SCAN listener (otherwise it would not make any sense). Hence there is really no difference in moving the SCAN VIP (because this will trigger a relocate of the listener) or to move the SCAN_Listener (since this will move the VIP it depends on).
    Regards
    Sebastian

  • Business Area and transaction FF67

    Good day SAP Experts
    If we did activate Business Areas, how should I process banking transactions with code FF67.
    What we are doing now, is to process the batch in the foreground and enter (populate) the Business Area field.  If the bank statement is having a lot of transactions, then this become too much. 
    Is there any suggestion on how to enter this efficiently.
    Thanking you
    Theo

    Thanks
    Actually what I meant is that we do process FF65 and as you suggest via SM35 (foreground) and input Business Area in the BA field.  Is there no other easier solution.
    Thanking you once more
    Theo

  • Difference betwen loading a repository and connecting to a repository

    Hi,
    In the MDM console i see 2 options.
    1) Load Reposiotry
    2) Connect repository.
    I mount the mdm server. then i mount the mdm reposiotry and connect to it.
    After connecting i am able to log into the data import manager and data manager and choose the repositury.
    Why is loading the repository required?
    Thanks,
    Vignesh

    Hi Vingnesh,
    Loading the repository is required to login to all MDM clients such as Data Manager ,Import Manager and Syndicator.
    Suppose if repository is unloaded position, then it is required to load the repository to login to MDM clients.
    I think in your case, repository was not in unloaded position, so you do not have to load the repository as it was already loaded.
    Suppose if you stop and start the server, then loading of the repository is required.
    Thanks,
    Narendra

  • Custmizing object currency

    Hello
    From where we can custmizing object currency,area and transaction currency.
    Thanks

    Hi,
    Controlling area currency is defined with controlling area (OKKP)
    Object currency is defined in the master data of the relevant object (cost centre, I/O, WBS, etc.)
    Transaction currency is the currency of the posted document.
    Regards,
    Eli

  • DDDAUDIT objects in DB and in APD

    Hi,
    DDDAUDIT shows the difference between objects in Database and in Application designer. isn't it ?
    Then my question : where are the application designer objects stored/stocked ?
    Thank you.

    The definitions in PSRECDEFN do not correspond exactly with tables defined in the database. The RECTYPE column in PSRECDEFN indicates what kind of object it is. RECTYPE=0 are physical tables, RECTYPE=1 are views, etc.
    Some rectypes are for work records that do not correspond to any database object.
    Note that the count of rows in PSRECDEFN where RECTYPE=0 will typically be much less than the count of database tables owned by SYSADM. RECTYPE=7 defines temp tables, but one temp table definition maps to multiple physical tables in the database and it is difficult to determine the number of physical tables that should exist for each record. It depends on a number of factors--The number of instances specified in each App Engine program that uses the record, whether or not the AE program is batch-only, and how many system-wide online instances are specified in the PeopleTools options. There is also a limit of 99 temp table instances for a record.
    For example, we have over 55,000 physical tables in our FSCM 9.0 database but only 20,000 rectype 0 record definitions. So 35,000 of our tables are temp tables but we only have 3,800 rectype 7 record definitions.
    Regards,
    Bob

  • What is the difference between number, numeric, dec and decimal

    hello
    i want to ask what is the difference betwen number, numeric, dec and decimal data types ?
    in this paper http://www.techonthenet.com/oracle/datatypes.php
    i see that there is no difference ?
    what is the trick here - why there are 4 type with one purpose?

    Generally speaking Oracle has specific names for their own data types. Additionally they support the ANSI names (as well as others) for some data types which are then converted to the equivalent Oracle data type. See the documentation for details.
    ANSI, DB2, and SQL/DS Data Types

  • Problem in selecting object currency fields from table COSP and COSS

    Dear All,
    We are facing a issue while creating a virtual DataSource   for CCA plan from tables COSS and COSP.
    The issue is that we are able to activate the view by including the fields value in object currency ( WOG001 - WOG012 ) but not able  to create a DataSource   on the view.
    We are able to include the transaction currency value but as our application requires us to include the object currency fields.
    Error displayed:Invalid extract structure template .This operation failed, because the template structure quantity fields or currency fields, for example, field WOG001 refer to a different table.
    Any tips to resolve this issue would be valuable.
    Thanks in advance
    Rashmi Nair.

    HI,
    Can you see this thread.
    Re: How to display BAPI decimal values into webdynpro!
    Thanks
    nageswar

  • Easy Cost Planning in a currency other than Cont Area and comp code curren

    Hi,
        I want to do the easy cost planning in a currency which is other than controlling area and company code currency.
      But I am getting the option of only these two currencies only.
    Any idea how to do it?
    Example:
      Controlling Area currency :INR
    Company Code Currency : AED
    Planning Currency to be used for Easy Cost Planning :USD
    Regards,
    B P Singh

    Hello,
    You may try to go to transaction CT04 - Characteristics. There in tab BASIC DATA you choose Data Type - Currency Format. In field Currency enter the required currency. Save the characteristic.
    Next step is to go to CKCM - Models for Easy Cost Planning. Open the Costing model and add line with the created characteristic.
    Good luck, Aleksandra

  • Different Value for Object Currency and CO Currency

    Hi,
    We have ran a full settlement for an Internal Order again a Fixed Asset
    but the problem is that the Value CO Currency Field is
    displaying a different amount to that of Value Object Currency and the
    currency code for both fields is the same which is ZAR currency.
    Please advise,
    Thanks,
    Themba Sindane

    Check if any value date is entered in Budget profile. Currency translation happens with Exc rate available at value date for controlling area currency.
    Hope this helps

  • BP671 object currencies are not same in budget hierarchy

    Hi,
    We have set object curency in budget profile for budget currency and availablitity control.
    Although all the wbs, networks and production orders use the same object currency, we are still getting the error "BP671 object currencies are not same in budget hierarchy"
    Any solution / ideas to solve this error ?
    Thanks,
    Manohar

    Thanks for your reply.
    But i have already checked all three option in Query designer and executed in Bex Analyzer.
    once again i am telling -(first time all posted and without posted node are apperaring but after swapping the axis in analyzer sheet only posted nodes are appearing)
    Any other option is require for this please tell.

Maybe you are looking for

  • My ipod says disabled connect to itunes. How do I fix this

    My ipod touch says disbled connect to itunes. How do I fix this?

  • XFCE Clipboard

    I use Xfce 4.4 and I hate its clipboard because I can't call the list of stored items with keys and because often I have to select manually even the last pasted entry... I'd like to have some info about how to replace it. Thanks

  • NoSuchMethodError while calling webservice that uses control

    I have a Weblogic Web Service that calls another Weblogic Web Service through the use of a Web Service Control. (Both the services are deployed in Weblogic 10.0) My Web Serivce works fine when deployed on Admin Server, but when it is deployed in mana

  • Disabling VIew source property in IE

    hi I am working on an ADF application. There is a requirement to disable the view source property of the IE browser so that the users cannot view the source. Is it possible to do it? Please reply Thanks

  • Tricky Block Key Events in JTable

    Iam using a JTable . I donot want to use CustomTableModel to block the key events but I want to consume the keyevents as and when the user types in . In other words block the user from editing the cell but I donot want to make the cell un-editable .