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: 

IMPORT UR-VERSION TO OUR-VERSION ... RT_GP ... FROM DATABASE pcl2(ur).

Former Member
0 Kudos

Hi all!

Does anybody know why, or what is the error, when we try to import table cluster RT_GP ?

What includes should I use in order to also import data from cluster table rt_gp, table PCL2 ?

I used:

INCLUDE pc2rxru0.

INCLUDE rpc2rx09.

INCLUDE pcfvpru0.

IMPORT ur-version TO our-version

versc

wpbp

abc

rt

crt

bt

c0

c1

v0

vcp

alp

dft

grt

ls

status

arrrs

ddntk

accr

bentab

ab

fund

average

modif

rt_gp

codist

ruave

fup

FROM DATABASE pcl2(ur)

ID p_key.

I receive error below for syntax check:

Unable to interpret "CODIST". Possible causes: Incorrect spelling or comma error.

Here comes the funny part. If I comment RT_GP, it works fine. If I comment CODIST, then cluster table RUAVE becomes the problem. I receive the same error above.

I got the list of cluster tables from structures PAY99_INTERNATIONAL and PAYRU_NATIONAL.

Thanks in advance.

Cassio.

1 REPLY 1

Former Member
0 Kudos

ANSWER:

Declare code below.

*******************************************************

DATA: BEGIN OF rt_gp OCCURS 0.

INCLUDE STRUCTURE pc2rt_gp.

DATA: END OF rt_gp .

*******************************************************

Thanks.