User Tools

Site Tools


abap:batch_input_call_transaction

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

abap:batch_input_call_transaction [2013/05/15 17:52] – created ginkoabap:batch_input_call_transaction [2013/06/17 14:34] (current) ginko
Line 1: Line 1:
 ====== Batch input / Call transaction ====== ====== Batch input / Call transaction ======
 +===== Paramètres =====
 +<code abap>  DATA : w_transaction(20) TYPE c,
 +         w_mode(1) TYPE c,
 +         w_update(1) TYPE c.
 +
 +  CONSTANTS : c_mode_display(1) TYPE c VALUE 'A',
 +              c_mode_error(1) TYPE c VALUE 'E',
 +              c_mode_not_display(1) TYPE c VALUE 'N',
 +              c_update_asyn(1) TYPE c VALUE 'A',
 +              c_update_sync(1) TYPE c VALUE 'S',
 +              c_update_local(1) TYPE c VALUE 'L'.
 +
 +  w_transaction = 'VL32N'.
 +  w_mode = c_mode_not_display.
 +  w_update = c_update_sync.
 +
 +  CALL TRANSACTION w_transaction USING bdc_tab MODE w_mode UPDATE
 +    c_update_sync MESSAGES INTO messtab.</code>
 ===== Sélection de ligne dans un ALV ===== ===== Sélection de ligne dans un ALV =====
 La sélection de ligne dans un ALV se traduit par le code suivant (exemple) : La sélection de ligne dans un ALV se traduit par le code suivant (exemple) :
abap/batch_input_call_transaction.txt · Last modified: 2013/06/17 14:34 by ginko