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

Check Sum program

Former Member
0 Likes
859

Hi Experts,

How can we run the checksum program ( .exe file) from the SAP.Our SAP sever is on unix and this check sum program run only on Dos.

Can anyone help to me.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
591

Hi,

Thanks for your replay,

MD5SUM is program or T.code?

How we can use this 'MD5SUM' , can you please explain clearly.

My requirement is , i have one ABAP program this program reads the data from application server and creates the file in the FTP server, now my requirement is i want to call one checksum program from SAP program to encrypt the file stored in FTP server.

Thanks in advance.

3 REPLIES 3
Read only

markus_doehr2
Active Contributor
0 Likes
591

you can use

md5sum

Markus

Read only

Former Member
0 Likes
592

Hi,

Thanks for your replay,

MD5SUM is program or T.code?

How we can use this 'MD5SUM' , can you please explain clearly.

My requirement is , i have one ABAP program this program reads the data from application server and creates the file in the FTP server, now my requirement is i want to call one checksum program from SAP program to encrypt the file stored in FTP server.

Thanks in advance.

Read only

0 Likes
591

MD5SUM is program or T.code?

It is a program available on various Unix flavors.

My requirement is , i have one ABAP program this program reads the data from application server and creates the file in the FTP server, now my requirement is i want to call one checksum program from SAP program to encrypt the file stored in FTP server.

encrypt? No.

MD5 is a hash algorithm, it´s used to create a unique hash for a file (see http://en.wikipedia.org/wiki/Md5sum). If the file is modified at some point it will create a different hash.

md5sum is not used to "encrypt" something.

Markus