Question:
Hi,
we've 2 variables for Current CalQtr (var1) & reference CalQtr (Var2) in planning folder. Current layout gets data as per the current CalQtr variable. a planning function updates the current layout, Based on the reference CalQtr variable value.
Assume both variables have initial values set.
Following sequence steps doesn't get desired result.
1.Execute planning folder (gets data as per current calQtr)
2. Execute planning function updates current layout data as per reference CalQtr data.
3. change "reference calQtr" variable value and execute same planning function doesn't get desired results.
Following sequence steps does get desired result.
1.Execute planning folder (gets data as per current calQtr)
2. Execute planning function updates current layout data as per reference CalQtr data.
3. change "reference calQtr" variable value and save the variable selections.
4. come out of the planning folder
5. execute planning folder.
6. Execute planning function updates current layout data as per the new reference CalQtr variable value.
why it is happening? How do i make the system to take newly entered values?
is it anything to do with not clearing buffer values as am dealing with nearly 6 user exit variables with function modules.
I appreciate your input.
Answer:
Have u tried
l_buffer_call TYPE boole-boole VALUE ''.
instead of
l_buffer_call TYPE boole-boole VALUE 'X'.
?
Answer:
Hi There,
thank you so much.
it is working now after that change.