multiple commands

Formally known as "Mercator Inside Integrator 6.7", DataStage TX enables high-volume, complex transactions without the need for additional coding.

Moderators: chulett, rschirm

Post Reply
pkalva
Participant
Posts: 4
Joined: Tue Aug 01, 2006 2:58 am

multiple commands

Post by pkalva »

Hi,

I want to put 2 files within the same output field like

=put("file","abc.txt", package(in1))
put("file","xyz.txt", package(in2))

is there any way can we do this?

help need
jvmerc
Participant
Posts: 94
Joined: Tue Dec 02, 2003 12:57 pm

Post by jvmerc »

try

=put("file","abc.txt", package(in1)) +
put("file","xyz.txt", package(in2))
Post Reply