cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

SAP CRM UI biometric screen issue

0 Likes
500

Hi there,

My question is it possible to get a biometric fingerprint verification screen on CRM UI ?In GUI I am able to get fingerprint verification screen but not able to see it on CRM UI?

As soon as user gets log in in SAP ,user exit gets called and there I have written a code for biometric fingerprint verification.In CRM UI my user exit is getting triggered but the class used in GUI is for figerprint screen not able to triggred on CMR UI.

Searched the forum but not able to get solution for this issue.

Appreciate the help.

Regards,

Archana

Accepted Solutions (0)

Answers (1)

Answers (1)

Varun_Agarwal
Product and Topic Expert
Product and Topic Expert
0 Likes

Hi Archana,

Could you please let me know the user exit and class used in GUI.

Best Regards,

Varun Agarwal

0 Likes

Hi Varun,

Thanks for your reply.

User exit name is SUSR0001.

Please see below code: for fingerprint verification: See commented code , there I am facing issue.

INCLUDE: ole2incl. DATA: reader TYPE ole2_object,

CREATE OBJECT reader 'BiometricSDK'.

SET PROPERTY OF reader 'EnableEncryption' = 0. .

SET PROPERTY OF reader 'SessionID' = SESSIONID.

SET PROPERTY OF reader 'TimeStamp' = DATETIME.

SET PROPERTY OF reader 'WindowTitle' = WNDTITLE.

CALL METHOD OF reader 'GetFeature' "issue is HERE not able to get screen here,its for gui

EXPORTING #1 = USERID #2 = FINGERID.

IF sy-subrc NE 0. FREE OBJECT reader. raise BIOMETRIC_SDK_NOT_INSTALLED. ELSE. GET PROPERTY OF reader 'Feature' = ISOTemplate. IF sy-subrc NE 0. FREE OBJECT reader.

If any further clarification is required please let me know.

Appreciate your help.

Regards,

Archana

Varun_Agarwal
Product and Topic Expert
Product and Topic Expert
0 Likes

What is the class name in GUI?

0 Likes

I am using OLE2_OBJECT .See above code.