on ‎2018 Mar 01 2:41 AM
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
Request clarification before answering.
Hi Archana,
Could you please let me know the user exit and class used in GUI.
Best Regards,
Varun Agarwal
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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
| User | Count |
|---|---|
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.