cancel
Showing results for 
Search instead for 
Did you mean: 

Get hardware key for SAP B1 9.2

fcpeomaior
Participant
0 Kudos

Hi,

How can we read SAP B1 hardware key for SAP 9.2 version?

We found several information in SDK forum linked to Corba COM library, but all links are invalid and it seems it's no longer possible to use it with SAP 9.2...

We already checked the "SBO->About SAP" menu simulation solution, but its not feasible (the form is always shown during the process).

Thanks!

mdias

Accepted Solutions (1)

Accepted Solutions (1)

former_member185682
Active Contributor
0 Kudos

Hi Manuel,

About use the menu simulation, you can hide the form, and the user won't be see anything.

You can do something like this:

On item event you can add the following code(when the "About Form" loads, set the property VisibleEx to false):

if (!pVal.BeforeAction && pVal.FormTypeEx == "999999" && pVal.EventType == SAPbouiCOM.BoEventTypes.et_FORM_LOAD)
{
    SAPbouiCOM.Form oForm = SBO_Application.Forms.Item(pVal.FormUID);
    oForm.VisibleEx = false;
}

If this the about form won't be showed for the user.

Hope it helps.

Kind Regards,

Diego Lother

Answers (1)

Answers (1)

fcpeomaior
Participant
0 Kudos

Thanks Diego, it worked fine!