Dear all,
i have a flat input like this
AAAABB111222333
where the "digit" part of the input (111222333) would be a substructure of 3 characters length but with a variable total lenght.
So above example we would have a total of 5 fields:
AAA
BB
111
222
333
But the input could easily also look like this
AAAABB111 (3 Fields AAAA BB 111)
or like this
AAAABB111222333444 (6 Fields AAAA BB 111 222 333 444)
-----
Having said so I would like to know if I can handle such an input with content conversion?
In a deluxe version I would like to have content conversion recognize all fields.
In a minimum solution I would like to have at least recognized 3 fields where the last field is of variable length
As we are designing the interface on the other side anew, I'm quite free on the record structure that content conversion would be filling: Could be something like this, but would not be limited to this:
<Recordset> <Field_A>AAA</Field_A> <Field_B>BB</Field_B> <Field_Sub>111</Field_Sub> <Field_Sub>222</Field_Sub> <Field_Sub>333</Field_Sub></Recordset>
Did anybody stumble upon such a problem? Any inputs would be really great.
<edit>
Almost forgot: I have read about file adapter content conversion parameters http://help.sap.com/saphelp_nw70/helpdata/en/2c/181077dd7d6b4ea6a8029b20bf7e55/frameset.htm and also looked at this (very good) blog http://wiki.sdn.sap.com/wiki/display/XI/How+To...Content+conversion+module+with+J2EE+JMS+adapter So I'm aware of content conversion basics but haven't found a solution to above problem within those resources.
</edit>
Have a nice one.
Cheers
Jens
Message was edited by: Jens Schwendemann (added info on what resources I already have read)