How to reuse a SC

Hello everybody,
I am quite new in working with the NWDI, so probably my question is quite easy to answer.
Is it possible to reuse a SC that is changed in one track with this changes in another track?
E.g.:
I have a track TRACK_X where I am developing a web application. In this TRACK_X I am editing the SC SHRWEB.
In another track TRACK_Y i am also developing a web application an I want to use the edited SHRWEB-version from TRACK_X.
Is it possible to do that. I already managed it to download SHRWEB from TRACK_X with the help of <i>http://<host>:<port>/SCD/SCDownload</i>. But after adding the downloaded sca-file in the inbox-directory of my transportstudio I can't find the sca.
I am thankfull for every hint.
Thank you very much

null
Edited by: Kavitha B C on Jan 11, 2011 9:15 AM
Edited by: Kavitha B C on Jan 11, 2011 9:16 AM

Similar Messages

  • How to reuse a jar file in another application

    i have created a jar file.Now i want to reuse this jar file in another java program.Could anyone please guide me with the steps of how to reuse a jar file

    i have created a jar file.Now i want to reuse this
    jar file in another java program.Could anyone please
    guide me with the steps of how to reuse a jar fileput your jar file in class path and import the class which u want to reuse in your code so that u can access all the methods in that class in ur code.

  • How to reuse a response from a server in the next request?

    Hello all,
    I am invoking the doGet method to get authenticated by the clickatell's server... the server responds with a "Ok: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" (not exact values) message in a fresh html page. This is the status code and its session_id after authentication.
    The problem is, how to reuse the session_id value in a request to invoke the doPost method?
    Can anyone help with an idea?
    public void doGet(HttpServletRequest req, HttpServletResponse res)
    throws ServletException, IOException {
         String urlStr = new String ("http://api.clickatell.com/http/auth?api_id="
         + api_id + "&user="
         + username + "&password=" + password);
         res.sendRedirect(res.encodeRedirectURL(urlStr)) ;     
    public void doPost (HttpServletRequest req, HttpServletResponse res)
    throws ServletException, IOException {          
         String msg, to;
         msg = req.getParameter("msg");
         to = req.getParameter("to");          
         String urlStr = new String ("http://api.clickatell.com/http/sendmsg?session_id=" +sessionID + "&to=" + to + "&text=" + msg);
    HttpServletResponseWrapper hsrw = new HttpServletResponseWrapper(res);               
         res.sendRedirect(res.encodeRedirectURL(urlStr));
    }

    Hello,
    Can you try with the following code after doing appropriate modifications for your requirements.
    package servlet;
    import javax.servlet.http.*;
    import javax.servlet.*;
    import java.io.*;
    import java.net.*;
    public class TestServlet extends HttpServlet {
         public void service(HttpServletRequest req,HttpServletResponse res)throws ServletException,IOException{
              System.out.println("Start ..........................................................");
              URL url                              = new URL("Your Portlet URL");
              HttpURLConnection urlConn     = (HttpURLConnection)url.openConnection();
              String toPost = "Your string";
              System.out.println("URLConnection object\t" + urlConn);
              urlConn.setDoInput(true);
              urlConn.setDoOutput(true);
              urlConn.setUseCaches(false);
              urlConn.setRequestProperty ("Content-Type", "Appropriate content type");
              //urlConn.setRequestProperty("Content-Length","Appropriate content length");
              urlConn.setRequestMethod("POST");
              OutputStream out = urlConn.getOutputStream();
              out.writeBytes(toPost.getBytes());          
              out.flush();
              out.close();          
              PrintWriter outStream = new PrintWriter(res.getOutputStream(),true);
              DataInputStream in = new DataInputStream(urlConn.getInputStream());
              String inputLine = in.readLine();
              while(inputLine!=null){
                   outStream.println(inputLine);
                   inputLine= in.readLine();
              outStream.close();
              in.close();
              System.out.println("End ...........................................................");
    As long as you do not get input stream from your URL Connection you will experience problems. Also the parameters should be passed as query string in the url. Rather pass them using output stream object obtained from URL connection. Also in your responding servlet you will be required to read the parameters using an Input Stream something like this.
    DataInputStream in = new DataInputStream(request.getInputStream());
                   String inputLine = in.readLine();          
                   while(inputLine!=null){
                        System.out.println("Input Received by servlet\t" + inputLine);                                        
                        inputLine = in.readLine();
    HTH
    VJ

  • How to reuse deleted personnel number in sap

    Dear All.
    how to reuse deleted personnel number in sap
    please help me
    Regards,
    Baqar Iqbal

    Iqbal
    We can reuse the deleted number
    Say once u have deleted all the information relaed to the pernr . Go to PA04  in the current no status give the deleted no and hire an employee in PA40
    Note : this will applicable only in cretain cased so i would like to know in which context u want this

  • How to reuse popup component?

    Hi,
    I have a <af:popup> defined in my jspx page which will show up when mouse over the last column in the table. This mouse over popup shows standard information like "Created By", "Creation Date", "Last Updated By", "Last Updated Date". Hence, many other UI pages have the same requirement. So my question is how can reuse this popup component? Currently, its codes in embedded in the jspx page. Here is a code snipplet in the jspx:
    <af:table>
    <af:column sortable="false" headerText="Std Info"
    id="c16">
    <af:image source="/images/activity_status.gif"
    id="i1">
    <af:clientAttribute name="createdBy"
    value="#{row.bindings.CreatedByUser.inputValue}"/>
    <af:clientAttribute name="creationDate"
    value="#{row.bindings.CreationDate.inputValue}"/>
    <af:clientAttribute name="lastUpdatedByUser"
    value="#{row.bindings.LastUpdatedByUser.inputValue}"/>
    <af:clientAttribute name="lastUpdatedDate"
    value="#{row.bindings.LastUpdatedDate.inputValue}"/>
    <af:showPopupBehavior popupId=":::p1"
    triggerType="mouseOver"
    align="endAfter"/>
    </af:image>
    </af:column>
    </af:table>
    *<af:popup id="p1" contentDelivery="lazyUncached"*
    launcherVar="source" eventContext="launcher">
    *<af:panelFormLayout id="pfl1">*
    *<f:facet name="footer"/>*
    *<af:panelLabelAndMessage label="Created By" id="plam1">*
    *<af:outputText value="#{viewScope.createdBy}" id="ot2"/>*
    *</af:panelLabelAndMessage>*
    *<af:panelLabelAndMessage label="Creation Date" id="plam2">*
    *<af:outputText value="#{viewScope.creationDate}"*
    id="ot3"/>
    *</af:panelLabelAndMessage>*
    *<af:panelLabelAndMessage label="Last Updated By"*
    id="plam3">
    *<af:outputText value="#{viewScope.lastUpdatedByUser}"*
    id="ot4"/>
    *</af:panelLabelAndMessage>*
    *<af:panelLabelAndMessage label="Last Updated Date"*
    id="plam4">
    *<af:outputText value="#{viewScope.lastUpdatedDate}"*
    id="ot5"/>
    *</af:panelLabelAndMessage>*
    *</af:panelFormLayout>*
    *<af:setPropertyListener from="#{source.attributes.createdBy}"*
    *to="#{viewScope.createdBy}"*
    *type="popupFetch"/>*
    *<af:setPropertyListener from="#{source.attributes.creationDate}"*
    *to="#{viewScope.creationDate}"*
    *type="popupFetch"/>*
    *<af:setPropertyListener from="#{source.attributes.lastUpdatedByUser}"*
    *to="#{viewScope.lastUpdatedByUser}"*
    *type="popupFetch"/>*
    *<af:setPropertyListener from="#{source.attributes.lastUpdatedDate}"*
    *to="#{viewScope.lastUpdatedDate}"*
    *type="popupFetch"/>*
    *</af:popup>*
    Thanks.
    -Mina

    You can try this too..
    have a popup in a seperate jspx like popup.jspx.
    <af:popup binding="#{backingBeanScope.backing_popup.p1}" id="p1">
    I could open that popup in another jspx page by using subview.
    <f:subview id="popupView">
    <jsp:include page="/popup.jspx"/>
    </f:subview>
    Within command button:
    <af:showPopupBehavior popupId="popupView:p1"/>

  • How to reuse some components of the scripts layout to other programes

    how to reuse some components of the scripts layout to other programes

    You can't reuse components; the only solution would be to copy a script and to remove all components not needed.
    Regards,
    John.

  • How to reuse the process chain which has been deleted?

    hi
    guys
                  how to reuse the process chain which has been deleted?
    your regards
    suresh

    if you want to "recover" the deleted process chain, try to check DEV / QAS / PRD. Maybe there is a copy still available
    Or check the following tables in SE11: RSPCCHAIN / RSPCCHAINATTR
    Good luck !

  • Lost fireftp ftpsite. how to reuse old ftpsites.dat

    While I felt on the Fireftp xul error (no more edit or new ftpsite possible with FF2.0.1) I finally reset my firefox.
    Fireftp is now reinstalled and seams to be ok..but virgin from all my sites.
    I have in the previous data folder a ftpsites.dat I can read.
    how to reuse it??
    copying onto the new profile folder does not work (error when clicking on the select list).
    Tools/import and pointing to this ftpsites.dat does not do anything, no error or any warning and the list is still blank.
    [edit]
    Copy/paste the content of this file into the new blank one did the trick.... (???)

    If this question is about Oracle XE/AppEx you should post this question in the Oracle XE forum. There are probably more people there that have experience with this that could answer your question.
    Earl

  • How to Reuse BSP Application in CRM UI

    Hi All,
    I have a custom BSP Application which was used in PCUI as part of search help display. After migration of the system we would like to resuse this BSP application for the search help for the same field. Can anyone let me know what are the steps involved for this?
    Objective: Steps involved for how to reuse BSP application in CRM UI.
    Regards,
    Harish P M

    HI Harish,
    There is one idea to use transaction lancher.
    1. Check the relevant URL parameters that you need to define. You can find the parameters at the end of the URL.
    2. Define those paramters at IMG -> CRM -> Interaction Center WebClient -> Basic Functions -> Define URLs and Parameters
    3. Assign the values of the relevant parameters in the Transaction launcher wizard that can be accessed through IMG -> CRM -> Interaction Center WebClient -> Basic Functions -> Transaction Lancher Wizard at the step "Transaction parameters".
    Best,
    Levente

  • How to reuse standard Activity subcomponents - Appointments, Tasks, Phone Calls and Emails within a custom work center?

    Requirement : We have a requirement to reuse the standard Activity subcomponents Appointments, Tasks, Phone Calls and Emails within a custom work centre. The requirement is to leverage and copy all sub functionalities Appointments, Tasks, Phone Calls and Emails available within the standard activity work center. This feature is available within Accounts, Opportunities, Leads etc. (Refer screenshot: Std_Act_Screen.jpg)
    We are unable to consume/embed the standard Activity (Work center) sub components Appointments, Tasks, Phone Calls and Emails within the custom work center. This is because of backend consistency check violation UI designer error message displayed. (Refer screenshot:Error while consuming standard activities.jpg)
    Ø  Open Question:
    a.      Is there a limitation to consume/embed the standard Activity (Work center) subcomponents Appointments, Tasks, Phone Calls and Emails within a custom work center?  We have noticed that this standard Activity Work center subcomponents Appointments, Tasks, Phone Calls and Emails has been repeatedly reused within the application in Account, Opportunity, Sales lead, Lead, Sales Quote Objects.
    b.      Is there an alternative way in which we can call [Through API etc..] the standard Activity Work center subcomponents Appointments, Tasks, Phone Calls and Emails?
    We need your guidance to overcome the error to enable the reuse of the standard Activity Work center sub-components Appointments, Tasks, Phone Calls and Emails within our custom work center or suggest a suitable workaround on how this can be achieved.
    Regards .. Dheeraj Saini

    Whenever you find out let me know. I wanted to assign a text tone to someone and now in iOS 7 i can't. Or I haven't figured this out yet.

  • How to reuse a centrally stored Canonical Datamodel

    Hello,
    For a client we are placing the Canonical Data Model, containing all cross domain message definitions, in a central location.
    The XSD definitions are reachable with a URL, for instance http://localhost:7001/CDM/Relatie.xsd
    <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns="http://www.test.nl/poc/relatie"
    targetNamespace="http://www.test.nl/poc/relatie"
    elementFormDefault="qualified">
    I create a WSDL and add the following lines of code
    <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="http://www.test.nl/poc/relatie">
    <xsd:include schemaLocation="http://localhost:7001/CDM/Relatie.xsd"/>
    </xsd:schema>
    In the Structure pane the following Warning appears 'Remote schema not loaded'
    In the WSDL I am not able to use the content of the XSD,
    for instance add a namespace reference
    xmlns:wfnpr="http://www.test.nl/poc/relatie"
    Then create a message
    <message name="RealtieService_relaties">
    <part name="part" element="wfnpr:relaties"/>
    </message>
    Also results in a Warning 'Reference wfnpr:relaties not found'
    When I copy the XSD in my project, it all works ok. But that's not the idea of having a centrally based CDM.....
    Who's got ideas?
    Regards Léon Smiers

    I also have a similar interest. I am not sure that having the Schema sit on a webserver is the best approach, there must be others (which I cannot work out yet).
    It is very important to distribute a common Schema such that if there is a change you don't have to go into each and every JDeveloper project, delete the old XSDs and cut and paste the new ones.
    There needs to be a central store for the canonical XSDs. The client projects needs to reference this central store and at build time and possibly drawn them into the deployment archive.
    I cannot see how this can be done though.
    To give another view on this consider that XMLSchema.xsd is accessed in a common way in JDeveloper. I don't need to import it to use it. I can use xsd:string whenever I want. All I need to do is define the namespace i.e. xmlns:xsd="http://www.w3.org/2001/XMLSchema".
    Importantly this isn't actually looking the schema up on the web. If I unplug my network cable JDeveloper still sees this Schema because it is actually defined somewhere in the libraries that JDeveloper is using.
    However all this doesn't help me much. I am still completely stumped in how to centrally store and reuse a CDM effectively.
    Edited by: user10103872 on 20-Jan-2012 09:25

  • How to reuse a Joomla database?

    Client wants to have a BC site, but the info from the current site is in Joomla. How can I build them a site besides the 4 main html pages?  Can the database be reused from the Excel file?
    Rather use Dreamweaver than Joomla any day.

    Hey there.
    Bit confusing post there but will try help on this..
    Dreamweaver is a programing tool to code websites or applications with. Joomla is a CMS - Content Mangement system. Adobe Business Catalyst is the BC CMS (more then just a cms).
    You can choose to develop BC sites on Dreamweaver or other applications like Coda2, Sublime Text 2 etc.
    Best thing to do is not just try copy their old site, likely lots of issues, badly made, strange things etc. Rebuild, do it right, web standards, work to help improve the online business. etc
    But if you export their customers from joomla into an excel spreadsheet you can download the import spreadsheet from BC for the CRM and get the content into the format BC needs from the joomla one and then import.
    Joomla addons, custom PHP code etc of course wont run on BC.
    Hope that helps.

  • How to ReUse Existence Check Validation ?

    Hi All,
    I read chapter 9.6.2 of ADF Developer Guide 4GL, "9.6.2 Implementing an Efficient Existence Check". However the exists() method in the ProductDefImpl.java can only be use to check product existence when user add new product on Product entity .
    But in my case, there are many entities having FK referring to Product
    entity, e.g :
    OrdersDetail has FK to Product
    PurchaseDetail has FK to Product
    ShipmentDetail has FK to Product
    ..and some more...
    I don't want to code productExists() method to all xxxDefImpl class of all
    above entities. How can I create just one productExists() method and reuse it in all entities having FK to Product entity ?
    Thank you for your help,
    xtanto

    Hi Steve,
    yes, I have check to ServiceRequestImpl in SRDemo, there is a method validator that invoke productDef.exists(getDBTransaction(),data).
    But, by using method validator, I still have to copy-paste the code to ALL entities that has FK to Product.
    How to make it a Reusable Validation Rule (like "DateMustComeAfterRule") so that I just need "plug" it to All entities (at attribute level) having FK to Product ?
    Thank you,
    xtanto

  • How to reuse UI elements in view design

    Hello
    How can I reuse UI elements when designing a view?
    For example: I built a UI container (TransparentContainer) consisting of a FormattedTextEdit, some buttons and other UI Elements. This container will be used in several views and even several times inside the same view.
    The solution which I use at the moment is to copy/paste this UI container. But this is a bad solution, because if something in the container has to be changed, it is very cumbersome to adapt also all copied instances.
    I also tried to put my UI container into a separate view and than to reuse this view in other views by means of the ViewContainerUIElement. But this does not work if the UI container has to be placed more than once inside a view, as duplicate usage of a view raises a WDRuntimeException.
    What is the best way do reuse several UI Elements in desinging a view?
    Greetings
    Rolf

    Thank you Rajat for your answer.
    Is there any solution to solve this problem for the "Tabstrip"?
    Thus, let's say I have a "Tabstrip" with 10 "Tabs". All the tabs have the same UI elements only the data of the UI Elements changes among the tabs. Do I really have to copy my UI elements 10 times?
    Of course, another solution would be to "simulate" the Tabstrip with some radio-buttons and one container that shows the content of the selected tab/radiobutton.

  • How to Reuse Business Rules

    Hi,
    I've created a composite business rule and exposed as a composite, if i want to call reuse that business rule in multiple bpel processes, how can i do it?
    Any help would be appreciated, thank you :)
    Thx,
    Rahul venkat

    Hi
    I am currently facing a problem invoking a Composite from within the BPEL.
    Scenario: I have created a composite which has one Business Rule Component. The composite deploys successfully to the Web Logic Server. (Successful compilation: 0 errors, 0 warnings). However there is a number of "ignoring messages" which do not affect the deploy. These ignoring messages could be the souce of my problem which I will explain later. Example of an ignoring message
    ignoring C:\Work\Project\ValidationProcess\Rules\xsd\PDQuality_DecisionService_1Types.xsd; not on source path
    Now if I create a new project composite which has a BPEL component. The BPEL component has a partner link to call the Composite mentioned above. When assigning variables i.e Input variables to the partnerlink service, I notice that the payload of the invoke variables ( TO Section) has an error "Exception - Problem building schema!"
    To prove that the partner service is working. I can view the WSDL in Internet Explorer. I can use the Eclipse WTP workbench to invoke the service ( Composite with Rules ). Now could it be that I am getiing this problem because initially when deploying the service (Composite with Rules) I was getting these ignoring messages and could it be that I should add all the ignoring source to the source path.... OR am I just embarking on a tangent!
    Thanks in advance
    Using SOA 11G - 11.1.1.2 (WebLogic Server 10.3.2) and Jdev 11.1.1.2.0
    Thx,
    Venkat Rahul

  • How to reuse UIComponent in another UIComponent

    Hi. ALL.     
    I want to reuse an UIComponent in another UIComponent.     
    Here is the scenario i want to implement.           
         UIComponent: Comp1                             
                                 Controller1                             
                                 View1.js     
         UIComponent: Comp2                             
                                 Controller2                             
                                 View2.js     
          I implement some logic and ui control in Comp1.     
          Now I want to embeded comp1 into comp2 and view1 is part of view2.     
         How can I do this? Can anyone give me some suggestion or example?     
    Thanks a lot.

    Hi Louis,
    I got this from SAPUI5 documentation.
    https://sapui5.hana.ondemand.com/sdk/#docs/api/symbols/sap.ui.html#.component
    var oComponent = sap.ui.component({
         name: "my.Component",
         url: "my/component/location",
         id: "myCompId1" });
    Thanks,
    Naga

Maybe you are looking for

  • Flitered Sub-grid in Online CRM 2015

    Hi all ,    I have the following requirement. In Case form we included multiple sub-grids (Opportunity,Lead, etc..). On selecting the value in customer field, only the related records of that particular Customer should flow in the respective sub-grid

  • Select statement not populating the internal table

    Hi, I have a requirement where I have to upload a file from C drive, the fields in this file are VBELN, description & date of creation. I am able to get this file into the internal table. After this i need to cross check the VBELN against VBRK-VBELN,

  • Can We enter Sales Invoice and Incoming Payment VIA SDK

    Dear Experts We have to develop an integration bridge with retrieve data from excel sheet and upload in SAP , i want to clear is it possible to enter sales invoices and incoming payment via SDK?. If it is possible please guide me about objects name a

  • Can i see an sample of a converted file into an excel format

    can i see an sample of a converted file into an excel format

  • OATS distributed load test agents

    Hi, 1) I am preparing to perform a distributed load test on web application. full load is 500 users. How many agent test servers do I need for this test? How do i determine the number of servers, as I can't find any best practices or guide online. 2)