How can i use long text on my z-program

Question: Hi all,
I have one screen where i want to have long text on it. Any example will help me .

Thanks

Answer:
Don't use "/"...

But, seriously... I think you'll have to explain a bit more...


_________________
The Doc
Magna Grand Docot of the Tuly Idiot Order

2007 Basic Rules

Answer:
Hi,

Actaully i want to give the facility of adding text items on the ztransaction.
I will be similar to the feature on Purchase order or sales order.

Thanks

Answer:
Have a look at:

http://help.sap.com/saphelp_46c/helpdata/en/eb/549e36cf0ecb7de10000009b38f889/frameset.htm
_________________
ilya

More input data: http://abaplog.wordpress.com
Sapfans ABAP FAQ: /forums/viewtopic.php?t=94198
R's ABAP Knowledge Corner: http://www.Rard-harper.net/kb/kb.html
Function modules documentation: http://www.se37.com

Answer:
Take a look at following:

      CALL FUNCTION 'READ_TEXT'
           EXPORTING
                id                      = 'XXXX'
                language                = sy-langu
                name                    = l_name
                object                  = 'XXXX'
           TABLES
                lines                   = it_lines
           EXCEPTIONS
                id                      = 1
                language                = 2
                name                    = 3
                not_found               = 4
                object                  = 5
                reference_check         = 6
                wrong_access_to_archive = 7
                OTHERS                  = 8.


 CALL FUNCTION 'SAVE_TEXT'
       EXPORTING
            header          = ktab
            savemode_direct = 'X'
       TABLES
            lines           = it_lines
       EXCEPTIONS
            id              = 1
            language        = 2
            name            = 3
            object          = 4
            OTHERS          = 5.

and perhaps:

  CALL FUNCTION 'FORMAT_TEXTLINES'
       EXPORTING
            linewidth   = 80
       TABLES
            lines       = it_lines
       EXCEPTIONS
            bound_error = 1
            OTHERS      = 2.
_________________
The Doc
Magna Grand Docot of the Tuly Idiot Order

2007 Basic Rules

Answer:
TXW_TEXTNOTE_EDIT is a function module that uses the textedit control referred to above. More fun to build your own, though.
Copyright ?2007 - 2008 www.jt77.com