2007 Oct 30 6:42 PM
hi,
have a table gt_bapiret2 table of type bapiret2.
when the table is filled with gt_bapiret2-type = 'E'. the table need to be
modified to gt_bapiret2-type = 'I'.
regards,
vind.
2007 Oct 30 6:47 PM
Hi,
You can handle this in your custom program.
After BAPI call, all messages are populated in internal table gt_bapiret2.
Add this in your code -
gt_bapiret2-type = 'I'.
modify gt_bapiret2 transporting type where type = 'E'.
This will modify all entries with 'E' to 'I'. But why do you need to do this?
ashish
Hi,
You can handle this in your custom program.
After BAPI call, all messages are populated in internal table gt_bapiret2.
Add this in your code -
gt_bapiret2-type = 'I'.
modify gt_bapiret2 transporting type where type = 'E'.
This will modify all entries with 'E' to 'I'. But why do you need to do this?
ashish
2007 Oct 30 6:47 PM
Hi,
You can handle this in your custom program.
After BAPI call, all messages are populated in internal table gt_bapiret2.
Add this in your code -
gt_bapiret2-type = 'I'.
modify gt_bapiret2 transporting type where type = 'E'.
This will modify all entries with 'E' to 'I'. But why do you need to do this?
ashish
2007 Oct 30 7:05 PM
HI,
loop at gt_bapiret2 where type = 'E' .
gt_bapiret2-type = 'I'.
MODIFY gt_bapiret2 transporting type.
endloop.
Regards,
ashok
| User | Count |
|---|---|
| 3 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |