you can create schema and then created FF document from that..map your data to that.
how you want to send data?. I mean there are various ways..you can email/write to file in some remote directory etc...
If your requirement doesn't require dictionary then u should define the record identifier in the flat file. Create a schema with record identifier (u need to specify the position if that identifier as starts with or N th position). So every record parses based on this identifier. So this case won't require FF dictionary(which is useful for default record identifier).....
YES,you can send flatfiles without creating dictionary. But if dictionary is not created then you must use RECORD WITH IDENTIFIER. All your records will be parsed based on the identifier ,if identifier not found then remaining content will be grouped under UNDEF DATA.
Leave a Reply
Guest User
Not sure what solution is right for you?
Choose the right one for you.
Get the help of the experts and find a solution that best suits your needs.
Raj Kumar
hi,
Is it possible to send flatfiles without creating the dictionaries if yes how is it possible ?
thanks
Pia
you can create schema and then created FF document from that..map your data to that.
how you want to send data?. I mean there are various ways..you can email/write to file in some remote directory etc...
Sashi
Schema is must for FF and dictionary is optional. .. dictionary is metadata for schema...
After parsing you send to clients in multiple ways
George
If your requirement doesn't require dictionary then u should define the record identifier in the flat file. Create a schema with record identifier (u need to specify the position if that identifier as starts with or N th position). So every record parses based on this identifier. So this case won't require FF dictionary(which is useful for default record identifier).....
Tomas
YES,you can send flatfiles without creating dictionary. But if dictionary is not created then you must use RECORD WITH IDENTIFIER. All your records will be parsed based on the identifier ,if identifier not found then remaining content will be grouped under UNDEF DATA.