cancel
Showing results for 
Search instead for 
Did you mean: 

Adding a new Custom Roadmap step

Former Member
0 Kudos

I was wondering if a new road map can added to the FPM Application. Suppose say, a ESS application has a road map steps of Overview, EDIT, Review/Confirm and Save. One more roadmap step has to be added at the end. In this step, user should be able to print an interactive form.

In the standard ESS application, this step is not available. Instead it is provided as a link in the "SAVE" step. This link opens up a Adobe Interactive Form. How to add a new ROAD MAP step so that once the user saves, next print should be automatically followed.

your help will be greatly appreciated.

Thanks!

Message was edited by:

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Thanks Srikanth.

That helps a lot. points were given.

former_member365727
Active Contributor
0 Kudos

Hi,

You can add any no. of Road Map steps at the end or in the middle...

Open the WebDynpro Component with prefix Cc (config component) go to Interface controller, in this check for the method <i>getROPState</i>....here u will find the Road Map steps defined...

Suppose u'r code looks like below:(with 4steps)

	ROPStep step1 = new ROPStep("1", "Overview",null);
           ROPStep step2 = new ROPStep("2", "Edit",null);
           ROPStep step3 = new ROPStep("3", "Review",null);
           ROPStep step4 = new ROPStep("4", "Save",null);

Add 5th step and include this new step in ROPStep as shown below:

(ROPStep is the one which is shown at the top with all the steps)

            ROPStep step5 = new ROPStep("5", "Print",null);
ROPStep[] rop = new ROPStep[] {step1, step2, step3, step4,step5};

Based on the perspective highlight the Step.