Skip to Content
0
Former Member
Sep 04, 2007 at 12:23 PM

start routine 3.x -> 7.0

50 Views

Hello people,

I'm working on DSO 0CRM_COM2 in BI 7.0.

I created a transformation between DataSource 0CRM_COMPLAINTS_I and this DSO.

I'm using the "same" routines used in standard update rules (3.x).

But the start routine needs g_s_minfo-upmode, which seems to have disappeared in 7.0.

So which is the corresponding field to upmode in BI 7 ?

The code is the following one :

"

DATA: lv_fsname(60) TYPE c.

FIELD-SYMBOLS: <fs_gsminfo> TYPE ANY.

lv_fsname = 'g_s_minfo-updmode'.

ASSIGN (lv_fsname) TO <fs_gsminfo>.

IF <fs_gsminfo> = 'F'

OR <fs_gsminfo> = 'C'.

REFRESH source_package.

ENDIF.

"

Cheers,

Vince.