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: 

Urgent.

Former Member
0 Kudos

Hi, I am Using FModule

CALL FUNCTION 'IHCLSD_PROCESS_SEARCH'

EXPORTING

I_KLART = I_KLART

I_CLASS = I_CLASS

  • I_LANGUAGE = SY-LANGU

  • I_KEY_DATE = SY-DATUM

  • I_ALSO_SUBCLASSES = IT_COMW

IT_COMW = IT_COMW

CHANGING

CT_OBJECTS = CT_OBJECTS

EXCEPTIONS

NO_OBJECTS_FOUND = 1

INCONSISTENT_PARAMETERS = 2

NO_AUTHORITY_CLASSTYPE = 3

NO_VALID_CLASSES = 4

OTHERS = 5

.

Here CT_OBJECTS is the Changing Table.

I need to move this changing table to Internal table with header line.

How is it possible.

Points will be awarde.

Regards,

Jayasimha Jangam

2 REPLIES 2

former_member404244
Active Contributor
0 Kudos

Hi,

declare the internal table like this

data : itab like TT_CLSEL_OBJECTS occurs 0 with header line.

now move the data.

itab[] = CT_OBJECTS[].

Rewrad if helpful.

Regards,

Nagaraj

former_member194152
Contributor
0 Kudos

hi,

use following addidtion

append lines of CT_OBJECTS to itab.

remember CT_OBJECTS and itab should have same structure type.

Regards

Gagan