Team work ( DC Development, Integration )

HI,
I am the only one who is working in EP Development .  Now we are planning to take some people into the same field.
So ! I need to have Idea about how the team work can be done in EP Development. How to distribute the work and and ask the others to develop the components.
Then ! Later how to integrate all the components from different machines to make the application function all the components .
Can anyone help me in this ?
thanks
Jyothi.

hi,
u need to know about the Netweaver Development Infrastructure
which enables us to work in a team.
it has got 4 main components
DTR design time repository
CBS Component build service
CMS change management service
and the SLD System lanscape directory.
these components allows us to share the content between the team members,
build our components centrally,
maintain versions of the source code etc..
u have to be familiar with following topics
Componentization.
NWDI
DCs (Development Components)
refer this link for examples
https://www.sdn.sap.com/irj/sdn/advancedsearch?query=componentization&cat=sdn_all
Regards,
Satya.

Similar Messages

  • Team work in JDeveloper

    Hi,
    Is there any team-work mechanism with a repository that is available with JDeveloper?
    Karthik

    Karthik,
    You can use CVS or Oracle Repository, or wait for
    the promised VSS-integration.
    Personally, I'd go with CVS.

  • Team working in JDeveloper 10g

    All,
    I wondered if any of you had any thoughts or suggestions on team working in JDeveloper?
    I've just completed my first JDeveloper project and had the benefit of being the sole developer. We're now looking at doing some more projects with JDeveloper and could do with some pointers regarding how to set up the structure of an application so that multiple developers can work on it. We use Serena ChangeManager for version control, so any suggestions that are compatible with this would be especially welcome!
    Thanks!
    (p.s. I'd also prefer that you stick to the "current" production release of JDeveloper - there seems to be a tendency in here for people to recommend the latest, greatest version (i.e. 11g), in spite of it only being a technology preview. I wouldn't ride in a pre-production airliner, so why should I do real, production work in an unfinished IDE?)

    Cliff,
    I have a few to start the discussion going.
    1). Use your version control system. Even if there is no JDev plugin, use it! (this is a no-brainer, of course).
    2). Put the JDeveloper artifacts in version control too. By this, I mean the jpr and jws files.
    3). Ensure everyone uses the same coding style preferences, otherwise you can get lots of "bouncing checkins" because one guy likes 3 spaces and some gal likes 4 for indents
    4). Be aware of potential issues when checking in Business Components to source control. For example, if you check in the xml file associated with an AM, but not the java files, you're in for some fun!
    5). Especially early in the development cycle, if you are using ADF Business Components, the Application Module can become a point of contention among developers. You may want to think about having one person control them - or if not - be sure you have good lines of team communication when they are being changed. It's not the easiest thing to do to deal with merging AM configuration files by hand.
    These are some of the ones that jump to mind.
    John

  • Skipfinalsummary works with MDT integrated TS in Config manager

    Hi Team,
    SkipFinalSummary=YES and FinalAction=Reboot does work with MDT integrated TS in Configuration manager?
    or if do we have any alternative variables that provides similar functionality with MDT integrated TS in config manager ?
    Any pointers will be appreciated.
    Regards,

    The answer can be found in the MDT docs. There is a table that contains each variable and if it will work in what scenario.
    Torsten Meringer | http://www.mssccmfaq.de

  • How does Creative Cloud for teams work with staff who work in two locations ie in the office/home

    How does Creative Cloud from teams work with staff who work in two locations i.e. in the office and home?

    There is no difference please be aware that each login is provided with two activations however.  If you wish to have a computer at both work and home activated though that is perfectly fine as long as your employer is ok with using company software at home.

  • Workflow : not able to find team working option in SWDD 4.7

    Hi,
    In ECC 6, the username of latesh aditional changes done to a workflow can be find out by option team working. I  am not able to find the same option in 4.7.
    Is it not available in 4.7? can somebody help here.
    Thanks,

    Hi,
    Check sap Note 1838654.may be it will help you.
    As you mentioned you are on  BO 4.0 Patch 11 it is very low patch.More possibilities these are bugs and SAP identified and fixed in later patches.
    Better to upgrade on latest service pack and see.
    Regards,
    Amit

  • SSIS package works in development environment but fails when job scheduler executes, file path invalid

    SIS package works in development environment but fails when job scheduler executes, file path invalid
    Relatively simple package to get OLE-DB connection to MS FoxPro 9.0 DB
    The failure in the job log states that the path is invalid its a network path (\\192.168.1.xxx\foldername) this has been run several ways with the remote computer being mapped as a network drive and through the \\ notation described above.
    Thinking it was a security issue between the SQL agent account and my account I tested by subsitution myself as a proxy account for the agent when running this job, again same result failed on network path.
    One issue I see is that the remote computer is running Server 2000 (legacy software incompatable with newer versions) 
    Is it possible that this is a security issue, since if i understand correctly the current MS domain security model didn't exist until Server 2003.

    Hi REIData,
    Have you got the issue resolved? Based on your description, please make sure the target folder is shared properly. If the computer on which the SQL Server Agent job runs doesn’t join the domain as the server that hosts the shared folder, you have to share
    the folder with everyone by adding “Everyone” to the people list on the File Sharing page of the folder and assign "Read/Write" permission to it.
    Regards,
    Mike Yin
    TechNet Community Support

  • Crystal 2008 EVALUATION broke Visual Studio Team System 2008 Developer Ed.

    After installing the Crystal 2008 EVALUATION, I can no longer edit Crystal Reports in Visual Studio Team System 2008 Developer Edition. When I open the report I get a blank grey screen instead of the designer.
    Please help.

    Hi,
    I'm half way there. I can edit the reports in Visual Studio now. So thanks for that.
    My other problem is when I try to construct a report using the ReportDocument class I get this exception from the constructor:
    An error has occurred while attempting to load the Crystal Reports runtime. Either the Crystal Reports registry key permissions are insufficient, or the Crystal Reports runtime is not installed correctly. Please install the appropriate Crystal Reports redistributable (CRRedist*.msi) containing the correct version of the Crystal Reports runtime (x86, x64, or Itanium) required.  Please go to http://www.businessobjects.com/support for more information.
    I'm on Vista Ultimate, 64 bit.
    I installed Crystal 2008 SP1. Then I downloaded cr121_redist_install.zip and installed CRRuntime_12_1_mlb.exe.
    Any suggestions?
    Here's my code:
              public string ExecuteReportImmediate( string reportName )
                   ReportDocument doc = new ReportDocument( );
                   doc.Load( @"C:\Reports\xyz.rpt" );
                   string guid = Guid.NewGuid( ).ToString( );
                   string pdfFile = Path.Combine( _serverPath, guid + ".pdf" );
                   doc.ExportToDisk( ExportFormatType.PortableDocFormat, pdfFile );
                   return guid;

  • Field Exit is not working in QA but working in Development Server....

    Hi friends,
                         I have created Field Exit for data element EPOS_LGORT (Storage Location) .Which is using in ME21N transaction of MM. This Field Exit is proper
      working in Development Server but after transport in QA it is not working. I have checked code , it is same as well as exist in development Server. 
                  Abap/fieldexit parameter already has been set as ‘Yes’. But still it is not working.
    Following values has been set for Parameter ‘abap/fieldexit’ for QA .       
    Dflt value                no
    ProfileVal               YES
    Current value          YES
    SAP Release         4.71
                         Any other setting required for  parameter's . Please suggest me.
    Thanks.

    Hi Chandrasekhar,
                           Thanks . Default value of parameter abap/fieldexit is 'yes or no' . Basis person told me that abap/fieldexit either can be set yes or no , so where we have to set 'X'  value for abap/fieldexit parameter.
      After execution of Program RSPARAM , following values found for  QA Server.
    1.1 R/3 C kernel               no
    2.1 file                             no
    3.1 file                             YES
    3.2 program parameters    YES
    3.3 Replace $$ and $(..)    YES
    3.4 Generate file name      YES
    4.4 Value in SharedMemory      YES
          Any other setting's  we needed ?

  • Team work and repository for ADF

    Is there any person to suggest us a team work solution/repository product (holder place, versioning, deployment features etc.) which supports ADF applications ? Thank you.
    Mucahid Uslu

    Yes, i have found following link ;
    http://www.oracle.com/technology/products/jdev/htdocs/partners/addins/exchange/subversion/subversion.html
    exactly it seems what we need.
    thank you John !
    Mucahid Uslu

  • How to control the R/3 prod and BW prod when diff teams works at the same

    Hi Friends,
    I would like to check with you guys, I'm working for support project at the same time different teams are using same server.
    If the different teams are being used same Master data as well, We don't know what are the teams developing which are the objects.
    Now the problem is when we check in the BW production every time having probem e.g: Inactive Masterdata Info Object, ODS replication etc.
    I would like to ask you guys, Normally this being the case, How we can control the R/3 Production and BW production.
    Can anybody give some valuable inputs...if it's applicable we'll implements in my project as well.
    SIRI

    Hi Siri
    If am correct , your concern is when a development team sends some objects to production as part of their project, you see discrepencies of some master data being inactive .
    Your Question is,How to coordinate those?
    You sais you are working for Support means Data loads, then development team also works for the same server moving to Prod. then obviously there should be soem integration of all the teams for the work going live in production, maintain a call with all your team when and all objects are moving to Production and check if any impact of those objects for you when they are moved to Prod.
    But all the time objects moved to prod will be supported by the development team for short period for its stabilization there.
    Hope you need to have coordination with the team .......
    Regards

  • Does the Dreamweaver team work at Adobe?

    Here's why I ask.  We're in CS6 now, which is what, the 12th version of dreamweaver?  I keep thinking, maybe there's going to be bridge integration someday.  Mini-bridge would be awesome.  But it's like the dreamweaver team has never seen another Adobe product.  Yes, there's a place in dreamweaver as a bridge option (if the image is already resized, and you want it stored in your root directory), but from Dreamweaver there's no preview in bridge (we can explore with Windows file explorer, that's an option, but no mention of bridge).  I keep hoping I can draw an image placeholder in golive, select a file in bridge, and the option 'Place an optimized file created in these dimensions in your current directories files' will appear, but that option isn't there.  Contribute had that back in CS1, but Dreamweaver makes me work for it.  It gives me the ability to draw a placeholder to dimensions, but then I have to open photoshop, resize it, save it, and find it. 
    And finding images is hard, because there's no mini-bridge!  Want to view all the images you have in a directory so you can select the right thumbnail to place on your page?  Better use another program.  Sure, there's the asset view, where you can wait while dreamweaver creates microscopic thumnails of every image in every directory, but something as simple as view files as thumbnails - not this time.  Maybe CS7?
    And as long as I'm griping about features that every other program in the world seems to have mastered, would it be so hard to have real-time spell check?  I don't think I own another program (or device) that let's me mis-type as happily as dreamweaver.  Yes, if I remember I can run a command to spell check, but why make me remember?  Why not incorporate the same (dare I say technology?) that Microsoft has used for all of this century and much of the last, and just put a squiggly line under my screw-ups? 
    Please, Adobe, spend a little more time thinking about the people that use your products (I know I'm not the only person who puts images on web pages!), and less time coming up with new programs like Muse so we don't have to use the programs we already love.

    Although I know it's never been considered DW is always looking for ways to expand.  I can hear where you are coming from, however, from a priorities perspective from other posts I've seen, removing the old functionality and trying to bring in the standards of HTML5 and CSS3 is more important, because as Nancy and PZ eluded to, people have been doing it this way for years and competitors are coming out with better ways to handle the new technologies and DW needs to be on the cutting edge there.  Based on the web fonts that was introduced in CS6, I would like to see integration with Font Management tools.  With InDesign and Photoshop you don't know how often I rely on those external (non-Adobe) tools to tell me what fonts are in use and to be able to select any font on my system to use on the webpage (given that you have the rights to the font of course). 
    I will say this about your last paragraph.  I did recently upgrade to the CS6 suite, but your comment there is one of the reasons I have not gone into the Cloud.  I feel like my money would be supporting that product when I don't need/want to use it.

  • Technical competition team needs Labview Developer

    The KC Space Pirates are a team in NASAs Beamed power competition.
    We are looking into using Labview to automate aiming a high power laser.
    I am looking for an experienced Labview developer to help with the project.
    There is no pay if we don't win. If we do win the pay will be generous.
    So if you are something of a gambler and want some aerospace experience we should talk.
    Brian

    Mr. Turner,
    You have my curiosity.  I used to work for United Space Alliance on KSC.  My wife and I still live near Cocoa, so I'm not far away.  She still works on Cape Canaveral.  I have had a good bit of experience with version 7.1 and I have the CLAD certification.  I was very close to being ready to test for the CLD certification, but unfortunately, I changed jobs to where I am now and I don't use LabVIEW at work any more.  I'm still going to study for and get the CLD since I really like LabVIEW and have a few ideas for a few of my own projects.  I have a couple NI PCI DAQ cards I can play around with at home.
    Anyway, I'm very curious about your project and am willing to consider joining you.
    Thanks,
    Brad

  • A way to team work in a fla

    Hi,
    We are new to Flash CS5 and we're looking for a way to work in team on a single project. We are currently making a small game but we are searching a solution for our problem. We want to work together in the same project, so we currently have a single FLA containing our symbols and linkings to our code.We tried SVN but it does not work with the fla files.
    Is making multiple FLA's a good idea ?
    Do you have other ways to work on a project with multiple members without screwing the files ?
    Thank you

    Is there a way to make a virtual copy set into its own set of dng files.
    A very quick way is to either export originals (or as dng, which does the same thing in this case) on the virtual copy set, which will give you a folder on your harddisk with "edited" dngs (I quote this because there is no such thing as edited dngs. The RAW data is untouched, there is just a develop recipe along with a jpeg preview saved into the file). Another way is to export the collection of virtual copies to a new catalog. You can include the originals if you want, or you can simply leave them in place if you don't want to double the needed storage space. You'll get a new catalog with just the virtual copies in it, but they will be masters at that point. Then you write metadata to file from this newly exported catalog.

  • Several teams working in parallel in ChaRM

    Hi All,
    We have a requirement where we want to gather inputs / assign the ChaRM request to multiple teams at a time in the same status of ChaRM (for example u2013 say my CHaRM ticket is pending for effort estimate and I want to gather the inputs from development, Functional and security ticket). One of the ways we can think of is create tasks with reference to the ChaRm Change requiest / change document.
    Is there anyone who has come across this type of scenario where you need several teams to work in parallel at some particular status of ChaRM.
    Please let me know if I am not able to clarify my situation. Thanks a lot.
    Best regards,
    Vithal

    Hi Vithal,
    I'm trying to answer your question but this forum keeps saying
    "We are sorry but your message can not be posted since you have used forbidden words/phrases. Please edit your post according to the forum guidelines and re-post. " After 5 minutes of trying to reword my response, I give up. I'll send it to your email.
    regards,
    Jason

Maybe you are looking for

  • Help Needed in Creating Java Class and Java Stored Procedures

    Hi, Can anyone tell how can i create Java Class, Java Source and Java Resource in Oracle Database. I have seen the Documents. But i couldn't able to understand it correctly. I will be helpful when i get some Examples for creating a Java Class, Java S

  • Seeburger AS2 Adapter implementation in PI 7.1

    HI Experts, We have seen lot of implemetation of seeburger adapters in PI 7.0 but didnt got any chance to look ahead for any documents related to seeburger AS2 adapter implementation in PI 7.1 . Request if you can please guide or provide some hands o

  • I cannot remove my master password - the remove button is gray

    I enabled the Firefox master password but FF kept asking for it every 20 seconds while I was using gmail, so I wanted to disable and remove the master password. When I uncheck the master password box, a popup screen asks for the master password but e

  • Weblogic core dumps with "SIGBUS    10*  bus error"

    I am getting a core dump when starting up my WL server. It seems to be timing related. The WL startup class is causing the error. The error does not occur if I do not deploy any EJBs. If I deploy one EJB the error occurrs. If I deploy two or more EJB

  • Can you help with with face time?

    Hi I am having a problem with face time. It was working fine before. I am not sure if I might turn something off or my wifi networking doesn't allow face time.