Guidelines

What are the table controls in BDC?

What are the table controls in BDC?

bdc on table control

  • Suppose we need to enter some records in a ztable through table maintenance generator SM30.
  • This count variable is to count the number of lines displayed at one time in the table control.
  • Now take the file from where records are to be uploaded.

What is a control table in SAP?

Control table is used to link the values of the size category and data class defined in the Dictionary level to the underline date base table.

What is the structure of the BDC table?

The BDCDATA consists of the following fields: PROGRAM [CHAR 40] – Online program name. DYNPRO [NUMC 4] – Screen number. DYNBEGIN [CHAR 1] – Flag to indicate the start of a new screen.

What is mode N in BDC?

N – is no screen mode no Screen is displayed when you executed the transaction. E – is error screen Only those Screen are displayed where in you have error record.

How to handle table control in BDC data?

Following is a sample code of handling table control in BDC. REPORT Y730_BDC5 . *HANDLING TABLE CONTROL IN BDC DATA : BEGIN OF IT_DUMMY OCCURS 0, DUMMY (100) TYPE C, END OF IT_DUMMY.

How to upload a customer master in BDC?

Scenario: Uploading the customer master through BDC technique where multiple bank information of a particular customer needs to be maintained in the screen table control. Step1. Go to Tcode- SHDB for recording.

How to create a BDC for a sap Master?

The BANK key in the sap system can be cretaed in tcode- FI01/FI02/FI03. In teh recording we have used bank key- 5001, 5002 and 5003. These bank keys are defined in the system before creating the customer. Step13. Now go to tcode- SE38 to create the BDC program for table control for the customer master. Step14.

How to use table control in Windows 10?

REPORT Z_DB_TABLECONTROL. TABLES: MARA. CONTROLS MATERIAL TYPE TABLEVIEW USING SCREEN 130. TYPES: BEGIN OF ST_MARA, MATNR TYPE MARA-MATNR, ERSDA TYPE MARA-ERSDA, ERNAM TYPE MARA-ERNAM, LAEDA TYPE MARA-LAEDA, END OF ST_MARA.