cancel
Showing results for 
Search instead for 
Did you mean: 

Graphic error in Portal

Former Member
0 Kudos

Hi,

I created smartform and converted the smartform to OTF using COVERT_OTF FM.

CALL FUNCTION 'CONVERT_OTF'
    EXPORTING
      format                = 'PDF'
      max_linewidth         = 132
    IMPORTING
      bin_filesize          = v_len_in
    TABLES
      otf                   = i_otf[]
      lines                 = lines
    EXCEPTIONS
      err_max_linewidth     = 1
      err_format            = 2
      err_conv_not_possible = 3
      OTHERS                = 4.

Then i am downlading Smartform then the pdf is generated as expected, but when the portal guys try to convert the lines structure and display they are getting graphic display error in PDF...

Am i missing any other conversions?

Graphic is BMP with 256 bit and 24 bit i tried with both...

Giri

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

There are a number of notes related to graphics for this FM have you seen them?

Rob

Former Member
0 Kudos

Hi Rob.

I searched it, but not related to Portal issue... in SAP i cna see my Smartform without any issues....

While portal guys converting that Lines structure TLINE, they are unable to convert into PDF.

My question was, whether i need to convert the OTF format into any other bit size as for portal compatibility?

Giri