Below is the Custom table with entries that might change anytime.
how can i create a internal table it_vbak with fields vbeln , erdat with respective vales and also same with it vbap.
Table Name | Field Name | Value |
---|---|---|
IT_VBAK | VBELN | 001 |
IT_VBAK | ERDAT | 01122014 |
IT_VBAP | POSNR | 010 |
IT_VBAP | MATNR | 541234 |
I need to create a it_vbak internal table and pass the respective field values into this
How to map IT_VBAKas below ?
VBELN | ERNAM | ERDAT | NETWR |
---|---|---|---|
001 | Ignore | 01122014 | Ignore |
How to map IT_VBAPas below ?
VBELN | ERNAM | POSNR | MATNR |
---|---|---|---|
Ignore | Ignore | 010 | 541234 |
it_vbak & it_vbap are static internal tables. How to map Please explain as am a newbie in Dynamic Internal Tables Programming.