Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

bdc

raj_kumar86
Participant
0 Likes
565

is there any diffrence between coding aganist version 4.7 and 5.0?

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
547

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

3 REPLIES 3
Read only

Former Member
0 Likes
547

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

Read only

Former Member
0 Likes
548

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

Read only

raj_kumar86
Participant
0 Likes
547

thanks