ICR - Which process to use?

Hi Experts,
My company posts intercompany documents by all three methods, Vendors / Customers, Open Item GL accounts, and non Open Item GL Accounts (PL Accounts, Loans).  We were hoping to use ICR Process 002 for all of these items.  What is the suggested process for the reconciliation of all of these items?
Thanks.

Hello James,
You will not be able to reconcile all intercompany trnasactions in one process. Well, technically it is possible but I would not recommend it.
You should use either process 001 or process 003 for reconciliation of open items. Typically this will cover your intercompany payables and receivables. This process operates with open items for a specific key date which greatly reduces the data volume to be analyzed.
Process 001 was originally designed for reconciliation of GL open items. Process 003 was originally designed for reconciliation of AR/AP open items. By now the only difference between the two processes is that process 001 uses table group FBICRC001 containing one field RACCT (account) and process 003 uses table group FBICRC003 containing fields RCUST (customer account) and RVEND (vendor account). GL open items can be included in process 003 by specifying data source Documents of other process in FBIC032. This is done automatically if you select Yes when running FBICC. If you do not implement any other logic the GL account number is stored in field RCUST in FBICRC003A/T (FBICRC003A is the line items table for table group FBICRC003 and FBICRC003T is the totals table).
Process 002 is designed for reconciliation of accounts without open item management. This is typically relevant for reconciliation of P&L accounts, e.g. expense and revenue. The problem is that far more data has to be analyzed in this context because you do not have open items ("unfinished business") for a key date. Here we have to work with line items which were posted for a specific interval of posting dates.
I hope this answer helps you in your efforts.
Best regards,
Ralph

