Skip to main content
Solved

From FSM6u7 to u25 - Where did MPM 'perform_create_contract_bill_schedules_for_contract'

  • May 11, 2024
  • 2 replies
  • 35 views

Forum|alt.badge.img+9

We have used mpm ‘perform_create_contract_bill_schedules_for_contract’ many times to regenerate bill schedules after doing mass contract pricing updates using an import map.  It would appear that the mpm has been deprecated from u6 to u25.  What is it replaced by?

Thanks,

Richard

Best answer by SanjanaDZ

Hi @RiSpence,

In default, FSM Baseline ‘perform_create_contract_bill_schedules_for_contract’ is not allowed to import.
If you want to add it to the import/Export list, you can set the allow_import flags on the table metadata to Y. Then it will display in the list.

 


To check the flag status: -
select allow_import from metrix_perform_def
where perform_name = 'perform_create_contract_bill_schedules_for_contract' (This should be N)

Find the below query to update the allow_import flag


Update metrix_perform_def set allow_import = 'Y'
where perform_name = 'perform_create_contract_bill_schedules_for_contract'

2 replies

SanjanaDZ
Sidekick (Employee)
Forum|alt.badge.img+8
  • Sidekick (Employee)
  • 19 replies
  • Answer
  • May 14, 2024

Hi @RiSpence,

In default, FSM Baseline ‘perform_create_contract_bill_schedules_for_contract’ is not allowed to import.
If you want to add it to the import/Export list, you can set the allow_import flags on the table metadata to Y. Then it will display in the list.

 


To check the flag status: -
select allow_import from metrix_perform_def
where perform_name = 'perform_create_contract_bill_schedules_for_contract' (This should be N)

Find the below query to update the allow_import flag


Update metrix_perform_def set allow_import = 'Y'
where perform_name = 'perform_create_contract_bill_schedules_for_contract'


Forum|alt.badge.img+9
  • Author
  • Sidekick (Customer)
  • 27 replies
  • May 14, 2024

Thank you Sanjana.  I have successfully restored these functions.

-Richard