DBA Data[Home] [Help]

APPS.EGO_REPORT_WF_UTIL dependencies on WF_ENGINE

Line 123: l_debug_flag := WF_ENGINE.GetItemAttrText

119:
120: BEGIN
121:
122: -- Get Debug Flag
123: l_debug_flag := WF_ENGINE.GetItemAttrText
124: ( p_item_type
125: , p_item_key
126: , '.DEBUG_FLAG'
127: );

Line 135: x_output_dir := WF_ENGINE.GetItemAttrText

131: END IF ;
132:
133:
134: -- Get Debug Output Directory
135: x_output_dir := WF_ENGINE.GetItemAttrText
136: ( p_item_type
137: , p_item_key
138: , '.DEBUG_OUTPUT_DIR'
139: );

Line 143: x_debug_filename := WF_ENGINE.GetItemAttrText

139: );
140:
141:
142: -- Get Debug File Name
143: x_debug_filename := WF_ENGINE.GetItemAttrText
144: ( p_item_type
145: , p_item_key
146: , '.DEBUG_FILE_NAME'
147: );

Line 882: -- WF_ENGINE.NameTabTyp Wf_Item_Attribute_Values.NAME%TYPE

878: l_api_name CONSTANT VARCHAR2(30) := 'SetAttributes';
879:
880: -- PL/SQL Table Type Column Datatype Definition
881: -- PL/SQL Table Type Column DataType Definition
882: -- WF_ENGINE.NameTabTyp Wf_Item_Attribute_Values.NAME%TYPE
883: -- WF_ENGINE.TextTabTyp Wf_Item_Attribute_Values.TEXT_VALUE%TYPE
884: -- WF_ENGINE.NumTabTyp Wf_Item_Attribute_Values.NUMBER_VALUE%TYPE
885: -- WF_ENGINE.DateTabTyp Wf_Item_Attribute_Values.DATE_VALUE%TYPE
886:

Line 883: -- WF_ENGINE.TextTabTyp Wf_Item_Attribute_Values.TEXT_VALUE%TYPE

879:
880: -- PL/SQL Table Type Column Datatype Definition
881: -- PL/SQL Table Type Column DataType Definition
882: -- WF_ENGINE.NameTabTyp Wf_Item_Attribute_Values.NAME%TYPE
883: -- WF_ENGINE.TextTabTyp Wf_Item_Attribute_Values.TEXT_VALUE%TYPE
884: -- WF_ENGINE.NumTabTyp Wf_Item_Attribute_Values.NUMBER_VALUE%TYPE
885: -- WF_ENGINE.DateTabTyp Wf_Item_Attribute_Values.DATE_VALUE%TYPE
886:
887: l_text_attr_name_tbl WF_ENGINE.NameTabTyp;

Line 884: -- WF_ENGINE.NumTabTyp Wf_Item_Attribute_Values.NUMBER_VALUE%TYPE

880: -- PL/SQL Table Type Column Datatype Definition
881: -- PL/SQL Table Type Column DataType Definition
882: -- WF_ENGINE.NameTabTyp Wf_Item_Attribute_Values.NAME%TYPE
883: -- WF_ENGINE.TextTabTyp Wf_Item_Attribute_Values.TEXT_VALUE%TYPE
884: -- WF_ENGINE.NumTabTyp Wf_Item_Attribute_Values.NUMBER_VALUE%TYPE
885: -- WF_ENGINE.DateTabTyp Wf_Item_Attribute_Values.DATE_VALUE%TYPE
886:
887: l_text_attr_name_tbl WF_ENGINE.NameTabTyp;
888: l_text_attr_value_tbl WF_ENGINE.TextTabTyp;

Line 885: -- WF_ENGINE.DateTabTyp Wf_Item_Attribute_Values.DATE_VALUE%TYPE

881: -- PL/SQL Table Type Column DataType Definition
882: -- WF_ENGINE.NameTabTyp Wf_Item_Attribute_Values.NAME%TYPE
883: -- WF_ENGINE.TextTabTyp Wf_Item_Attribute_Values.TEXT_VALUE%TYPE
884: -- WF_ENGINE.NumTabTyp Wf_Item_Attribute_Values.NUMBER_VALUE%TYPE
885: -- WF_ENGINE.DateTabTyp Wf_Item_Attribute_Values.DATE_VALUE%TYPE
886:
887: l_text_attr_name_tbl WF_ENGINE.NameTabTyp;
888: l_text_attr_value_tbl WF_ENGINE.TextTabTyp;
889:

Line 887: l_text_attr_name_tbl WF_ENGINE.NameTabTyp;

883: -- WF_ENGINE.TextTabTyp Wf_Item_Attribute_Values.TEXT_VALUE%TYPE
884: -- WF_ENGINE.NumTabTyp Wf_Item_Attribute_Values.NUMBER_VALUE%TYPE
885: -- WF_ENGINE.DateTabTyp Wf_Item_Attribute_Values.DATE_VALUE%TYPE
886:
887: l_text_attr_name_tbl WF_ENGINE.NameTabTyp;
888: l_text_attr_value_tbl WF_ENGINE.TextTabTyp;
889:
890: l_num_attr_name_tbl WF_ENGINE.NameTabTyp;
891: l_num_attr_value_tbl WF_ENGINE.NumTabTyp;

Line 888: l_text_attr_value_tbl WF_ENGINE.TextTabTyp;

