DBA Data[Home] [Help]

APPS.EAM_WORKORDERTRANSACTIONS_PUB dependencies on EAM_EXECUTION_JSP

Line 718: eam_execution_jsp.add_message(p_app_short_name => 'EAM', p_msg_name => 'EAM_TXN_LATER_THAN_TODAY');

714: if p_transaction_date > sysdate then
715:
716: FND_MESSAGE.set_name('EAM', 'EAM_TXN_LATER_THAN_TODAY');
717: FND_MSG_PUB.Add;
718: eam_execution_jsp.add_message(p_app_short_name => 'EAM', p_msg_name => 'EAM_TXN_LATER_THAN_TODAY');
719: x_return_status := FND_API.G_RET_STS_ERROR;
720: end if;
721: end if;
722: -- dbms_output.put_line ('past txn type ...');

Line 769: eam_execution_jsp.add_message(p_app_short_name => 'EAM', p_msg_name => 'EAM_INVALID_TXN_TYPE') ;

765: if (l_operation_completed='Y') and (p_transaction_type =1) then
766:
767: FND_MESSAGE.set_name('EAM', 'EAM_INVALID_TXN_TYPE');
768: FND_MSG_PUB.Add;
769: eam_execution_jsp.add_message(p_app_short_name => 'EAM', p_msg_name => 'EAM_INVALID_TXN_TYPE') ;
770: x_return_status := FND_API.G_RET_STS_ERROR;
771:
772: elsif ((l_operation_completed <> 'Y') and (p_transaction_type =2)) then
773:

Line 776: eam_execution_jsp.add_message(p_app_short_name => 'EAM', p_msg_name => 'EAM_INVALID_TXN_TYPE') ;

772: elsif ((l_operation_completed <> 'Y') and (p_transaction_type =2)) then
773:
774: FND_MESSAGE.set_name('EAM', 'EAM_INVALID_TXN_TYPE');
775: FND_MSG_PUB.Add;
776: eam_execution_jsp.add_message(p_app_short_name => 'EAM', p_msg_name => 'EAM_INVALID_TXN_TYPE') ;
777: x_return_status := FND_API.G_RET_STS_ERROR;
778:
779: end if;
780:

Line 818: eam_execution_jsp.add_message(p_app_short_name => 'EAM', p_msg_name => 'EAM_INCORRECT_DURATION') ;

814: -- - to_date(to_char(l_actual_start_date, 'DD-MON-YY HH24:MI:SS'),'DD-MON-YY HH24:MI:SS')), 3);
815: if (p_actual_duration is not null) and (p_actual_duration <> l_actual_duration ) then
816: FND_MESSAGE.set_name('EAM', 'EAM_INCORRECT_DURATION');
817: FND_MSG_PUB.Add;
818: eam_execution_jsp.add_message(p_app_short_name => 'EAM', p_msg_name => 'EAM_INCORRECT_DURATION') ;
819: x_return_status := FND_API.G_RET_STS_ERROR;
820:
821: end if;
822: elsif ((l_actual_duration is not null) and (l_actual_start_date is not null)) then

Line 836: eam_execution_jsp.add_message(p_app_short_name => 'EAM', p_msg_name => 'EAM_NEGATIVE_DURATION') ;

832: if (l_actual_duration is not null) then
833: if l_actual_duration < 0 then
834: FND_MESSAGE.set_name('EAM', 'EAM_NEGATIVE_DURATION');
835: FND_MSG_PUB.Add;
836: eam_execution_jsp.add_message(p_app_short_name => 'EAM', p_msg_name => 'EAM_NEGATIVE_DURATION') ;
837: x_return_status := FND_API.G_RET_STS_ERROR;
838:
839: end if;
840: end if;

Line 855: eam_execution_jsp.add_message(p_app_short_name => 'EAM', p_msg_name => 'EAM_END_LATER_THAN_TODAY ') ;

