0

I am having a small ETL mapping in SAP BODS where the Source table data is loaded into the target table. But there are chances where some rows might be having some errors and may be skipped.

I want to store the count of all these rows that are skipped by BODS into another table(C).

Can someone please help me with this?

inside SAP DATA SERVICE DESGNER>job>workflow>DataFlow

1 Answer 1

0

Use try-catch elements of BODS and wrap your data flow in it

enter image description here

The function error_context() is available in catch block which allows fetching the cause of error. With the help of custom function you can write these details into other table.

For capturing erroneous rows use Overflow file setting in target table

enter image description here

All skipped rows will be written into that file. More detailed here.

P.S. All images are copyrighted by SAP (C)

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Not the answer you're looking for? Browse other questions tagged or ask your own question.