Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
Is it possible to use NO CONCATENATE and CONCATENATE FUNCTIONS on Same Load Statement at a Time.
Ex:
Tab:
Load
F1,
F2
From Tab;
Tab1:
Load
F1,
F2,
From Tab1;
No Concatenate
Concatenate(Tab1)
Load
F1,
F2
From Tab3;
can we do like above??
Thanks in advance.
regards
Prathap.
AFAIK, this isn't possible. What is the reason behind doing this?
HI,
You will have to use Noconcatenate in second load function else it will merge them.
like this.
Tab:
Load
F1,
F2
From Tab;
Tab1:
NoConcatenate Load
F1,
F2,
From Tab1;
Concatenate(Tab1)
Load
F1,
F2
From Tab3;
Regards,
Kaushik Solanki
Hi Sunny,
Actually i dont know,that is why i asked you guys.
Thanks For your reply..
regards
prathap