Application Development 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: 

standard DB table update issue

Former Member
0 Kudos

Hi all,

The past/history creditworthiness of the business Partners has to be updated based on some calulation but the transaction FPCR2 does not allow for this change.

The requirement is to update the custom tables of DFKKCRH and DFKKCRP for Creditworthiness.

could not find any BDC approach and BAPI that can be used.

Is there any other way as i am tryin got avoid the direct update to the standard DB tables.

Your ideas appreciated.

Regards,

Stk.

1 REPLY 1

Former Member
0 Kudos

Hi,

i have another way u can check if it helps u,first collect the data that has to be updated in an internal table inside the report.

Create a function module in se37 in update work process with table parameter and write the following code in that

MODIFY DB_Tablename from table ITAB.

now call this FM inside the program and pass your internal table to its table parameter.it will update the DB table in a single hit to database.