2009 May 14 12:47 PM
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..
2009 May 14 12:51 PM
Hello,
Check this progams they are using this FM
Search with key word QCE1_CONVERT
AAP00F09
LQC07F03
LQC07U02
LQCE1U02
LQCE1U03
LQCE1U07
2009 May 14 12:51 PM
Hello,
Check this progams they are using this FM
Search with key word QCE1_CONVERT
AAP00F09
LQC07F03
LQC07U02
LQCE1U02
LQCE1U03
LQCE1U07
2009 May 14 12:52 PM
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
2009 May 14 12:55 PM
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.
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |