Oracle Asset tracking

Can anyone explain what is OAT conversion in R12.1.. Which responsiblity to choose in the front end to see the details... What are the basic steps to do OAT conversion.......
thanks and regards
renji

Hi,
This is Brahmaji Narisetty , we have implemented the following financial , (GL,AP,AR,CM and FA ) , Distribution modules to telecom Industry . Now we are planning to implement Oracle Asset Tracking module . Now I want to understand the overall functionality of Asset Tracking. how come it helpful to telecom domain.
If anyone worked on Asset tracking module can you please share the business flow and setup document . And also can you please explain what are the entries will create for Track as asset item in the following scenarios .
1. Receipt Creation
2.Invoice Creation
3.Create the Asset from Inventory .
4. Mass addition
Could you please provide the more details on this .
Thanks in advance .
Regards,
Brahmaiah n
00966566739759

Similar Messages

  • Project Transfer Api - ORACLE ASSET TRACKING.

    I am working on thIS API FOR ASSET->DEPLOYMENT->MOVE
    declare
    l_location_type_code varchar2(30);
    l_location_id number;
    l_instance_usage_code varchar2(30);
    l_operational_status_code varchar2(30);
    l_instance_tbl cse_deployment_grp.txn_instances_tbl;
    l_dest_location_tbl cse_deployment_grp.dest_location_tbl;
    l_ext_attrib_values_tbl cse_deployment_grp.txn_ext_attrib_values_tbl;
    l_txn_tbl cse_deployment_grp.transaction_tbl;
    l_return_status varchar2(1) := fnd_api.g_ret_sts_success;
    l_error_message varchar2(2000);
    cursor c1 is select * from csi_ins;
    n number;
    begin
    n:=1;
    for i in c1 loop
    l_instance_tbl(n).instance_id := csi_item_instances_s.nextval;
    select serial_number,
    lot_number,
    inventory_item_id,
    operational_status_code,
    location_type_code,
    location_id,
    instance_usage_code,
    operational_status_code
    into l_instance_tbl(n).serial_number,
    l_instance_tbl(n).lot_number,
    l_instance_tbl(n).inventory_item_id,
    l_instance_tbl(n).operational_status_code,
    l_location_type_code,
    l_location_id,
    l_instance_usage_code,
    l_operational_status_code
    from csi_item_instances
    where instance_id=i.instance_id
    --l_instance_tbl(n).instance_id
    and serial_number=i.serial_number ;
    IF L_LOCATION_TYPE_CODE='HZ_LOCATIONS' THEN
    --l_txn_tbl(1).transaction_type_id=111;
    l_location_type_code:='HZ_LOCATIONS' ;
    l_location_id:=821;
    END IF;
    l_txn_tbl(n).transaction_id := fnd_api.g_miss_num;
    l_txn_tbl(n).transaction_date := sysdate;
    l_txn_tbl(n).source_transaction_date := sysdate;
    --l_txn_tbl(1).transaction_type_id := 152;
    l_txn_tbl(n).transaction_type_id := 111;
    l_txn_tbl(n).txn_sub_type_id := 3;
    l_txn_tbl(n).source_group_ref_id := fnd_api.g_miss_num;
    l_txn_tbl(n).source_group_ref := fnd_api.g_miss_char;
    l_txn_tbl(n).source_header_ref_id := fnd_api.g_miss_num;
    l_txn_tbl(n).source_header_ref := fnd_api.g_miss_char;
    l_txn_tbl(n).transacted_by := fnd_api.g_miss_num;
    l_txn_tbl(n).transaction_quantity := 1;
    l_txn_tbl(n).operational_flag := 'Y';
    l_txn_tbl(n).financial_flag := 'Y';
    l_dest_location_tbl(n).parent_tbl_index := 1;
    l_dest_location_tbl(n).location_type_code :=l_location_type_code;
    l_dest_location_tbl(n).location_id := l_location_id;
    l_dest_location_tbl(n).instance_usage_code :=l_instance_usage_code;
    l_dest_location_tbl(n).operational_status_code :=l_operational_status_code;
    cse_deployment_grp.process_transaction (
    p_instance_tbl => l_instance_tbl,
    p_dest_location_tbl => l_dest_location_tbl,
    p_ext_attrib_values_tbl => l_ext_attrib_values_tbl,
    p_txn_tbl => l_txn_tbl,
    x_return_status => l_return_status,
    x_error_msg => l_error_message);
    if l_return_status <> fnd_api.g_ret_sts_success then
    dbms_output.put_line(l_error_message);
    end if;
    n:=n+1;
    end loop;
    end;
    WHEN I EXECUTE THIS I AM GETTING THE ERROR AS
    ORA-01403: no data found
    ORA-06512: at "APPS.CSE_DEPLOYMENT_GRP", line 1193
    ORA-06512: at line 63
    CAN ANY ONE HELP ME.
    Edited by: 983671 on Jan 23, 2013 5:41 AM

    I am working on thIS API FOR ASSET->DEPLOYMENT->MOVE
    declare
    l_location_type_code varchar2(30);
    l_location_id number;
    l_instance_usage_code varchar2(30);
    l_operational_status_code varchar2(30);
    l_instance_tbl cse_deployment_grp.txn_instances_tbl;
    l_dest_location_tbl cse_deployment_grp.dest_location_tbl;
    l_ext_attrib_values_tbl cse_deployment_grp.txn_ext_attrib_values_tbl;
    l_txn_tbl cse_deployment_grp.transaction_tbl;
    l_return_status varchar2(1) := fnd_api.g_ret_sts_success;
    l_error_message varchar2(2000);
    cursor c1 is select * from csi_ins;
    n number;
    begin
    n:=1;
    for i in c1 loop
    l_instance_tbl(n).instance_id := csi_item_instances_s.nextval;
    select serial_number,
    lot_number,
    inventory_item_id,
    operational_status_code,
    location_type_code,
    location_id,
    instance_usage_code,
    operational_status_code
    into l_instance_tbl(n).serial_number,
    l_instance_tbl(n).lot_number,
    l_instance_tbl(n).inventory_item_id,
    l_instance_tbl(n).operational_status_code,
    l_location_type_code,
    l_location_id,
    l_instance_usage_code,
    l_operational_status_code
    from csi_item_instances
    where instance_id=i.instance_id
    --l_instance_tbl(n).instance_id
    and serial_number=i.serial_number ;
    IF L_LOCATION_TYPE_CODE='HZ_LOCATIONS' THEN
    --l_txn_tbl(1).transaction_type_id=111;
    l_location_type_code:='HZ_LOCATIONS' ;
    l_location_id:=821;
    END IF;
    l_txn_tbl(n).transaction_id := fnd_api.g_miss_num;
    l_txn_tbl(n).transaction_date := sysdate;
    l_txn_tbl(n).source_transaction_date := sysdate;
    --l_txn_tbl(1).transaction_type_id := 152;
    l_txn_tbl(n).transaction_type_id := 111;
    l_txn_tbl(n).txn_sub_type_id := 3;
    l_txn_tbl(n).source_group_ref_id := fnd_api.g_miss_num;
    l_txn_tbl(n).source_group_ref := fnd_api.g_miss_char;
    l_txn_tbl(n).source_header_ref_id := fnd_api.g_miss_num;
    l_txn_tbl(n).source_header_ref := fnd_api.g_miss_char;
    l_txn_tbl(n).transacted_by := fnd_api.g_miss_num;
    l_txn_tbl(n).transaction_quantity := 1;
    l_txn_tbl(n).operational_flag := 'Y';
    l_txn_tbl(n).financial_flag := 'Y';
    l_dest_location_tbl(n).parent_tbl_index := 1;
    l_dest_location_tbl(n).location_type_code :=l_location_type_code;
    l_dest_location_tbl(n).location_id := l_location_id;
    l_dest_location_tbl(n).instance_usage_code :=l_instance_usage_code;
    l_dest_location_tbl(n).operational_status_code :=l_operational_status_code;
    cse_deployment_grp.process_transaction (
    p_instance_tbl => l_instance_tbl,
    p_dest_location_tbl => l_dest_location_tbl,
    p_ext_attrib_values_tbl => l_ext_attrib_values_tbl,
    p_txn_tbl => l_txn_tbl,
    x_return_status => l_return_status,
    x_error_msg => l_error_message);
    if l_return_status <> fnd_api.g_ret_sts_success then
    dbms_output.put_line(l_error_message);
    end if;
    n:=n+1;
    end loop;
    end;
    WHEN I EXECUTE THIS I AM GETTING THE ERROR AS
    ORA-01403: no data found
    ORA-06512: at "APPS.CSE_DEPLOYMENT_GRP", line 1193
    ORA-06512: at line 63
    CAN ANY ONE HELP ME.
    Edited by: 983671 on Jan 23, 2013 5:41 AM

  • Is Asset Tracking module mandatory for Oracle Install Base implementation?

    In the Oracle Install Base implementation guide, it is mentioned that Asset Tracking (previously Enterprise Install Base) Module is mandatory. Our situation does not warrant to implement asset tracking. Do we need to get separate license for Asset tracking if we need to implement Install base? Any insight on this would be highly helpful. Thanks

    Pl do not post duplicates - Is Asset Tracking module mandatory for Oracle Install Base implementation?

  • Asset Tracking Module -Can I track part of any item..?

    Hello, I wonder in Asset Tracking module can I track any item part of an item. Example I have an A item and also B item. B item is part of A item. Can I track B item in asset tracking module and how?
    Thanks.

    If you are using EAM, then you can define the Printer as parent asset and Cartridge as child asset and establish the Parent-Child relationship.
    Refer to : http://www.oraappsguide.com/oracle-enterprise-asset-management-eam-child-asset-setup/

  • Expensed Asset in Oracle Assets.

    Hi,
    We wanted to get more clarification around Expensed assets. If we have some assets,which are of non depreciable nature,say for example Land, then such assets should be treated as expensed assets by attaching them to the expense asset category? or for each of these assets the depreciation check box should be unchecked at the asset level? What should be the ideal approach in such a case?
    Kindly provide inputs regarding the same.
    Thanks

    Hi,
    expensed assets are to be used only for assets which are of insignificant value as decided by management. If a normal asset is treated as expensed asset, it would not be charged to an asset account it would be charged to an expense account directly, and there would be no depreciation computed in the asset module, no jounal entry would be created in asset module, the expensed asset would appear in Asset module for tracking purposes alone ...
    For example, say your company has been providing Blackberry device to all its employees, ideally this can be treated as an asset, however when compared to the total value of your assets, you may feel it is less significant to be treated as assets, this could very well be treated as an expenditure... hence this would be taken care in the oracle payables stage itself ... however for the sake of tracking alone you want this to appear in asset module...
    for which case you would have a dedicated asset category defined without depreciation checkbox enabled and using mass addition process create expensed assets .... Expensed assets has zero financials impact ...
    It is not right to treat LAND or other non depreciaable assets as expensed assets reason being, oracle assets would not generate any accounting entries for expensed assets, which means cost related entries for LAND would not be created by system .... Hence you can either create a zero rate depreciation method and map it against the LAND asset category which is a simple step, hence all assets under LAND category would inherit that depreciation method
    .... else you can uncheck depreciation checkbox at asset level i.e. for each and every asset under the LAND category.
    Regards,
    Ivruksha

  • Asset tracking program

    Hi all
    there is a program that im not sure how to go about doing, that wants to create an asset t-racking program that will track 4 types of assets: electronics, automobiles, furniture and cd's. Which classes would you use to design this program? would you define four unrelated classes or one superclass and four subclasses? if you design a superclass, will it be an abstract superclass?
    Implement the asset tracking program. allow the user to add, modify and delete electronic appliances, auto's, furniture and cd's. allow the user to list the assets by category and search for an asset by its serial number...
    I was thinking of utilizing an arraylists in this program. Any suggestions on how to approach this problem would be great thanks :/

    I'd start with a pencil and a blank sheet of paper. An abstract Asset class and concrete child classes seem to be a good place to start. What information is common to all your assets? For example, asset number, asset description, purchase date, purchase price, accumulated depreciation, current location.
    What information is unique to the child classes? Serial numbers on automobiles and electronic gear? Automobiles have lots of identification numbers: engine numbers, VINs, registration, insurance. CDs have a title and artist(s) with tracks. Furniture is different again, type (desk, chair, etc), colour, finish.
    You need another class with collections of assets, perhaps AssetRegister. This is the class you put methods in to list and search assets.

  • Oracle Assets Category-wise Report from FA and GL tables

    Hi,
    I am developing a customized report (Schedule of Fixed Assets) in the Oracle Assets Module, Which includes Category Wise Opening Balance, additions, adjustments, transfer IN, Transfer OUT and Retirements of Cost and Depreciations. I am using FA tables (FA_CATEGORY_BOOKS, FA_CATEGORIES_B) for category_id, category_name (segment1 of category combination) and book_type_code (Book Name). And I am also using GL tables (GL_BALANCES, GL_JE_HEADERS, GL_JE_LINES) for the amount of begin_balance_dr,begin_balance_cr,accounted_dr and accounted_cr.
    The report gets the category_id,category_name from FA_CATEGORIES_B and book_type_code, asset_account_ccid, reserve_account_ccid and book_type_code from FA_CATEGORY_BOOKS for a single book. The sum of accounted_dr or sum of accounted_cr is calculated for a single category_id whose asset_account_ccid is matched with code_combination_id of GL_JE_LINES.
    There are 15 books each have many projects (FA_CATEGORIE_B.segment6). This report is working as desired for 14 books but in one book there is same asset_account_ccid and reserve_account_ccid for more than one category_id(s). That’s why the same amount is displayed against the multiple category_ids .
    As functionally it is possible in Oracle Assets to have same asset_account_ccid or reserve_account_ccid for more than one category_ids, I want to know that is there any other attribute(except asset_account_ccid,reserve_account_ccid and code_combination_id) which can be used to get the separate data for each category_id from GL tables.
    Regards,
    Fahim
    [email protected]

    hi vijay,
    thanks for your quick reply,
    i'm preparing a reports,fields from bsis and bseg database tables,
    and,my select statement giving error,saying that cluster table can't be joined,
    my problem is,how to write the select statement without inner join those tables,is there any alternative,
    i heard there is 'select for all entries',but i don't know proper usage of that addition,
    regards,
    kc

  • New features for Oracle Assets in Apps 12i

    What are the new features for Oracle Assets in Apps version 12i?
    where can i find User Guide for FA in Aps 12i?

    You could check Appendix A of the Oracle Applications Upgrade Guide for 11i to Release 12:
    http://download-east.oracle.com/docs/cd/B34956_01/current/acrobat/r12upg11i.zip
    Assets module is discussed on page A-2.
    Also, you can find the Fixed Assets Users Guide for R12 at the link that hsawwan provided.

  • Oracle Asset (Functional) Practichttps:/e Questions for Interviews and Exam

    https://www.createspace.com/3495382
    http://www.amazon.com/Functional-Questions-Interviews-Certification-Examination/dp/1456311581/ref=sr_1_4?ie=UTF8&s=books&qid=1289178586&sr=8-4
    List Price: $29.99
    Add to Cart
    Oracle Asset (Functional) Practice Questions for Interviews and Certification Examination (Release 11i and 12)
    Functional Consultant
    Authored by Erp Gold
    This book contains 150 Oracle Asset Practice Questions for functional consultants. Very useful for interviews and certification examinations.
    Publication Date:
    Oct 26 2010
    ISBN/EAN13:
    1456311581 / 9781456311582
    Page Count:
    94
    Binding Type:
    US Trade Paper
    Trim Size:
    6" x 9"
    Language:
    English
    Color:
    Black and White
    Related Categories:
    Computers / General

    Reported as spam!

  • Oracle Asset (Functional) Practice Questions for Interviews and Exam

    https://www.createspace.com/3495382
    http://www.amazon.com/Functional-Questions-Interviews-Certification-Examination/dp/1456311581/ref=sr_1_4?ie=UTF8&s=books&qid=1289178586&sr=8-4
    List Price: $29.99
    Add to Cart
    Oracle Asset (Functional) Practice Questions for Interviews and Certification Examination (Release 11i and 12)
    Functional Consultant
    Authored by Erp Gold
    This book contains 150 Oracle Asset Practice Questions for functional consultants. Very useful for interviews and certification examinations.
    Publication Date:
    Oct 26 2010
    ISBN/EAN13:
    1456311581 / 9781456311582
    Page Count:
    94
    Binding Type:
    US Trade Paper
    Trim Size:
    6" x 9"
    Language:
    English
    Color:
    Black and White
    Related Categories:
    Computers / General

    Reported as spam!

  • Oracle Asset (Functional) Practice Questions for Interviews and Certificati

    https://www.createspace.com/3495382
    List Price: $29.99
    Add to Cart
    Oracle Asset (Functional) Practice Questions for Interviews and Certification Examination (Release 11i and 12)
    Functional Consultant
    Authored by Erp Gold
    This book contains 150 Oracle Asset Practice Questions for functional consultants. Very useful for interviews and certification examinations.
    Publication Date:
    Oct 26 2010
    ISBN/EAN13:
    1456311581 / 9781456311582
    Page Count:
    94
    Binding Type:
    US Trade Paper
    Trim Size:
    6" x 9"
    Language:
    English
    Color:
    Black and White
    Related Categories:
    Computers / General

    Reported as spam!

  • Asset tracking software

    Hi,
    I'm looking for some asset tracking software to monitor and manage around 1,000 Windows machines (various OS) and 500 thin clients.  Being able to report on hardware/software config and metering the devices to prevent unauthorised/unlicensed software
    from being run are also requirements.
    I've used Express Metrix before, but have been unimpressed with the interface.  Would anybody be happy to give their opinions on applications they've used before with pros/cons?
    Cheers
    Andy

    For assest tracking software, you can try this Assest management software (
    http://www.itassetmanagementtool.com/ ) to track, manage software inventory. It helps generating different report that help convening available licenses .

  • Functionality / modules currently available in MySAP for asset tracking.

    Hi All,
    We have a new requirement in the asset accounting. If any one have come accross can you let me know the feasibility and the process.
    1.Functionality / modules currently available in MySAP for asset tracking.
    2.Could MySAP support data input from other external devices e.g. scanner.
    3.What kind of asset level info is stored in MySAP and how they are modified along the asset life cycle
    Thanks nd Regards
    Srihari Bolla

    Yes this is possible.
    In the asset itself you have the fields Last inventory on and Include asset in inventory list
    From SAP you can print barcodes (asset and asset sub number) that you can put on your assets TC S_ALR_87010137 - Bar Codes . There is a standard SAP script for this, but you can create your own one.
    The date you want to use for your tracking you can get ot ouf the table ANLA
    For all the barcode's reader there is software that can create a file. This file you upload with an LSMW in SAP that updates the field Last inventory on.

  • SGD, inventory management & asset tracking functions

    Is anyone using an app that allows scheduling of the servers within the database & displaying in with the main body @ single sign-on using the current UI?
    If so, please point me in the direction - I've pieced together a few apps that do what I need & can be displayed on the webtop, but this isn't seemless. The inventory & asset management should come from the existing db - that part shouldn't be too hard.

    Thanks for responding - I've finally had some time to finish digging through all the docs
    For my business need I'm using sgd as a central portal to manage resources inside a development lab & provide statistical accounting on activity per user/project.
    *ens already provides the user > app relationship based on rights displayed on left panel display - default setup
    **Asset tracking, monitoring, resource management, reporting & basic datacenter management all rolled into the default page.
    *central management - done currently with root or Admin profile - this right grants all access
    ** "sub-admin role " this role can be limited to only modify rights for current group membership - nothing under parent "ROOT"
    My current workaround involves:
    OCS-NG - inventory & automated package deployment
    OSSIM - monitoring
    GLPI - frontend for ocs data - helpdesk UI -
    These apps that launch within webtop - to make it easy
    *** guess I just need to build the correct JSP & integrate into default login for user
    user A logins > SGD (single sign-on integration with all three apps & custom webtop displayed)
    *** Director structure is setup in SGD already - so most of the RMS type activities just need to be setup in the database tree & displayed ** think I found this through custom app via NetBeans, SunStudio , Glassfish/sailfish
    I'll stop for now I can go on & about all the ways this product can be used.
    Thanks for reading > currently playing with NBIDE6 to see if I can whip something up over the weekend to test.

  • Linking asset tracking tables

    Hi all,
    Can anyone help me with connecting tables mtl_material_transactions and fa_mass_additions.
    I am using asset tracking, and after issuing item from inventory, it finishes in FA. How can I now which mass_addition belong to which material_transaction?
    Best regards, Thanks for help

    Varun,
    Can you tell me the linking of FI tables with different modules
    It would require a book to answer your question.  Log onto a system and look at the repository (SE84), which contains info about tables and fields and programs that link objects.
    which are the important fields in those tables.
    All fields are important.
    Unfortunately, this forum is not suitable for this type of question.  I encourage you to obtain one of the many FI textbooks available and study this.  Also, SAP offers many fine FI classes which would be another opportunity for you to get the basic FI knowledge you require.
    Best Regards,
    DB49

Maybe you are looking for