DBA Data[Home] [Help]

APPS.XLA_CMP_TAB_PKG dependencies on FND_MSG_PUB

Line 403: FND_MSG_PUB.Initialize;

399: ,p_level => C_LEVEL_PROCEDURE);
400: END IF;
401:
402: --Initialize the global message table
403: FND_MSG_PUB.Initialize;
404:
405: xla_tab_pub_pkg.run
406: (
407: p_api_version => p_api_version

Line 423: fnd_msg_pub.initialize;

419: THEN
420: --Push the error message again so that it does not get lost
421: IF l_msg_data IS NOT NULL
422: THEN
423: fnd_msg_pub.initialize;
424:
425: fnd_message.set_encoded
426: (
427: encoded_message => l_msg_data

Line 431: fnd_msg_pub.add;

427: encoded_message => l_msg_data
428: );
429:
430: --Add it to the message table
431: fnd_msg_pub.add;
432:
433: --Reset single message variables
434: l_msg_count := NULL;
435: l_msg_data := NULL;

Line 467: fnd_msg_pub.add;

463: fnd_message.set_token( ''FUNCTION_NAME''
464: ,''$TAB_API_PACKAGE_NAME_3$.run'');
465:
466: --Add it to the message table
467: fnd_msg_pub.add;
468:
469: --If there is only one message retrieve it
470: fnd_msg_pub.Count_And_Get
471: (

Line 470: fnd_msg_pub.Count_And_Get

466: --Add it to the message table
467: fnd_msg_pub.add;
468:
469: --If there is only one message retrieve it
470: fnd_msg_pub.Count_And_Get
471: (
472: p_count => l_msg_count
473: ,p_data => l_msg_data
474: );

Line 493: fnd_msg_pub.Add_Exc_Msg

489: WHEN OTHERS THEN
490: --Remove all the elements from the PLSQL table
491: reset_online_interface;
492: --Add the standard unexpected error message
493: fnd_msg_pub.Add_Exc_Msg
494: ( p_pkg_name => C_PACKAGE_NAME
495: ,p_procedure_name => ''run''
496: );
497: --If there is only one message retrieve it

Line 498: fnd_msg_pub.Count_And_Get

494: ( p_pkg_name => C_PACKAGE_NAME
495: ,p_procedure_name => ''run''
496: );
497: --If there is only one message retrieve it
498: fnd_msg_pub.Count_And_Get
499: (
500: p_count => l_msg_count
501: ,p_data => l_msg_data
502: );

Line 544: FND_MSG_PUB.Initialize;

540: ,p_level => C_LEVEL_PROCEDURE);
541: END IF;
542:
543: --Initialize the global message table
544: FND_MSG_PUB.Initialize;
545:
546: --Initialize return status and message local variables
547: l_return_msg_name:= NULL;
548: l_return_status := NULL;

Line 587: fnd_msg_pub.add;

583: application => ''XLA''
584: ,name => l_return_msg_name
585: );
586: --Add it to the message table
587: fnd_msg_pub.add;
588: END IF;
589: --If there is only one message retrieve it
590: fnd_msg_pub.Count_And_Get
591: (

Line 590: fnd_msg_pub.Count_And_Get

586: --Add it to the message table
587: fnd_msg_pub.add;
588: END IF;
589: --If there is only one message retrieve it
590: fnd_msg_pub.Count_And_Get
591: (
592: p_count => l_msg_count
593: ,p_data => l_msg_data
594: );

Line 611: fnd_msg_pub.Add_Exc_Msg

607: x_return_status := C_RET_STS_UNEXP_ERROR;
608: END IF;
609: WHEN OTHERS THEN
610: --Add the standard unexpected error message
611: fnd_msg_pub.Add_Exc_Msg
612: ( p_pkg_name => C_PACKAGE_NAME
613: ,p_procedure_name => ''reset_online_interface''
614: );
615: --If there is only one message retrieve it

Line 616: fnd_msg_pub.Count_And_Get

612: ( p_pkg_name => C_PACKAGE_NAME
613: ,p_procedure_name => ''reset_online_interface''
614: );
615: --If there is only one message retrieve it
616: fnd_msg_pub.Count_And_Get
617: (
618: p_count => l_msg_count
619: ,p_data => l_msg_data
620: );

Line 762: FND_MSG_PUB.Initialize;

758: ,p_level => C_LEVEL_PROCEDURE);
759: END IF;
760:
761: --Initialize the global message table
762: FND_MSG_PUB.Initialize;
763:
764: --Initialize return status and message local variables
765: l_return_msg_name := NULL;
766: l_return_status := NULL;

Line 861: fnd_msg_pub.add;

857: token => ''SOURCE_DIST_ID_NUM5''
858: ,value => g_array_xla_tab$OBJECT_NAME_AFFIX$(i).source_distribution_id_num_5
859: );
860:
861: fnd_msg_pub.add;
862:
863: --Raise a local exception
864: RAISE le_fatal_error;
865: --Elsif the current row has already been processed

Line 922: fnd_msg_pub.add;

