‎2006 Jun 12 2:32 PM
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
‎2006 Jun 12 2:40 PM
‎2006 Jun 12 2:50 PM
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
‎2006 Jun 12 2:51 PM
No,
QALS-KTEXTMAT is my area of interest
Message was edited by: Aryan T
‎2006 Jun 12 2:54 PM
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.