How : Difference Between Original Cost,Salvage Cost,Net Book Value and Recoverable Cost.

1- The original cost is the amount of money the asset originally costs. This amount may suffer modifications (adjustments) when, for example, you buy an asset for a certain cost but you have to pay other expenses to put it working. 2- The recoverable cost is the portion of the current cost that can be depreciated. It is the current cost less the salvage value less the Investment Tax Credit basis reduction amount. If you specify a depreciation cost ceiling, and if the recoverable cost is greater than that ceiling, Oracle Assets uses the cost...

Query : Get the Serial Number for an Order

SELECT wl.meaning release_status , wdd.released_status , wdd.source_line_id , wdd.source_code , wser.fm_serial_number , wser.TO_SERIAL_NUMBER , wdd.CREATION_DATE , oelines.header_id , oeheader.sold_to_org_id , wdd.shipped_quantity , wdd.delivery_detail_id FROM wsh_delivery_details wdd , apps.wsh_lookups wl , OE_ORDER_LINES_ALL oelines , oe_order_headers_all oeheader , wsh_serial_numbers wser WHERE 1 = 1 AND wl.lookup_type = 'PICK_STATUS' AND wl.lookup_code = wdd.released_status ...

Query : Get a listing of asset categories with the accounting and depreciation information

SELECT DISTINCT a.segment1||'-'||a.segment2 CATEGORY, a.segment1 MAJOR_CATEGORY, a.segment2 MINOR_CATEGORY, gl1.segment1||'-'||gl1.SEGMENT2||'-'||gl1.SEGMENT3||'-'||gl1.SEGMENT4||'-'||gl1.SEGMENT5 ASSET_COST, gl2.segment1||'-'||gl2.SEGMENT2||'-'||gl2.SEGMENT3||'-'||gl2.SEGMENT4||'-'||gl2.SEGMENT5 ASSET_COST_CLEARING, c.DEPRN_EXPENSE_ACCT, gl3.segment1||'-'||gl3.SEGMENT2||'-'||gl3.SEGMENT3||'-'||gl3.SEGMENT4||'-'||gl3.SEGMENT5 DEPRN_RESERVE_ACCOUNT, deprn_method, life_in_months, (life_in_months/12) lIFE, prorate_convention_code FROM fa_categories...

How : How to enable the DFF for the Lookup?

If you want to enable the DFF and enter some additional entries in Lookups you just need to follow the below steps STEPS FOR YOU: Create a DFF Login to System Administrator Application -> Flexfield -> Descriptive -> Segments Search for Application = Application Object Library Title = Common Lookups You can see referenced field as "LOOKUP_TYPE" Now if you want to enable your lookup, you need to uncheck "Freeze Flexfield Definitions" checkbox on the top left the DFF Segments screen. this enables you to enter new DFF entries. Now,...

Query: Print Customer Address Details

SELECT DISTINCT hca.account_number customer_number, hp.party_name customer_name, hps.party_site_number site_number, hl.address1 address1, hl.address2 address2, hl.address3 address3, hl.address4 address4, hl.city city, hl.postal_code postal_code, hl.state state, ftt.territory_short_name country, hcsua1.LOCATION bill_to_location, hcsua2.LOCATION ship_to_location FROM hz_parties hp, hz_party_sites hps, hz_cust_accounts hca, hz_cust_acct_sites_all hcasa1, hz_cust_site_uses_all hcsua1, hz_locations hl, fnd_territories_tl ftt, hz_cust_acct_sites_all...

Query for vendors with their bank account details

SQL query to extract all payabales vendors with their bank account details from the Oracle APPS Database You can try this query: SELECT DISTINCT abau.bank_account_uses_id bank_account_uses_id, abau.end_date end_date, abau.external_bank_account_id external_bank_account_id, abau.primary_flag primary_flag, abau.start_date start_date, abau.vendor_id vendor_id, abau.vendor_site_id vendor_site_id, aba.bank_account_name bank_account_name, aba.bank_account_num bank_account_num, aba.bank_account_type bank_account_type, aba.account_type account_type, aba.currency_code...