Modified Historic Accounting query tools/Inflation Accounting tool for Assets

Modified Historic Accounting query tools/Inflation Accounting tool for Assets
Does anybody know if Oracle provide such a product, or is it a third party solution that interfaces with Oracle? If you have any info on this, I would be grateful
Thanks

First check if you can add the function associated with the tools option to "responsibility exclusions" using sysadmin.
See http://download.oracle.com/docs/cd/A60725_05/html/comnls/us/fnd/fndscrsp.htm
If not, then consider writing a personalization (one for each tools>menu option)
The personalization will fire on the "special7" (or whichever the number is).
In the actions, you should display an error message that says "This option is not available". That will prevent the user from opening the form.
Hope this helps
Sandeep Gandhi
Independent Techno-functional Consultant

Similar Messages

  • How do I find account settings not under my tools tab want to set up email?

    I just downloaded the newest firefox. I have been told you can set up multiple emails on firefox email like outlook but web based the tutorials all say to go to account settings but under my tool tab it is not there. Where do I find it?

    Firefox doesn't do email, it's strictly a web browser.
    If you are using Firefox to access your mail, you are using "web-mail". You need to seek support from your service provider or a forum for that service.
    If your problem is with Mozilla Thunderbird, see this forum for support.
    [http://www.mozillamessaging.com/en-US/support/] <br />
    or this one <br />
    [http://forums.mozillazine.org/viewforum.php?f=39]

  • BW Query in CRM Account Fact Sheet : Error

    When selecting a BW query in the account fact sheet : the following error message is shown :
    "Query can not be loaded (Data Provider "DP_1" : No service-implementation is available)"
    Do we need to create a web service for this ?

    Hi there!
    There are at least two connections required:
    1) RFC connection from CRM to BW java stack,
    2) Within the CRM fact sheet, the BW source also needs to be defined.
    Check out
    Procedure
    1.     Access the activity using the following navigation options:
    Transaction code     SPRO
    SAP CRM IMG menu     Customer Relationship Management  CRM Middleware and Related Components  Communication Setup  Middleware Parameters  Define Middleware Parameters
    2.     Choose R/3 customer fact sheet and order status.
    3.     Choose New Entries (F5).
    4.     Create the following table entry.
    Field name     User action and values     Comment
    Key      CRMCFSOLTP     
    Parameter 1     CRMCFSOLTP     
    RFC Destination     <RFC destination for the ERP system>     RFC destination has been created in building block CRM Connectivity
    5.     Choose Save (Ctrl+S).
    6.     Choose Back (F3) twice.
    7.     Choose BW customer fact sheet.
    8.     Choose New Entries (F5).
    9.     Create the following table entry.
    Field name     User action and values     Comment
    Key      CRMCFSBW     
    Parameter 1     CRMCFSBW     
    RFC Destination     <RFC destination for the BW system>     RFC destination has been created in building block BI Connectivity
    10.     Choose Save (Ctrl+S).
    Procedure
    1.     Access the activity using the following navigation options:
    Transaction code     SPRO
    SAP CRM IMG menu     Customer Relationship Management  UI Framework  UI Framework Definition  Fact Sheet  Maintain Fact Sheet
    2.     Choose BP_ACCOUNT_FS.
    3.     Choose Copy As.
    4.     Maintain the following table entry.
    Field name     User action and values     Comment
    Fact Sheet ID     ZOTIS_ACCOUNT_FS     
    Fact Sheet Title     Otis Account Fact Sheet     
    Description     Otis Account Fact Sheet     
    5.     When prompted, select Copy All Dependent Entries.
    6.     Choose Save (Ctrl+S).
    7.     Choose ICCMP_FS.
    8.     Choose Copy As.
    9.     Maintain the following table entry.
    Field name     User action and values     Comment
    Fact Sheet ID     ZOTIS_IC_AFS     
    Fact Sheet Title     Otis IC Account Fact Sheet     
    Description     Otis IC Account Fact Sheet     
    10.     When prompted, select Copy All Dependent Entries.
    11.     Choose ZOTIS_IC_AFS.
    12.     In the Dialog Structure on the left, double click and select folder option View Assignments.
    13.     Choose New Entries.
    14.     Maintain the following table entry.
    Field name     User action and values     Comment
    Component Name     BP_FACTSHEET     
    Interface View     BIReport     
    Inbound Plug     DEFAULT     
    Title     BI Report     
    15.     Choose Save (Ctrl+S).
    I hope this helps.
    John Hawk

  • Report for Inflation Accounting for Mexico

    Hello Experts,
    I am implementing fixed assets module for Mexico and as per the business requirements, the customer needs to adjust fixed assets values (APC and depreciation) for inflation. I have been able to configure the system for this but the problem is in reporting for inflation. There are no standard reports available in SAP for inflation accounting. Has anyone else too faced this problem in the past and what solution was used for this ?
    Thanks,
    Rohit

    Hi,
        Since you have a seperate area ,you can use all the standard reports for your requirements. It is strange that you do not post the area to G/L , but that is probably your clients requirement.
    Currently Inflation Accounting is not required in Mexico as the rate is below the threshhold.
    Kind regards

  • Advice with a query to find Accounts with activities within a given period ONLY

    Hello there,
    I am relatively new to Microsoft T-SQL and I was wondering if someone could help shed some light into a requirement I got...
    I have two tables in a database. One with accounts, and another with activities for such accounts. He is a simple diagram:
    *NOTE: Dates are in the DD/MM/YYYY format.
    Here is what I need to do:
    I need to get a list of all the accounts where the LAST activity was created in a date range, along with a count of activities that fall in such range. The idea behind this is to find out accounts with no activity after a certain period.
    I can certainly accounts with activities in a given range -- but that does not mean that there was no activities after the range.
    For example, if I look for Accounts with activities between Feb/2014 and Mar/2014, this query should NOT return the Contoso account, because it ha an activity after Mar/2014 (i.e.: Meeting with John on 15/Apr/14).
    Another example: If I query accounts with activities from 01/Jan/2014 and 03/Apr/2014, it should ONLY return the Adventureworks account:
    Adventureworks (3)
    [the number in parenthesis is the count of activities in that given time]
    This is because all other accounts had activities after 03/Apr/2014.
    Could someone please advise the best way to construct this query?
    Thanks in advance for the help!
    Regards,
    P.

    SELECT * FROM tbl WHERE CreatiinDate BETWEEN @firstactivities AND  lastactivites
    AND NOT EXISTS 
    (SELECT * FROM tbl t WHERE CreatiinDate>=@lastactivites
    AND
    tbl.AccountID=T.AccountID )
    OR
    SELECT * FROM tbl WHERE
    AccountID  NOT IN (SELECT
    AccountID FROM
    tbl t WHERE CreatiinDate>@lastactivites) 
    AND CreationDate BETWEEN
    @firstactivities AND  lastactivites
    Best Regards,Uri Dimant SQL Server MVP,
    http://sqlblog.com/blogs/uri_dimant/
    MS SQL optimization: MS SQL Development and Optimization
    MS SQL Consulting:
    Large scale of database and data cleansing
    Remote DBA Services:
    Improves MS SQL Database Performance
    SQL Server Integration Services:
    Business Intelligence

  • How to display a select query record in a tool tip?

    hi,
    How to display a select query record in a tool tip?
    for example i have a report employee. when i move the mouse pointer over a employee name, the tool tip should display the respective department id, department name...of that employee name.
    select dep_id, dep_name ....from department where employee.....Is it possible?
    thanks

    Dear Skud,
    Yes its possible..select ''||ename||'' from emp
    other wise you can use jQuery tooptip or some other JScript bundles.
    Thanks and Regards
    Maheswara

  • Query to get account balance

    Hi everyone. I wrote a query to get the balance for an internal bank account below:
    select cba.bank_account_id, cba.bank_account_name, cba.bank_account_num,
    cbau.bank_acct_use_id, (glb.period_net_dr - glb.period_net_cr) begin_balance,
    hr_general.decode_organization(:p_org_id) company
    from ce_bank_accounts cba, ce_bank_acct_uses_all cbau, gl_balances glb
    where cbau.bank_account_id = cba.bank_account_id
    and glb.period_name = 'SEP-10'
    and cba.bank_account_id = :p_bank_account_id
    and glb.code_combination_id = cba.asset_code_combination_id
    The column begin _balance gives the opening balance. But if you notice, I am using period name is SEP-10. The problem is, my requirement is to get the balance between 2 dates. Say 10-JAN-2010 and 15-FEB-2010. How do I go about this?
    Thanks

    I do not think thats possible from the GL_BALANCES table if we do not have a period for each day as the table stores data for a period and not for a day. The same reason we do not have a daily trial balance.
    Will be happy to get a work-around !
    Thx / Sid

  • Sql query to find the balances for a customer account wise.

    Hi,
    Could someone help me with the sql query to find the balances for each customer account wise. This is need to generate the report.
    presently we are using this query, but the output doesnot return the expected result.
    SELECT sum(nvl(ps.acctd_amount_due_remaining,0)) "Balance"
    FROM      ra_cust_trx_line_gl_dist_all gld,
              gl_code_combinations c,
              ar_payment_schedules_all ps,
              RA_CUSTOMER_TRX_ALL rat,
              ra_customers rc
    WHERE      c.CHART_OF_ACCOUNTS_ID = 101
    and gld.code_combination_id = c.code_combination_id
         and rat.CUSTOMER_TRX_ID=gld.CUSTOMER_TRX_ID
         and rat.CUSTOMER_TRX_ID=ps.CUSTOMER_TRX_ID
    and ps.customer_id=rc.customer_id
         and ps.status='OP'
         and ps.gl_date <= :PDATE
         and ps.org_id=:PORGID
         and ps.class in ('GUAR','INV','DM','DEP')
    and c.SEGMENT4=:Account_id
    and ps.customer_id=:Customer_id
    Thanks in advance.
    Kalyan.

    Can someone help us with this.

  • Inflation Accounting in Dominican Republic

    Hi Sap Guru
    I just want to know that in Inflation accounting it is possible to revaluate the aseet from  year 2000 till now.As client want to adjust the asset accordingly.If possible what is the configuration for that.
    It is also possible to know if the country specific version is not being supported by SAP and if we configure that for other country than it will work properly for ex for Dominican republic SAP has not supported the inflation accounting and i am configured that ,so it will work or not
    Regards
    Anant

    This is possible.
    Look to SAP note 725957 (Turkey) here you found how to set this up. This you can use as basis with perhaps some little changes
    For the calcualtion in the asset Depreciation area (details) you have to fill in Data for revaluation (date and revaluation key)
    In the posting variant you say when the posting is.
    The best is follow up inflation in a sepperate depreciation area.
    To set this up cost some weeks!  Set up the config and a lot of testing.

  • Inflation Accounting on Fixed Assets

    Hi ,
    Could anyone advice how to configure for Inflation Accounting on Fixed Assets wherein Accumulated Depreciation needs to get Revalued.
    Is there any Notes to be applied in this regard.
    regards,
    M Suresh Kumar

    You can use as basis SAP Note 725957 - Inflation adjustment of fixed assets in Turkey
    https://service.sap.com/sap/support/notes/725957
    The compleet set-up is in there, perhaps there is a version for your own country
    Me setup is:
    03 Local books               (create postings)
    13 Local books inflation   (create postings)
    14 = 03 + 13                  (for reporting)

  • Sql query to find all contacts for an account

    I wonder if someone wrote an sql query to find all contacts for an account number in Oracle customer master. We are on EBS 11.5.10.
    I am also looking for sql query to find all ship to addresses for an account number.
    Thanks.

    Can you also post the query for people who read this post and are also looking for an answer?
    Regards,
    Johan Louwers.

  • Query is returning multiple records for a bank account id and party id

    Hi All,
    I am not getting why this query is returning multiple records for a particular bank account id and party id:
    SELECT instrument_payment_use_id
    ,instrument_type
    ,instrument_id
    ,start_date
    ,ext_pmt_party_id
    FROM iby_pmt_instr_uses_all
    WHERE instrument_id =:lv_num_ext_bank_account_id
    and exists (select 1 from iby_external_payees_all b where PAYEE_PARTY_ID= :lv_num_party_id and b.ext_payee_id = ext_pmt_party_id)
    I want above values to be used in api iby_disbursement_setup_pub.set_payee_instr_assignment in R12.
    Please help asap.
    Thanks

    O/P of query run for
    SELECT rowid, instrument_payment_use_id
    FROM iby_pmt_instr_uses_all
    WHERE instrument_id =6642
    AND EXISTS (
    SELECT 1
    FROM iby_external_payees_all b
    WHERE payee_party_id= 85470
    AND b.ext_payee_id = ext_pmt_party_id);
    is below:
    Rowid     INSTRUMENT_PAYMENT_USE_ID
    AABiDXAGIAABhiKAAS     236586
    AABiDXAGRAABSjtAAz     148437
    The version is R12

  • Query to Find Account Balances (Actual & Budgeted).

    Hi
    can any one suggest a query to list all GL (R12) Account (Segment2) Balances (Actual and Budgeted) for a given Enitity (Segment1) and Period.
    Some accounts have sub-accounts with Parent child relationship. List should include all child accounts where ever balances exist.
    or Pl. point me thread if it is already answered earlier in this forum.
    Thanks,
    T.
    Edited by: user13072694 on May 28, 2010 2:15 PM
    Edited by: user13072694 on May 28, 2010 2:19 PM
    Edited by: user13072694 on May 28, 2010 2:25 PM

    Hello.
    See if this query helps you:
    SELECT cc.segment2,
    nvl(sum(bal.begin_balance_dr + bal.period_net_dr - bal.begin_balance_cr - bal.period_net_cr),0) "Actual Balance",
    nvl(sum(balb.begin_balance_dr + balb.period_net_dr - balb.begin_balance_cr - balb.period_net_cr),0) "Budget Balance"
    FROM gl_balances bal, gl_balances balb, gl_code_combinations cc
    WHERE cc.code_combination_id = bal.code_combination_id
    AND balb.code_combination_id = cc.code_combination_id
    AND bal.set_of_books_id = <'your SOB id'>
    AND balb.set_of_books_id = <'your SOB id'>
    AND bal.period_name = <'your actual period name'>
    AND balb.period_name = <'your budget period_name'>
    AND bal.actual_flag = 'A'
    AND balb.actual_flag = 'B'
    AND bal.currency_code = <'you SOB currency code'>
    AND balb.currency_code = <'your SOB currency code'>
    GROUP by cc.segment2
    Hope this helps,
    Octavio

  • How to enable show SQL Query in Crystal report tool

    Hi,
    How can we enable the show SQL Query under Database tab in crystal report...
    We have a requirement to modify the SQL query in Crystal reports.
    Thanks,
    Gana

    Gana,
    CR has an "Add Command" feature that will allow you to use hand-coded SQL as your data source.
    Look at Defining an SQL Command in CR's online help (F1).
    If a command was used in the original report creation, it's a simple matter to go in and edit that SQL.
    If the report was not originally built w/ a Command you may find it difficult to switch over. In most cases it easier to start over from scratch, creating a new, blank report, that uses the command.
    Jason

  • Query on OB09 account settings

    Hello Sap Guru's
    Question regarding account maintenance inOB09 screen which is used for account determination of foreign exchange
    request you to clarify my below queries:
    1)on what basis we can maintain accounts in OB09.
    2) I want to maintain account which is not local currency account (ex:company code currency INR account currency USD) is it possible to maintain.
    I will assign points.
    Regards
    Chandra

    Hi
    You will set up OB09 for GL Accounts which are likely to carry amounts in Currencies other than your Local currency. Examples are Bank accounts, Customer/Vendor recon accounts. The objective is that when you try to clear these Open items which are created in Foreign currency, then there will be exchange gain/loss which needs to be posted automatically.
    Similarly this T code is used for FC valuation too, wherein you set up unrealized gain/loss. And also for US GAAP reporting wherein you translate your balances in INR to USD. (Translation gain/loss)
    Jayaram

Maybe you are looking for