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: 

Encrypting file

Former Member
0 Kudos

Hi Experts,

How to generate the encryted file by using some key through ABAP. Please explain me. I have tried this FM FIEB_PASSWORD_ENCRYPT to encrypt, but FIEB_PASSWORD_DECRYPT is not working. Please help it out.

Thanks

1 ACCEPTED SOLUTION

Former Member
0 Kudos
6 REPLIES 6

Former Member
0 Kudos

Hi,

I am executing java program from abap by using the following. Java program executing well & gives output in DOS command prompt. Its not giving output on ABAP screen. How to bring the output of DOs comamnd to ABAP output screen? please help me.

*DATA: COMMAND TYPE STRING VALUE 'D:\Java\jdk1.6.0_20\bin\javac',

COMMAND1 TYPE STRING VALUE 'D:\Java\jdk1.6.0_20\bin\java',

DIR TYPE STRING VALUE 'D:\Java\jdk1.6.0_20\bin\',

PARAMETER TYPE STRING VALUE 'MyFirstProgram.java',

PARAMETER1 TYPE STRING VALUE 'MyFirstProgram'.

CALL METHOD CL_GUI_FRONTEND_SERVICES=>EXECUTE

EXPORTING

APPLICATION = Command

PARAMETER = PARAMETER

DEFAULT_DIRECTORY = DIR

OPERATION = 'OPEN'

MAXIMIZED = 'X'

MINIMIZED = '' "If you need the DOS window to be minimized

EXCEPTIONS

CNTL_ERROR = 1

ERROR_NO_GUI = 2

BAD_PARAMETER = 3

FILE_NOT_FOUND = 4

PATH_NOT_FOUND = 5

FILE_EXTENSION_UNKNOWN = 6

ERROR_EXECUTE_FAILED = 7

OTHERS = 8.*

Thanks

Former Member
0 Kudos

0 Kudos

Hi ,

Actually i tried to encrypt/decrypt by using algorithm, but my client side wanted to encrypt/decrypt by using some secret key. Do you have any idea?

Thanks

0 Kudos

This message was moderated.

0 Kudos

Hi,

check this [thread|;.

Cheers

0 Kudos

Solved