DBA Data[Home] [Help]

APPS.MTL_CCEOI_PROCESS_PVT dependencies on STANDARD

Line 6: --parameters to comply with GSCC File.Sql.39 standard. Bug:4410902

2: /* $Header: INVVCCPS.pls 120.2 2005/06/22 09:52:32 appldev ship $ */
3: --
4: -- Calculates adjustments for Step 4
5: --Added NOCOPY hint to x_return_status,x_msg_count,x_msg_data x_errorcode OUT
6: --parameters to comply with GSCC File.Sql.39 standard. Bug:4410902
7: PROCEDURE Calculate_Adjustment(
8: p_api_version IN NUMBER ,
9: p_init_msg_list IN VARCHAR2 DEFAULT FND_API.G_FALSE,
10: p_commit IN VARCHAR2 DEFAULT FND_API.G_FALSE,

Line 48: --parameter to comply with GSCC File.Sql.39 standard. Bug:4410902

44: ;
45: --
46: -- Insert the given record into MTL_CC_ENTRIES_INTERFACE
47: --Added NOCOPY hint to x_return_status OUT
48: --parameter to comply with GSCC File.Sql.39 standard. Bug:4410902
49: PROCEDURE Insert_CCIEntry(
50: p_interface_rec IN MTL_CCEOI_VAR_PVT.INV_CCEOI_TYPE ,
51: x_return_status OUT NOCOPY VARCHAR2 )
52: ;

Line 64: --parameters to comply with GSCC File.Sql.39 standard. Bug:4410902

60: ;
61: --
62: -- Set the export flag in the table MTL_CYCLE_COUNT_ENTRIES
63: --Added NOCOPY hint to x_return_status,x_msg_count,x_msg_data OUT
64: --parameters to comply with GSCC File.Sql.39 standard. Bug:4410902
65: PROCEDURE Set_CCExport(
66: p_api_version IN NUMBER ,
67: p_init_msg_list IN VARCHAR2 DEFAULT FND_API.G_FALSE,
68: p_commit IN VARCHAR2 DEFAULT FND_API.G_FALSE,

Line 79: --parameters to comply with GSCC File.Sql.39 standard. Bug:4410902

75: ;
76: --
77: -- Set the Flags in the interface table.
78: --Added NOCOPY hint to x_return_status,x_msg_count,x_msg_data OUT
79: --parameters to comply with GSCC File.Sql.39 standard. Bug:4410902
80: PROCEDURE Set_CCEOIFlags(
81: p_api_version IN NUMBER ,
82: p_init_msg_list IN VARCHAR2 DEFAULT FND_API.G_FALSE,
83: p_commit IN VARCHAR2 DEFAULT FND_API.G_FALSE,

Line 94: --parameters to comply with GSCC File.Sql.39 standard. Bug:4410902

90: ;
91: --
92: -- Validates the cycle count header
93: --Added NOCOPY hint to x_return_status,x_msg_count,x_msg_data ,x_errorcode OUT
94: --parameters to comply with GSCC File.Sql.39 standard. Bug:4410902
95: PROCEDURE Validate_CHeader(
96: p_api_version IN NUMBER ,
97: p_init_msg_list IN VARCHAR2 DEFAULT FND_API.G_FALSE,
98: p_commit IN VARCHAR2 DEFAULT FND_API.G_FALSE,

Line 110: --parameters to comply with GSCC File.Sql.39 standard. Bug:4410902

106: ;
107: --
108: -- Validate the count list sequence of the cycle count entry
109: --Added NOCOPY hint to x_return_status,x_msg_count,x_msg_data ,x_errorcode OUT
110: --parameters to comply with GSCC File.Sql.39 standard. Bug:4410902
111: PROCEDURE Validate_CountListSeq(
112: p_api_version IN NUMBER ,
113: p_init_msg_list IN VARCHAR2 DEFAULT FND_API.G_FALSE,
114: p_commit IN VARCHAR2 DEFAULT FND_API.G_FALSE,

Line 128: --parameters to comply with GSCC File.Sql.39 standard. Bug:4410902

124: ;
125: --
126: -- validate item and sku information
127: --Added NOCOPY hint to x_return_status,x_msg_count,x_msg_data ,x_errorcode OUT
128: --parameters to comply with GSCC File.Sql.39 standard. Bug:4410902
129: PROCEDURE Validate_ItemSKU(
130: p_api_version IN NUMBER ,
131: p_init_msg_list IN VARCHAR2 DEFAULT FND_API.G_FALSE,
132: p_commit IN VARCHAR2 DEFAULT FND_API.G_FALSE,

Line 149: --parameters to comply with GSCC File.Sql.39 standard. Bug:4410902

145: ;
146: --
147: -- Validate the UOM and quantity information
148: --Added NOCOPY hint to x_return_status,x_msg_count,x_msg_data ,x_errorcode OUT
149: --parameters to comply with GSCC File.Sql.39 standard. Bug:4410902
150: PROCEDURE Validate_UOMQuantity(
151: p_api_version IN NUMBER ,
152: p_init_msg_list IN VARCHAR2 DEFAULT FND_API.G_FALSE,
153: p_commit IN VARCHAR2 DEFAULT FND_API.G_FALSE,

Line 176: --parameters to comply with GSCC File.Sql.39 standard. Bug:4410902

172: ;
173: --
174: -- Validate count date and counter
175: --Added NOCOPY hint to x_return_status,x_msg_count,x_msg_data ,x_errorcode OUT
176: --parameters to comply with GSCC File.Sql.39 standard. Bug:4410902
177: PROCEDURE Validate_CDate_Counter(
178: p_api_version IN NUMBER ,
179: p_init_msg_list IN VARCHAR2 DEFAULT FND_API.G_FALSE,
180: p_commit IN VARCHAR2 DEFAULT FND_API.G_FALSE,

Line 193: --parameters to comply with GSCC File.Sql.39 standard. Bug:4410902

189: ;
190: --
191: -- Processed the interface record
192: --Added NOCOPY hint to x_return_status,x_msg_count,x_msg_data ,x_errorcode OUT
193: --parameters to comply with GSCC File.Sql.39 standard. Bug:4410902
194: PROCEDURE Process_Data(
195: p_api_version IN NUMBER ,
196: p_init_msg_list IN VARCHAR2 DEFAULT FND_API.G_FALSE,
197: p_commit IN VARCHAR2 DEFAULT FND_API.G_FALSE,

Line 213: --parameter to comply with GSCC File.Sql.39 standard. Bug:4410902

209: p_cycle_count_entry_id IN NUMBER );
210:
211: -- updates interface record information
212: --Added NOCOPY hint to x_return_status OUT
213: --parameter to comply with GSCC File.Sql.39 standard. Bug:4410902
214: PROCEDURE Update_CCIEntry(
215: p_interface_rec IN MTL_CCEOI_VAR_PVT.INV_CCEOI_TYPE ,
216: x_return_status OUT NOCOPY VARCHAR2 );
217: --