cancel
Showing results for 
Search instead for 
Did you mean: 

Generic Delta extractor problem

Former Member
0 Kudos

Hello all,

We are trying to pull data from a custom table (ZABC) that has timestamp as one of the field.

We are using a function module instead of a direct table pull because of the volume of the data that is coming in.

In RSO2 we have selected timestamp as delta field.

After initialization. when we do the delta extraction it pulls all the records from the table. For some reason delta is not being pulled out.

here is the select statement:

SELECT (S_S_IF-T_FIELDS) FROM ZABC

WHERE GL_SIRID IN L_R_GL_SIRID AND

RYEAR IN L_R_RYEAR AND

POPER IN L_R_POPER AND

RBUKRS IN L_R_RBUKRS.

Appreciate your response.

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

We missed adding the delta field in the select statement.

Select statement was updated as below:

SELECT (S_S_IF-T_FIELDS) FROM ZABC

WHERE GL_SIRID IN L_R_GL_SIRID AND

RYEAR IN L_R_RYEAR AND

POPER IN L_R_POPER AND

RBUKRS IN L_R_RBUKRS AND

TIMESTAMP IN L_R_TIMESTAMP.

Thanks

Edited by: KK on Jan 14, 2009 3:17 PM