Skip to Content
0
Former Member
Jul 02, 2009 at 12:07 PM

File Name and Target Directory name issue in FTP CC

28 Views

Hi All ,

I am using following code to assing file name and directory name in UDF. I don;t want these parameters to be part of my target structure. Since i have created these files names in UDF, what are the values do i need to mention in FTP CC's "File access Parameter" which are mandatory fiels in CC ?

DynamicConfiguration conf = (DynamicConfiguration) container.getTransformationParameters().get(StreamTransformationConstants.DYNAMIC_CONFIGURATION);

DynamicConfigurationKey key = DynamicConfigurationKey.create(u201Chttp://sap.com/xi/XI/System/Fileu201D,u201CFileNameu201D);

String myFileName =biz +".dat";

conf.put(key, myFileName);

//Similar code for direcotry

Thanks for your support.

MK