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: 

ARCHIV_GET_CONNECTIONS

Former Member
0 Kudos

Hi All,

I'm using FM ARCHIV_GET_CONNECTIONS to get attachments attached to MIRO document.

How can I send this attachement to an email address. Please help.

Thanks.

1 ACCEPTED SOLUTION

Former Member
0 Kudos

HI,

[Email with HTML body and Doc as attachment.|http://docs.google.com/Doc?id=dfv2hmgs_6hf8nm5f4&hl=en]

3 REPLIES 3

Former Member
0 Kudos

HI,

[Email with HTML body and Doc as attachment.|http://docs.google.com/Doc?id=dfv2hmgs_6hf8nm5f4&hl=en]

0 Kudos

Hi,

I use SCMS_AO_TABLE_GET to get the vendor invoice document into internal table. Can I use this internal table with 'SO_RAW_TO_RTF'

Please adivce.

0 Kudos

HI,

If internal table is of Char type then you can use it. If it is not then loop the internal table and move the data to OBJBIN..if you get any conversion problem then use FM HR_99S_COPY_STRUC1_STRUC2 for the conversion internal table work area data into OBJBIN work area.

   CALL FUNCTION 'HR_99S_COPY_STRUC1_STRUC2'
          EXPORTING
              P_STRUCT1       = ZSRTFDLOW
         IMPORTING
             P_STRUCT2       = SRTFDLOW.

Try this FM to convert whole table..

CALL FUNCTION 'HR_99S_COPY_TABLE1_TABLE2'
      EXPORTING
        TABLE1        = lohnsumme[]
      TABLES
        TABLE2        = daten1[].