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: 

Doubt in Read_text function

Former Member
0 Kudos

Hi all

I have created one support message in crmd_order solution manager. In that i have entered Description (Su99). I can see the description in SUZZ LOG. but i can read the text using function module READ_TEXT

How can i access.

Parameters

CLIENT 900

ID SUZZ

LANGUAGE EN

NAME 469D18B8C04721CFE10000000A210107

OBJECT CRM_ORDERH

ARCHIVE_HANDLE 0

LOCAL_CAT

Export parameters Value

HEADER

Tables Value

LINES 0 Entries

Result: 0 Entries

anybody help me

6 REPLIES 6

former_member223537
Active Contributor
0 Kudos

Hi,

You need to create the text using CREATE_TEXT.

Best regards,

Prashant

Former Member
0 Kudos

Hi Muthu,

check the code,

DATA: it_lines LIKE TABLE OF tline WITH HEADER LINE.

CALL FUNCTION 'READ_TEXT'

EXPORTING

id = 'LTXT'

language = sy-langu

name = '000001100184'

object ='AUFK'

  • IMPORTING

  • HEADER =

TABLES

lines = it_lines

EXCEPTIONS

id = 1

language = 2

name = 3

not_found = 4

object = 5

reference_check = 6

wrong_access_to_archive = 7

OTHERS = 8.

Thanks.

0 Kudos

HI

I CAN SEE IN THAT T.CODE BUT I CAN'T DO FUNCTION USING ABOVE PARAMETERS

0 Kudos

Hi,

look at tables SUKRI and SUKTRIK.

i think it's only a short-text, therefore you cannot use READ_TEXT.

Regards, Dieter

Former Member
0 Kudos

HI

I WANT TO READ A DESCRIPTION IN crmd_order t.code how can i read?

0 Kudos

Hi Muthu,

sorry but first i have understand you wrong.

In our system we havn't the tcode CRMD_ORDER, is it a tcode or a order?

But try it like this:

First create the text.

Second look in STXH with actual date and your UserID.

Here you will find the PARAMETERS for READ_TEXT.

Hope it helps.

Regards, Dieter