DBA Data[Home] [Help]

APPS.POS_WC_VIEW_CANCEL_PVT dependencies on FND_MESSAGE_CACHE

Line 949: fnd_message_cache.get_string('POS', 'POS_WC_STATUS_DRAFT');

945: l_header_transaction_type = 'DRAFT') THEN
946:
947: x_wc_status := 'DRAFT';
948: x_wc_display_status :=
949: fnd_message_cache.get_string('POS', 'POS_WC_STATUS_DRAFT');
950:
951: ELSIF(l_header_processing_status = 'PENDING' and
952: l_header_transaction_type = 'NEW') THEN
953:

Line 956: fnd_message_cache.get_string('POS', 'POS_WC_STATUS_PROCESSING');

952: l_header_transaction_type = 'NEW') THEN
953:
954: x_wc_status := 'PROCESSING';
955: x_wc_display_status :=
956: fnd_message_cache.get_string('POS', 'POS_WC_STATUS_PROCESSING');
957:
958: ELSIF(l_header_processing_status = 'RUNNING' and
959: l_header_transaction_type = 'NEW') THEN
960:

Line 963: fnd_message_cache.get_string('POS', 'POS_WC_STATUS_RUNNING');

959: l_header_transaction_type = 'NEW') THEN
960:
961: x_wc_status := 'RUNNING';
962: x_wc_display_status :=
963: fnd_message_cache.get_string('POS', 'POS_WC_STATUS_RUNNING');
964:
965: ELSIF(l_header_processing_status = 'SUCCESS' and
966: l_header_transaction_type = 'NEW') THEN
967:

Line 976: fnd_message_cache.get_string('POS', 'POS_WC_STATUS_ERROR');

972: l_header_transaction_type = 'NEW') THEN
973:
974: x_wc_status := 'ERROR';
975: x_wc_display_status :=
976: fnd_message_cache.get_string('POS', 'POS_WC_STATUS_ERROR');
977:
978: ELSIF(l_header_processing_status = 'CANCELLED') THEN
979:
980: x_wc_status := 'INTERFACE CANCELED';

Line 981: x_wc_display_status := fnd_message_cache.get_string('POS', 'POS_WC_STATUS_CANCELED');

977:
978: ELSIF(l_header_processing_status = 'CANCELLED') THEN
979:
980: x_wc_status := 'INTERFACE CANCELED';
981: x_wc_display_status := fnd_message_cache.get_string('POS', 'POS_WC_STATUS_CANCELED');
982:
983: -- Not handling ERROR and CANCEL yet
984:
985: END IF;

Line 1004: fnd_message_cache.get_string('POS', 'POS_WC_STATUS_PENDING_APPROVAL');

1000: IF(l_header_approval_status is null) THEN
1001:
1002: x_wc_status := 'PENDING APPROVAL';
1003: x_wc_display_status :=
1004: fnd_message_cache.get_string('POS', 'POS_WC_STATUS_PENDING_APPROVAL');
1005:
1006: ELSIF(l_header_approval_status = 'APPROVED') THEN
1007:
1008: --Get number of shipment lines

Line 1054: fnd_message_cache.get_string('POS', 'POS_WC_STATUS_CORRECTED');

1050:
1051: IF(l_wc_lines_corrected > 0) THEN
1052: x_wc_status := 'CORRECTED';
1053: x_wc_display_status :=
1054: fnd_message_cache.get_string('POS', 'POS_WC_STATUS_CORRECTED');
1055: ELSE
1056: x_wc_status := 'APPROVED';
1057: x_wc_display_status :=
1058: fnd_message_cache.get_string('POS', 'POS_WC_STATUS_APPROVED');

Line 1058: fnd_message_cache.get_string('POS', 'POS_WC_STATUS_APPROVED');

