Top 30 Sap Business One Interview Questions You Must Prepare 27.Jul.2024

Q1. In Sap Business One Sdk, Which Object Is Used For Executing Sql Queries And Stored Procedures ?

In SAP Business One SDK,recordset object is used for executing SQL queries and stored procedures.

Q2. What Is A/p Invoice ?

The acronym of A/P Invoice is Account Payable Invoice. For purchasing the goods.

following invoices are added in SAP Business One:

  1. Purchase Quotation
  2. Purchase Order
  3. Goods Receipt PO
  4. A/P Invoice

So A/P Invoice is the last process for the purchase department. When A/P Invoice is added, the accouting effect can be seen.

Q3. Which Tool Is Provided By Sap For Keeping The Track Of Events ?

SAP Business One Event Logger is a tool provided by SAP for keeping the track of events.Both SAP Business One and event logger should be executed simultaneously.Event logger will give you detailed list of events that fired while operating SAP.Event logger is very useful tool while devleloping add-ons in SDK.Coding can be done as per the events that are shown in event logger.For devleoping robust applications in SAP Business One SDK,event logger is useful tool since entire programming in SAP Business One SDK is event driven.

Q4. What Are The Different Objects In Di Api ?

Following are the different objects in DI API :

  1. Business Objects
  2. Infrastructure Objects
  3. Special Objects

Q5. Is It Possible To Alter The Standard Behaviour Of Sap Business One Using Sdk ?

The standard behaviour or the convensional flow of SAP Business One can not be altered using SDK.Some or other error will occur.So it is advisable not to disturb the convensional flow of SAP Business One using SDK.

Q6. What Is The Value Returned By A Method When It Executes Successfully?

0 is the value returned by a method when it executes successfully.

Q7. What Are The Functions Of Data Interface Api (di Api)?

Following are the functions of Data Interface API (DI API):

  1. DI API provides objects and methods i.e. add,update,Remove ,for performing various data level operations.This can be done without installing SAP Business One client.
  2. DI API provides access to business objects i.e. master data and transactional data.
  3. DI API can be used in COM capable development tools (e.g. Microsoft Visual Studio).Dll SAPbobsCOM.dll is provided by SAP just by adding the reference of this dll,you can perform data level operations.

Q8. What Is The Function Of Ui Api I.e. User Interface Api ?

UI API stands for User Interface Application Program.Dll is provided by SAP i.e. Interop.SAPbouiCOM.dll.The reference of this dll is added in the project to access it in project.UI API is used for accessing the controls that are displayed on the form.

Following are the functions of UI API:

  1. Provides objects and methods to access screen objects of the User Interface.
  2. Provides access to internal system events of the user interface.
  3. Provides ability to modify or add menus, windows, or fields.
  4. Provides one integrated user interface.
  5. Use COM capable development tools (Microsoft Visual …)

Q9. What Will Happen If We Remove Eventfilters ?

If we remove EventFilters,then the all the events will fire.While programming in SDK,the unneccessary events should be neglected since it will decline the performance of the application.When EventFilter is applied to the SAPbouiCOM.Application object,then the events will fire as per the requirement of the user and thus enhancing the performance of the application.

Q10. What Is The Function Of Observerdll.dll ?

In OBServerDLL.DLL , the business objects of the SAP Business One client are copied.

Q11. What Is Used In Sdk For Developing A Form ?

Screen painter is used for developing form in SAP Business One SDK.Screen painter is provided as add-on by SAP and it can be used to designing and developing forms.The files created by screen painter has srf extension and these files should be renamed to xml for deploying then in SAP Business One.

Q12. What Is Dbdatasource ?

DBDataSource is used for storing data from database.DBDataSource is linked to database table and it represents tabular data.DBDataSource is used by all system forms.You can get DBDataSource as follows – Here I have assumed that I have opened the form of Sales Order and I want to get the database details of the sales order.The table name is ORDR. Dim objDS As SAPbouiCOM.DBDataSource

objDS = SBO_Application.Forms.ActiveForm.DataSources.DBDataSources.Item(“ORDR”)

Q13. What Is The Use Of Company Object In Sap Business One ?

The following are the uses of company object in SAP Business One:

  1. Access Data in an SAP Business One database.
  2. Connect to and disconnect to customer database.
  3. Start and end global transactions.
  4. Work with XML data

