DBA Data[Home] [Help]

APPS.WMS_LMS_UTILS dependencies on STANDARD

Line 201: /** This function is called from the Non Standardized Lines page in OA to Standardize

197: */
198: FUNCTION getratingfrompoints (p_points NUMBER)
199: RETURN VARCHAR2;
200:
201: /** This function is called from the Non Standardized Lines page in OA to Standardize
202: * the selected Non-Standard Lines
203: * @param P_COPY_ID Comma Separated String of els_trx_src_id's for all the selected Non-Standard Lines
204: * @param P_COPY_ANALYSIS Comma Separated String of analysis id's selected for all the selected Non-Standard Lines
205: * @param P_ORG_ID The organization Id selected by the user

Line 202: * the selected Non-Standard Lines

198: FUNCTION getratingfrompoints (p_points NUMBER)
199: RETURN VARCHAR2;
200:
201: /** This function is called from the Non Standardized Lines page in OA to Standardize
202: * the selected Non-Standard Lines
203: * @param P_COPY_ID Comma Separated String of els_trx_src_id's for all the selected Non-Standard Lines
204: * @param P_COPY_ANALYSIS Comma Separated String of analysis id's selected for all the selected Non-Standard Lines
205: * @param P_ORG_ID The organization Id selected by the user
206: * @param X_NUM_LINES_INSERTED_TASKS Number of lines that are inserted into the individual Tasks Table (Either for Individual or Grouped Tasks)

Line 203: * @param P_COPY_ID Comma Separated String of els_trx_src_id's for all the selected Non-Standard Lines

199: RETURN VARCHAR2;
200:
201: /** This function is called from the Non Standardized Lines page in OA to Standardize
202: * the selected Non-Standard Lines
203: * @param P_COPY_ID Comma Separated String of els_trx_src_id's for all the selected Non-Standard Lines
204: * @param P_COPY_ANALYSIS Comma Separated String of analysis id's selected for all the selected Non-Standard Lines
205: * @param P_ORG_ID The organization Id selected by the user
206: * @param X_NUM_LINES_INSERTED_TASKS Number of lines that are inserted into the individual Tasks Table (Either for Individual or Grouped Tasks)
207: * @param X_RETURN_STATUS Status message whether the standardizing is successful or Failure.

Line 204: * @param P_COPY_ANALYSIS Comma Separated String of analysis id's selected for all the selected Non-Standard Lines

200:
201: /** This function is called from the Non Standardized Lines page in OA to Standardize
202: * the selected Non-Standard Lines
203: * @param P_COPY_ID Comma Separated String of els_trx_src_id's for all the selected Non-Standard Lines
204: * @param P_COPY_ANALYSIS Comma Separated String of analysis id's selected for all the selected Non-Standard Lines
205: * @param P_ORG_ID The organization Id selected by the user
206: * @param X_NUM_LINES_INSERTED_TASKS Number of lines that are inserted into the individual Tasks Table (Either for Individual or Grouped Tasks)
207: * @param X_RETURN_STATUS Status message whether the standardizing is successful or Failure.
208: * @param X_MSG_NAME Name of the Message that has to be shown in case of Failure.

Line 207: * @param X_RETURN_STATUS Status message whether the standardizing is successful or Failure.

203: * @param P_COPY_ID Comma Separated String of els_trx_src_id's for all the selected Non-Standard Lines
204: * @param P_COPY_ANALYSIS Comma Separated String of analysis id's selected for all the selected Non-Standard Lines
205: * @param P_ORG_ID The organization Id selected by the user
206: * @param X_NUM_LINES_INSERTED_TASKS Number of lines that are inserted into the individual Tasks Table (Either for Individual or Grouped Tasks)
207: * @param X_RETURN_STATUS Status message whether the standardizing is successful or Failure.
208: * @param X_MSG_NAME Name of the Message that has to be shown in case of Failure.
209: */
210:
211:

Line 212: PROCEDURE STANDARDIZE_LINES(

208: * @param X_MSG_NAME Name of the Message that has to be shown in case of Failure.
209: */
210:
211:
212: PROCEDURE STANDARDIZE_LINES(
213: X_NUM_LINES_INSERTED_TASKS OUT NOCOPY NUMBER
214: , X_NUM_LINES_INSERTED_GROUP OUT NOCOPY NUMBER
215: , X_RETURN_STATUS OUT NOCOPY VARCHAR2
216: , X_MSG_NAME OUT NOCOPY VARCHAR2

Line 222: /** This procedure is launched from a concurrent request and it Standardizes all

218: , P_COPY_ANALYSIS IN VARCHAR2
219: , P_ORG_ID IN NUMBER
220: );
221:
222: /** This procedure is launched from a concurrent request and it Standardizes all
223: * non-standardized lines based on the value of value of the parameters passed
224: * for activity, activity detail, operation, from date and to date.
225: * @param errbuf This is the out message having the buffer of the return message
226: * @param retcode This variable is a out variable having the return code of the is program.

Line 223: * non-standardized lines based on the value of value of the parameters passed

219: , P_ORG_ID IN NUMBER
220: );
221:
222: /** This procedure is launched from a concurrent request and it Standardizes all
223: * non-standardized lines based on the value of value of the parameters passed
224: * for activity, activity detail, operation, from date and to date.
225: * @param errbuf This is the out message having the buffer of the return message
226: * @param retcode This variable is a out variable having the return code of the is program.
227: Whether this program is a success, warning or a failure

Line 232: * @param p_from_date What is the date after which all transactions need to be picked for standardization

228: * @param p_org_id The organization Id
229: * @param p_activity_id What is the activity ID (1-Inbound, 2- Manufacturing etc)
230: * @param p_activity_detail_Id What is the activity detail Id(1-Receipt, 2-Putaway etc)
231: * @param p_operation_id What is the operation (1-Load, 2-Drop etc..)
232: * @param p_from_date What is the date after which all transactions need to be picked for standardization
233: * @param p_to_date What is the date prior to which all transactions need to be picked for standardization
234: */
235: PROCEDURE STANDARDIZE_LINES_CP(
236: ERRBUF OUT NOCOPY VARCHAR2

Line 233: * @param p_to_date What is the date prior to which all transactions need to be picked for standardization

229: * @param p_activity_id What is the activity ID (1-Inbound, 2- Manufacturing etc)
230: * @param p_activity_detail_Id What is the activity detail Id(1-Receipt, 2-Putaway etc)
231: * @param p_operation_id What is the operation (1-Load, 2-Drop etc..)
232: * @param p_from_date What is the date after which all transactions need to be picked for standardization
233: * @param p_to_date What is the date prior to which all transactions need to be picked for standardization
234: */
235: PROCEDURE STANDARDIZE_LINES_CP(
236: ERRBUF OUT NOCOPY VARCHAR2
237: , RETCODE OUT NOCOPY NUMBER

Line 235: PROCEDURE STANDARDIZE_LINES_CP(

231: * @param p_operation_id What is the operation (1-Load, 2-Drop etc..)
232: * @param p_from_date What is the date after which all transactions need to be picked for standardization
233: * @param p_to_date What is the date prior to which all transactions need to be picked for standardization
234: */
235: PROCEDURE STANDARDIZE_LINES_CP(
236: ERRBUF OUT NOCOPY VARCHAR2
237: , RETCODE OUT NOCOPY NUMBER
238: , P_ORG_ID IN NUMBER
239: , P_ANALYSIS_TYPE IN NUMBER