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

output files

Former Member
0 Likes
432

Hi,

How to move the output files into pdf format and transfer to the application server

are there any standard subroutines/fm

Thanks,

kalyani

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
414

Hi kalyani,

CG3Y To Save a file From Application server to Presentation server directly.

CG3Z To Save a file From Presentation server to Application server directly.

Reward if Helpful.

Thanks.

Hi,

How to move the output files into pdf format and transfer to the application server

are there any standard subroutines/fm

Thanks,

kalyani

2 REPLIES 2
Read only

Former Member
0 Likes
415

Hi kalyani,

CG3Y To Save a file From Application server to Presentation server directly.

CG3Z To Save a file From Presentation server to Application server directly.

Reward if Helpful.

Thanks.

Read only

sreeramkumar_madisetty
Active Contributor
0 Likes
414

Hi

Use the FM:

CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1' " IN UPDATE TASK "/ .

EXPORTING

document_data = l_doc_chng

put_in_outbox = k_x

TABLES

packing_list = l_objpack

object_header = l_objhead

contents_bin = l_objbin

contents_txt = l_objtxt

receivers = l_reclist

EXCEPTIONS

too_many_receivers = 1

document_not_sent = 2

operation_no_authorization = 4

OTHERS = 99.

Regards,

Sreeram