851:
852: if l_actual_end_date > sysdate then
853: FND_MESSAGE.set_name('EAM', 'EAM_END_LATER_THAN_TODAY');
854: FND_MSG_PUB.Add;
855: eam_execution_jsp.add_message(p_app_short_name => 'EAM', p_msg_name => 'EAM_END_LATER_THAN_TODAY ') ;
856: x_return_status := FND_API.G_RET_STS_ERROR;
857: end if;
858:
859: if (l_actual_start_date < l_open_acct_per_date) then

Line 862: eam_execution_jsp.add_message(p_app_short_name => 'EAM', p_msg_name => 'EAM_MIN_OP_ACTUAL_START_DATE') ;

858:
859: if (l_actual_start_date < l_open_acct_per_date) then
860: FND_MESSAGE.set_name('EAM', 'EAM_MIN_OP_ACTUAL_START_DATE');
861: FND_MSG_PUB.Add;
862: eam_execution_jsp.add_message(p_app_short_name => 'EAM', p_msg_name => 'EAM_MIN_OP_ACTUAL_START_DATE') ;
863: x_return_status := FND_API.G_RET_STS_ERROR;
864:
865: end if;
866:

Line 891: eam_execution_jsp.add_message(p_app_short_name => 'EAM', p_msg_name => 'EAM_INCORRECT_SHUT_DUR') ;

887: -- - to_date(to_char(l_actual_start_date, 'DD-MON-YY HH24:MI:SS'),'DD-MON-YY HH24:MI:SS')), 3);
888: if (p_shutdown_duration is not null) and (p_shutdown_duration <> l_shutdown_duration ) then
889: FND_MESSAGE.set_name('EAM', 'EAM_INCORRECT_SHUT_DUR');
890: FND_MSG_PUB.Add;
891: eam_execution_jsp.add_message(p_app_short_name => 'EAM', p_msg_name => 'EAM_INCORRECT_SHUT_DUR') ;
892: x_return_status := FND_API.G_RET_STS_ERROR;
893:
894: end if;
895: elsif ((l_shutdown_duration is not null) and (l_shutdown_start_date is not null)) then

Line 910: eam_execution_jsp.add_message(p_app_short_name => 'EAM', p_msg_name => 'EAM_SHUTDOWN_DUR_NEGATIVE') ;

906: if (l_shutdown_duration is not null) then
907: if l_shutdown_duration < 0 then
908: FND_MESSAGE.set_name('EAM', 'EAM_SHUTDOWN_DUR_NEGATIVE');
909: FND_MSG_PUB.Add;
910: eam_execution_jsp.add_message(p_app_short_name => 'EAM', p_msg_name => 'EAM_SHUTDOWN_DUR_NEGATIVE') ;
911: x_return_status := FND_API.G_RET_STS_ERROR;
912:
913: end if;
914: end if;

Line 921: eam_execution_jsp.add_message(p_app_short_name => 'EAM', p_msg_name => 'EAM_SHUT_GREATER_SYSDATE ') ;

917:
918: if l_shutdown_end_date > sysdate then
919: FND_MESSAGE.set_name('EAM', 'EAM_SHUT_GREATER_SYSDATE');
920: FND_MSG_PUB.Add;
921: eam_execution_jsp.add_message(p_app_short_name => 'EAM', p_msg_name => 'EAM_SHUT_GREATER_SYSDATE ') ;
922: x_return_status := FND_API.G_RET_STS_ERROR;
923: end if;
924:
925:

Line 938: eam_execution_jsp.add_message(p_app_short_name => 'EAM', p_msg_name => 'EAM_SHUT_END_BEFORE_START ') ;

934: if ((l_shutdown_start_date is not null) and (l_shutdown_end_date is not null)
935: and (l_shutdown_end_date < l_shutdown_start_date)) then
936: FND_MESSAGE.set_name('EAM', 'EAM_SHUT_END_BEFORE_START');
937: FND_MSG_PUB.Add;
938: eam_execution_jsp.add_message(p_app_short_name => 'EAM', p_msg_name => 'EAM_SHUT_END_BEFORE_START ') ;
939:
940:
941: x_return_status := FND_API.G_RET_STS_ERROR;
942: