‎2008 Mar 25 6:18 AM
is there any diffrence between coding aganist version 4.7 and 5.0?
‎2008 Mar 26 2:28 AM
Hello Indra,
There is definitely no significant coding difference between 4.7 and 5.0.
The only difference is - but this should have been coded already in 4.6 - the usage of the declaration of the BDC-itab.
Formerly: data: begin of it_bdcdata occurs 0.
include structure bdcdata.
data: end of it_bdc.
Now: types: begin of ty_bdc.
include structure bdcdata.
types: end of ty_bdc.
data: it_bdc type table of ty_bdc,
wa_bdc type ty_bdc. "working structure for appending it_bdc
I hope this help.
Kindest,
Heinz
‎2008 Mar 25 10:00 PM
Hi,
Refer these links to fing the differences
http://solutionbrowser.erp.sap.fmpmedia.com/
For Functionality Differences between SAP Versions
ECC 5.0 Release Notes For PP Module
Award points
Edited by: ravee indra on Mar 25, 2008 11:00 PM
‎2008 Mar 26 2:28 AM
Hello Indra,
There is definitely no significant coding difference between 4.7 and 5.0.
The only difference is - but this should have been coded already in 4.6 - the usage of the declaration of the BDC-itab.
Formerly: data: begin of it_bdcdata occurs 0.
include structure bdcdata.
data: end of it_bdc.
Now: types: begin of ty_bdc.
include structure bdcdata.
types: end of ty_bdc.
data: it_bdc type table of ty_bdc,
wa_bdc type ty_bdc. "working structure for appending it_bdc
I hope this help.
Kindest,
Heinz
‎2008 Nov 04 10:11 AM