How to Change the Language in Purchase Info Record (ME12) and Add Purchase Order Text in ALV ReportManaging language settings in SAP purchase info records and adding purchase order text to reports are crucial tasks for maintaining accurate procurement data. Changing the Language in Purchase Info Record (ME12)Issue:When trying to change the language in the Purchase Info Record (ME12), you might encounter the message: "No short text maintained in language DE (please re-maintain material)." Even after updating the language via Edit → Text → Other Languages → Save, the message remains unchanged.Steps to Change the Language in ME12:
Adding Purchase Order Text in ALV ReportRequirement:A new column "Purchase Order Text" needs to be added to an ALV report. This column should display the text entered in the MM03 Purchase Order Text view in a specific language.Solution Using the 'READ_TEXT' Function ModuleSAP stores purchase order texts using the Read_Text function module. This function retrieves text entries stored in Material Master (MM03) or Purchase Orders.ABAP Code to Retrieve Purchase Order Text:DATA: i_potxt TYPE TABLE OF tline WITH HEADER LINE, w_thead TYPE thead. w_thead-tdname = wa_final-ebeln. "PO Number w_thead-tdspras = 'EN'. "Language w_thead-tdid = 'F03'. "Text ID w_thead-tdobject = 'EKPO'. "Text Object CALL FUNCTION 'READ_TEXT' EXPORTING id = w_thead-tdid language = w_thead-tdspras name = w_thead-tdname object = w_thead-tdobject TABLES lines = i_potxt EXCEPTIONS id = 1 language = 2 name = 3 not_found = 4 object = 5 reference_check = 6 wrong_access_to_archive = 7 OTHERS = 8. Explanation of Parameters:
Integration into ALV Report:LOOP AT i_potxt INTO wa_potxt. CONCATENATE wa_output-po_text wa_potxt-tdline INTO wa_output-po_text SEPARATED BY space. ENDLOOP. Final Output:Once integrated, your ALV report will now display the Purchase Order Text in the required language.Conclusion
Get help for your SAP MM problems
SAP MM Books
SAP Material Management Tips
Best regards,
All the site contents are Copyright © www.erpgreat.com
and the content authors. All rights reserved.
|