cancel
Showing results for 
Search instead for 
Did you mean: 

Copy BSP : SRMSUS to ZSRMSUS

Former Member
0 Kudos

Hi ,

I copied BSP Application SRMSUS to ZSRMSUS, Now

I want to add and remove links.

Please tell em how to do this ?

Thanks,

Asha

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Thanks

Former Member
0 Kudos

Hi, i'm facing the same request.

I've copied bsp SRMSUS to ZSRMSUS and now i'm able to modify source code, however i need to have active both bsp's (standar and z). When i set a breakpoint in SRMSUS I've noticed that it executes ZSRMSUS modified code  and i need each bsp keeps its own behavior.

Can u help me ???

Thx

Former Member
0 Kudos

A very simple example for adding links using HTMLB,

<%@page language="abap" %>
<%@extension name="htmlb" prefix="htmlb" %>
<htmlb:content design="design2003" >
  <htmlb:page title=" " >
    <htmlb:form>
      <htmlb:link id        = "Link"
                  text      = "URL to SDN"
                  reference = "https://sdn.sap.com" />
    </htmlb:form>
  </htmlb:page>
</htmlb:content>

If you want to delete the links, just find the appropiate link and comment it. They will be as shown below:

<htmlb:link id        = "Link"
                  text      = "URL to SDN"
                  reference = "https://sdn.sap.com" />

Regards

Kathirvel