Q14. Where Does Di Server Executes I.e. Client Or Server ?

DI server executes on the server.

Q15. Which Property Of Matrix Gives The Total Number Of Rows In The Matrix ?

The property Visual RowCount gives the total number of rows in the matrix.

Q16. How Is Sap Business One Implemented ?

SAP Business One is implemented as a two-layer architecture. The system is based on a Microsoft SQL Server database where data is stored centrally. The business logic is mostly processed on the client software (fat client).

Q17. What Is The Value Returned When Any Method Of An Di Api Object Executes Successfully ?

0 is returned when any method of an DI API object executes successfully.

Q18. For Performing Heavy Duty Operations What Is Suitable Di Api Or Di Server ?

For performing heavy duty operation DI server is suitable.The DI Server implements a connection pooling mechanism to enhance performance and scalability of the server.As DI Server is a SOAP-based interface it does not limit the client to a COM interface, but allows a wide range of possible client technologies.

Q19. What Are The Different Components Of Sap Business One Client Software ?

Graphical user interface and the business object classes connecting to the database are the different components of SAP Business One client software .

Q20. What Is Bubbleevent?

BubbleEvent specifies whether the event will be processed by SAP Business One or not.If BubbleEvent=True ,then SAP Business One will process the event else the execution will terminate.For eg,

If pVal.EventType = BoEventTypes.et_CLICK And pVal.Action_Success = True And pVal.FormUID = “F_32” And pVal.ItemUID = “btnSave” Then

BubbleEvent=False

End If

In the above code,click event of save button is handeled.When the user clicks on the save button,then first the above code will execute and then it will be handeled by SAP Business One.Here I have set BubbleEvent=False.So the click event will terminate and SAP Business One will not handle the event.

Q21. Which Table Saves The Details Of Country ?

OCRY table saves the details of country.

Q22. What Is Company Object In Sap Business One ?

Company object represents SAP Business One database.Is used to establish a connection to a Microsoft SQL Server database.

Q23. What Are The Limitations Of Di Server?

Following are the limitations of DI server:

  1. Meta data operations not supported.
  2. Different support for transaction handling than plain DI API

Q24. What Are The Different Types Of Datasources ?

The following are the different types of DataSources :

  1. DataTables
  2. DBDataSources
  3. UserDataSources

Q25. What Is Di Server In Sap Business One ?

In SAP Business One,DI Server is DCOM service that runs on the SAP Business One server and accepts XML data packed in SOAP (Simple Object Access Protocol)

Q26. Can We Load The Datatable Directly Using Sql Query ?

Yes,datatable can be loaded directly using sql query as follows:

Dim obJECT as SAPbouiCOM.DataTable Dim strQuery as String strQuery=”SELECT * FROM OITM” obJECT.ExecuteQuery(strQuery)

Q27. What Are The Different Parts Of Di Api ?

Following are the different parts of DI API:

  1. COM Interface:The COM Interface provides the interface to the add-on application.
  2. DI Core :The DI Core, which is the main component of the DI API, performs all the data logic operations.
  3. Data manager :The Data Manager stores temporary object data, converts object data to internal data formats, retrieves data from the database, and controls the database transactions.
  4. Schema Generator :The Schema Generator creates XML schemas based on object interface descriptions. The schema generator also creates object validation lists.

Q28. What Is A/r Invoice ?

The acronym of A/R Invoice is Account Receivable Invoice. For selling a product

following invoices are added in SAP Business One:

  1. Sales Quotation
  2. Sales Order
  3. Delivery
  4. A/R Invoice

So A/R Invoice is the last process for the sales department. When A/R Invoice is added, the respective accouting entries are added. The report from the A/R Invoice is send as bill along with the product.

Q29. What Are The Different Types Of Transactions Supported By Di Api ?

Following are the different types of transactions supported by DI API:

  1. Single Transaction
  2. Global Transaction

Q30. How To Fill Data In Recordset ?

In the recordset ,data can be filled in the recordset using the sub-routine DoQuery.The sample illustrates this in detail , Dim objRS As SAPbobsCOM.Recordset

objRS = objCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.BoRecordset)

objRS.DoQuery(“SELECT * FROM OITM”)

Learn SAP Business One Course makes an emphasis on all that is required to manage critical business functions across sales.