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: 

Calling DocuSign form Modulepool program

Former Member
0 Kudos

How can a module pool program trigger DocuSign to send out a PDF file generated from SAP for Signing.

1 REPLY 1

muttepawar-2009
Active Participant
0 Kudos

ABAP script call to AR SAP Service’s SignPDF() - sample

CALL FUNCTION ‘SignPDF’ DESTINATION ‘SAP_DIGITAL_SIGN’

EXPORTING

Username = ‘John Miller’

Password = ‘12345678’

Filename = ‘C:\Temp\Invoice.pdf’

Invisible = 0 “or 1

Page = 1

X = 94

Y = 126

Height = 159

Width = 159

Reason = ‘I approve’

Is_Display_Graph = 1 “or 0

Is_Display_Username = 1 “or 0

Is_Display_DateTime = 1 “or 0

IMPORTING

RESULT = result

EXCEPTIONS

nothing_specified = 1

no_record_found = 2

OTHERS = 3.