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: 

$(FT_DLL_PREFIX)sapcrypto$(FT_DLL)

Johan_sapbasis
Active Contributor
0 Kudos

Hi guys,

I have a really stupid question. Looking at this for windows:

$(DIR_EXECUTABLE)$(DIR_SEP)$(FT_DLL_PREFIX)sapcrypto$(FT_DLL

My understanding is as follows:

DIR_EXECUTABLE: <DRIVE>:\usr\sap\<SID>\SYS\exe\run\

DIR_INSTANCE : <DRIVE>:\usr\sap\<SID>\<instance>

DIR_SEP:

Does the following hold true:

sapcrypto.dll =  $(FT_DLL_PREFIX)sapcrypto$(FT_DLL)

Or does it get broken down further i.e. $(FT_DLL_PREFIX) means something else?

Kind Regards,

Johan

1 ACCEPTED SOLUTION

guilherme_deoliveira
Participant
0 Kudos

Hello Johan,

You can check the value of such system variables in report RSPARAM (execute through SA38 or SE38). You'll see there that for windows:

DIR_SEP: \

FT_DLL_PREFIX: <blank, no value>

FT_DLL: .dll

Therefore, this holds true:

sapcrypto.dll =  $(FT_DLL_PREFIX)sapcrypto$(FT_DLL)

I hope this clarifies.

Best Regards,

Guilherme de Oliveira
SAP Active Global Support

2 REPLIES 2

guilherme_deoliveira
Participant
0 Kudos

Hello Johan,

You can check the value of such system variables in report RSPARAM (execute through SA38 or SE38). You'll see there that for windows:

DIR_SEP: \

FT_DLL_PREFIX: <blank, no value>

FT_DLL: .dll

Therefore, this holds true:

sapcrypto.dll =  $(FT_DLL_PREFIX)sapcrypto$(FT_DLL)

I hope this clarifies.

Best Regards,

Guilherme de Oliveira
SAP Active Global Support

0 Kudos

Hi,

Thanks I have not used RSPARAM in ages did not even blink on my radar

Johan