Hello All.
I added an extension text field to BO Purchase Request and enhanced OWL screen (prowllist.OWL), but I faced an issue - rows in the screen have become 2-x higher as were, they are now as below:

I used type "MediumText" for the extension field and it made such an effect.
I also tried using type "Text" (from the list of alloweds) but it has non-fixed length and does not work in Advanced Filter.
import AP.Common.GDT;
import AP.Purchasing.Global;
[Extension] businessobject AP.Purchasing.Global:PurchaseRequest {
// You must activate this business object before you can access the extension fields
// or messages in script files, forms, and screens.
node Item {
[Label("Buyer Responsible ID2")] element BuyerResponsibleID2 : EmployeeID;
[Label("Buyer Responsible Name2")] element BuyerResponsibleName2 : Text; // no more used
[Label("Buyer Responsible Name2")] element BuyerResponsibleName2x : MediumText;
}
}
I would like something like "LANGUAGEINDEPENDENT_MEDIUM_Name" but it was not allowed there (mainly Only Code and ID types in the tip list are suggested. Why?).
Which type may I use for text field in this case without the effect? Is there any workaround?
Thank you.