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

Similar Messages

  • 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

  • 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?

  • 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

  • Error in transfer with oracle WB transfer

    hi,
    I try to transfer my oracle target module to database (target schema).
    I recieve error as follow :
    **! Transfer logging started at Sat Feb 05 09:21:30 IRST 2005 !**
    OWB Bridge processed arguments
    Bridge Parameters are:
    <BA>=<All Collections>
    <LANGUAGE>=<All Languages>
    <LOCKREPOSITORY>=<True>
    <file>=<C:\TEMP\bridges\null-nullMy_Metadata_Transfer1107582690567.XMI>
    Using attribute sorting
    export to file
    Default local= fa_IR
    Exporting project:KAFA_PROJECT2
    initializing project:KAFA_PROJECT2
    Initializing module :KAFA_DW_MODULE
    exportSchema:KAFA_DW_MODULE SCHM14314
    Exporting cube:EMPLOYEMENT_CUBE
    exportCube:EMPLOYEMENT_CUBE/EMPLOYEMENT_CUBE Cube14396
    exportCubeDimUse:CDU14344FK14400
    exportFactLevelUse:FLU14396FK14400
    exportCubeDimUse:CDU14359FK14403
    exportFactLevelUse:FLU14396FK14403
    exportCubeDimUse:CDU14379FK14397
    exportFactLevelUse:FLU14396FK14397
    exportClassificationEntry for:KAFA_COLLECTION2 CLE_0
    exportMeasure:SALARY/SALARY MEA14410
    Exporting dimension:DEP_DIM
    exportDimension:DEP_DIM/DEP_DIM DIM14359
    exportClassificationEntry for:KAFA_COLLECTION2 CLE_2
    exportLevel:DEP_MAIN/DEP_MAIN LEV14360
    exportClassificationEntry for:Description CLE_3
    exportLevelAttribute:DEP_ID/DEP_ID LATR14363
    exportLevelAttribute:DEP_NAME/DEP_NAME LATR14367
    exportKey:DEP_MAIN_UK/DEP_MAIN_UK KEY14361
    exportKeyAttributeUse:KEYAU14363KEY14361
    exportHierarchy:HIE_DEP/HIE_DEP HEIR14374
    exportHierarchyLevelUse:HLU14374LEV14360
    Exporting dimension:EMP_DIM
    exportDimension:EMP_DIM/EMP_DIM DIM14344
    exportClassificationEntry for:KAFA_COLLECTION2 CLE_5
    exportLevel:EMP_MAIN/EMP_MAIN LEV14345
    exportClassificationEntry for:Description CLE_6
    exportLevelAttribute:EMP_ID/EMP_ID LATR14348
    exportLevelAttribute:EMP_NAME/EMP_NAME LATR14352
    exportKey:EMP_MAIN_UK/EMP_MAIN_UK KEY14346
    exportKeyAttributeUse:KEYAU14348KEY14346
    exportHierarchy:HIE_EMP/HIE_EMP HEIR14354
    exportHierarchyLevelUse:HLU14354LEV14345
    Exporting dimension:JOB_DIM
    exportDimension:JOB_DIM/JOB_DIM DIM14379
    exportClassificationEntry for:KAFA_COLLECTION2 CLE_7
    exportLevel:JOB_MAIN/JOB_MAIN LEV14380
    exportClassificationEntry for:Description CLE_8
    exportLevelAttribute:JOB_ID/JOB_ID LATR14383
    exportLevelAttribute:JOB_NAME/JOB_NAME LATR14389
    exportKey:JOB_MAIN_UK/JOB_MAIN_UK KEY14381
    exportKeyAttributeUse:KEYAU14383KEY14381
    exportHierarchy:HIE_JOB/HIE_JOB HEIR14391
    exportHierarchyLevelUse:HLU14391LEV14380
    Exporting mappings
    exportDimensionTableMap:DTMAP14359
    exportItemMap:IMAP14364
    exportItemUse:TIU14363
    exportItemUse:SIU14364
    exportItemMap:IMAP14368
    exportItemUse:TIU14367
    exportItemUse:SIU14368
    exportDimensionEntityUse:EU_DIM14359
    exportDimensionTableUse:EU_TAB14359
    exportDimensionTableMap:DTMAP14344
    exportItemMap:IMAP14349
    exportItemUse:TIU14348
    exportItemUse:SIU14349
    exportItemMap:IMAP14353
    exportItemUse:TIU14352
    exportItemUse:SIU14353
    exportDimensionEntityUse:EU_DIM14344
    exportDimensionTableUse:EU_TAB14344
    exportDimensionTableMap:DTMAP14379
    exportItemMap:IMAP14384
    exportItemUse:TIU14383
    exportItemUse:SIU14384
    exportItemMap:IMAP14390
    exportItemUse:TIU14389
    exportItemUse:SIU14390
    exportDimensionEntityUse:EU_DIM14379
    exportDimensionTableUse:EU_TAB14379
    exportFactTableMap:FTMAP14396
    exportMapDependency:MAPDEP14396DTMAP14344
    exportMapDependency:MAPDEP14396DTMAP14359
    exportMapDependency:MAPDEP14396DTMAP14379
    exportItemMap:IMAP14410
    exportItemUse:TIU14410
    exportItemUse:SIU14410
    exportCubeEntityUse:EU_Cube14396
    exportFactUse:EU_TAB14396
    exportFactLevelGroup:FLG_TAB14396
    Exporting table:DEP_DIM
    exportTable:DEP_DIM/DEP_DIM TAB14359
    exportKey:DEP_DIM_DEP_MAIN_UK/DEP_DIM_DEP_MAIN_UK KEY14362
    exportKeyAttributeUse:KEYAU14364KEY14362
    exportColumn:DEP_MAIN DEP_ID/DEP_MAIN_DEP_ID COL14364
    exportColumn:DEP_MAIN_DEP_NAME/DEP_MAIN_DEP_NAME COL14368
    exportClassificationEntry for:KAFA_COLLECTION2 CLE_9
    Exporting table:EMP_DIM
    exportTable:EMP_DIM/EMP_DIM TAB14344
    exportKey:EMP_DIM_EMP_MAIN_UK/EMP_DIM_EMP_MAIN_UK KEY14347
    exportKeyAttributeUse:KEYAU14349KEY14347
    exportColumn:EMP_MAIN EMP_ID/EMP_MAIN_EMP_ID COL14349
    exportColumn:EMP_MAIN_EMP_NAME/EMP_MAIN_EMP_NAME COL14353
    exportClassificationEntry for:KAFA_COLLECTION2 CLE_10
    Exporting table:JOB_DIM
    exportTable:JOB_DIM/JOB_DIM TAB14379
    exportKey:JOB_DIM_JOB_MAIN_UK/JOB_DIM_JOB_MAIN_UK KEY14382
    exportKeyAttributeUse:KEYAU14384KEY14382
    exportColumn:JOB_MAIN JOB_ID/JOB_MAIN_JOB_ID COL14384
    exportColumn:JOB_MAIN_JOB_NAME/JOB_MAIN_JOB_NAME COL14390
    exportClassificationEntry for:KAFA_COLLECTION2 CLE_11
    Exporting table:EMPLOYEMENT_CUBE
    exportTable:EMPLOYEMENT_CUBE/EMPLOYEMENT_CUBE TAB14396
    exportKey:SEG_UK_EMPLOYEMENT_CUBE/SEG_UK_EMPLOYEMENT_CUBE KEY14406
    exportKeyAttributeUse:KEYAU14401KEY14406
    exportKeyAttributeUse:KEYAU14404KEY14406
    exportKeyAttributeUse:KEYAU14398KEY14406
    exportForeignKey:FK_EMPLOYEMENT_CUBE_14362/FK_EMPLOYEMENT_CUBE_14362 FK14403
    exportKeyAttributeUse:KEYAU14404FK14403
    exportForeignKey:FK_EMPLOYEMENT_CUBE_14347/FK_EMPLOYEMENT_CUBE_14347 FK14400
    exportKeyAttributeUse:KEYAU14401FK14400
    exportForeignKey:FK_EMPLOYEMENT_CUBE_14382/FK_EMPLOYEMENT_CUBE_14382 FK14397
    exportKeyAttributeUse:KEYAU14398FK14397
    exportColumn:DEP_MAIN_DEP_ID/DEP_MAIN_DEP_ID COL14404
    exportColumn:EMP_MAIN_EMP_ID/EMP_MAIN_EMP_ID COL14401
    exportColumn:JOB_MAIN_JOB_ID/JOB_MAIN_JOB_ID COL14398
    exportColumn:SALARY/SALARY COL14410
    exportClassificationEntry for:KAFA_COLLECTION2 CLE_12
    exportContext:CTXT00
    exportTypeSet:TSET
    Exporting datatypes
    exportScalarDatatype:NUMBER DTYP7836
    exportScalarDatatype:VARCHAR2 DTYP7839
    exportClassification:KAFA_COLLECTION2 CLAS1
    exportClassificationType:Warehouse Builder Business Area CLT13
    exportClassification:Description CLAS4
    exportClassificationType:Dimensional Attribute Descriptor CLT14
    Exporting project KAFA_PROJECT2 complete.
    **! Target bridge jvm parameters = "..\..\..\jdk\jre\bin\javaw" -mx50m -DORCLCWM_META_MODEL_FILE=..\..\bridges\admin\orcl_cwm.xml -classpath .;..\..\bridges\lib\bridge_cwmlite10.jar;..\..\bridges\lib\bridge_parser10.jar;..\..\bridges\lib\vek10.jar;..\..\..\lib\xmlparserv2.jar;..\..\..\jdbc\lib\ojdbc14.jar;..\..\bridges\lib\util10.jar;..\..\lib\int\util.jar;..\..\lib\int\rts.jar;..\..\..\jlib\rts2.jar;..\..\bridges\lib\bridge_cwmlite10.jar;..\..\bridges\lib\bridge_parser10.jar;..\..\bridges\lib\vek10.jar;..\..\..\lib\xmlparserv2.jar;..\..\..\jdbc\lib\ojdbc14.jar;..\..\bridges\lib\util10.jar;..\..\lib\int\util.jar;..\..\lib\int\rts.jar;..\..\..\jlib\rts2.jar;"..\..\..\jdk\jre\lib\rt.jar;..\..\..\jdk\jre\lib\charsets.jar";"..\..\bridges\admin;..\..\bridges\lib\bridge_wrapper10.jar;..\..\bridges\lib\util10.jar;..\..\lib\int\reposimpl.jar;..\..\lib\int\repossdk.jar;..\..\lib\int\rts.jar;..\..\..\jlib\rts2.jar;..\..\lib\int\util.jar" oracle.cwm.tools.bridge.BridgeWrapper -bridge_name oracle.cwm.bridge.cwmlite.ImportMain !**
    **! Target bridge parameters = -log_level 2 -log_file C:\TEMP\bridges\log\null-nullMy_Metadata_Transfer1107582690567.log -olapimp.deploytoaw N -olapimp.awname -olapimp.awobjprefix -olapimp.loadcubedata Y -olapimp.awaggregate 1 -olapimp.dimuniquekeys N -olapimp.awuser -olapimp.createviews N -olapimp.viewprefix -olapimp.viewaccesstype OLAP -olapimp.creatematviews Y -olapimp.viewscriptdir -olapimp.deploy Y -olapimp.username dw_targetschema -olapimp.password password -olapimp.host 200.20.20.11 -olapimp.port 1521 -olapimp.sid ora10g -olapimp.inputfilename C:\TEMP\bridges\null-nullMy_Metadata_Transfer1107582690567.XMI -olapimp.outputfilename C:\Documents and Settings\stabatabaee\Desktop\test.sql -paramfile C:\TEMP\bridges\1107582690832.par !**
    setting parameter: olapimp.deploytoaw = N
    setting parameter: olapimp.awname =
    setting parameter: olapimp.awobjprefix =
    setting parameter: olapimp.loadcubedata = Y
    setting parameter: olapimp.awaggregate = 1
    setting parameter: olapimp.dimuniquekeys = N
    setting parameter: olapimp.awuser =
    setting parameter: olapimp.createviews = N
    setting parameter: olapimp.viewprefix =
    setting parameter: olapimp.viewaccesstype = OLAP
    setting parameter: olapimp.creatematviews = Y
    setting parameter: olapimp.viewscriptdir =
    setting parameter: olapimp.deploy = Y
    setting parameter: olapimp.username = dw_targetschema
    setting parameter: olapimp.host = 200.20.20.11
    setting parameter: olapimp.port = 1521
    setting parameter: olapimp.sid = ora10g
    setting parameter: olapimp.inputfilename = C:\TEMP\bridges\null-nullMy_Metadata_Transfer1107582690567.XMI
    setting parameter: olapimp.outputfilename = C:\Documents and Settings\stabatabaee\Desktop\test.sql
    Loading Metadata
    Loading XMI input file
    connecting ...
    processing dim: DEP_DIM
    processing level: DEP_MAINin dimension DEP_DIM
    processing level attribute use: DEP_MAIN_DEP_ID in level DEP_MAIN for level attribute DEP_ID
    processing level attribute : DEP_ID in level DEP_MAIN
    processing level attribute use: DEP_MAIN_DEP_NAME in level DEP_MAIN for level attribute DEP_NAME
    processing level attribute : DEP_NAME in level DEP_MAIN
    declare
    id number;
    s_id number;
    l_id number;
    levelday_id number;
    levelmonth_id number;
    levelquarter_id number;
    levelyear_id number;
    f_id number;
    begin
    select descriptor_id into l_id from all_olap_descriptors where descriptor_value='Long Description';
    select descriptor_id into s_id from all_olap_descriptors where descriptor_value='Short Description';
    select descriptor_id into levelday_id from all_olap_descriptors where descriptor_value='Day';
    select descriptor_id into levelmonth_id from all_olap_descriptors where descriptor_value='Month';
    select descriptor_id into levelquarter_id from all_olap_descriptors where descriptor_value='Quarter';
    select descriptor_id into levelyear_id from all_olap_descriptors where descriptor_value='Year';
    cwm_olap_dimension.Set_Description (USER, 'DEP_DIM', '');
    cwm_olap_dimension.Set_Display_Name(USER, 'DEP_DIM', 'DEP_DIM');
    cwm_olap_dimension.Set_Plural_Name(USER, 'DEP_DIM', 'DEP_DIM');
    cwm_olap_level.Set_Description (USER, 'DEP_DIM', 'DEP_MAIN', '');
    cwm_olap_level.Set_Display_Name(USER, 'DEP_DIM', 'DEP_MAIN', 'DEP_MAIN');
    begin
    cwm_olap_level_attribute.set_name(USER, 'DEP_DIM', 'DEP_MAIN', 'DEP_MAIN_DEP_ID', 'DEP_ID');
    exception when OTHERS then null;
    end;
    begin
    cwm_olap_level_attribute.Set_Display_Name(USER, 'DEP_DIM', 'DEP_MAIN', 'DEP_ID', 'DEP_ID');
    exception when OTHERS then null;
    end;
    begin
    cwm_olap_level_attribute.Set_description(USER, 'DEP_DIM', 'DEP_MAIN', 'DEP_ID', '');
    exception when OTHERS then null;
    end;
    begin
    cwm_olap_level_attribute.set_name(USER, 'DEP_DIM', 'DEP_MAIN', 'DEP_MAIN_DEP_NAME', 'DEP_NAME');
    exception when OTHERS then null;
    end;
    begin
    cwm_olap_level_attribute.Set_Display_Name(USER, 'DEP_DIM', 'DEP_MAIN', 'DEP_NAME', 'DEP_NAME');
    exception when OTHERS then null;
    end;
    begin
    cwm_olap_level_attribute.Set_description(USER, 'DEP_DIM', 'DEP_MAIN', 'DEP_NAME', '');
    exception when OTHERS then null;
    end;
    begin
    cwm_olap_dim_attribute.drop_Dimension_Attribute(USER, 'DEP_DIM', 'Short_Description');
    exception when others then null;
    end;
    begin
    cwm_olap_dim_attribute.Create_Dimension_Attribute(USER, 'DEP_DIM', 'Short_Description', 'Short_Description', 'Short Description');
    select descriptor_id into id from all_olap_descriptors where descriptor_value='Short Description';
    cwm_classify.add_entity_descriptor_use(id, cwm_utility.DIMENSION_ATTRIBUTE_TYPE,USER, 'DEP_DIM', 'Short_Description');
    exception when others then null;
    end;
    begin
    cwm_olap_dim_attribute.drop_Dimension_Attribute(USER, 'DEP_DIM', 'Long_Description');
    exception when others then null;
    end;
    begin
    cwm_olap_dim_attribute.Create_Dimension_Attribute(USER, 'DEP_DIM', 'Long_Description', 'Long_Description', 'Full Description');
    select descriptor_id into id from all_olap_descriptors where descriptor_value='Long Description';
    cwm_classify.add_entity_descriptor_use(id, cwm_utility.DIMENSION_ATTRIBUTE_TYPE,USER, 'DEP_DIM', 'Long_Description');
    exception when others then null;
    end;
    begin
    cwm_olap_dim_attribute.Add_Level_Attribute(USER, 'DEP_DIM', 'Short_Description', 'DEP_MAIN', 'DEP_NAME');
    exception when cwm_exceptions.attribute_already_exists then null; when cwm_exceptions.attribute_not_found then null;
    end;
    begin
    cwm_olap_dim_attribute.Add_Level_Attribute(USER, 'DEP_DIM', 'Long_Description', 'DEP_MAIN', 'DEP_NAME');
    exception when cwm_exceptions.attribute_already_exists then null; when cwm_exceptions.attribute_not_found then null;
    end;
    commit;
    exception when others then dbms_output.enable(1000000); cwm_utility.dump_error(); raise program_error;
    end;
    processing dim: EMP_DIM
    processing level: EMP_MAINin dimension EMP_DIM
    processing level attribute use: EMP_MAIN_EMP_ID in level EMP_MAIN for level attribute EMP_ID
    processing level attribute : EMP_ID in level EMP_MAIN
    processing level attribute use: EMP_MAIN_EMP_NAME in level EMP_MAIN for level attribute EMP_NAME
    processing level attribute : EMP_NAME in level EMP_MAIN
    declare
    id number;
    s_id number;
    l_id number;
    levelday_id number;
    levelmonth_id number;
    levelquarter_id number;
    levelyear_id number;
    f_id number;
    begin
    select descriptor_id into l_id from all_olap_descriptors where descriptor_value='Long Description';
    select descriptor_id into s_id from all_olap_descriptors where descriptor_value='Short Description';
    select descriptor_id into levelday_id from all_olap_descriptors where descriptor_value='Day';
    select descriptor_id into levelmonth_id from all_olap_descriptors where descriptor_value='Month';
    select descriptor_id into levelquarter_id from all_olap_descriptors where descriptor_value='Quarter';
    select descriptor_id into levelyear_id from all_olap_descriptors where descriptor_value='Year';
    cwm_olap_dimension.Set_Description (USER, 'EMP_DIM', '');
    cwm_olap_dimension.Set_Display_Name(USER, 'EMP_DIM', 'EMP_DIM');
    cwm_olap_dimension.Set_Plural_Name(USER, 'EMP_DIM', 'EMP_DIM');
    cwm_olap_level.Set_Description (USER, 'EMP_DIM', 'EMP_MAIN', '');
    cwm_olap_level.Set_Display_Name(USER, 'EMP_DIM', 'EMP_MAIN', 'EMP_MAIN');
    begin
    cwm_olap_level_attribute.set_name(USER, 'EMP_DIM', 'EMP_MAIN', 'EMP_MAIN_EMP_ID', 'EMP_ID');
    exception when OTHERS then null;
    end;
    begin
    cwm_olap_level_attribute.Set_Display_Name(USER, 'EMP_DIM', 'EMP_MAIN', 'EMP_ID', 'EMP_ID');
    exception when OTHERS then null;
    end;
    begin
    cwm_olap_level_attribute.Set_description(USER, 'EMP_DIM', 'EMP_MAIN', 'EMP_ID', '');
    exception when OTHERS then null;
    end;
    begin
    cwm_olap_level_attribute.set_name(USER, 'EMP_DIM', 'EMP_MAIN', 'EMP_MAIN_EMP_NAME', 'EMP_NAME');
    exception when OTHERS then null;
    end;
    begin
    cwm_olap_level_attribute.Set_Display_Name(USER, 'EMP_DIM', 'EMP_MAIN', 'EMP_NAME', 'EMP_NAME');
    exception when OTHERS then null;
    end;
    begin
    cwm_olap_level_attribute.Set_description(USER, 'EMP_DIM', 'EMP_MAIN', 'EMP_NAME', '');
    exception when OTHERS then null;
    end;
    begin
    cwm_olap_dim_attribute.drop_Dimension_Attribute(USER, 'EMP_DIM', 'Short_Description');
    exception when others then null;
    end;
    begin
    cwm_olap_dim_attribute.Create_Dimension_Attribute(USER, 'EMP_DIM', 'Short_Description', 'Short_Description', 'Short Description');
    select descriptor_id into id from all_olap_descriptors where descriptor_value='Short Description';
    cwm_classify.add_entity_descriptor_use(id, cwm_utility.DIMENSION_ATTRIBUTE_TYPE,USER, 'EMP_DIM', 'Short_Description');
    exception when others then null;
    end;
    begin
    cwm_olap_dim_attribute.drop_Dimension_Attribute(USER, 'EMP_DIM', 'Long_Description');
    exception when others then null;
    end;
    begin
    cwm_olap_dim_attribute.Create_Dimension_Attribute(USER, 'EMP_DIM', 'Long_Description', 'Long_Description', 'Full Description');
    select descriptor_id into id from all_olap_descriptors where descriptor_value='Long Description';
    cwm_classify.add_entity_descriptor_use(id, cwm_utility.DIMENSION_ATTRIBUTE_TYPE,USER, 'EMP_DIM', 'Long_Description');
    exception when others then null;
    end;
    begin
    cwm_olap_dim_attribute.Add_Level_Attribute(USER, 'EMP_DIM', 'Short_Description', 'EMP_MAIN', 'EMP_NAME');
    exception when cwm_exceptions.attribute_already_exists then null; when cwm_exceptions.attribute_not_found then null;
    end;
    begin
    cwm_olap_dim_attribute.Add_Level_Attribute(USER, 'EMP_DIM', 'Long_Description', 'EMP_MAIN', 'EMP_NAME');
    exception when cwm_exceptions.attribute_already_exists then null; when cwm_exceptions.attribute_not_found then null;
    end;
    commit;
    exception when others then dbms_output.enable(1000000); cwm_utility.dump_error(); raise program_error;
    end;
    processing dim: JOB_DIM
    processing level: JOB_MAINin dimension JOB_DIM
    processing level attribute use: JOB_MAIN_JOB_ID in level JOB_MAIN for level attribute JOB_ID
    processing level attribute : JOB_ID in level JOB_MAIN
    processing level attribute use: JOB_MAIN_JOB_NAME in level JOB_MAIN for level attribute JOB_NAME
    processing level attribute : JOB_NAME in level JOB_MAIN
    declare
    id number;
    s_id number;
    l_id number;
    levelday_id number;
    levelmonth_id number;
    levelquarter_id number;
    levelyear_id number;
    f_id number;
    begin
    select descriptor_id into l_id from all_olap_descriptors where descriptor_value='Long Description';
    select descriptor_id into s_id from all_olap_descriptors where descriptor_value='Short Description';
    select descriptor_id into levelday_id from all_olap_descriptors where descriptor_value='Day';
    select descriptor_id into levelmonth_id from all_olap_descriptors where descriptor_value='Month';
    select descriptor_id into levelquarter_id from all_olap_descriptors where descriptor_value='Quarter';
    select descriptor_id into levelyear_id from all_olap_descriptors where descriptor_value='Year';
    cwm_olap_dimension.Set_Description (USER, 'JOB_DIM', '');
    cwm_olap_dimension.Set_Display_Name(USER, 'JOB_DIM', 'JOB_DIM');
    cwm_olap_dimension.Set_Plural_Name(USER, 'JOB_DIM', 'JOB_DIM');
    cwm_olap_level.Set_Description (USER, 'JOB_DIM', 'JOB_MAIN', '');
    cwm_olap_level.Set_Display_Name(USER, 'JOB_DIM', 'JOB_MAIN', 'JOB_MAIN');
    begin
    cwm_olap_level_attribute.set_name(USER, 'JOB_DIM', 'JOB_MAIN', 'JOB_MAIN_JOB_ID', 'JOB_ID');
    exception when OTHERS then null;
    end;
    begin
    cwm_olap_level_attribute.Set_Display_Name(USER, 'JOB_DIM', 'JOB_MAIN', 'JOB_ID', 'JOB_ID');
    exception when OTHERS then null;
    end;
    begin
    cwm_olap_level_attribute.Set_description(USER, 'JOB_DIM', 'JOB_MAIN', 'JOB_ID', '');
    exception when OTHERS then null;
    end;
    begin
    cwm_olap_level_attribute.set_name(USER, 'JOB_DIM', 'JOB_MAIN', 'JOB_MAIN_JOB_NAME', 'JOB_NAME');
    exception when OTHERS then null;
    end;
    begin
    cwm_olap_level_attribute.Set_Display_Name(USER, 'JOB_DIM', 'JOB_MAIN', 'JOB_NAME', 'JOB_NAME');
    exception when OTHERS then null;
    end;
    begin
    cwm_olap_level_attribute.Set_description(USER, 'JOB_DIM', 'JOB_MAIN', 'JOB_NAME', '');
    exception when OTHERS then null;
    end;
    begin
    cwm_olap_dim_attribute.drop_Dimension_Attribute(USER, 'JOB_DIM', 'Short_Description');
    exception when others then null;
    end;
    begin
    cwm_olap_dim_attribute.Create_Dimension_Attribute(USER, 'JOB_DIM', 'Short_Description', 'Short_Description', 'Short Description');
    select descriptor_id into id from all_olap_descriptors where descriptor_value='Short Description';
    cwm_classify.add_entity_descriptor_use(id, cwm_utility.DIMENSION_ATTRIBUTE_TYPE,USER, 'JOB_DIM', 'Short_Description');
    exception when others then null;
    end;
    begin
    cwm_olap_dim_attribute.drop_Dimension_Attribute(USER, 'JOB_DIM', 'Long_Description');
    exception when others then null;
    end;
    begin
    cwm_olap_dim_attribute.Create_Dimension_Attribute(USER, 'JOB_DIM', 'Long_Description', 'Long_Description', 'Full Description');
    select descriptor_id into id from all_olap_descriptors where descriptor_value='Long Description';
    cwm_classify.add_entity_descriptor_use(id, cwm_utility.DIMENSION_ATTRIBUTE_TYPE,USER, 'JOB_DIM', 'Long_Description');
    exception when others then null;
    end;
    begin
    cwm_olap_dim_attribute.Add_Level_Attribute(USER, 'JOB_DIM', 'Short_Description', 'JOB_MAIN', 'JOB_NAME');
    exception when cwm_exceptions.attribute_already_exists then null; when cwm_exceptions.attribute_not_found then null;
    end;
    begin
    cwm_olap_dim_attribute.Add_Level_Attribute(USER, 'JOB_DIM', 'Long_Description', 'JOB_MAIN', 'JOB_NAME');
    exception when cwm_exceptions.attribute_already_exists then null; when cwm_exceptions.attribute_not_found then null;
    end;
    commit;
    exception when others then dbms_output.enable(1000000); cwm_utility.dump_error(); raise program_error;
    end;
    processing cube: EMPLOYEMENT_CUBE
    declare
    id number;
    s_id number;
    l_id number;
    levelday_id number;
    levelmonth_id number;
    levelquarter_id number;
    levelyear_id number;
    f_id number;
    begin
    select descriptor_id into l_id from all_olap_descriptors where descriptor_value='Long Description';
    select descriptor_id into s_id from all_olap_descriptors where descriptor_value='Short Description';
    select descriptor_id into levelday_id from all_olap_descriptors where descriptor_value='Day';
    select descriptor_id into levelmonth_id from all_olap_descriptors where descriptor_value='Month';
    select descriptor_id into levelquarter_id from all_olap_descriptors where descriptor_value='Quarter';
    select descriptor_id into levelyear_id from all_olap_descriptors where descriptor_value='Year';
    begin
    cwm_olap_cube.drop_cube(USER, 'EMPLOYEMENT_CUBE');
    exception when cwm_exceptions.cube_not_found then null;
    end;
    cwm_olap_cube.create_cube(USER, 'EMPLOYEMENT_CUBE', 'EMPLOYEMENT_CUBE', '');
    id := cwm_olap_cube.add_dimension(USER, 'EMPLOYEMENT_CUBE', USER, 'JOB_DIM', 'JOB_DIM');
    id := cwm_olap_cube.add_dimension(USER, 'EMPLOYEMENT_CUBE', USER, 'DEP_DIM', 'DEP_DIM');
    id := cwm_olap_cube.add_dimension(USER, 'EMPLOYEMENT_CUBE', USER, 'EMP_DIM', 'EMP_DIM');
    cwm_olap_cube.map_cube(USER, 'EMPLOYEMENT_CUBE', USER, 'EMPLOYEMENT_CUBE', 'FK_EMPLOYEMENT_CUBE_14382', 'JOB_MAIN', USER, 'JOB_DIM', 'JOB_DIM', false);
    cwm_olap_cube.map_cube(USER, 'EMPLOYEMENT_CUBE', USER, 'EMPLOYEMENT_CUBE', 'FK_EMPLOYEMENT_CUBE_14362', 'DEP_MAIN', USER, 'DEP_DIM', 'DEP_DIM', false);
    cwm_olap_cube.map_cube(USER, 'EMPLOYEMENT_CUBE', USER, 'EMPLOYEMENT_CUBE', 'FK_EMPLOYEMENT_CUBE_14347', 'EMP_MAIN', USER, 'EMP_DIM', 'EMP_DIM', false);
    cwm_olap_measure.create_measure(USER, 'EMPLOYEMENT_CUBE', 'SALARY', 'SALARY', '');
    cwm_olap_measure.set_column_map(USER, 'EMPLOYEMENT_CUBE', 'SALARY', USER, 'EMPLOYEMENT_CUBE', 'SALARY');
    begin
    f_id := cwm_utility.create_function_usage('SUM');
    cwm_olap_measure.set_default_aggregation_method(USER, 'EMPLOYEMENT_CUBE', 'SALARY', f_id, USER, 'JOB_DIM', 'JOB_DIM');
    exception when others then null;
    end;
    begin
    f_id := cwm_utility.create_function_usage('SUM');
    cwm_olap_measure.set_default_aggregation_method(USER, 'EMPLOYEMENT_CUBE', 'SALARY', f_id, USER, 'DEP_DIM', 'DEP_DIM');
    exception when others then null;
    end;
    begin
    f_id := cwm_utility.create_function_usage('SUM');
    cwm_olap_measure.set_default_aggregation_method(USER, 'EMPLOYEMENT_CUBE', 'SALARY', f_id, USER, 'EMP_DIM', 'EMP_DIM');
    exception when others then null;
    end;
    commit;
    exception when others then dbms_output.enable(1000000); cwm_utility.dump_error(); raise program_error;
    end;
    processing classification type is := Warehouse Builder Business Area
    processing catalog name := KAFA_COLLECTION2 ,and description is := KAFA_COLLECTION2
    processing Cube
    processing catalog entity cube := EMPLOYEMENT_CUBE
    processing measure := SALARY , in a cube := EMPLOYEMENT_CUBE
    processing classification type is := Dimensional Attribute Descriptor
    declare
    id number;
    s_id number;
    l_id number;
    levelday_id number;
    levelmonth_id number;
    levelquarter_id number;
    levelyear_id number;
    f_id number;
    begin
    select descriptor_id into l_id from all_olap_descriptors where descriptor_value='Long Description';
    select descriptor_id into s_id from all_olap_descriptors where descriptor_value='Short Description';
    select descriptor_id into levelday_id from all_olap_descriptors where descriptor_value='Day';
    select descriptor_id into levelmonth_id from all_olap_descriptors where descriptor_value='Month';
    select descriptor_id into levelquarter_id from all_olap_descriptors where descriptor_value='Quarter';
    select descriptor_id into levelyear_id from all_olap_descriptors where descriptor_value='Year';
    begin
    id := cwm_classify.create_catalog('KAFA_COLLECTION2', 'KAFA_COLLECTION2');
    exception when cwm_exceptions.catalog_already_exists then
    SELECT catalog_id INTO id from all_olap_catalogs
    WHERE catalog_name = 'KAFA_COLLECTION2'
    AND parent_catalog_id is null;
    end;
    begin
    cwm_classify.add_catalog_entity(id, USER, 'EMPLOYEMENT_CUBE', 'SALARY');
    exception when OTHERS then null;
    end;
    commit;
    exception when others then dbms_output.enable(1000000); cwm_utility.dump_error(); raise program_error;
    end;
    declare
    s_dir varchar2(4000);
    begin
    dbms_odm.createdimlevtuple (USER, 'EMPLOYEMENT_CUBE');
    dbms_odm.createcubeleveltuple (USER, 'EMPLOYEMENT_CUBE');
    dbms_odm.createfactowb (1,USER, 'EMPLOYEMENT_CUBE');
    exception when others then raise program_error;
    end;
    declare
    s_dir varchar2(4000);
    begin
    dbms_odm.createdimowb (2,USER, 'DEP_DIM');
    dbms_odm.createdimowb (3,USER, 'EMP_DIM');
    dbms_odm.createdimowb (4,USER, 'JOB_DIM');
    exception when others then raise program_error;
    end;
    BRD-05030: Error occurred while executing the PL/SQL file, see log file for details.
    ORA-06501: PL/SQL: program error
    ORA-06512: at line 8
    ORA-29283: invalid file operation
    BRD-05030: Error occurred while executing the PL/SQL file, see log file for details.
    disconnecting ...
    closing output file
    closing log stream
    **! Transfer logging stopped at Sat Feb 05 09:21:41 IRST 2005 !**
    thanks,
    shima

    I have run into the same problem using oracle 8.1.6.1 with redhat 6.2..
    I have found out that only when I specify host ip in the mts_dispatchers the mts will work correctly..(specifying host domain name is no use)
    Here is a sample of the configuration, hope that helps..
    mts_dispatchers = "(address=(protocol=tcp)(host=192.168.0.1))(dispatchers=4)"

  • 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/

  • 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.

  • Asset tracking

    Hello,
    Is there a way to strip the paths of imported assets in a premiere pro project ?
    Identical to the asset tracking system in 3D studio max ?
    Thanks in advance

    Out of curiosity.
    My goal is to make the asset paths relative instead of absolute
    What does this mean in regard to Premiere?

  • Difference between  PA_TASK_PUB1 pacKage and Project Foundation API

    Whats the difference between PA_TASK_PUB1.update_tasK and the UPDATE_TASK in Project Foundation API?
    Im looKing for a concrete documentation how to update tasKs (uppdate schedule and actual dates) from PL/SQL API's.
    I already have PA_TASK_PUB1 put in place by a consultant worKing but i do not have an offiicial documentation.
    What i have is the documentation on the Project Foundation API, which is not the same as PA_TASK_PUB1.
    thanKs.

    Yeap. I checked on the Integration repository and indeed PA_TASK_PUB1 is there. But I only knew about PA_TASK_PUB1 because it was used by the Consultant in his codes. Its more of a reference.
    what I'm looking for is an official guide on how to manipulate Tasks / project from PL/SQL, and I thought the Projects API in Oracle documentation website which is available publicly is the official (Project Foundation API) one. And then when I saw another PL/SQL package (PA_TASK_PUB1) that was not in the Projects API, I got confused as there might be another documenatation that I miight be missing out.

  • Oracle Assets: Transferring Assets between Books

    With current 11i functionality there is no way to transfer assets between two corporate books. It would seem that the current workaround is to retire the assets in the "old" corporate book and then load them in the "new" corporate book.
    What is the best way of achieving this? What are the things to consider?
    Can anyone tell me.
    Roland

    Hi Miranga,
    Another note in the metalink:
    I am not sure whether its applicable for you or note:
    But please have a look:
    Subject: Uploading Assets from ADI Error YTD Depreciation Value must be less than or same as Reserve
    Doc ID: 154569.1 Type: PROBLEM
    Modified Date : 25-MAY-2009 Status: PUBLISHED
    fact: Oracle Assets
    fact: ADI - Applications Desktop Integrator
    symptom: Uploading assets using Applications Desktop Intergrator (ADI)
    symptom: The YTD Depreciation Value must be less than or same as Reserve
    symptom: Cost have a negative YTD Depreciation
    cause: Assets can be loaded with a negative cost and YTD amount through the
    Asset Workbench but not through ADI.
    fix:
    To upload negative assets from ADI, use one of the following workarounds:
    1. Upload the negative costs assets with the YTD Depreciation and Depreciation
    Reserve set to NULL (not zero, null).
    2. Update FA_Mass_Additions with the YTD Depreciation and Depreciation Reserve.
    Or
    1. Upload the negative costs assets with a the YTD Depreciation and
    Depreciation Reserve set to NULL (not zero, null).
    2. Post the assets.
    3. Prior to running depreciation for the book. adjust the YTD Depreciation
    and Depreciation Reserve in asset workbench.

  • 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

  • Oracle Usage Tracking dialog

    hi
    After installing JDeveloper 11.1.1.5.0 (and other 11g versions before that) and starting JDeveloper for the first time, an "Oracle Usage Tracking" dialog is shown with the message
    "In order to continuously improve our products, Oracle is interested in learning about product usage. To that end, automated reports can occasionally be sent to Oracle describing the product features in use. No personally identifiable information will be sent and the report will not affect performance. You can review Oracle's privacy policy on our website. "
    and a checkbox "Allow automated usage reporting to Oracle".
    see the screenshot at http://www.consideringred.com/files/oracle/img/2011/OracleUsageTracking111150.png
    - (q1) Where can details be found about this feature, like which information it sends exactly, or when?
    - (q2) Has Oracle published anything related to the results of this "Usage Tracking" feature?
    many thanks
    Jan Vervecken

    Hi Jan,
    I'm not aware of a public wiki page or anything like that which explains the data being gathered on this feature.
    What it does, is create an xml file after each close of the IDE. It records some of the API usage during a session (defined as start to close of the IDE).
    The file is saved to this location by default on a windows machine with an install with the "single user" option selected.
    C:\Documents and Settings\<username>\Application Data\JDeveloper\system11.1.1.5.37.60.13\o.ide.usages-tracking
    You can see what this file gathers if you like, by setting some bogus proxy info in the Tools --> Preference in JDev to stop JDev from being able to connect to the tracking server. Then just doing some normal work and stopping JDeveloper. The file will stay there until it can connect again.
    Of course this will only happen if you have opt-in to the usage-reporting in the first place.
    The data that is gathered is used internally by the product management team to see which features are used more often in relation to each other, etc. It is not made available publicly.
    Here is a report that I just did on my own machine. This is the result of opening an extension.xml file and then opening a .java file.
    <?xml version = '1.0' encoding = 'UTF-8'?>
    <usages xmlns="http://xmlns.oracle.com/jdeveloper/110000/usages-tracking-data">
    <hash n="system-info">
    <value n="build-label" v="JDEVADF_11.1.1.5.0_GENERIC_110409.0025.6013"/>
    <value n="dev-build" v="false"/>
    <value n="guid" v="07dd49ee-012e-1000-8001-0a9a27d99b84"/>
    <value n="jdk-version" v="1.6.0_24"/>
    <value n="operating-system" v="Windows XP"/>
    <value n="product-edition" v="oracle.studio, oracle.j2ee, oracle.jdeveloper"/>
    <value n="product-name" v="Oracle JDeveloper 11g Release 1"/>
    <value n="product-version" v="11.1.1.5.37.60.13"/>
    <value n="session-end-time" v="1305043200531"/>
    <value n="session-id" v="1305043105550"/>
    <value n="session-start-time" v="1305043105550"/>
    <value n="user-role" v="<none>"/>
    </hash>
    <hash n="usage-data">
    <list n="activities">
    <hash>
    <value n="extension-product-id" v="oracle.jdevimpl.extensiondt.editor.ExtensionManifestEditor"/>
    <value n="property-id" v="oracle.jdeveloper.extensiondt.model.ExtensionManifestNode"/>
    <value n="time-stamp" v="1305043182769"/>
    <value n="usage-type" v="OPEN_EDITOR"/>
    </hash>
    <hash>
    <value n="extension-product-id" v="oracle.jdevimpl.extensiondt.editor.ExtensionManifestEditor"/>
    <value n="property-id" v="oracle.jdeveloper.extensiondt.model.ExtensionManifestNode"/>
    <value n="time-stamp" v="1305043182832"/>
    <value n="usage-type" v="ACTIVATE_EDITOR"/>
    </hash>
    <hash>
    <value n="extension-product-id" v="oracle.ide.ceditor.CodeEditor"/>
    <value n="property-id" v="oracle.jdeveloper.model.JavaSourceNode"/>
    <value n="time-stamp" v="1305043190096"/>
    <value n="usage-type" v="OPEN_EDITOR"/>
    </hash>
    <hash>
    <value n="extension-product-id" v="oracle.ide.ceditor.CodeEditor"/>
    <value n="property-id" v="oracle.jdeveloper.model.JavaSourceNode"/>
    <value n="time-stamp" v="1305043190767"/>
    <value n="usage-type" v="ACTIVATE_EDITOR"/>
    </hash>
    </list>
    </hash>
    </usages>
    Hope that helps explain things a bit. Let me know if you have any other Q's.
    --jb                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Transfer of existing assets to new asset class

    Hello Experts,
    We are working in a one-year old implementation of SAP ECC 6.0. A need has raised which is forcing us to transfer an asset with some Depreciation areas (we are currently working with ten areas between Real Depreciation Areas and Derived Depreciation Areas) to a new asset belonging to a new asset class with fewer areas.
    We created the new Asset Class and tested in the quality environment using transaction ABUMN. An example was transferring an asset with two months of depreciation already posted and transferring this one to the new asset at the beginning of the next month.
    The main issue is that we desire that the original asset keeps posting depreciation for the areas that are not transferred. Unfortunately, in our tests in the quality environment we have not accomplished this, what the system does is transfer the values to the new asset and then when you run transaction AFAB the new asset does post depreciation in the fewer areas that the Asset Class it is assigned to has but the original asset does not post any depreciation in any area.
    We tried maintaining the Transaction Types for Transfers that were used by the system by deselecting the 'Deactivate fixed asset' but it did not work and then we tried creating our own Transaction Types but this also was of no use.
    Hope you can shed some light into the issue!

    Dear Sankar,
    Thanks for such a quick reply. I have already considered that (SAP forcing you to transfer the whole asset) as a possibility. Unfortunately, as I have already mentioned here at our implementation we need something like this to happen.
    Let me elaborate. For the fiscal Depreciation Areas we are required to keep the original information on the asset so that the depreciation that is calculated does not change but conversely for the other areas we desire to change the depreciation that is calculated and posted (for example, some assets will suffer a change in the useful life others might merge into one big asset, etc.) but what we definitely need is to keep the original information in the fiscal areas so we can keep reporting that and therefore can keep paying the correct amount to our local tax authorities.
    As I mentioned before I have already considered that as an option. So what we thought was duplicating the assets (through a mass charge of all our assets with the current values), then transferring the 'clones' to assets with fewer Depreciation Areas (we will eliminate the Fiscal Areas since this new assets will be only useful for the non-fiscal depreciation calculation which is the one that will change).
    To sum up: the clones will not generate depreciation because when transferred they will be worthless. The assets they were transferred to will generate the non fiscal depreciation.
    And finally on the original assets we will deactivate the non-fiscal Depreciation Areas so that these assets continue to calculate the fiscal depreciation.
    I would really appreciate your opinion on this strategy or if you think it is a bad or incorrect strategy I would appreciate even more an advise on this matter.
    PS. a little doubt now also strikes me: what is the "Deactivate Fixed Asset" in the Transaction Type definition for?

  • HT2375 Using logic 9: play back of all project files now has problems:  Track volumes are way off - if panning is set to center then you cant hear that track? Even if pan is adjusted tracks are low and or distorted I have looked at core/built in audio

    Been having project play back problems for about a month.  Sometimes when I open a project the volume of certain tracks is low and or distorted.  Oddly if a midi track is panned to the center (0) its volume is too low and if I pan right or left the track becomes louder.  Sometimes this doesn't help and if it is an audio track things become distorted. 
    Although things have been working good for about a year now I think it has something to do with the fact that I have to take the laptop to work and use headphones/built in audio for play back and then take it home and use different audio interface but I can't be sure.  The settings in preferences/audio/devises seem to be correct.
    I have not added any plug-ins recently.  I have not downloaded any new programs recently other than a NI tutorial video (shouldn't have any affect) but I am trying to use a new midi controller but again that shouldn't have any affect on play back of existing track?
    Any suggestions?

    Thank you for the replies.  Everyone was correct about the jack, interface, and phasing problems.  I have been unplugging my motu audio interface and then using headphones at work.  I have not changed any detailed audio output settings in logic.  When I read that the jack might be a problem I tried switching headphones.  This actually helped.  I am using dre-beats headphones and they seem to be having issues with the mac/jack-(the phasing/panning problems.  I can use these headphones with other devices but not the mac.  I have to use ipod ear buds and the phasing seems fixed.  Hopefully this information is helpful to someone else. 
    If anyone knows how to correct this issue please let me know its difficult to know what my final mixes are going to sound like and I have had to keep bouncing everything into i-tunes- sync to ipod and then listen in my car radio. 

  • 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.

Maybe you are looking for

  • Need a stop watch to use in Captivate 7.

    https://workspaces.acrobat.com/app.html#d=vtyrbwFWIniJ4b01F2g84A was suggested, but an error message appears when I try to import it into Captivate 7.  Says it's an invalid widget.

  • [OLAP DML] display on screen the output while the program is running

    Hi, I'm running a script in AWM that is quite long, and I've placed some few 'show' so that I know what the program is doing, but it won't show on the screen the outputs until the program ends. I guess it writes all the outputs in a kind of buffer an

  • Content server on a VPS - yes or no ?

    Hi, im looking at the following scenario for a DRM encryption and hosting service for a client of mine: short term: serving 150 books per year with 5000 copies each long term: serving 1000 books per year with 20,000 copies per book per year. i'm a fr

  • Folder structure in lightroom does not match structure at system level

    The folder structure in lightroom as shown in the library module seems to have got confused.  Instead of having the nested structure that appears on my hard drive I have a long list of folders.  The list of folders gives the full pathway.  When I hol

  • Error Message at customer checkout "Invoice Number Not Found"

    I'm set up through Authorize.net and PayPal, regardless of the payment options selected I receive the same error message. See link www.lonewolftrading.co The card is being charged, PayPal doesn't come up at all. Any help would be appreciated. Thanks.