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

QA33 Error

Former Member
0 Likes
912

Hi all ,

Below is my query , please guide me ,points guaranteed

Hi Gurus,

I am facing a problem with QA33 T-Code .

In QA33, some materials dont contain the "short text for inpsection object"

Please tell me how is QALS getting populated whihc include and where to look for it

I am looking especially talking abt QALS-KTEXTMAT which

is displayed as blank for some of the materials

Please guide

Points guaranteed ....

Thanks

Aryan

=========================================================

Below is the reply but m not yet convinced

==============================================

QA33 only selects data.If you are getting blank for the short text then it is blank in the QALS table also.If you want to know where it is getting populated then you need to look into the Create transaction for inspection lot.

Rgds,

Nishanth Bhandar

=====================================================

Hi,

Check this include.LQPRSL10

line number#147

this is the perfrom.

  • Materialkurztext (KTEXTMAT)

perform text_mat_lesen using g_probentab-matnr

g_probentab-werks

changing g_probentab-ktextmat.

they are using the FM MATERIAL_READ_MAQM

Check it.

Regards

vijay

=========================================================

Hi All,

Thanks for the replies ..

I also got one more info in include LQPL1F19 I find

MOVE MTQSS-MAKTX TO QALS-KTEXTMAT

Please help me in finding where and how MTQSS-MAKTX is getting populated..,

Thanks

Aryan

4 REPLIES 4
Read only

Former Member
0 Likes
741

Might be u r looking for 'QKURZTEXT' field in 'QALS' table

Read only

0 Likes
741

Hi,

coming to your point ..

this include <b>LQPL1F19</b> also you are getting...

in line #22

 perform lese_mtqss using qals-matnr qals-werk
                             sy-langu   l_msgty
                    changing mtqss.

this perfrom also they are calling the same Function

<b>'MATERIAL_READ_MAQM'</b> to populate MTQSS .

so i am assuming that using this Fm MATERIAL_READ_MAQM they are populating the text.

Regards

vijay

Read only

0 Likes
741

No,

QALS-KTEXTMAT is my area of interest

Message was edited by: Aryan T

Read only

0 Likes
741

In include LMAQMCAS

Below is the area where MTQSS is getting populated which

in turn populated QALS.

CASE MTCOM-KENNG.

WHEN 'MTQSS' .

CLEAR MTQSS .

PERFORM MAKT_TO_MTQSS_01 .

PERFORM MARA_TO_MTQSS_02 .

PERFORM MARC_TO_MTQSS_03 .

PERFORM MARM_TO_MTQSS_04 .

MATDATEN = MTQSS .

ENDCASE.