884: -- WF_ENGINE.NumTabTyp Wf_Item_Attribute_Values.NUMBER_VALUE%TYPE
885: -- WF_ENGINE.DateTabTyp Wf_Item_Attribute_Values.DATE_VALUE%TYPE
886:
887: l_text_attr_name_tbl WF_ENGINE.NameTabTyp;
888: l_text_attr_value_tbl WF_ENGINE.TextTabTyp;
889:
890: l_num_attr_name_tbl WF_ENGINE.NameTabTyp;
891: l_num_attr_value_tbl WF_ENGINE.NumTabTyp;
892:

Line 890: l_num_attr_name_tbl WF_ENGINE.NameTabTyp;

886:
887: l_text_attr_name_tbl WF_ENGINE.NameTabTyp;
888: l_text_attr_value_tbl WF_ENGINE.TextTabTyp;
889:
890: l_num_attr_name_tbl WF_ENGINE.NameTabTyp;
891: l_num_attr_value_tbl WF_ENGINE.NumTabTyp;
892:
893: l_date_attr_name_tbl WF_ENGINE.NameTabTyp;
894: l_date_attr_value_tbl WF_ENGINE.DateTabTyp;

Line 891: l_num_attr_value_tbl WF_ENGINE.NumTabTyp;

887: l_text_attr_name_tbl WF_ENGINE.NameTabTyp;
888: l_text_attr_value_tbl WF_ENGINE.TextTabTyp;
889:
890: l_num_attr_name_tbl WF_ENGINE.NameTabTyp;
891: l_num_attr_value_tbl WF_ENGINE.NumTabTyp;
892:
893: l_date_attr_name_tbl WF_ENGINE.NameTabTyp;
894: l_date_attr_value_tbl WF_ENGINE.DateTabTyp;
895:

Line 893: l_date_attr_name_tbl WF_ENGINE.NameTabTyp;

889:
890: l_num_attr_name_tbl WF_ENGINE.NameTabTyp;
891: l_num_attr_value_tbl WF_ENGINE.NumTabTyp;
892:
893: l_date_attr_name_tbl WF_ENGINE.NameTabTyp;
894: l_date_attr_value_tbl WF_ENGINE.DateTabTyp;
895:
896: I PLS_INTEGER ;
897:

Line 894: l_date_attr_value_tbl WF_ENGINE.DateTabTyp;

890: l_num_attr_name_tbl WF_ENGINE.NameTabTyp;
891: l_num_attr_value_tbl WF_ENGINE.NumTabTyp;
892:
893: l_date_attr_name_tbl WF_ENGINE.NameTabTyp;
894: l_date_attr_value_tbl WF_ENGINE.DateTabTyp;
895:
896: I PLS_INTEGER ;
897:
898: l_wf_user_name VARCHAR2(320) ;

Line 1089: Write_Debug('Call WF_ENGINE.SetItemAttrTextArray . . .');

1085:
1086:
1087:
1088: IF g_debug_flag THEN
1089: Write_Debug('Call WF_ENGINE.SetItemAttrTextArray . . .');
1090: END IF ;
1091:
1092:
1093: -- Set Text Attributes

Line 1094: WF_ENGINE.SetItemAttrTextArray

1090: END IF ;
1091:
1092:
1093: -- Set Text Attributes
1094: WF_ENGINE.SetItemAttrTextArray
1095: ( itemtype => p_item_type
1096: , itemkey => p_item_key
1097: , aname => l_text_attr_name_tbl
1098: , avalue => l_text_attr_value_tbl

Line 1112: WF_ENGINE.SetItemAttrNumberArray

1108: l_num_attr_name_tbl(I) := 'ORGANIZATION_ID' ;
1109: l_num_attr_value_tbl(I) := p_report_org_id ;
1110:
1111: -- Set Number Attributes
1112: WF_ENGINE.SetItemAttrNumberArray
1113: ( itemtype => p_item_type
1114: , itemkey => p_item_key
1115: , aname => l_num_attr_name_tbl
1116: , avalue => l_num_attr_value_tbl

Line 1222: l_role_name := WF_ENGINE.GetItemAttrText( p_item_type

1218: -- Create adhoc role and add users to role
1219: IF ( l_role_users IS NOT NULL AND l_role_users.COUNT > 0 ) THEN
1220:
1221:
1222: l_role_name := WF_ENGINE.GetItemAttrText( p_item_type
1223: , p_item_key
1224: , 'ADHOC_PARTY_ROLE');
1225:
1226: l_role_display_name := l_role_name ;

Line 1462: WF_ENGINE.CreateProcess

1458: END IF ;
1459:
1460:
1461: -- Set Workflow Process Owner
1462: WF_ENGINE.CreateProcess
1463: ( itemtype => p_item_type
1464: , itemkey => x_item_key
1465: , process => p_process_name
1466: , user_key => l_wf_user_key

Line 1512: Write_Debug('Calling WF_ENGINE.StartProcess . . .') ;

1508: AND x_item_key IS NOT NULL
1509: THEN
1510:
1511: IF g_debug_flag THEN
1512: Write_Debug('Calling WF_ENGINE.StartProcess . . .') ;
1513: END IF ;
1514:
1515:
1516: -- Start process

Line 1517: WF_ENGINE.StartProcess

1513: END IF ;
1514:
1515:
1516: -- Start process
1517: WF_ENGINE.StartProcess
1518: ( itemtype => p_item_type
1519: , itemkey => x_item_key);
1520:
1521: END IF ;

Line 1646: l_adhoc_party_list := WF_ENGINE.GetItemAttrText( itemtype

1642: --
1643: if (funcmode = 'RUN') then
1644:
1645: -- Get Adhoc Party List
1646: l_adhoc_party_list := WF_ENGINE.GetItemAttrText( itemtype
1647: , itemkey
1648: , 'ADHOC_PARTY_LIST');
1649:
1650: IF l_adhoc_party_list IS NULL THEN