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
Request clarification before answering.
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
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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'.
| User | Count |
|---|---|
| 16 | |
| 12 | |
| 8 | |
| 6 | |
| 4 | |
| 3 | |
| 3 | |
| 2 | |
| 2 | |
| 2 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.