DBA Data[Home] [Help]

APPS.PSB_WS_LINE_PERIOD_O_PVT dependencies on PSB_WS_ACCT1

Line 50: l_period_amount PSB_WS_ACCT1.g_prdamt_tbl_type;

46: --
47: l_api_name CONSTANT VARCHAR2(30) := 'Update_Row';
48: l_api_version CONSTANT NUMBER := 1.0;
49: --
50: l_period_amount PSB_WS_ACCT1.g_prdamt_tbl_type;
51: --
52: l_return_status VARCHAR2(1);
53: l_distribute_flag VARCHAR2(1);
54:

Line 79: FOR l_index in 1..PSB_WS_ACCT1.G_MAX_NUM_AMOUNTS LOOP

75: p_return_status := FND_API.G_RET_STS_SUCCESS ;
76: --
77:
78: -- Initialize the table
79: FOR l_index in 1..PSB_WS_ACCT1.G_MAX_NUM_AMOUNTS LOOP
80: l_period_amount(l_index) := NULL;
81: END LOOP;
82:
83:

Line 102: FOR l_index in 1..PSB_WS_ACCT1.G_MAX_NUM_AMOUNTS LOOP

98:
99:
100:
101: -- Added the following loop for Bug 3243919
102: FOR l_index in 1..PSB_WS_ACCT1.G_MAX_NUM_AMOUNTS LOOP
103: IF nvl(l_period_amount(l_index),0) <> 0 THEN
104: l_distribute_flag := FND_API.G_FALSE;
105: END IF;
106: END LOOP;