‎2007 Aug 07 6:36 PM
Hi,
When I enter a value in a field and click on a push button call transaction works fine the first time. When I enter different value in the field and click on it again call transaction works but says No changes made.
But if I click on the execute button and click on the push button again, it works fine.
When i ran it in mode A, the below code didnt work during the second time.
*perform screen using: 'SAPLQPLS' '0100'.
*perform field using: 'BDC_CURSOR' 'RMQAM-AKTIV(01)',
*'RMQAM-AKTIV(01)' 'X',
*'BDC_OKCODE' '=WEIT'.
Regards,
bindazme
‎2007 Aug 07 8:11 PM
‎2007 Aug 07 8:11 PM
‎2007 Aug 07 9:43 PM
Try to check events. Write your BDC CODE in AT SELECTION SCREEN
‎2007 Aug 07 10:06 PM
There will be several reasons :
1. if you are not clearing BDC Internal table..
call transaction 'TCODE' using BDCDATA
MODE 'A'.
refresh bdcdata. -> this is mandatory after call transaction.
2. would be data updation,some times it updates transaction level,not in DB Level.
so use update mode as "S'.
call transaction 'TCODE' using BDCDATA
MODE 'A'
UPDATE 'S'.
Thanks
Seshu
‎2007 Aug 08 6:33 AM