DBA Data[Home] [Help]

APPS.GMS_POR_API dependencies on FND_API

Line 878: -- fnd_api.G_RET_STS_SUCCESS

874: -- .
875: -- .
876: -- OUT : x_status OUT Varchar2
877: -- values are 'S', 'E', 'U'
878: -- fnd_api.G_RET_STS_SUCCESS
879: -- fnd_api.G_RET_STS_ERROR
880: -- fnd_api.G_RET_STS_UNEXP_ERROR
881: -- End of comments
882:

Line 879: -- fnd_api.G_RET_STS_ERROR

875: -- .
876: -- OUT : x_status OUT Varchar2
877: -- values are 'S', 'E', 'U'
878: -- fnd_api.G_RET_STS_SUCCESS
879: -- fnd_api.G_RET_STS_ERROR
880: -- fnd_api.G_RET_STS_UNEXP_ERROR
881: -- End of comments
882:
883: PROCEDURE delete_adl ( p_award_set_id IN NUMBER,

Line 880: -- fnd_api.G_RET_STS_UNEXP_ERROR

876: -- OUT : x_status OUT Varchar2
877: -- values are 'S', 'E', 'U'
878: -- fnd_api.G_RET_STS_SUCCESS
879: -- fnd_api.G_RET_STS_ERROR
880: -- fnd_api.G_RET_STS_UNEXP_ERROR
881: -- End of comments
882:
883: PROCEDURE delete_adl ( p_award_set_id IN NUMBER,
884: x_status OUT NOCOPY varchar2,

Line 893: l_status := FND_API.G_RET_STS_SUCCESS ;

889: -- ==============================================================
890: -- Do not proceed if grants is not enabled for an implementation
891: -- Org.
892: -- ==============================================================
893: l_status := FND_API.G_RET_STS_SUCCESS ;
894: l_err_msg:= NULL ;
895: x_status := l_status ;
896:
897: IF not gms_install.enabled then

Line 911: l_status := FND_API.G_RET_STS_ERROR ;

907: IF SQL%NOTFOUND then
908: fnd_message.set_name('GMS','GMS_INVALID_AWARD');
909:
910: l_err_msg := fnd_message.get;
911: l_status := FND_API.G_RET_STS_ERROR ;
912: END IF ;
913: END IF ;
914:
915: x_err_msg:= l_err_msg ;

Line 919: l_status := FND_API.G_RET_STS_UNEXP_ERROR ;

915: x_err_msg:= l_err_msg ;
916: x_status := l_status ;
917: EXCEPTION
918: When Others THEN
919: l_status := FND_API.G_RET_STS_UNEXP_ERROR ;
920: l_err_msg:= SQLERRM ;
921:
922: x_err_msg:= l_err_msg ;
923: x_status := l_status ;