Question on NWDI and DC for web dynpro for ESS components

Hi
I am working on installing NWDI and mostly we will be working with ESS & MSS webdynpro customization for NW2004s.
I have a doubt, now for customizing the web dynpro components of ESS is it just enough to create the SC and track and once doing this will the developers get to the DC's of ESS?
Or initially do I have to download the editable part of the web dynpro components and deploy it in the server?
I am not sure how the web dynpro components are made available for the developers. Please help me understand.
Thanks in advance
regards
-sm

Hi
Hope this link might help:
https://websmp206.sap-ag.de/~form/handler?_APP=01100107900000000342&_EVENT=REDIR&_NNUM=872892
But please specify the EP version .
Thanks & regards
Arun Singh

Similar Messages

  • Differences between ITS based and web dynpro based ESS

    Hi all,
    What are the main differences between ( in functionality ) for ITS based and web dynpro based ESS.
    I know a few
    Underlying technology
    ITS ESS had inbox concept, where as web dynpro based ESS/MSS has UWL concept for approvals.
    The time statemment in ITS uses smart form while we can use Adobe document services for time statement in ESS 2004.
    Funcitonality
    There was not collective time approvals option In ITS ESS ( not even in ESS 2004 ) but ther is a collective time apporvals in ESS 2004s
    Am not pretty mich intrested in look and feel,  or the overview page concept but any additional functionality and a shift in the technology used.
    Please add.
    regards
    Sam
    Message was edited by:
            sameer chilama
    Message was edited by:
            sameer chilama
    Message was edited by:
            sameer chilama

    answered

  • Widen a Standard WEB Dynpro from ESS package

    Hi,
    Implementation of Employ Self-Service...
    The Package is provided of application to deploy in WEB As but the customer will be extend some WEB Dynpro owner ESS Package.
    Can I do this?
    Thank everybody.

    Hi
      Do you want to modify the existing ESS to match your requirements.
    If so what is the amount of customizations you are looking at. As far as i know if there are many changes i would suggest you will have to make the entire module a custom development.
    I dont think it would be advisable to change the standard SAP provided ESS to suit your requirements until SAP allows us to do so to their standard package.
    regards
    ravi

  • Question on NWDI and how to start Projects correctly..

    Hello @ All,
    I´ve read and done the following Tutorial
    and now I have a few questions:
    1)Every time when I want to create a new SC, do I need to create a new Product too?
    2)Is it possible to create one Product with 3 Web Dynpro SCs (i.e. SC_A, SC_B and SC_C), where SC_A is using SC_B and SC_C; and SC_B is using SC_C?
    I thought, that its the best way to create the Product in one track.
    Thank you for any answers!!!
    Regards Mehmet.
    Message was edited by: Mehmet Ucar

    Hello Sidharth,
    thank you for quick reply. I´ve read some topics about similar questions and many people also mention, that one should use SCs sparingly, because CBS only builds and CMS only deploys DCs that are updated.
    In help.sap.com, I´ve read that SCs are helpful to group DCs with similar functionality together.
    In return to my problem, the functionality of SC_A and SC_B is within one Business Object, so I can merge them into one SC. The functionality of SC_C is more common even for future developments.SC_C Is more like a framework of functionalities, in which things like value helps and so on are grouped into DCs.
    So do you think, that I should reduce the amount of SCs from three to two?

  • Set Security Question & Answer using UME API in Web dynpro Java

    Hi Experts,
    I;ve developed a Web Dynpro java application to create a user in UME.
    I am able to set all the user account related attributes but I am not able to set the security question and answer as I do not see any attribute for the same.
    Can anyone please suggest how to set the Security question and answer in UME?
    This is required so that if the user wishes to reset his password / forgets password, we can ask him the security question which he selected at the time of registration.
    Please let me know if it can be achieved at the code level and whether UME API supports security question and answer or any such attribute.
    Also, if no such attribute is present by default in UME at the moment; can we create/configure some custom attributes in UME and store the security question and answer into those attributes. This would serve our purpose.
    Kindly assist.
    Regards,
    Anurag

    Hi,
    Thanks a lot for the reply!!!
    I have one doubt here:
    You've mentioned the below code to fetch the security questions in your reply:
    IUser user = WDClientUser.getCurrentUser().getSAPUser();
    String CUSTOMER_NAMESPACE = "com.sap.security.core.usermanagement";
    String attmotname [] = user.getAttribute(CUSTOMER_NAMESPACE,"MotherName");
    String attlucknum [] = user.getAttribute(CUSTOMER_NAMESPACE,"LuckyNumber");
    String attmobnum [] = user.getAttribute(CUSTOMER_NAMESPACE,"MobileNumber");.
    But this would be only applicable when the user has already logged on to the portal as it uses "WDClientUser.getCurrentUser().getSAPUser();" code.
    On the contrary, I want the security questions and answer to be accessed even when the user is not logged on to Portal so that based on the question & answer, the user can reset his password.
    Please suggest, how can we achieve this and where and how to set the custom attributes for the same?
    Do we have to set the Publicly Viewable Custom Attributes present at location you mentioned in your reply?
    Also, if yes; please let me know how to set the custom attributes?
    Thanks & Regards,
    Anurag

  • Problem in getting Portal Mapped user and password in Web Dynpro iView

    I am developing a webdynpro iview.My app need to read mapped user and password form a system in Portal runtime.
    I used the following codes in my Web Dynpro java program:
         IWDClientUser user = WDClientUser.getCurrentUser();
         IUser iuser = user.getSAPUser();
         IUserMappingService iums = (IUserMappingService)WDPortalUtils.getServiceReference(IUserMappingService.KEY );
    //     IUserMappingService iums = (IUserMappingService)
    //     PortalRuntime.getRuntimeResources().getService(IUserMappingService.KEY);
         IUserMappingData iumd = iums.getMappingData (systemalias, iuser);
         Map map = new HashMap ();
         iumd.enrich(map);
         String userid = (String)map.get( "user" );
         String pwd = (String)map.get ("mappedpassword");
    I've add a sharing references in project properties,the value is "PORTAL:sap.com/com.sapportals.portal.prt.service.usermapping.IUserMappingService"
    But when I run the iview on my Portal, it goes wrong, the message is:
    com.sap.engine.services.deploy.container.DeploymentException: Clusterwide exception: Failed to prepare application ''local/HomePage'' for startup. Reason= Clusterwide exception: Failed to start dependent library ''com.sapportals.portal.prt.service.usermapping.IUserMappingService'' of application ''local/HomePage''. Status of dependent component: STATUS_MISSING. Hint: Is the component deployed correctly on the engine?
        at com.sap.engine.services.webdynpro.WebDynproContainer.prepareStart(WebDynproContainer.java:1490)
        at com.sap.engine.services.deploy.server.application.StartTransaction.prepareCommon(StartTransaction.java:231)
        at com.sap.engine.services.deploy.server.application.StartTransaction.prepareLocal(StartTransaction.java:184)
        at com.sap.engine.services.deploy.server.application.ApplicationTransaction.makeAllPhasesLocal(ApplicationTransaction.java:365)
        at com.sap.engine.services.deploy.server.application.ParallelAdapter.runInTheSameThread(ParallelAdapter.java:117)
    Anybody can help me?And are there anyother methods can get mapped user and password of Portal systems in Web Dynpro JAVA.

    Hi Wayne,
          Did you added com.sap.security.api.jar to your webdynpro project. if not follow this steps.
    1. Right-click the project in Eclipse or SAP NetWeaver Developer Studio.
    2. Select Properties.
    3. Choose Java build path -> Libraries -> Add Variable -> Select variable WD_RUNTIME -> Extend -> com.sap.security -> lib -> com.sap.security.api.jar.
    I hope this should solve your problem.
    Regards, Suresh KB

  • Pro's and Con's Web dynpro ABAP

    Hi all,
    Could someone please give some pro's and con's (technical) with Web Dynpro for ABAP compared to Web Dynpro for Java?
    Thanks,
    Max

    hi
    good
    go through these links,hope these ll help you to give you roms idea so solve your probelm
    http://wendtstud1.hpi.uni-potsdam.de/sysmod-seminar/SS2005/elaborations/13-WebDynpro-Navigation+Components.pdf
    http://www.sap-press.de/download/dateien/815/sappress_web_programming_inabap2ed.pdf
    thanks
    mrutyun^

  • Drag and Drop between Web Dynpro Tables on Cell Basis

    Hi Experts,
    I need to develop a Drag and Drop Functionality as follows:
    I have two tables. I want to drag a row of the first table and drop it in a particular cell of the second table.
    Is it possible to implement this using the Web Dynpro Drap and Drop Functionality?
    If not, does anybody have an idea of how to implement this using other concepts (Flash Integration, Building up a Grid of Images and defining those as drop tragets, etc..)??
    Valuable Advice is highly appreciated!
    THANKS, Johannes

    Thanks for the Video.. It gives some information about Drag and Drop, but still, it does not say what I need to know.
    Again:
    I need to know if there is a way to drag particular cells in a Web Dynpro Table to other locations in that same table. Plus: I need to know if there is a way to drag and drop rows of one table into particular cell of another table.
    Similar to what we do in our Outlook Calendars: We have a week in view and we see our appointments as blocks within that week view. Now, we can drag and drop these blocks to other locations. That is what I need to implement!
    Does anybody have an idea?
    THANKS, Johannes

  • Copy from clipboard and paste in Web Dynpro table

    Hi
    I have a client requirement where the client wants to copy the table from some already existing application and paste the data  directly in web dynpro java table.  It is similiar to copy the data from clipboard and paste it directly in web dynpro table.
    I would like to know is it feasible. If yes, please provide some links or guide me on achieving the same.
    Thanks
    Harsimran

    Hi
    I think one way you can do it,
      1 . try to export the table dato to excel sheet.(copy and paste to excel)
       2. Importing the excel data to WD table.
      for more details about reading excel data, there is many blog on sdn just check it.
    Hope will help you
    Thanks

  • Timezones and dates in Web Dynpro

    Hello all,
    We have a web dynpro application and it seems to be showing different dates for different users in our application.  I am trying to figure out how web dynpro determines which locale to use (or timezone) when displaying.  We are exposing the WD through EP 6.0 SP2, but I do not think there are any locale specific settings there.  The only thing I can think it is doing is for users that do not have a timezone specified it is using UTC instead of the system timezone.  Does anyone know definitevely what WD uses to display dates?  Also, is there a way we can force all dates shown in WD to show in a particular timezone (i.e. PST)?
    Help is appreciated.
    Thanks,
    Dustin Gronso

    Hi Dustin,
    You can show the time in a specific timezone using the following code :
    TimeZone zone = TimeZone.getTimeZone(("PST");
    DateFormat dateFormat = DateFormat.getDateTimeInstance();
    dateFormat.setTimeZone(zone);
    String time = dateFormat.format(Calendar.getInstance().getTime());
    Hope this helps,
    Best Regards,
    Nibu.

  • Custom Enumeration Type and Dropdown in Web Dynpro Java

    Hi Everyone!
    I have developed a custom enumeration type named com.agile.pmg.politicrh.customtypes.status.
    I can see correclty the dropdown with the enumeration in Service Browser with all values I have put, but I need to be able to see these values in web dynpro too. But if I create a attribute of type com.agile.pmg.politicrh.customtypes.status in web dynpro and map it to a dropdown, it doesnt show anything. The enumeration is empty.
    Does anyone know what is the problem?
    Bests Regards!
    Luiza

    Hi,
    Check out this link, might be of help
    [https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/504540a4-fd0d-2a10-7c8e-c88289cf6457|https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/504540a4-fd0d-2a10-7c8e-c88289cf6457]
    Regards,
    Ashutosh

  • Modification of Web Dynpro ABAP ESS application

    Hi,
    I'm familiar with the modification process of ESS Web Dynpro Java applications using NWDI. However I have to adda button a view in the "Create Expense Report" iView which is a Web Dynpro ABAP application from ERP 6 Ehp3. On the click of this button a pdf report should be shown. The Web Dynpro ABAP application is FITE_EXPENSES.
    Can anyone tell me what is the process for modifying ESS WD ABAP code? Do I copy and create a new application and then modify?
    I'm not getting any documentation on this on SDN or SAP Help.
    Regards

    hi,
    ->You dont have to copy and create new application.
    -> You can use Enhancement Framework Technology.
    -> Look out for Blogs by Thomas Weiss. They are very useful.
    -> Easiest way out to create new button would be as :
         -> Put your application in display mode.
         -> There is button for Enhancement in the tool bar (Spiral shaped).
         -> Press that button and create a new enhancement.
        -> Now add any UI Element you want to add.
         -> In Enhancement Framework we do have some Post Exit and Pre Exit Methods.
        -> Some Enhancement Points are already given by Standard SAP.
       -> You can write the logic there and activate the Enhancement.
    Check out this link for basic idea about enhancement.
    http://help.sap.com/saphelp_nw04s/helpdata/en/0e/4d3e42fc94aa04e10000000a1550b0/frameset.htm
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/9cd334f3-0a01-0010-d884-f56120039915
    I hope above links will be helpful.
    Thanx.

  • Modification of Web Dynpro ABAP ESS Travel application

    Hi,
    I'm familiar with the modification process of ESS Web Dynpro Java applications using NWDI. However I have to adda button a view in the "Create Expense Report" iView which is a Web Dynpro ABAP application from ERP 6 Ehp3. On the click of this button a pdf report should be shown. The Web Dynpro ABAP application is FITE_EXPENSES.
    Can anyone tell me what is the process for modifying ESS WD ABAP code? Do I copy and create a new application and then modify?
    I'm not getting any documentation on this on SDN or SAP Help.
    Regards,
    Manish

    Please try to avoid modification of WD4As. This is the last resort!
    FITE_EXPENSES uses the WD-Component FITV_FPM_START, there it has the Application Configuration "FITE_EXPENSES". The Application COnfiguration is mapped with the Component Configuration "FITV_FPM_EXPENSES" (this is just for your interest how things are mapped here).
    Bottom line the Application uses the WD-Component FITE_VC_GENERAL_DATA you can open it via TA SE80 as above poster suggested. Here. navigate to Views and open the View GENERAL_DATA_VIEW. Navigate to Tab METHODS, open Hook-Method WDDOMODIFYVIEW. Here you can make an implicit enhancement at the end of the method and dynamically generate a Button in runtime, this would be a cleaner approach than hard modification of the standard Layout.. I reccomend you to consider this!
    best regards, Lukas

  • IMP: Read this WIKI and search for ESS MSS issues before posting any thread

    Here is the link to the new WIKI topic area ESS MSS
    http://wiki.sdn.sap.com/wiki/display/ERPHCM/HCM+ESS
    and
    http://wiki.sdn.sap.com/wiki/display/ERPHCM/HCM+MSS
    Feel free to add FAQs, Guidelines, Links and everything of interest for Human Capital Management into this WIKI. With your help this will become a valuable resource for the HCM community for ESS MSS
    I would appreciate if you search in the WIKI and earlier threads, before posting a  new thread
    For Beginners, Please refer the ESS/MSS customisation Guide here
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/108c31e7-b6a7-2d10-3692-c1a9f7a5c4dc?QuickLink=index&overridelayout=true
    Edited by: Siddharth Rajora on Dec 19, 2011 8:35 PM
    Edited by: Siddharth Rajora on Dec 19, 2011 8:36 PM

    teshlachris,
    iTunes, like other applications, will sometimes have issues trying to install from a different admin user than the one used to first install it.
    Did your son install iTunes with a different account? If so, your previous post did not include the fact your son had previously installed iTunes, or I would have suggested trying the install while logged in under his account.
    Hope this helps,
    Nathan C.

  • Listbox and POV on WEB Dynpro

    Hi guru.
    Can it is possible create an help in POV for a listbox field on WEB ABAP Dynpro?
    If it is possible, can I realize it?
    Regards
    Angela

    Hi!
    Would you please be so kind and describe your problem in a bit more clear words?
    Regards,
    Volker

Maybe you are looking for

  • Problems Syncing New iPod Touch 5g

         Ever since I got my new iPod a few days ago I have been having an extremely hard time syncing my iPod. The first time I went to plug it in to sync, everything worked perfectly and all my songs and videos from my previous iPod were on my new one.

  • Why can't I make call to parse HTML from inside Thread?

    This is driving me crazy. With a defined HTMLEditorKit.ParserCallback object "callback", I am attempting to parse an HTML document retrieved from a URL by using: new ParserDelegator().parse(new InputStreamReader(url.openStream( )), callback, true); I

  • Why is my ipod not playing music through a docking station?

    Why is my ipod touch not playing music through a docking station?

  • Problem in Address update for storage location via LSMW

    I am trying to update the address of storage location thru LSMW, Normally when i run OX09 i get the "dialogue structure' in LHS panel but when I do the recording of OX09 in LSMW, I am not getting the "Dialogue structure" LHS panel & hence I can't go

  • Photoshop CS5 Qualified Graphic Cards

    Updating computers to Windows 7 64bit with a new graphics card and need to know Adobe's recommended graphic cards for Photoshop CS5. Is there any information regarding this. They have them listed for Photoshop CS4. I would like to be like a good carp