How to Create a new Project by Combining 2 already existing Projects

How to Create a new Project by Combining 2 already existing Projects

CCopy the contents of one and paste it into the other. Or duplicate the first project and then paste the contents of the second.

Similar Messages

  • How to export single object of LSMW to already existing project

    I want to export one object of LSMW project to another project which is already exists and conatins some subprojects and objects. Menas I want to export one object to already exsiting project. How can I do this?

    hi,
    you may copy objects between projects....
    see: lsmw-all project objects,,and here fucntion "copy entry"
    regards,darek

  • How to setup a New Flex environment for an existing project

    Hi,
    I am a capable embedded SW engineer but have not used Flex or Adobe developer products before.
    I replace a software engineer who left the company at the end of last year and did not generate any design/development document for a flex application that he had created (circa 2011) and that is currently in use by customers.
    The development environment was on his personal Macbook so this is gone. My task is to debug and fix problems with built in SQL queries that are not retrieving or writing data correctly. My workaround is to manually edit the dB tables but this is not practical for the customers.
    I am English and wish to work with an English language installation but as my location is in Austria and the OS (Win7, 64) is in German it is hard (maybe not possible) to manage the Adobe auto language/region detect.
    I include an image of the project directory and the .project file for reference,
    <?xml version="1.0" encoding="UTF-8"?>
    <projectDescription>
              <name>CWPConfigurator</name>
              <comment></comment>
              <projects>
              </projects>
              <buildSpec>
                        <buildCommand>
                                  <name>com.adobe.flexbuilder.project.apollobuilder</name>
                                  <arguments>
                                  </arguments>
                        </buildCommand>
                        <buildCommand>
                                  <name>com.adobe.flexbuilder.project.flexbuilder</name>
                                  <arguments>
                                  </arguments>
                        </buildCommand>
              </buildSpec>
              <natures>
                        <nature>com.adobe.flexbuilder.project.apollonature</nature>
                        <nature>com.adobe.flexbuilder.project.actionscriptnature</nature>
                        <nature>com.adobe.flexbuilder.project.flexnature</nature>
              </natures>
              <linkedResources>
                        <link>
                                  <name>bin-release1</name>
                                  <type>2</type>
                                  <location>/Users/daniel/Desktop/CWPConfigurator</location>
                        </link>
              </linkedResources>
    </projectDescription>
    I see the <location> string above will need changing but what to, is that the target location for build/debug/development??
    So far I have on my C drive, the Apache Flex SDK, AIRSDK_Compiler, apache-ant-1.9.3 and am working through the Flex SDK readme file to download SW and set up the Path variables.
    I got stuck on the FlashPlayerDebugger.exe as I cannot find where the Debugger installation is located (ActiveX or Plugin). Now skipping this moving onto the following points.
    A real concern is that I am using 64bit OS and how that affects the resulting project when it is to be installed on a 32bit customer server.
    Regards,

    You might get better help asking on [email protected]

  • How to create a new database instance from an existing one?

    Hi, I basically want to create a snapshot of a production
    instance (version 8.1.7) for querying purposes. Would anyone
    tell me the steps involved? What I did as follows:
    1. Copy all data files to a new location
    2. Modify init.ora accordingly. I believe there is no separate
    control file for this version.
    But when I startup the instance, got this error:
    ORA-01103: database name 'TRITON' in controlfile is not 'HERCULE'
    What is missing? Do these data files contains links to the
    previous instance name?
    Thanks for any help.

    Hi All,
    I need some help in recreating new database instance.
    Here are the steps I have done so far:
    1. Created a database with name 'LASTDB' using DBCA
    2. Connected to RMAN.
    3. RMAN>SET DBID=******; (of the source database)
    4. Connect to target. RMAN>connect target SYS/*****;
    5. Executed controlfile restore on RMAN.
         RMAN>Run{
    Allocate channel D1 Type DISK;
              Set controlfile autobackup format for device type DISK to
    ‘\\<ip_address>\Backup\Prod\%F’;
    Restore controlfile from autobackup;
    6. RMAN> ALTER DATABASE MOUNT;
    Now got an error saying ORA-01103: database name ‘PRODDB' in control file is not ‘LASTDB’
    I tried using NID to change the database name but it's throwing an error that database is not mounted.
    I have browsed a lot and found that I need to recreate a control file of the production database using ALTER DATABASE BACKUP CONTROLFILE TO TRACE and should edit the trace file. But it also says to shutdown the source database which is production database and I cannot try that.
    Also I have tried adding a line to init.ora like lock_space_name = LASTDB. Also tried replacing everything from LASTDB to PRODDB but that didn't work either.
    I have been trying to find a solution to this. Please bear with me as I'm a beginner and please let me know how I can fix the error.
    I am running oracle 10.1.0.2.0 enterprise edition on windows 2000.
    Thanks for your patience,
    KG

  • How to create a new database after copying an existing database with a new name

    hi
    i have an existing database and want to copy with a new name in sql server 2005 how do it is possible 
    spose
    i have a db name attached in sql server StoreManagementDB now i want to copy this database with all the transactions as StoreManagementDB_1.
    thanks

    Use a two steps to use a backup file to restore a database with a new name.
    ----You need to have a full backup of your database:
    --Step 1:
    RESTORE FILELISTONLY
    FROM DISK = 'C:\bk\TEST.BAK'
    --Find out the LogicalName of data file and log file
    -- in this case: the data file: TEST and the log file LogicalName: TEST_log
    --Both names will be used in the MOVE command
    --Step 2:
    -- Restore the files for test1.
    RESTORE DATABASE test1
    FROM DISK = 'C:\bk\TEST.BAK'
    WITH RECOVERY,
    MOVE 'TEST' TO 'C:\bk\test1_Data.mdf',
    MOVE 'TEST_log' TO 'C:\bk\test1_Log.ldf'
    GO

  • How to create a new Oracle OSB project automaticaly with script without IDE

    Hello,
    I want to create automatically an "Oracle service bus project" and an "Oracle service bus configuration project" with scripts (ANT or Maven or ...) without using IDE, without using workshop or Eclipse. I want to create automatically (ANT or Maven) just a skeleton of an OSB project witch i can use after in workshop.
    I want to create 1 "Oracle service bus configuration project" with many "Oracle service bus project" automatically (ANT or Maven or scripts) witch i can use after in workshop. How to create a new Oracle OSB project automaticaly with script without IDE ? How can i do this ?
    I'm using Oracle service bus 10.3.1
    Thank you for your help.

    Thank you for your response,
    I do not want to just create the services (proxy services and business services) but I want to create a template for 40 OSB project with the same scripts ANT/Maven.
    Template="Oracle service bus configuration project" + "Oracle service bus project" + services of 40 OSB projects
    The goal is that I have more than 40 projects to create and just the name of the projects that changes (when I say the name of the project ie the name of the OSB project, the name of proxy services and the name of business services ).
    So I want to give my script (ANT/Maven) the name of 40 OSB project and the script must generate the skeleton of the 40 projects at once time and after generation of skeleton of the 40 project, I will import them in the workshop to add manually mapping and routing and other things that differs from one project to another.
    So i want to generate automatically a skeletons of 40 OSB projects using a script (ANT / Maven) and I give to the script juste the names of the 40 projects.
    I want to create a "Oracle service bus configuration project" and "Oracle service bus project" automatically of 40 OSB projects (ANT or Maven or scripts) witch i can use after in workshop.
    I want to create one 'template' of all 40 projects in the same time, with the same directory structure (Transforlation, Business services, proxy services, WSDL .....) and all 40 project have the same transport, just the names of projects and services witch changes and i can give to the script all names of projects and services and i can give also all WSDL.
    Regards,
    Tarik

  • GGB1 Substitution by exit : how to create a new exit ?

    Hi,
    I create a substitution by exit, and I want to use a new exit, please how to create a new exit (transaction or IMG path) ?
    Regards.
    Moderator: Please, search SDN

    CCopy the contents of one and paste it into the other. Or duplicate the first project and then paste the contents of the second.

  • How to Create a new column from two different result sets

    How to Create a new column from two different result sets, both the result set uses the different date dimensions.

    i got solutions for this is apply filters in column formula it self, based on the requirement.

  • How To Create The New VO in Standered Page?

    Hi Gurus,
    Pl z help me how to create the new Custom VO in slandered page,and how to attach that VO in custom RN in all are slandered page only.
    Regards,
    Srini

    Hi Sara,
    <i>1. Could you please tell me how to create the new webservice in XI?</i>
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/5f3ee9d7-0901-0010-1096-f5b548ac1555
    <i>2. What tools we have to use to create it.?</i>
    /people/community.user/blog/2006/09/19/xi-webservice-studio--a-plain-jane-soap-tool
    http://www.gotdotnet.com/Community/UserSamples/Details.aspx?SampleGuid=65a1d4ea-0f7a-41bd-8494-e916ebc4159c
    Altova is also a good option
    <i>3. How to send the SOAP request to XI?</i>
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/d23cbe11-0d01-0010-5287-873a22024f79
    SAP Note 856597
    An Add-on
    /people/siva.maranani/blog/2005/03/01/testing-xi-exposed-web-services
    Regards,
    Prateek

  • How to create a new Template from an Excisting Template

    Dear Sir,
    We already have one Template defined for creating the new Projects .  We need to create a New Template and for this we want to used the existing Template and will incorporate the required changes into it only .
    Kindly guide us as what procedure need to be followed to create a New Template by using an existing base Template .
    With Thanks and Rgds
    Sonia

    Hi,
    In your new template you have copied only standard WBS. For the activities to be copied, you need to assign that created Std. WBS in Std. Network using CN02.
    Input the Std.WBS in the Std. Network in CN02 and check if activities are also created in the network. In the Std. Network change screen press F6, and input Std. WBS in the header data details.
    Else, you can create a new std. Network using CN01 and create the activties also in the same and follow the above.
    Then try creating new project in CJ20N.
    Regards,
    Kabir

  • How to create a new connection from SAPGUI to Test drive?

    Hi,
    I have installed Sap Netweaver Test drive on a linux virtual machine (windows host). The installation was successful and I was able to start the instance (application server and the database), yet I don't know how to create a new connection from my SAPGUI client (7.20) to this server. The static IP address of the server is 192.168.1.160.
    I entered the following values for my new connection entry
    Description: SAP Netweaver
    Application server: 192.168.1.160
    Instance number: 01
    System ID: DB2
    SAProuter: /H/192.168.1.160/S/3201/H/
    But it does not work. Any idea about the values needed  for creating a new entry?
    Thanks in advance,
    Dariyoosh

    >
    Dibya R Das wrote:
    > Why are you entering a router string? Can't you reach a box directly from your machine?
    >
    > Doesn't a ping to that host & a "telnet <host/ip address> 3201" work from your machine to the SAP System.
    >
    > Remove the router string you wont need if the above works.
    >
    > - Regards, Dibya
    Hello there,
    Thank you very much for your answer which solved my problem. In fact there was no need of providing router string.
    Kind Regards,
    Dariyoosh

  • How to create a new facebook account in iphoto?

    How to create a new facebook account in iphoto?

    Instructions can be found by selecting iPhoto Help from the Help menu within iPhoto.

  • How to create a new field for Q3 - QM notification in Header and item level

    Dear All,
    l
               Sub: How to create a new field for Q3 - QM notification in Header and item level
    Ref. the link --> Quality Notification
    We want to create a new field in header level and item level.
    As per the thread the solution is given below.
    In the IMG Config: Quality Management -> Quality Notification -> Notification Types -> Define screen areas for notification types Then Choose 'Define screen areas' Then Click on 'New entries' button Now, select the relevant Notification Type and click in 'Enter'. Select the 'Iten Cases' register and remember to setup the Tabstrip Header, Icon, etc. Set the 'Tabstrip active' flag. Then Save.
    Quality Notification -> Notification Types -> Define screen areas for notification types
    WE ARE UNABLE TO FIND IN CUSTOMIZATION PATH --> DEFINE SCREEN AREAS FOR NOTIFICATION TYPES.
    Please help.
    Question No. 2 :
    THE REQUIREMENT IS GIVEN BELOW.
    We want to hide the field in Q3 - QM Notification
    In header --> Reference tab --> Item (sub heading) --> "DEFECT LOCATION" FIELD TO BE ELIMINATED (HIDE)
    Ref the link --> Quality notification
    The solutiion is given below.
    Hi Sami,
    We can hide the collumns using the Transaction OQM1 and Program Name SAPLIQS0.
    Lets say Defect location need to be hidden, the field TXTCDOT need to have the radio button HIDE.
    Hope this will suffice your requirement.
    Kindly ask me if you need any other details.
    Thanks & Regards,
    Srinivas.D
    Hi Sami,
    We can hide the collumns using the Transaction OQM1 and Program Name SAPLIQS0.
    Lets say Defect location need to be hidden, the field TXTCDOT need to have the radio button HIDE.
    Hope this will suffice your requirement.
    Kindly ask me if you need any other details.
    Thanks & Regards,
    Srinivas.D
    By double clicking the "DEFECTIVE QUANTITY (EXTERNAL), WE COULD NOT GET --> field TXTCDOT .
    Plese do the needful.
    We are using ECC6.0 Ehp3 and Ehp4.
    With Best Regards,
    Raghu Sharma

    Dear Pushpa,
    Transaction Code :SHD0 is working fine.
    Please accept my sincere thanks for your sharing your Knowledge.
    I am able to fulfill my
    Regarding the enhancement, I have not tried.
    Once I will complete, I will award the fulll marks to you.
    With Best Regards,
    Raghu Sharma

  • How to create a new workspace and change the name of the existing

    Hi,
    can any one help me how to create a new workspace in application express 3.1 on XE DB and how to change the name of a existing workspace.
    thanks
    Jana

    Jana,
    This is discussed at length in the User's Guide. See the section "Creating Workspaces".
    To rename a workspace using the admin application, edit the workspace attributes and type a new name in the field where the old name appears, then Apply Changes.
    Scott

  • How to create a new repository in EP 6

    I was wondering how to create a new repository in EP 6 SP2 CM.  I am farmiliar with using repository managers, but I just want to create a new repository similar to the dfaul repositories that are provided by sap, such as "discussions or documents".  The reason is that I want to be able to report "only on the size of this repository"
    Thanks
    Jeremy

    Jeremy -
    You can create a CM repository using the following path:
    System Administration -> System Configuration -> Knowledge Management -> Configuration -> Content Management -> Repository Managers -> CM Repository
    Click on the New button.
    Enjoy!
    Kyle

Maybe you are looking for

  • Issues in Posting_interface_clearing

    Hi All, I am posting a Customer invoice using BAPI_ACC_DOCUMENT_POST and then I am clearing the same by calling the FM, Posting_interface_clearing. In some cases, the Clearing fails with the message that 'Difference is too large for clearing'. Howeve

  • Compare Java based reporting to OBIEE

    Hello All, Due to a lot of misconceptions, my current client thinks that a lot of their problems will be resolved by simply retiring OBIEE and write all the reports in Java. Some requirements are unrealistic to ask from OBIEE and some are well...limi

  • My media player just stopped working.

    My media player on my Q10 just stopped working. When I try to pla an audio or video file it will play for at most 7 seconds and stop and next the following error msg will be displayed "the file can't be played due to an unexpected error". I have wipe

  • CTX Monitor stopped reading on Powermac G5

    I own a Powermac G5 and i have been using a 19 inch CTX ultra screen. I have been using the monitor with the mac for a while and it works and looks great. However the monitor would flicker every now and then when i did not shut it off at night? Anywa

  • Meaning of MMPUR_FIELDSTATUS

    Hi all, I'm working with BADI for purchase documents. The question is that I must set a value for this element. I'm looking for the meaning of possible values (ie: + . * -). I think that * is view (demo for BADI ME_PROCESS_PO, method FIELDSELECTION_I