cancel
Showing results for 
Search instead for 
Did you mean: 

Table for Catalog Code long text

03-05-2008 12:25 PM
4444 views 2 comments
0 Likes
SAP Managed Tags
Subscribe

Hi,

Anyone can help me in this? When a long text is entered for Catalog Code using T Code QS41, a long text indicator is maintained in QPCT Table. But in which table the long text is being stored?

Your valuable inputs in this regard is highly appreciated.

Thanks in advance,

Vinod

0 Likes

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member

Dear Vinod,

Check in this table,

QPCD Inspection catalog codes

QPCT Code texts

QPGR Inspection catalog code groups

QPGT Code group texts

TQ07 Follow-Up Action for Usage Decision of Inspection Lot

TQ07A QM: Function Modules for Follow-Up Action

TQ07T Language-dependent texts for Table TQ07

TQ15 Inspection catalog type index

TQ15T Language-dependent texts for table TQ15

TQ17 Defect classes

TQ17T Language-dependent texts for table TQ17

Regards

Mangalraj.S

Former Member
0 Likes

You can retrieve the long text for catalog as follows:

  h_name = '    000001'.

  h_name+0(4) = I_CODE. "  f.e. 'E   000001' or '100 000001'

  CONCATENATE I_CODEGRUPPE h_name INTO h_name.

  CONCATENATE I_KATALOGART h_name INTO h_name.

  CONCATENATE sy-mandt h_name INTO h_name.

  CONCATENATE h_name I_SPRACHE INTO h_name.

  CALL FUNCTION 'READ_TEXT_INLINE' 

    EXPORTING

              ID              = 'QPCT'    

              INLINE_COUNT    = 1

              LANGUAGE        = I_SPRACHE

              NAME            = h_name 

                            OBJECT          = 'QKATALOG'

For knowing what the value of h_name should be, you can also use pgm RSTXTRAN to make a provisional list, select object =  'QKATALOG'.