llmclaughlin
Programmer
With the below code, I'm passing in the P_DBNumber to the SP. What I need to have happen is instead of having the @CB185p1 that it have the variable L_DBNumber, as it could be a different database number each time the sp is called. Is it possible to have a variable like this.
L_DBNumber VARCHAR2(10);
BEGIN
L_DBNumber := P_DBName;
Utility.Grab_Recpt_Number@CB185P1(P_Station,L_Receipt_Number);
Thanks
Louie
L_DBNumber VARCHAR2(10);
BEGIN
L_DBNumber := P_DBName;
Utility.Grab_Recpt_Number@CB185P1(P_Station,L_Receipt_Number);
Thanks
Louie