Application Development and Automation 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: 
Read only

Re: Retriving archived data

Former Member
0 Likes
660

Hi,

Two tables related to FI(BSEG, BKPF) have been archived, so currently there is no data in the database table . Now I have to reload the archived data again into the database tables for further processing.

Can you please advise, if this is a correct method?

If yes ? How do we do it ?

The SAP version used is 30F.

Thanks in advance.

BR// SSRmary

Hi,

Two tables related to FI(BSEG, BKPF) have been archived, so currently there is no data in the database table . Now I have to reload the archived data again into the database tables for further processing.

Can you please advise, if this is a correct method?

If yes ? How do we do it ?

The SAP version used is 30F.

Thanks in advance.

BR// SSRmary

3 REPLIES 3
Read only

Former Member
0 Likes
591

u need to fetch data from archive tables and then pass on to these tables....the relevant archive tables might be...

VF07

VF27

FTR_ARCH_W

FTWB

CCAR

BPAR_ARCHW

BUPA_ARCH

Read only

Former Member
0 Likes
591

check this link....

he is given in full detail with respective to BSEG AND BKPF

http://www.sappressbooks.com/downloads/h956_preview.pdf

regds,

kiran

Read only

Former Member
0 Likes
591

Hi Srmary,

For fetching archieved data you need to use following function modules in same sequence:

1) AS_API_READ

2) ARCHIVE_READ_OBJECT

3) ARCHIVE_GET_NEXT_RECORD

4) ARCHIVE_CLOSE_FILE

You can insert data in database table once you fetch the successfully by a simple program.

Reward points if helpful answer.

Ashven