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

Changing table

Former Member
0 Likes
455

Hey,

created a table with following elements:

Client (Mandt) -> key

ID (CHAR64) -> key

Title (CHAR64)

I tried a select statement where I had checked the ID with an integer.

Of course he couldn't compare integer with char, so I tried to change

the element in data base table to

Client (Mandt) -> key

ID (INTEGER) -> key

Title (CHAR64)

Trying to activate this, he replies an error:

"Package check for Table/Structure <Tablename>"

...

The used object, DTEL INTEGER, is not visible.

What do I have to do?

How to change the element type of an existing z-table?

thanks

chris

1 ACCEPTED SOLUTION
Read only

former_member182354
Contributor
0 Likes
432

Hi,

Use built in type version of Integer data type...

Raghav

2 REPLIES 2
Read only

former_member182354
Contributor
0 Likes
433

Hi,

Use built in type version of Integer data type...

Raghav

Read only

0 Likes
432

Got it...change from INTEGER to INT4.

After this, using se14 with Force Conversion and now

I can activate the table without errors.

thanks.

Edited by: Christian Riekenberg on Jul 21, 2008 5:00 PM