Standard BSP HCM_LEARNING

Hello Friends,
I have made some changes in the standard BSP application HCM_Learning. I made a z-copy of training.htm and want to call this z-copy instead of the standard.
In table LSPAGE_ALIAS_C i want to map this new ztraining.htm, so this page will be called. But I can't seem to see which alias to use for this page.
Any idea folks?
best regards Baljinder

Dear Baljinder,
We are having the same requiremnt to change the information page in HCM learning
Can you please explain in detail what you have done to get the desired result.
I mean how did you maintain LSPAGE_ALIAS_C and LS_PAGE_ALIAS tables.
Thanks a lot in advance,
Reagards,
Sai

Similar Messages

  • How to use iterator in standard BSP application BT115QIT_SLSQ

    Hi experts,
    I am new in BSP and my requirement is to put a checkbox icon beside the actions column (that has 2 existing icons already) of BT115QIT_SLSQ enhancement. I read a lot of article about iterators but I believe most of them are used in custom BSPs as we all know that standard BSP uses standard classes as well, which we cannot modify ourselves without access keys. Can someone help me how to use it in standard BSP? Or is there other much appropriate method?
    Thanks and Regards,
    Louie

    Dear Pradeep,
    Find the below link which explains a simple data download to excel from a table view.
    www.sapt echnical.com/Tutorials/BSP/Excel/Index.htm
    Try to avoid the way your using in the BSP application and it is abdicable to use the standard methods / class available like "cl_bsp_utility"
    Hope this will be helpful.
    Regards,
    Gokul.N
    Edited by: Gokul on Oct 8, 2009 9:57 AM

  • Enhancing standard BSP application by using WebDynpro components

    Hi all,
    We have standard BSP application delivered by SAP; we need to enhance the functionality and some new views to meet our requirement. We have planned to develop new things in WebDynpro ABAP and attach those to BSP.
    Is it good practice to use WebDynpro component instead customizing BSP application?
    If any body has fair knowledge on BSP and WDA, please let me know.
    Regards,
    Rajesh

    hi
    good
    BSP->
    It is a set of pages that represent a user interface (layout and page flow definition). The layout part of a page normally contains ABAP or JavaScript code which is inserted into the HTML structure. They can contain server-side scripting code in either JavaScript or ABAP. BSP applications use all the conventional ABAP technologies, such as Open SQL and internal tables, allowing developers to create Web pages quickly. This enables existing SAP logic, data structures, and interfaces to be directly used in Web applications.
    http://www.thespot4sap.com/Articles/SAP_WAS_BSP_Apps.asp
    WDA->
    Web Dynpro for ABAP or Web Dynpro for ABAP (WD4A, WDA) is the SAP standard UI technology for developing Web applications in the ABAP environment. It consists of a runtime environment and a graphical development environment with special Web Dynpro tools that are integrated in the ABAP Workbench (SE80).
    Web Dynpro offers the following advantages for application developers:
    ●      The use of declarative and graphical tools significantly reduces the implementation effort
    ●      Web Dynpro supports a structured design process
    ●      Strict separation between layout and business data
    ●      Reuse and better maintainability by using components
    ●      The layout and navigation is easily changed using the Web Dynpro tools
    ●      Stateful applications are supported – that is, if the page is changed and the required data remains intact so that you can access it at any time throughout the entire application context.
    Note that stateless applications are not possible.
    ●      Automatic data transport using data binding
    ●      Automatic input check
    ●      Automatic operation of the Web Dynpro application using the keyboard
    ●      User interface accessibility is supported
    ●      Full integration in the reliable ABAP development environment
    http://help.sap.com/saphelp_nw04s/helpdata/en/77/3545415ea6f523e10000000a155106/content.htm
    thanks
    mrutyun^

  • Converting a standard BSP field into an internal number range

    Hi Friends,
    I'm new to CRM BSP and have a requirement wherein i have to edit standard BSP field and convert it to an internal number range field.Can anyone plz help me out on this.
    Thanks in advance.
    Regards,
    Parvathy.

    Hi,
    This cant be done in configuration
    There are some enhancements for this control
    You please check those enhancements
    MGA00002 and MGA00003
    regards,
    santosh

  • Add a new tab in standard BSP

    Hi all,
    I want to a add new tab in the Opportunity standard BSP in the detail area 2 under the tab Partner . How can I do this without using the EEWB?
    I think that the right procedure is to create a new custom structure, a new custom event and a new custom class and then to set the new structure in the application set of the Opportunity standard application. Is it correct?
    Have you any suggestion about this?
    Thanks in advance,
    Sara

    Hi Sara,
    If you want to have an entirely new Tab which is not existing the SAP, then the procedure you mentioned is correct. If you wanna use any existing tab to display just activate the required tab in the corresponding Toolbar group of the application under CRMC_BLUEPRINT_C transaction.
    Regards,
    Shailaja

  • How to add the InputField to the Standard BSP

    Dear Experts, 
    How to add the Input field to the Standard BSP.Can anyone Expalin the Step by step procedure.
    Helpful answers will be rewarded.
    Regards,
    Ashok.

    Dear Ashok,
    You can create "Z" copies of both controller and View page in the standard BSP application itself and not by taking the "Z" copy of whole application, by right clicking on the standard application and click on "Create".
    You can design design your own page.
    Reward points if helpful.
    Thanks,
    Gokul.N

  • Call Standard BSP from another Standard BSP

    Hi all,
    I would call a standard BSP (my case ACTIVITY BSP) from another standard BSP (OPPORTUNITY BSP) when change a predefined fields.
    I try to implement the following source code into the method IF_CRM_BSP_MODEL_ACCESS_IL~READ of the extended class, but nothing happens:
        DATA: url TYPE string.
        DATA navigation TYPE REF TO cl_bsp_navigation.
        DATA runtime TYPE REF TO cl_bsp_runtime.
        CALL METHOD cl_bsp_runtime=>get_runtime_instance
          RECEIVING
            runtime = runtime.
        CALL METHOD runtime->create_url
          EXPORTING
            application_name = 'CRMD_BUS2000126'
          RECEIVING
            url              = url.
        CREATE OBJECT navigation
          EXPORTING
            runtime = runtime.
        CALL METHOD navigation->goto_page
          EXPORTING
            url     = url.
    The previous code is correct to call another BSP?
    And where can I implement the code?
    Thank you very much.
    Giulio

    Hi,
      I am sending the code for the layout where you can write code to call a page or controller of a bsp from page.
    <%@page language="abap"%>
    <%@extension name="htmlb" prefix="htmlb"%>
    <htmlb:content design="design2003">
      <htmlb:page title = "first page ">
        <htmlb:form>
          <htmlb:textView     text          = "Material Details"
                              design        = "EMPHASIZED" />
          <br>
          <br>
          <htmlb:textView     text="Material"  design="STANDARD" ></htmlb:textView>
          <htmlb:dropdownListBox  id="Matnr"  table="<%= it_mara1%>"  nameOfKeyColumn="Matnr"
          nameOfValueColumn="Matnr"></htmlb:dropdownListBox>
          <br>
          <br>
          <htmlb:button       text          = "Press Me"
                              onClick       = "myClickHandler" />
           <br>
           <br>
           <htmlb:link id="link" text="Click Here"  reference="http://iga03019b.in.intelligroup.com:8000/sap/bc/bsp/sap/z_azaz_bsp_app6/display.htm">
           </htmlb:link>
        </htmlb:form>
      </htmlb:page>
    </htmlb:content>
    You write code for what to be displayed in the controller or oninputprocessing of a page of a called bsp.
    Regards,
    Azaz Ali.

  • Changing a standard BSP application

    Hi,
         We are using a SAP provided standard BSP application. We need to replace the header.jpg with client's specific JPG and also need to change text of some lables. Can anyone guide me how to do these things.

    Hi,
    You can create a "Thema". See below.
    http://help.sap.com/saphelp_nw04/helpdata/en/46/bb1844ab4811d4968100a0c94260a5/content.htm
    Regards,
    Alexandre

  • Modifying standard BSP pages

    Hello,
    I would like to add some functionality (precisely some Javascript code) to a standard BSP page. As it is a SAP standard, the system doesn’t allow to modify it as normal BSP page. Is there any possibility to attach some code or functionality to BSP page without modifying the code, I mean something similar to, for example, enhancements, user-exits in R/3 so that we could activate and insert the code?
    Thanks in advance for any hint.
    Regards,
    Anna

    Hi,
    I would not recommend to change standard SAP BSP pages. When there is an update or upgrade concerning this pages, you will get problems and will need to SPAU till the end of days (see also http://help.sap.com/saphelp_nw2004s/helpdata/en/60/d6ba7bceda11d1953a0000e82de14a/frameset.htm) and eventual modify things again, which isn't a pleasant job at all.
    I would say that you make a copy to a Z application and work further on that one.
    Eddy
    PS. Reward the useful answers and you will get <a href="http:///people/baris.buyuktanir2/blog/2007/04/04/point-for-points-reward-yourself">one point</a> yourself!

  • Enhancinig a standard BSP application/page (/SCF/UIBSP)

    Hi Experts,
    We have a requirement to enhance stanard BSP page (application /SCF/UIBSP, ICH, SCM system). I understand that we can't enhance stanard BSP pages like we do in R/3 or ABAP. Please confirm.
    Incase I need to copy the entire application to a Z/Y program, I would like to know if I have to take any precautions. I am little concerned, as this is the main ICH page delivered by SAP.
    Thank you for your time.
    Regards,
    Sudhakar Karumuri.

    Hi Pavitra,
    Thank you for your inputs.
    Yes the appliation we are about to enhance used MVC design pattern. So I hope I can use the program u suggested.
    Below is our requirement.
    We have a Standard BSP application, /SCF/UIBSP called from program /SCA/ICH_START. This BSP application has a Tree View. We have to add one more node in that tree and when clicked on it we need to display a page with some static text and a button. And when User clicks on that button we need to call an RFC from our R/3 system and get data from it and download the same data into a local system(of user).
    If you can share your email ID I would like to forward some screen shots.
    Thank you for your help.
    Regards,
    Sudhakar Karumuri.

  • Do we have Enhancement option in Standard BSPs?

    Hi,
    Do we have Enhancement option in Standard BSPs instead of Coping the standard one and modifying if?
    If no, why SAP not provided this option?
    Regards,
    ...Naddy

    Hi Naddy,
    when you use the ABAP  Workbench to build a BSP application it is unlike most of the other ABAP  application builders. This is because you are not actually building the end ABAP  class, you are filling out a template and the class gets built when you activate the BSP page.
    This is similar to SmartForms, where you use the SmartForm designer tools to build the form but when you activate it is creates a function module that is executed to run the form. It is also similar to many of the code-building wizards that are becoming more prevelant.
    The Enhancement framework is designed to hook into enhancement points inside ABAP  programs. So to work you would have to attach the enhancement to an enhancement point in the generated ABAP  program.
    While this is possible, the next time you activate the BSP (or SmartForm) it could quite possibly generate a different ABAP  program with a different name. Therefore the enhancement would no longer be attached to your BSP.
    Cheers
    Graham Robbo

  • Customer exit for Custominzing standard BSP applications?

    Hello everyone,
    I'm getting start in BSP applications and the only thing that I need to do at the moment is to write a LOG in a table when user goes to a Purchase Order detail view, print or download.
    Is there any way to insert a code in the standard BSP application, like an exit?
    Thanks!

    Hi Regis,
    Where do you want to put your customer exit on ?
    Do you have a specific BSP application in mind ?
    Usually, people code their own BSP applications, that is why you don't find customer exit. It is only relevant for standard code.
    <i>About the aspect of writing a log it is more pure ABAP-oriented so you might find a better audience in the ABAP programming forum.</i>
    Best regards,
    Guillaume

  • Enhancement to standard bsp application

    Hi experts,
    i have a req that i need to add one button in standard BSP Application page and need to code as per the requirement.
    can somebody tell me the procedure
    Thanks,
    Inna

    hi
    good
    go through the foloowing links which ll help you to solve your problem,
    /people/sergio.ferrari2/blog/2007/04/06/bsphowto--customizing-the-design-of-system-logon-page-in-netweaver-04
    http://www.sap-hefte.de/download/dateien/828/054_leseprobe.pdf#search=%22ADD%20A%20BUTTON%20IN%20STANDARD%20BSP%20APPLICATION%20%20%2CSAP%22
    thanks
    mrutyun^

  • Standard BSP application

    Hi! All,
    I want to know that is there any standard BSP application in SAP or not, oreference purpose only.
    Need urgently.
    Thanks.

    Hi,
    Open this link for bsp tutorial:
    <a href="https://wiki.sdn.sap.com/wiki/display/BSP">BSP Wiki</a>
    <a href="/people/sap.user72/blog/2004/09/07/bsp-howto-exploring-bsp-development-and-the-miniwas-620">Weblog</a>
    And from your system you can open several BSP Tutorial using SE80, like:
    tutorial_1
    tutorial_2
    tutorial_3
    tutorial_4
    tutorial_4_MVC
    Regards,

  • Modifying standard BSP.

    Hi Experts,
    Can we add Custom Field on PO Details in SNC(5.1).The field will be a Display one which would fetch data from R3.
    How can we do this modification as PO details application is standard BSP.Which is the BSP for Purchase Order in SNC used.Please advice how can this be achieve.
    Thankx in advance!
    Regards,
    Farzana

    Hi,
    I dont have idea about your standard application. But customization can be done through a report program BSP_CUSTOMIZE.
    Where in u can the copy the views that u need to modify. So not in the Z BSP application u will have the views to be modified. Again using the same report program activate the customizing application
    Thanks and Regards
    Veda

Maybe you are looking for

  • I would like to buy an app in the us store

    How can I buy an app on the us store with a Canadian visa?

  • Unexpected result with RELATE

    The following query returns the distance between 2 points as 144.120474 meters: select sdo_geom.sdo_distance( MDSYS.SDO_GEOMETRY(2001, 8307, MDSYS.SDO_POINT_TYPE(-46.688771, -23.625872, NULL), NULL, NULL), MDSYS.SDO_GEOMETRY(2001, 8307, MDSYS.SDO_POI

  • Launching JavaHelp with a modal dialog

    Hi, I am trying to launch JavaHelp from a modal dialog, which consists of a JTabbedPane with 2 tabs. My code right now checks to see which index is selected, then sets the help ID accordingly. However, when I run my application, JavaHelp simply does

  • 2 message areas in tab strip

    Hi, I am facing the following problem: My application has 2 tabs in a tab strip. each tab hosts 1 view. I need to have 1 message areas in each view. However, if I define 2 message areas, one for each view, all the messages I raise, go to only one of

  • Best way to make a slideshow for a wedding?

    I am trying to make a slideshow for a wedding. What is the best way to make this?