Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Exception in QCE1_CONVERT

Former Member
0 Likes
714

I m calling QCE1_CONVERT but its giving exception...

t_source_tab = lt_wide_content ( size is Table[1x14000] )

t_target_tab = lt_doc_content

throwing exception :- convert_not_possible = 1

Please suggest..

Thanks a billion..

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
661

Hello,

Check this progams they are using this FM

Search with key word QCE1_CONVERT

AAP00F09

LQC07F03

LQC07U02

LQCE1U02

LQCE1U03

LQCE1U07

I m calling QCE1_CONVERT but its giving exception...

t_source_tab = lt_wide_content ( size is Table[1x14000] )

t_target_tab = lt_doc_content

throwing exception :- convert_not_possible = 1

Please suggest..

Thanks a billion..

3 REPLIES 3
Read only

Former Member
0 Likes
662

Hello,

Check this progams they are using this FM

Search with key word QCE1_CONVERT

AAP00F09

LQC07F03

LQC07U02

LQCE1U02

LQCE1U03

LQCE1U07

Read only

Former Member
0 Likes
661

HI,

Function Module: QCE1_CONVERT

Input the LT_LINE Table obtained from CONVERT_OTF FM.

This FM returns a table which contains the actual output in PDF

format(LT_OBJBIN).

CALL FUNCTION 'QCE1_CONVERT'
      TABLES
         t_source_tab         = lt_tline
         t_target_tab          = lt_objbin
      EXCEPTIONS
        convert_not_possible = 1
        OTHERS                    = 2.
     IF sy-subrc <> 0.
      * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
      *

WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.

ENDIF.

Thanks

Sudheer

Read only

Former Member
0 Likes
661

hi,

try like this

CALL FUNCTION 'QCE1_CONVERT'

TABLES

t_source_tab = i_tline

t_target_tab = so_ali[]

EXCEPTIONS

convert_not_possible = 1

OTHERS = 2.

Regards,

Venkat M.