DBA Data[Home] [Help]

APPS.WIP_BIS_UTZ_ALERT dependencies on BIS_ACTUAL_PUB

Line 7: * The posting is done by calling BIS API (BIS_ACTUAL_PUB).

3:
4: /*
5: * PostActual
6: * Called by Alert_Check to post actuals to the BIS table.
7: * The posting is done by calling BIS API (BIS_ACTUAL_PUB).
8: */
9: PROCEDURE PostActual( target_level_id in number,
10: time_level_value in varchar2,
11: org_level_value in varchar2,

Line 16: actual_rec BIS_ACTUAL_PUB.Actual_Rec_Type;

12: dimension1_level_value in varchar2,
13: dimension2_level_value in varchar2,
14: actual in number,
15: period_set_name in varchar2) IS
16: actual_rec BIS_ACTUAL_PUB.Actual_Rec_Type;
17: x_return_status VARCHAR2(30);
18: x_msg_count NUMBER;
19: x_msg_data VARCHAR2(30);
20: x_error_Tbl BIS_UTILITIES_PUB.Error_Tbl_Type;

Line 33: BIS_ACTUAL_PUB.Post_Actual( p_api_version => 1.0,

29: actual_rec.Dim1_Level_Value_ID := dimension1_level_value;
30: actual_rec.Dim2_Level_Value_ID := dimension2_level_value;
31: actual_rec.Actual := actual;
32:
33: BIS_ACTUAL_PUB.Post_Actual( p_api_version => 1.0,
34: p_commit => FND_API.G_TRUE,
35: p_Actual_Rec => actual_rec,
36: x_return_status => x_return_status,
37: x_msg_count => x_msg_count,