cancel
Showing results for 
Search instead for 
Did you mean: 

Creating Portal application without dynpage

Former Member
0 Kudos

Hi,

I have created a Dynpage portal component in SAP Netweaver Developer Studio. It is via the JDI server deployed and transported to our environments.

I had a performance issue because too much data was loaded to the client. I got rid of all HtmlB and EPCF stuff, so that load overhead is reduced to 10%.

I just want to remove the DynePage as well on server side. How do I do that?

Is it not true that this is the minimum code required for implementing a controller for my Development component?:

public class Controller extends PageProcessorComponent {

	public DynPage getPage() {
		return new ControllerDynPage();
	}

	public static class ControllerDynPage extends JSPDynPage {
		
		public void doInitialization() {
		}

		public void doProcessAfterInput() throws PageException {
		}

		public void doProcessBeforeOutput() throws PageException {
			this.setJspName("UserInterface.jsp");
		}
	}
}

Can I remove the Dynpage implementation, to contain an ordinary class as controller?

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi,

a) if you want to remove your deployed dynpage component, go to the administration console in your support desk select your par and remove it.

b) if you only need a simple controlller class use the abstract portal component. than you only have one class and can do your coding inside the doContent().

does this fullfill your approach?

Greets Jens

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi Flemming

You can remove a dynpro by enter in

\usr\sap\<instance_name>\JC<instance_number>\SDM\program

and run the bat file

RemoteGui.bat

That is a program similar to the SDM, there is a list with all the deployments listed in the Web Application Server

Search the name of the application that you want to undeployment and itu00B4s all..

If the answer helps you, regards

Josue Cruz