USP_GETSALESORDERBBPAYTRANSACTION_BYSALESORDERID
Parameters
Parameter | Parameter Type | Mode | Description |
---|---|---|---|
@SALESORDERID | uniqueidentifier | IN |
Definition
Copy
create procedure dbo.USP_GETSALESORDERBBPAYTRANSACTION_BYSALESORDERID
(
@SALESORDERID uniqueidentifier
)
as
begin
exec dbo.USP_DATALIST_SALESORDERBBPAYTRANSACTION @SALESORDERID;
end;