I misunderstand what project do you use. Let's make sure that we are talking about the same thing.
Do you use whole ACIM project from SKD package located in
..\SDK_2.7.0_HVP-KV46F150M\boards\hvpkv46f150m\demo_apps\mc_acim\iar ?
Do you use freemaster file from SDK package located in ..\SDK_2.7.0_HVP-KV46F150M\boards\hvpkv46f150m\demo_apps\mc_acim\acim.pmp ?
Or do you only copy some new project file and freemaster file to old project?
1. I found that V/Rpm factor is accessible only in "Tuning mode = EXPERT" . Make sure that you have set MCAT in EXPERT tunning mode, becasue in BASIC tunning mode the V/Rpm factor is not accessible.

2. I found that if acceleration parameter is changed then you must click to "STORE DATA" and then switch to "OUTPUT FILE tab" and click to "generate configuration file" (this will generate new m1_acim_appconfig.h file beacause same calculation must be done in MCAT script to correctly set speed ramp) and then rebuild whole SW and load to MCU. Because if you change acceleration parameter and then click to "update_target" then the speed ramp variable in MCU is updated incorrectly.
The "UPDATE TARGET" feature will not be accessible for this acceleration parameter which needs other calculations in MCAT script, this will be fixed in next SDK release.

3. I found that if scalar required speed is set then, speed is ramping up and motor start spinning up (correct behavior). BUT if the speed is set to zero or some fault is generated and then new value of scalar required speed is set, then the speed ramp is not working and the motor is starting directly from zero rpm to required rpm without speed ramp. This is because speed ramp variables are not cleared if the motor stopped from previous run.
I know this is bug, but we will fix it in next SDK release. The workaround is the resetting of MCU every time if new scalar required speed is set. Or you can fix this bug by adding this lines of code:
g_sM1Drive.sScalarCtrl.fltSpdMeRamp = 0.0F;
g_sM1Drive.sScalarCtrl.sRampParSpdMe.fltState = 0.0F;
and paste it into this function:
static void M1_ClearFOCVariables(void)
which is located in m1_sm_ref_sol.c file.

Try the steps I described. Set the low speed ramp (low acceleration parameter for example 100 rpm/sec) and try it in the way that I described in point 2. and 3.
4. Do you have correctly set pole-pair parameter [pp] for your motor? Pole-pair parameter is crucial parameter.
5. Changing the IN parameter has no effect in scalar mode because scalar mode is open loop control without PI regulators, so the current limit works only in speed FOC mode.
Thanks to you, we were able to find bugs in our software.