DBA Data[Home] [Help]

APPS.POS_EXCELASN_GRP dependencies on FND_API

Line 560: if(x_return_status = FND_API.G_RET_STS_SUCCESS) then

556: x_return_msg => x_return_msg,
557: x_error_tbl => x_error_tbl,
558: x_user_vendor_id => l_vendor_id);
559:
560: if(x_return_status = FND_API.G_RET_STS_SUCCESS) then
561: insert into pos_asn_load(group_id,file_name,creation_date,created_by,vendor_id)
562: values(x_group_id,p_file_name,sysdate,fnd_global.user_id,l_vendor_id);
563: end if;
564: -- x_return_status := 'S'; --furia

Line 566: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

562: values(x_group_id,p_file_name,sysdate,fnd_global.user_id,l_vendor_id);
563: end if;
564: -- x_return_status := 'S'; --furia
565: exception when others then
566: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
567: x_return_msg := 'Unexpected error in ValidateAndSave_Records:'||sqlerrm;
568: END ValidateAndSave_Records;
569:
570: END Pos_ExcelAsn_GRP;