616: x_return_msg => x_return_msg,
617: x_error_tbl => x_error_tbl,
618: x_user_vendor_id => l_vendor_id);
619:
620: if(x_return_status = FND_API.G_RET_STS_SUCCESS) then
621: insert into pos_asn_load(group_id,file_name,creation_date,created_by,vendor_id)
622: values(x_group_id,p_file_name,sysdate,fnd_global.user_id,l_vendor_id);
623: end if;
624: -- x_return_status := 'S'; --furia
622: values(x_group_id,p_file_name,sysdate,fnd_global.user_id,l_vendor_id);
623: end if;
624: -- x_return_status := 'S'; --furia
625: exception when others then
626: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
627: x_return_msg := 'Unexpected error in ValidateAndSave_Records:'||sqlerrm;
628: END ValidateAndSave_Records;
629:
630: END Pos_ExcelAsn_GRP;