Dear gurus,
I am currently working in a SAPScript to ADOBE Form Migration.
I do have a Form which has 3 columns on it - see picture below.

The goal is to get this same structure in the ADOBE Layout.
SELECT SINGLE * FROM stxh INTO ls_stxh WHERE tdobject = 'FORM'
AND tdname = in_form_name
AND tdid = 'TXT'.
CALL FUNCTION 'READ_TEXT'
EXPORTING
id = ls_stxh-tdid
language = ls_stxh-tdspras
name = ls_stxh-tdname
object = ls_stxh-tdobject
TABLES
lines = ct_lines.
So far, so good. I've bee able to print the layout with only ONE Column.
But the ideal scenario would be to be printed in 3 columns.
Is there configuration missing?. I think something might be done when retrieving the text....but, ¿what?. jaja.
Should I do some adjustment on the Layout? ( I guess not, because I'm binding the Text Element directly )...
It'd be just awesome if you might give me a clue on it!.
Kind Regards
Raúl