cancel
Showing results for 
Search instead for 
Did you mean: 

How to get the extended field to extended tab from an Standard BO.

Former Member
0 Kudos

Hi,

If anyone knows a thing of the following, can you teach me?

I want to get inputted data from Standard BO'Item to extension field in extension tab.

I have set the following contents in the UI Designer.

And following is my BO(MU_SO_BO).

import AP.Common.GDT as apCommonGDT;
import AP.CRM.Global;
import AP.FO.ReleasedSiteLogisticsProcessModel.Global;
import AP.PC.IdentityManagement.Global;
import AP.PC.ProductionModelProcessing.Global;

businessobject MU_SQ_BO {


        // Root node must not be specified, it is created implicitly
        //
        // Add elements here. 
        // 
        // To declare an element as alternative key, use the [AlternativeKey] annotation.
        // Please note:
        // - An alternative key of type UUID exists implicitly for each node, enabling the node
        //   to be used as an association target.
        // - The QueryByElements query is created automatically for each node.
        // - Code completion is available with CTRL + SPACE.

		[AlternativeKey]element mu_pmid : ProductionModelID;
		action GetBOM;
		association ToCustomerQuote to CustomerQuote;
		association ToMU to MU_SQ_BO;

}

Best regards

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Step Ⅲ

Step Ⅳ

That's all.

Former Member
0 Kudos

It was resolved on own.As the setting step below.

Step Ⅰ

Step Ⅱ

Continued still