Project

General

Profile

9465_different_ref_dataset.p

Andrei Plugaru, 12/17/2024 10:04 AM

Download (339 Bytes)

 
1
def temp-table tt1 no-undo reference-only 
2
    field f1 as int.
3
define dataset ds1 reference-only  for tt1.
4

    
5
def temp-table tt2 no-undo reference-only 
6
    field f1 as int.
7
define dataset ds2 reference-only  for tt2.
8

    
9
procedure p0:
10
    define output parameter dataset for ds1 bind.
11
end.
12
   
13
run     p0(output dataset ds2 bind).