918: application => ''XLA''
919: ,name => l_return_msg_name
920: );
921: --Add it to the message table
922: fnd_msg_pub.add;
923: END IF;
924: --If there is only one message retrieve it
925: fnd_msg_pub.Count_And_Get
926: (

Line 925: fnd_msg_pub.Count_And_Get

921: --Add it to the message table
922: fnd_msg_pub.add;
923: END IF;
924: --If there is only one message retrieve it
925: fnd_msg_pub.Count_And_Get
926: (
927: p_count => l_msg_count
928: ,p_data => l_msg_data
929: );

Line 948: fnd_msg_pub.Add_Exc_Msg

944: WHEN OTHERS THEN
945: --Remove all the elements from the PLSQL table
946: g_array_xla_tab$OBJECT_NAME_AFFIX$.DELETE;
947: --Add the standard unexpected error message
948: fnd_msg_pub.Add_Exc_Msg
949: ( p_pkg_name => C_PACKAGE_NAME
950: ,p_procedure_name => ''write_online_tab$OBJECT_NAME_AFFIX$''
951: );
952: --If there is only one message retrieve it

Line 953: fnd_msg_pub.Count_And_Get

949: ( p_pkg_name => C_PACKAGE_NAME
950: ,p_procedure_name => ''write_online_tab$OBJECT_NAME_AFFIX$''
951: );
952: --If there is only one message retrieve it
953: fnd_msg_pub.Count_And_Get
954: (
955: p_count => l_msg_count
956: ,p_data => l_msg_data
957: );

Line 1043: FND_MSG_PUB.Initialize;

1039: ,p_level => C_LEVEL_PROCEDURE);
1040: END IF;
1041:
1042: --Initialize the global message table
1043: FND_MSG_PUB.Initialize;
1044:
1045: --Initialize return status and message local variables
1046: l_return_msg_name:= NULL;
1047: l_return_status := NULL;

Line 1171: fnd_msg_pub.add;

1167: (
1168: encoded_message => l_row_msg_data
1169: );
1170: --Add it to the message table
1171: fnd_msg_pub.add;
1172: --If there is only one message retrieve it
1173: fnd_msg_pub.count_and_get
1174: (
1175: p_count => l_msg_count

Line 1173: fnd_msg_pub.count_and_get

1169: );
1170: --Add it to the message table
1171: fnd_msg_pub.add;
1172: --If there is only one message retrieve it
1173: fnd_msg_pub.count_and_get
1174: (
1175: p_count => l_msg_count
1176: ,p_data => l_msg_data
1177: );

Line 1206: fnd_msg_pub.add;

1202: (
1203: encoded_message => l_table_of_row_errors(i)
1204: );
1205: --Add the stacked message to the table
1206: fnd_msg_pub.add;
1207: END LOOP;
1208: --Set the return values
1209: l_msg_count := l_row_msg_count;
1210: l_msg_data := NULL;

Line 1253: fnd_msg_pub.add;

1249: application => ''XLA''
1250: ,name => l_return_msg_name
1251: );
1252: --Add it to the message table
1253: fnd_msg_pub.add;
1254: END IF;
1255: --If there is only one message retrieve it
1256: fnd_msg_pub.Count_And_Get
1257: (

Line 1256: fnd_msg_pub.Count_And_Get

1252: --Add it to the message table
1253: fnd_msg_pub.add;
1254: END IF;
1255: --If there is only one message retrieve it
1256: fnd_msg_pub.Count_And_Get
1257: (
1258: p_count => l_msg_count
1259: ,p_data => l_msg_data
1260: );

Line 1279: fnd_msg_pub.Add_Exc_Msg

1275: WHEN OTHERS THEN
1276: --Remove all the elements from the PLSQL table
1277: g_array_xla_tab$OBJECT_NAME_AFFIX$.DELETE;
1278: --Add the standard unexpected error message
1279: fnd_msg_pub.Add_Exc_Msg
1280: ( p_pkg_name => C_PACKAGE_NAME
1281: ,p_procedure_name => ''read_online_tab$OBJECT_NAME_AFFIX$''
1282: );
1283: --If there is only one message retrieve it

Line 1284: fnd_msg_pub.Count_And_Get

1280: ( p_pkg_name => C_PACKAGE_NAME
1281: ,p_procedure_name => ''read_online_tab$OBJECT_NAME_AFFIX$''
1282: );
1283: --If there is only one message retrieve it
1284: fnd_msg_pub.Count_And_Get
1285: (
1286: p_count => l_msg_count
1287: ,p_data => l_msg_data
1288: );

Line 1493: fnd_msg_pub.Count_And_Get

1489: ,g_application_info.application_name
1490: )
1491: );
1492: --Report the errors
1493: fnd_msg_pub.Count_And_Get
1494: (
1495: p_count => l_msg_count
1496: ,p_data => l_msg_data
1497: );

Line 1524: ,fnd_msg_pub.get(p_encoded => 'F')

1520: LOOP
1521: fnd_file.put_line
1522: (
1523: fnd_file.log
1524: ,fnd_msg_pub.get(p_encoded => 'F')
1525: );
1526: END LOOP;
1527: END IF;
1528: p_retcode := 2;