Similar Messages

  • How do I troubleshoot installation/distribution of a LabVIEW .exe which processes data using Matlab when it works on some computers but not others?

    I've been given the unenviable task of troubleshooting and installing/distributing software written by a former co-worker. I've modified the LabVIEW code and built an .exe file. I've successfully installed the Labview .exe file on several computers, but it won't work on some others. What's more baffling is that I installed it successfully on one computer, uninstalled it, and tried reinstalling it with no success. In fact, it's a new error (Dr. Watson for Windows NT application error). It doesn't help that I have different versions of LabVIEW and Matlab on the target computers. Some have LabVIEW 5.1, some
    have 5.0, and some don't have it at all. Some have Matlab 5.2, some have 5.3 (R11) and some have 6.0 (R12). It's also not clear to me where the Matlab m files should be located. I'm not sure if it's a LabVIEW Runtime Engine problem, or if it's a Matlab problem. I've also wondered how LabVIEW and Matlab talk to each other. When LabVIEW calls Matlab, it seems that Matlab is running in the background. In other words, clicking on the Matlab Command Window and typing "whos" or any other command/variable doesn't work.

    Jay del Rosario wrote:
    >
    > How do I troubleshoot installation/distribution of a LabVIEW .exe
    > which processes data using Matlab when it works on some computers but
    > not others?
    Poke around zone.ni.com and
    http://digital.natinst.com/public.nsf/$$Search/ .
    Good luck, Mark

  • How to determine which processes are using a module?

    I want to find out which processes are using a kernel module.
    However this info is shown neither with ``lsmod'' nor in
    /sys/modules/<mod_name>/.
    It's needed to reload certain modules which are acting buggy,
    in a bash script. Right now I just keep a list of processes which
    use the module and try to kill'em all, not exactly a beautiful
    solution.
    To work around it I compiled a kernel with
    ``CONFIG_MODULE_FORCE_UNLOAD=y'', however actually
    trying to unload anything with this results in an unstable system.
    Suggestions?

    After successfully syncing the configuration database I ran the configuration compliance job once more, however with the same (misleading) results. Cross-checking the configuration reveals that none of the devices marked as compliant are actually having the "ip helper-address" configured.
    Maybe it is something wrong with the input data I specified for the compliance template (ref step 1-6 in my first post)?
    Or maybe the Compliance Jobs arent the best ways to determine whether or not my devices are having the "ip helper-address" configuration defined?

  • Which process is used for teiggering workflow

    Hi ,
    There is a single step task , for which the workflow triggers.
    There is no triggering event , but there is a terminating event  , also the binding for this terminating event is not checked .
    I want to ckeck which process  which  is being used to trigger the workflow .
    Can someone please help .

    there is a function module CATS_WF_APPROVAL mentioned in the attributes of the business object CATS  , method Approve .
    The task is TS31000007 .
    version of sytem : SAP ECC 6.0
    the timesheet is created by tcode CAT2 . and then when it is released and saved , the workflow triggers  .
    The above mentioned FM has a call transation for CATSWF .
    Please let me know if any other info is required
    sheetal

  • How to identify which process is using PSA?

    Hi all,
    Does anybody know if there is some way to identify all infopackages in my environment that are using PSA?
    Thanks in advance,
    Silvio Messias.

    Hi Guys, just to thanks you...
    I have created this ABAP program... Enjoy...
    *& Report  ZLIST_OF_IP_THAT_USE_PSA
    REPORT  zlist_of_ip_that_use_psa.
      Data declaration
    TABLES: rsldpsel, rsldpio.
    TYPES: BEGIN OF ty_rsldpsel,
             logdpid       TYPE rslogdpid,
             objvers       TYPE rsobjvers,
             lnr           TYPE rsnrchar,
             ziel          TYPE rsziel,
             ziel_text(40) TYPE c,
             source        TYPE rsisource,
             logsys        TYPE rsslogsys,
             oltpsource    TYPE rsisource,
           END OF ty_rsldpsel,
           BEGIN OF ty_rsldpio,
             logdpid       TYPE rslogdpid,
             objvers       TYPE rsobjvers,
             source        TYPE rsisource,
             logsys        TYPE rsslogsys,
             oltpsource    TYPE rsisource,
           END OF ty_rsldpio.
    DATA: l_is_rsldpsel TYPE STANDARD TABLE OF ty_rsldpsel,
          l_ih_rsldpio  TYPE HASHED   TABLE OF ty_rsldpio
                        WITH UNIQUE KEY logdpid objvers.
    FIELD-SYMBOLS : <ls_rsldpsel> TYPE ty_rsldpsel,
                    <ls_rsldpio>  TYPE ty_rsldpio.
    RANGES: rg_ziel FOR rsldpsel-ziel.
    Processing data...
    PARAMETERS : psa_used AS CHECKBOX DEFAULT 'X'.
    START-OF-SELECTION.
      PERFORM collect_data.
    END-OF-SELECTION.
      PERFORM display.
    *&      Form  COLLECT_DATA
          Collecting database information
    FORM collect_data.
    Valid range of ZIEL
      CLEAR: rg_ziel, rg_ziel[].
      rg_ziel-sign   = 'I'.
      rg_ziel-option = 'EQ'.
      rg_ziel-high   = space.
      rg_ziel-low    = 1.  APPEND rg_ziel.
      rg_ziel-low    = 2.  APPEND rg_ziel.
      rg_ziel-low    = 3.  APPEND rg_ziel.
      IF psa_used IS INITIAL.
        rg_ziel-low = 4.  APPEND rg_ziel.
      ENDIF.
    Selection all INFOPACKAGES that are using PSA tables
      SELECT logdpid objvers lnr ziel
        INTO TABLE l_is_rsldpsel
        FROM rsldpsel
        WHERE objvers EQ 'A'
          AND ziel IN rg_ziel.
      IF sy-subrc EQ 0 AND l_is_rsldpsel[] IS NOT INITIAL.
        DELETE ADJACENT DUPLICATES FROM l_is_rsldpsel COMPARING logdpid.
    Selecting data from RSLDPIO
        SELECT logdpid objvers source logsys oltpsource
           FROM rsldpio INTO TABLE l_ih_rsldpio
           FOR ALL ENTRIES IN l_is_rsldpsel
           WHERE logdpid EQ l_is_rsldpsel-logdpid
             AND objvers EQ l_is_rsldpsel-objvers.
      ENDIF.
      LOOP AT l_is_rsldpsel ASSIGNING <ls_rsldpsel>.
        CASE <ls_rsldpsel>-ziel.
          WHEN 1.
            <ls_rsldpsel>-ziel_text = 'Only PSA'.
          WHEN 2.
            <ls_rsldpsel>-ziel_text = 'PSA in parallel mode'.
          WHEN 3.
            <ls_rsldpsel>-ziel_text = 'PSA and after that to Infoprovider'.
          WHEN OTHERS.
            <ls_rsldpsel>-ziel_text = 'Directly to Infoprovider'.
        ENDCASE.
        READ TABLE l_ih_rsldpio ASSIGNING <ls_rsldpio>
        WITH TABLE KEY logdpid = <ls_rsldpsel>-logdpid
                       objvers = <ls_rsldpsel>-objvers.
        IF sy-subrc EQ 0 AND <ls_rsldpio> IS ASSIGNED.
          <ls_rsldpsel>-source     = <ls_rsldpio>-source.
          <ls_rsldpsel>-logsys     = <ls_rsldpio>-logsys.
          <ls_rsldpsel>-oltpsource = <ls_rsldpio>-oltpsource.
        ENDIF.
      ENDLOOP.
    ENDFORM. " collect_data
    *&      Form  DISPLAY
          Displaying database information
    FORM display .
      TYPE-POOLS: slis.
      DATA: gt_fieldcat TYPE slis_t_fieldcat_alv,
            gs_layout   TYPE slis_layout_alv.
      PERFORM fieldcat_init USING gt_fieldcat[].
      PERFORM layout_init USING gs_layout.
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
        EXPORTING
          i_callback_program = 'Z_DB_ENTRIES_COUNTER'
          is_layout          = gs_layout
          it_fieldcat        = gt_fieldcat[]
        TABLES
          t_outtab           = l_is_rsldpsel.
    ENDFORM.                    "DISPLAY
    *&      Form  fieldcat_init
    FORM fieldcat_init USING lt_fieldcat TYPE slis_t_fieldcat_alv.
      DATA: ls_fieldcat TYPE slis_fieldcat_alv.
      CLEAR ls_fieldcat.
      ls_fieldcat-fieldname    = 'LOGDPID'.
      ls_fieldcat-datatype     = 'C'.
      ls_fieldcat-seltext_l    = 'InfoPackage (ID)'.
      ls_fieldcat-seltext_m    = 'InfoPackage (ID)'.
      ls_fieldcat-seltext_s    = 'InfoPackage (ID)'.
      ls_fieldcat-reptext_ddic = 'InfoPackage (ID)'.
      ls_fieldcat-key          = 'X'.
      APPEND ls_fieldcat TO lt_fieldcat.
      CLEAR ls_fieldcat.
      ls_fieldcat-fieldname    = 'SOURCE'.
      ls_fieldcat-datatype     = 'C'.
      ls_fieldcat-seltext_l    = 'InfoSource'.
      ls_fieldcat-seltext_m    = 'InfoSource'.
      ls_fieldcat-seltext_s    = 'InfoSource'.
      ls_fieldcat-reptext_ddic = 'InfoSource'.
      ls_fieldcat-key          = ' '.
      APPEND ls_fieldcat TO lt_fieldcat.
      CLEAR ls_fieldcat.
      ls_fieldcat-fieldname    = 'LOGSYS'.
      ls_fieldcat-datatype     = 'C'.
      ls_fieldcat-seltext_l    = 'Source System'.
      ls_fieldcat-seltext_m    = 'Source System'.
      ls_fieldcat-seltext_s    = 'Source System'.
      ls_fieldcat-reptext_ddic = 'Source System'.
      ls_fieldcat-key          = ' '.
      APPEND ls_fieldcat TO lt_fieldcat.
      CLEAR ls_fieldcat.
      ls_fieldcat-fieldname    = 'OLTPSOURCE'.
      ls_fieldcat-datatype     = 'C'.
      ls_fieldcat-seltext_l    = 'Datasource'.
      ls_fieldcat-seltext_m    = 'OLTPSOURCE'.
      ls_fieldcat-seltext_s    = 'OLTPSOURCE'.
      ls_fieldcat-reptext_ddic = 'OLTPSOURCE'.
      ls_fieldcat-key          = ' '.
      APPEND ls_fieldcat TO lt_fieldcat.
      CLEAR ls_fieldcat.
      ls_fieldcat-fieldname    = 'ZIEL_TEXT'.
      ls_fieldcat-datatype     = 'C'.
      ls_fieldcat-seltext_l    = 'Type of processing'.
      ls_fieldcat-seltext_m    = 'Type of processing'.
      ls_fieldcat-seltext_s    = 'Type of processing'.
      ls_fieldcat-reptext_ddic = 'Type of processing'.
      ls_fieldcat-key          = ' '.
      APPEND ls_fieldcat TO lt_fieldcat.
    ENDFORM.                    "fieldcat_init
    *&      Form  layout_init
    FORM layout_init USING ls_layout TYPE slis_layout_alv.
      ls_layout-zebra             = 'X'.
      ls_layout-colwidth_optimize = 'X'.
    ENDFORM.                    "layout_i

  • How to process each records in the derived table which i created using cte table using sql server

    I want to process each row from the CTE table I created, how can I traverse from first row to second row and so on....
    how to process each records in the derived table which i created using  cte table using sql server

    Ideally you would be doing a set based processing rather than traversing row by row as thats more efficient. To answer it specific to your scenario we may need more info. Can you explain with some sample data your exact requirement?
    Please Mark This As Answer if it solved your issue
    Please Mark This As Helpful if it helps to solve your issue
    Visakh
    My MSDN Page
    My Personal Blog
    My Facebook Page

  • Which Process using high Swap

    Dear All,
    Any specific command or steps to find which process consuming lot of swap space and there is any specific step to reduce the usage without kill the actual process.
    Regards,
    Siva

    prstat -s size
    ..gives you a list of processes sorted on their memory consumption. The swap and memory are tightly connected in a virtual-memory structure, which means that i don't think you can tell exactly how much of a process which is swapped out and how much which is in RAM.
    The RSS column of the prstat output shows how much which is residential, that part is for sure in the RAM, the rest may or may not be swapped out.
    You can not reduce the amount of swap used by a process (i'ld guess that you probably could force it into the RAM, but thats probably not what you want), but if swap size is an issue, you can add space to the swap easily by using swap -a on a file or device.
    .7/M.

  • Which process is currently using that service

    Hello,
    Is it possible to know which process that currently use which service? e.g. I have a customized Render service and want to know which process is currently use it. or is there a query to run in database to get that information.
    Can any one please advise.
    Thanks,
    Han Dao

    In your customized RenderService, you would tipically have a taskContext variable.
    The following XPATH, gives you the process which currently using the service.
    /process_data/taskContext/object/@processName
    Hope that helps.
    Nith

  • How to know which port is being used by which process

    Hi,
    Could you please tell me how to know which port is being used by which process.as iam getting ports are already in use.
    Thank you,
    Sravan
    Message was edited by:
    sravan123

    Your OS might provide a command to support this question like '"netstat".
    Besides, on Unix the pseudo-file system /proc is also useful.

  • Questions on ICR reconciliation process 002 (functionality)

    Dear all,
      I am implementing ICR reconciliation process 002   and I have some
      questions regarding process's behaviour and functionality. I have set
      u201CDefine Rules for Document Assignments" as following:
    1   POPER       Posting period    = Equal     POPER       Posting
      period
      10  RTCUR       Transaction currency    = Equal     RTCUR
      Transaction currency
      20  TSL   Transaction Currency    -1 Opposite Amount (Only for Value
      Fields)   TSL   Transaction Currency
      4/I need to reconcile accounts (process 002) not only for GL accounts w/o
      open items but also Open Items GL accounts and vendor and customer GL
      accounts (reconciliation accounts).
      I do not need to manage open items nor vendor customer items (which would
      be supported with processes 001 and 003); I just need to reconcile these
      accounts as if they were GL accounts. I have tested in my test client and
      seems to work.  Is it possible?
      Cheers

    Hello Rafael,
    The advantage of using process 001 or 003 is that you get a clear overview of the unpaid receivables and payables taking key date information into account. This is why the recommended procedure for dealing with payables and receivables is to use process 001 or process 003. You basically have a different angle when analyzing open items...
    Having said all this it is possible to include any type of account in process 002. All you need to do is to not be quite as restrictive in your ledger selections. Then other line items will be posted to your ledger and can be analyzed within process 002. If this is what you need then go ahead and do it. Just make sure that you are sure your customer does not want to analyze receivables and payables on a different level...
    Hope this helps,
    Ralph

  • Which license to use ?

    When installing 11G XE beta on Windows following license is displayed:
    >
    Oracle Technology Network Early Adopter License Terms
    Export Controls on the Programs
    Selecting the "Accept License Agreement" button is a confirmation of your agreement that you comply, now and during the trial term, with each of the following statements:
    -You are not a citizen, national, or resident of, and are not under control of, the government of Cuba, Iran, Sudan, North Korea, Syria, nor any country subject to United States trade sanctions.
    -You will not download, provide, make available or otherwise export or re-export the Programs, directly or indirectly, to the above mentioned countries nor to citizens, nationals or residents of those countries, wherever located.
    -You are not listed on the United States Department of Treasury lists of Specially Designated Nationals and Blocked Persons, Specially Designated Terrorists, and Specially Designated Narcotic Traffickers, nor are you listed on the United States Department of Commerce Table of Denial Orders.
    You will not download or otherwise export or re-export the Programs, directly or indirectly, to persons on the above mentioned lists.
    You will not use the Programs for, and will not allow the Programs to be used for, any purposes prohibited by United States law, including, without limitation, for the development, design, manufacture or production of nuclear, chemical or biological weapons of mass destruction.
    EXPORT RESTRICTIONS
    You agree that U.S. export control laws and other applicable export and import laws govern your use of the programs, including technical data; additional information can be found on Oracle®'s Global Trade Compliance web site (http://www.oracle.com/products/export).
    You agree that neither the programs nor any direct product thereof will be exported, directly, or indirectly, in violation of these laws, or will be used for any purpose prohibited by these laws including, without limitation, nuclear, chemical, or biological weapons proliferation.
    Oracle Employees: Under no circumstances are Oracle Employees authorized to download software for the purpose of distributing it to customers. Oracle products are available to employees for internal use or demonstration purposes only. In keeping with Oracle's trade compliance obligations under U.S. and applicable multilateral law, failure to comply with this policy could result in disciplinary action up to and including termination.
    Note: You are bound by the Oracle Technology Network ("OTN") License Agreement terms. The OTN License Agreement terms also apply to all updates you receive under your Technology Track subscription.
    The OTN License Agreement terms below supercede any shrinkwrap license on the OTN Technology Track software CDs and previous OTN License terms (including the Oracle Program License as modified by the OTN Program Use Certificate).
    Oracle Technology Network Development License Agreement
    "We," "us," and "our" refers to Oracle America, Inc., for and on behalf of itself and its subsidiaries and affiliates under common control. "You" and "your" refers to the individual or entity that wishes to use the programs from Oracle. "Programs" refers to the pre-production release version of the Oracle software product you wish to download and use and program documentation, if any. "License" refers to your right to use the programs under the terms of this agreement. "Confidential Information" includes (a) the Programs and all information related thereto, including but not limited to features, requirements, designs, specifications and documentation; and (b) any other information disclosed by Oracle hereunder and marked or identified as confidential at the time of disclosure. Confidential Information does not include information which (a) is or becomes a part of the public domain through no act or omission of you; or (b) was in your lawful possession prior to the disclosure and had not been obtained by you either directly or indirectly from us; or (c) is lawfully disclosed to you by a third party without restriction on disclosure; or (d) is independently developed by you. This agreement is governed by the substantive and procedural laws of California. You and Oracle agree to submit to the exclusive jurisdiction of, and venue in, the courts of San Francisco, San Mateo, or Santa Clara counties in California in any dispute arising out of or relating to this agreement.
    We are willing to license the programs to you only upon the condition that you accept all of the terms contained in this agreement. Read the terms carefully and select the "Accept" button at the bottom of the page to confirm your acceptance. If you are not willing to be bound by these terms, select the "Do Not Accept" button and the registration process will not continue.
    License Rights
    We grant you a nonexclusive, nontransferable limited license to use the programs only for the purpose of internal evaluation and testing of the programs and/or developing a single prototype of your application, and not for any other purpose. If you want to use the programs or the application you develop under this license for any internal data processing or internal business operations or for any commercial or production purposes, or you want to use the programs for any purpose other than as permitted under this agreement, you must obtain a production release version of the program by contacting us or an Oracle reseller to obtain the appropriate license. You acknowledge that we may not produce a production release version of the program and any development efforts undertaken by you are at your own risk. We may audit your use of the programs. Program documentation, if available, may accessed online at http://otn.oracle.com/docs.
    Ownership and Restrictions
    We retain all ownership and intellectual property rights in the programs. The programs may be installed on one computer only, and used by one person in the operating environment identified by us. You may make one copy of the programs for backup purposes.
    You may not:
    - use the programs for your own internal data processing or internal business operations or for any commercial or production purposes, or use the programs for any purpose except as permitted under this agreement;
    - continue to use the programs for a period longer than: (a) six months; or, (b) after the general availability of the programs, if any;
    - use the application you develop with the programs for any internal data processing or internal business operations or commercial or production purposes without obtaining a production release version of the programs by securing an appropriate license from us or an Oracle reseller;
    - remove or modify any program markings or any notice of our proprietary rights;
    - make the programs available or accessible in any manner to any third party;
    - use the programs to provide third party training;
    - assign this agreement or give or transfer the programs or an interest in them to another individual or entity;
    - cause or permit reverse engineering (unless required by law for interoperability), disassembly or decompilation of the programs;
    - disclose results of any program benchmark tests without our prior consent
    - disclose Confidential Information to any third party without our prior consent.
    Feedback
    Any Content that is provided to and Shared with Oracle relating to the programs shall be received and treated by Oracle on a non-confidential and unrestricted basis ("Feedback"), and Oracle shall have a worldwide, perpetual, royalty-free, irrevocable, nonexclusive, fully sublicensable license to use, reproduce, modify, adapt, translate, publish, publicly perform, publicly display, broadcast, transmit and distribute the Feedback for any purpose and in any form, medium, or technology now known or later developed. This includes, without limitation, the right to incorporate or implement the Feedback into any Oracle product or service, and to display, market, sublicense and distribute the Feedback as incorporated or embedded in any product or service distributed or offered by Oracle without compensation to you.
    Export
    You agree that U.S. export control laws and other applicable export and import laws govern your use of the programs, including technical data; additional information can be found on Oracle's Global Trade Compliance web site located at http://www.oracle.com/products/export/index.html?content/html. You agree that neither the programs nor any direct product thereof will be exported, directly, or indirectly, in violation of these laws, or will be used for any purpose prohibited by these laws including, without limitation, nuclear, chemical, or biological weapons proliferation.
    Disclaimer of Warranty and Exclusive Remedies
    THE PROGRAMS ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. WE FURTHER DISCLAIM ALL WARRANTIES, EXPRESS AND IMPLIED, INCLUDING WITHOUT LIMITATION, ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NONINFRINGEMENT.
    IN NO EVENT SHALL WE BE LIABLE FOR ANY INDIRECT, INCIDENTAL, SPECIAL, PUNITIVE OR CONSEQUENTIAL DAMAGES, OR DAMAGES FOR LOSS OF PROFITS, REVENUE, DATA OR DATA USE, INCURRED BY YOU OR ANY THIRD PARTY, WHETHER IN AN ACTION IN CONTRACT OR TORT, EVEN IF WE HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. OUR ENTIRE LIABILITY FOR DAMAGES HEREUNDER SHALL IN NO EVENT EXCEED ONE THOUSAND DOLLARS (U.S. $1,000).
    Trial Programs Included With Orders
    We may include additional programs with an order which may be used for trial purposes only. You will have 30 days from the delivery date to evaluate these programs. Any use of these programs after the 30 day trial period requires you to obtain the applicable license. Programs licensed for trial purposes are provided "as is" and we do not provide technical support or any warranties for these programs.
    No Technical Support
    Our technical support organization will not provide technical support, phone support, or updates to you for the programs licensed under this agreement.
    End of Agreement
    This agreement, and your right to use the programs, will be terminated: (i) automatically upon the release of production-release versions of the programs, in which case you shall destroy all copies of the programs; (ii) by you, by destroying all copies of the programs; or, (iii) by us if you fail to comply with any of the terms of this agreement, in which case you shall destroy all copies of the programs.
    Relationship Between the Parties
    The relationship between you and us is that of licensee/licensor. Neither party will represent that it has any authority to assume or create any obligation, express or implied, on behalf of the other party, nor to represent the other party as agent, employee, franchisee, or in any other capacity. Nothing in this agreement shall be construed to limit either party's right to independently develop or distribute software that is functionally similar to the other party's products, so long as proprietary information of the other party is not included in such software.
    Open Source
    "Open Source" software - software available without charge for use, modification and distribution - is often licensed under terms that require the user to make the user's modifications to the Open Source software or any software that the user 'combines' with the Open Source software freely available in source code form. If you use Open Source software in conjunction with the programs, you must ensure that your use does not: (i) create, or purport to create, obligations of us with respect to the Oracle programs; or (ii) grant, or purport to grant, to any third party any rights to or immunities under our intellectual property or proprietary rights in the Oracle programs. For example, you may not develop a software program using an Oracle program and an Open Source program where such use results in a program file(s) that contains code from both the Oracle program and the Open Source program (including without limitation libraries) if the Open Source program is licensed under a license that requires any "modifications" be made freely available. You also may not combine the Oracle program with programs licensed under the GNU General Public License ("GPL") in any manner that could cause, or could be interpreted or asserted to cause, the Oracle program or any modifications thereto to become subject to the terms of the GPL.
    Third Party Technology
    The Programs may contain third party technology. We may provide certain notices to you in program documentation or otherwise in connection with such third party technology. If you are permitted to distribute a Program, you agree to include with the distribution all such notices and any associated source code for third party technology as specified, in the form and to the extent such source code is provided by us. For clarity, the existence of a notice does not affect the terms under which third party technology is licensed to you.
    Third party technology will be licensed to you either under the terms of this agreement, or, if specified in the program documentation, readme files or otherwise in writing, under separate license terms ("Separate Terms") and not under the terms of this agreement ("Separately Licensed Third Party Technology"). Your rights to use such Separately Licensed Third Party Technology under the Separate Terms are not restricted or modified in any way by this agreement.
    Entire Agreement
    You agree that this agreement is the complete agreement for the programs and licenses, and this agreement supersedes all prior or contemporaneous agreements or representations. If any term of this agreement is found to be invalid or unenforceable, the remaining provisions will remain effective.
    Last updated: 08/26/10
    Should you have any questions concerning this License Agreement, or if you desire to contact Oracle for any reason, please write:
    Oracle America, Inc.
    500 Oracle Parkway,
    Redwood City, CA 94065
    Oracle may contact you to ask if you had a satisfactory experience installing and using this OTN software download.
    >
    which is different from http://download.oracle.com/docs/cd/E17781_01/license.112/e18068/toc.htm#BABHFGHA regarding production or commercial purposes.

    At first sight, I was surprised too, but after reading both terms thoroughly I came to the same conclusion that orafad posted above: The text you posted is entitled Oracle Technology Network Early Adopter License Terms. Of course, EA-Terms are different from the ones for the production release. To illustrate the example with software from another company: It was possible to download betas of Microsoft Windows "for free", but it was just for evaluation, testing and "early adopting" purposes, not for productive use. Similar rules apply here. The final release will definetly not be published with that EA License. Oracle has published a draft of the final terms so you get an idea of what you'll be allowed to do with the software you evaluate when it will be released.
    -Udo

  • How to find from Data target filled by which  process chain.

    hi all.
    i have list of cubes i want to know that which cube is filled by which prcess chain ...
    can anyone suggest me appropriate solution.
    simply i want to know that when reconcilation which process chain affect on which bex report so that if one process chain got failed then i will not generate that specific report for that day..
    i have list of multiprovider on which we are generating rports and tech. name of report also i have.

    Ganesh ji,
    Choose your infopackage which holds the data targets, in the Infopackage screen reach the Scheduler tab and you will find the where-Used list. This will let you know the particular process chain responsible.
    thanks
    Prabhakaran
    09176665954

  • How can I determine which codec to use?

    I'm using PE7 on a PC. I have HD video shot with a Canon. Each video - there are six of them - is less than five minutes. After I finished editing, I uploaded them to youtube and emailed a link to my client, but my client complained that they were out of focus. I explained that it was the compression that youtube uses, and that I'd render them to disk for him to look at.
    Trouble is, I can't figure out which codec to use. All I know is that I want clear, sharp video, suitable for posting on the net. These are scientific videos, showing some chemical processes involving gasoline with ethanol and water.
    Can someone point me in the right direction?
    TIA

    I guess I need to explain better. The HD videos I'm editing will not end up on youtube, but will be posted on a government agency's website. I originally posted them on youtube just so the client could take a look without me having to attempt to email large video files or burn to disk, since the client is in a different location from me.
    The area of video editing and production that I'm the least knowledgeable - and therefore the most insecure - is when I attempt to render and save a video. Every video project I go through the same frustration of having a project that I'm happy with, but having a final product that either 1) does not look at all sharp or 2) results in a file size which is too large. In this case, since the final video files will be posted online, they need to be small enough for viewing over the net while maintaining enough sharpeness and quality that the video does not look out of focus.
    If you take a look at this video, for example: http://www.youtube.com/watch?v=t_X0IKPJrng you can see why my client thought it was out of focus. However, I know that the original footage is very sharp.This link is only temporary, as I've already been told that the agency I work for will not allow them to be posted on youtube.
    So, my question is, when I'm rendering and saving a video project from PE7, how do I know what settings to use for the highest quality, yet smallest file size? The manual does not go into much detail about the pros and cons of various codecs, nor does it say much about what settings do what. It's like Adobe expects me to already know this information.
    Is the problem with the video above simply that youtube compresses the videos I upload? Is Vimeo a better site to upload videos and maintain sharpness? In PE7, is there a way to set it up to upload to Vimeo, or should I render and save as an MP2 or MP4 file and then manually upload?
    Surely there's a site which goes into much greater details about the various settings I can use in PE, and how those settings affect the final viewing product.
    Thanks a lot for your help. I realize my questions show an extreme lack of experience, but that's why I'm here, right?

  • Is there a way to select which display to use??

    Hi,
    I think my problem is OS dependent but i'm still gonna ask...
    Code related to this problem is:
      Process runner;
      Runtime t = Runtime.getRuntime();
      runner = t.exec("<path-to-office>\powerpnt.exe /s '<path-to-show>\show.ppt'");
      //  The program in line above is not nessecary  powerpoint it can be also Acrobat or web browser!!
      // (basicly  anythig which can be run on full-screen mode from command line)
    The Problemo:
    I have a computer (running on Win XP) which has two (or more) displays attached (Matrox G550),
    do i have a chance to detect amount of displays and if there is more than one display, can i somehow
    select in Runtime which display to use to show results of code above?
    Matrox solution was "when you run program once in certain display , it should be opened in same
    display next time", well... what if i shoud use 2 powerpoints in same time to have x kind of ppt in one
    screen and y kind in second screen wich has totally different kind of info what screen x does?
    If it's possible with JFrame to decide wich screen to use, i'm almost shure that i can change program to
    use pictures instead of external programs.
    -jori

    Hmm, I don't know how you would do this with out going native, but for Java frames you can use the following links.
    http://java.sun.com/j2se/1.4.2/docs/api/java/awt/GraphicsDevice.html
    http://openide.netbeans.org/multi-monitors.html

  • Sometimes a plugin-container.exe instance starts hogging a ton of memory -- I would like to know which plugin is running inside that plugin-container without having to one-by-one disable the plugins. Which process called plugin-container.exe?

    As described above, I have several instances of plugin-container.exe running, which is OK. It would make me feel safer to know which plugins are running inside each of these, since I would be better able to know whether there is malware running inside one of them, or which website might have made the process start hogging memory.
    I am a power user, I usually have 80-100 tabs open, and of course it is hard to track the website or plugin down without having to waste a lot of time.
    Could you provide in future releases this information?
    Is it already available under one of the about: pages (e.g. config, plugins, memory, etc?)

    Thanks Efreak! <br><br>
    Maybe I was not clear. I usually have 4-5 plugin-container.exe processes running. I know now that the large one that hogs is the Adobe Flash player, but, for example I don't know which plug-in initiated the other plugin-container.exe instances.<br><br>
    One of them actually says "googletalkplugin.exe" if you dig deep, which is OK. At least I know why the plugin-container.exe was started. But there are other instances that are just there and there is no way to figure out which plug-in initiated it.<br><br>
    This would of course also help figure out if it is really the Adobe Flash plug in that is hogging all the memory, OR even if within Firefox in the about: pages one could figure out which TABS are using which plug-ins.
    Like that you could freely choose to terminate the process directly, or close the TAB.<br><br>
    1) What I am looking for is a way to determine which plug-in is running under which instance of plugin-container.exe<br>
    2) Additionally it would be great to have a summary of which TABS are using which plugins (e.g. in the about:plugins page or yet another about: page)
    <br><br>
    Thank you

Maybe you are looking for