cancel
Showing results for 
Search instead for 
Did you mean: 

Generic Function module -- delta enabled

Former Member
0 Kudos

Hi

For a generic function module based datasource..we can enable the delta capability by say for example based on date , time..or any changing parameter..

say suppose AEDAT (last changed by).. I can enable delta by this AEDAT field..

now my question is how are new reocrds recognised..??

I guess..even new record that is created...say for example will have creation date as well the last changed by as same date for the first time and SAPI (Service API ) recognises by AEDAT.. for new records as well.

Let me know my reasoning is right or not..

Thanks

Ragini

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Ragini,

Good Point!.

You need to go with Generic Extractor with Function Module Extractor for this. Where you can build your Extractor to generate Delta based on Created on and Changed on.

You can get Last Delta Date. In the Select Query, include selections on both Created on and Changed on...

Check below Select Query and Let me know if you have any Question....

SELECT vbeln from vbak WHERE <u>erdat</u> IN l_r_erdat AND AUART = 'ZOR'

OR <u>AEDAT</u> IN L_R_ERDAT AND AUART = 'ZOR'.

L_R_ERDAT will have Last Delta to Today's Date.

Nagesh Ganisetti.

  • Assign points if it helps.