Application Development 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: 

OLE documentation

Former Member
0 Kudos
244

Hi Forum,

I am programming an action in CRM to print a order sale in a MS word document. I need a library with the objects and properties can i use.

The object is ole2_object.

Anybody has any document or know about a web site with this info¿?

Thanks in advance and regards,

Mon

1 ACCEPTED SOLUTION
3 REPLIES 3

Former Member
0 Kudos
79

Hi guys,

I have checked these sites and finally i know that my sap has not the t-code SOLO (the ole browser)..

My problem is that i need to align the text of the column of a table:

*--Getting cell coordinates
  CALL METHOD OF gs_table 'Cell' = gs_cell
  EXPORTING
  #1 = line_table
  #2 = '2'. "second column
*--Getting the range handle to write the text
  GET PROPERTY OF gs_cell 'Range' = gs_range .
*--Filling the cell
  SET PROPERTY OF gs_range 'Text' = line_order-order.

I need a property to align the text 'line_order-order' in the center position..

Any solution¿?

Thanks in advance and regards,

Mon