InterviewSolution
| 1. |
What Is Dbdatasource ? |
|
Answer» 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”) 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”) |
|