cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Place header custom fields under Quote Info (quotation) section

former_member578556
Discoverer
0 Likes
920

Hello,

We have a requirement to provide header custom fields under the quote info section. SAP CPQ has its own section for custom fields. How we can achieve this requirement? Is it necessary to enhance the responsive UI template, if yes then how can we achieve it?

Thanks,

Anil Poply

Accepted Solutions (1)

Accepted Solutions (1)

MaxGag
Participant
0 Likes

Hello,

Yes you need to enhance UI template. You need to exclude your field in the Cart - Sections/Customfields:

Then in Cart - Sections/QuoteInfo template, you need to add your custom field:

If you want to let the system take care of the cell template by himsefl, use this code instead:

Thanks

Answers (1)

Answers (1)

former_member578556
Discoverer
0 Likes

Thanks Maxine, it worked but only in display mode. How do we make it editable?

MaxGag
Participant
0 Likes

Hello poplya ,

Try this, it will take the right cell template and take care of the filed visibility you set:

<div data-bind="foreach: customFieldsAndQuoteTables">

<!-- ko if: name == "yourFiledName" -->

<!-- ko template: template -->

<!--/ko -->

<!--/ko -->

</div>

Thanks