DBA Data[Home] [Help]

APPS.GMD_OPERATION_ACTIVITIES_PUB dependencies on GMD_DEBUG

Line 109: gmd_debug.put_line('In insert_operation_activity public.');

105: fnd_msg_pub.initialize;
106: END IF;
107:
108: IF (l_debug = 'Y') THEN
109: gmd_debug.put_line('In insert_operation_activity public.');
110: END IF;
111:
112: /* Initially let us assign the return status to success */
113: x_return_status := FND_API.g_ret_sts_success;

Line 162: gmd_debug.put_line('operation activity required');

158:
159: /* Activity must be passed, otherwise give error */
160: IF p_oprn_activity.activity IS NULL THEN
161: IF (l_debug = 'Y') THEN
162: gmd_debug.put_line('operation activity required');
163: END IF;
164:
165: FND_MESSAGE.SET_NAME ('GMI', 'GMI_MISSING');
166: FND_MESSAGE.SET_TOKEN ('MISSING', 'ACTIVITY');

Line 216: gmd_debug.put_line('before PVT insert_oprn_activity routine called');

212: CLOSE Cur_gen_oprnline_id;
213:
214: IF x_return_status = 'S' THEN
215: IF (l_debug = 'Y') THEN
216: gmd_debug.put_line('before PVT insert_oprn_activity routine called');
217: END IF;
218:
219: /* call insert operation activity routine using oprn_id */
220: GMD_OPERATION_ACTIVITIES_PVT.insert_operation_activity(

Line 337: gmd_debug.put_line('Start of update_operation_activity PUB');

333: RAISE invalid_version;
334: END IF;
335:
336: IF (l_debug = 'Y') THEN
337: gmd_debug.put_line('Start of update_operation_activity PUB');
338: END IF;
339:
340: /* Oprn_line_id must be passed, otherwise give error */
341: IF p_oprn_line_id IS NULL THEN

Line 343: gmd_debug.put_line('operation line id is required');

339:
340: /* Oprn_line_id must be passed, otherwise give error */
341: IF p_oprn_line_id IS NULL THEN
342: IF (l_debug = 'Y') THEN
343: gmd_debug.put_line('operation line id is required');
344: END IF;
345:
346: FND_MESSAGE.SET_NAME ('GMI', 'GMI_MISSING');
347: FND_MESSAGE.SET_TOKEN ('MISSING', 'OPRN_LINE_ID');

Line 357: gmd_debug.put_line('col_to_update required');

353: FOR i in 1 .. p_update_table.count LOOP
354: /* Col_to_update and value must be passed, otherwise give error */
355: IF p_update_table(i).p_col_to_update IS NULL THEN
356: IF (l_debug = 'Y') THEN
357: gmd_debug.put_line('col_to_update required');
358: END IF;
359:
360: FND_MESSAGE.SET_NAME ('GMI', 'GMI_MISSING');
361: FND_MESSAGE.SET_TOKEN ('MISSING', 'COL_TO_UPDATE');

Line 366: gmd_debug.put_line('value required');

362: FND_MSG_PUB.ADD;
363: RAISE upd_oprn_actv_err;
364: ELSIF p_update_table(i).p_value IS NULL THEN
365: IF (l_debug = 'Y') THEN
366: gmd_debug.put_line('value required');
367: END IF;
368:
369: FND_MESSAGE.SET_NAME ('GMI', 'GMI_MISSING');
370: FND_MESSAGE.SET_TOKEN ('MISSING', 'P_VALUE');

Line 535: gmd_debug.put_line('START of delete_operation_activity PUB');

531: RAISE invalid_version;
532: END IF;
533:
534: IF (l_debug = 'Y') THEN
535: gmd_debug.put_line('START of delete_operation_activity PUB');
536: END IF;
537:
538:
539: /* Operation Line ID must be passed, otherwise give error */

Line 542: gmd_debug.put_line('Operation Line id is required');

538:
539: /* Operation Line ID must be passed, otherwise give error */
540: IF p_oprn_line_id IS NULL THEN
541: IF (l_debug = 'Y') THEN
542: gmd_debug.put_line('Operation Line id is required');
543: END IF;
544:
545: FND_MESSAGE.SET_NAME ('GMI', 'GMI_MISSING');
546: FND_MESSAGE.SET_TOKEN ('MISSING', 'OPRN_LINE_ID');