1054: fnd_message_cache.get_string('POS', 'POS_WC_STATUS_CORRECTED');
1055: ELSE
1056: x_wc_status := 'APPROVED';
1057: x_wc_display_status :=
1058: fnd_message_cache.get_string('POS', 'POS_WC_STATUS_APPROVED');
1059: END IF;
1060: /*
1061: -- moving this code block into the ELSE condition - bug 5452504
1062: -- l_wc_lines_processed is equal to the number of distributions,

Line 1067: fnd_message_cache.get_string('POS', 'POS_WC_STATUS_PROCESSED');

1063: -- l_wc_total_lines is same as number of shipments, and need not be equal when multiple distributions
1064: ELSIF(l_wc_total_lines = l_wc_lines_processed) THEN
1065: x_wc_status := 'PROCESSED';
1066: x_wc_display_status :=
1067: fnd_message_cache.get_string('POS', 'POS_WC_STATUS_PROCESSED');
1068: */
1069: ELSIF(l_wc_lines_errored > 0) THEN
1070: x_wc_status := 'PROCESSING_ERROR';
1071: x_wc_display_status :=

Line 1072: fnd_message_cache.get_string('POS', 'POS_WC_STATUS_PROCESS_ERROR');

1068: */
1069: ELSIF(l_wc_lines_errored > 0) THEN
1070: x_wc_status := 'PROCESSING_ERROR';
1071: x_wc_display_status :=
1072: fnd_message_cache.get_string('POS', 'POS_WC_STATUS_PROCESS_ERROR');
1073: ELSE
1074:
1075: IF(l_wc_lines_corrected > 0) THEN
1076: x_wc_status := 'CORRECTED';

Line 1078: fnd_message_cache.get_string('POS', 'POS_WC_STATUS_CORRECTED');

1074:
1075: IF(l_wc_lines_corrected > 0) THEN
1076: x_wc_status := 'CORRECTED';
1077: x_wc_display_status :=
1078: fnd_message_cache.get_string('POS', 'POS_WC_STATUS_CORRECTED');
1079: ELSE
1080: x_wc_status := 'PROCESSED';
1081: x_wc_display_status :=
1082: fnd_message_cache.get_string('POS', 'POS_WC_STATUS_PROCESSED');

Line 1082: fnd_message_cache.get_string('POS', 'POS_WC_STATUS_PROCESSED');

1078: fnd_message_cache.get_string('POS', 'POS_WC_STATUS_CORRECTED');
1079: ELSE
1080: x_wc_status := 'PROCESSED';
1081: x_wc_display_status :=
1082: fnd_message_cache.get_string('POS', 'POS_WC_STATUS_PROCESSED');
1083: END IF;
1084:
1085: END IF;
1086:

Line 1092: fnd_message_cache.get_string('POS', 'POS_WC_STATUS_REJECTED');

1088: ELSIF(l_header_approval_status = 'REJECTED') THEN
1089:
1090: x_wc_status := 'REJECTED';
1091: x_wc_display_status :=
1092: fnd_message_cache.get_string('POS', 'POS_WC_STATUS_REJECTED');
1093:
1094: END IF;
1095:
1096: ELSE

Line 1102: fnd_message_cache.get_string('POS', 'POS_WC_STATUS_CANCELED');

1098: IF(l_cancellation_status = 'CANCELED') THEN
1099:
1100: x_wc_status := 'SHIPMENT CANCELED';
1101: x_wc_display_status :=
1102: fnd_message_cache.get_string('POS', 'POS_WC_STATUS_CANCELED');
1103:
1104: ELSIF(l_cancellation_status = 'PENDING CANCEL') THEN
1105:
1106: x_wc_status := 'PENDING CANCEL';

Line 1108: fnd_message_cache.get_string('POS', 'POS_WC_STATUS_PENDING_CANCEL');

1104: ELSIF(l_cancellation_status = 'PENDING CANCEL') THEN
1105:
1106: x_wc_status := 'PENDING CANCEL';
1107: x_wc_display_status :=
1108: fnd_message_cache.get_string('POS', 'POS_WC_STATUS_PENDING_CANCEL');
1109:
1110: ELSIF(l_cancellation_status = 'PARTIALLY CANCELED') THEN
1111:
1112: x_wc_status := 'PARTIALLY CANCELED';

Line 1114: fnd_message_cache.get_string('POS', 'POS_WC_STATUS_PARTIALLY_CANCEL');

1110: ELSIF(l_cancellation_status = 'PARTIALLY CANCELED') THEN
1111:
1112: x_wc_status := 'PARTIALLY CANCELED';
1113: x_wc_display_status :=
1114: fnd_message_cache.get_string('POS', 'POS_WC_STATUS_PARTIALLY_CANCEL');
1115: END IF;
1116:
1117: END IF;
1118: