How to make the change code result available on development system

Dear Friends,
I have done the source code changes after check out code from the SLD.
In our SLD, the NWDI is installed on Development system and configured other systems are Training, Quality and Production.
I would like to view the result of changes on development system.
How can I do that?
Do I need to activate the code? or Check in the code?
I do not want to check in the code unless it is confirmed.
Please help me.
Early reply appreciated.
Thanks in advance.
Lakshmikanthaiah

Hi Pascal,
Thanks for ur prompt update.
Well, in my practice I gone ahead with on more step.
I check-in the code and asked for activation.
Meanwhile generated Activation Request Number displayed.
But even after that there is no changes resulting while executing the page.
Can you help me further on this.
Thanks in advance.
Thanks and regards,
Lakshmikanthaiah

Similar Messages

  • How to make the same code that works only?

    how to make the same code that works only?
    code:
    Form2.Close = Me.Enabled = true
    effect such as this code

    I have this code:
    Public Class Form1
    Private Sub Button4_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button4.Click
    Form2.Show()
    Me.Enabled = False
    End Sub
    Private Sub Button5_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button5.Click
    Form3.Show()
    Me.Enabled = False
    End Sub
    End Class
    he wants to after closing Form2 and Form3 unblocked the whole form1
    it means that:
    when I click the button, displays the himself form2 and blocks himself form1" and after closing Form2 , unlocks himself Form1"
    the same with Form3

  • I bought and use iPad in Hong Kong, but I cannot update apps because the apple store asked me to change to Hong Kong, how to make the change (correction)?

    I bought and use iPad in Hong Kong, but I cannot update apps because the apple store asked me to change to Hong Kong, how to make the change (correction)?

    Change App Store
    1. Tap "Settings"
    2. Tap "iTunes & App Stores"
    3. Tap on your Apple ID
    4.Tap "View Apple ID"
    5. Enter your user name and password.
    6. Tap "Country/Region."
    7. Tap "Change Country/Region"
    8. Select the country/region where you are located; re-select country/region even if it is correct
    9. Tap "Done".
    Note: If the change doesn't take effect, sign out of account and sign in again.

  • How to make the changes to be permanent when a session is executed successfully ?

    Hi Everyone,
    I am new to ODI.
    I am learning how to create interfaces for the data flow between two Oracle databases !
    Now I started by developing a simple interface of loading data from EMPLOYEES table of HR schema to another table created by me EMPLOYEES_TGT in the same schema.
    When I dragged and dropped the source and target tables in the mapping tab it showed do you want to map automatically. I selected Yes and then When i executed the project I got errors and I have manually changed the code in the session. One session is executed correctly after changing the code in the sessions, when I start the same project once again it is throwing the same errors. How can I make the changes of the code that I changed in the previous session permanent to that interface ?
    Could anyone please guide me how to overcome this problem ? How can i make the changes permanent when one session has completed execution ?
    Thanks& Regards,
    Anvesh

    Hi Raghunar,
    The following is the code generated by default with the interface:
    insert /*+ append */ into HR.I$_EMPLOYEES_TGT
      EMPLOYEE_ID,
      FIRST_NAME,
      LAST_NAME,
      EMAIL,
      PHONE_NUMBER,
      HIRE_DATE,
      JOB_ID,
      SALARY,
      COMMISSION_PCT,
      MANAGER_ID,
      DEPARTMENT_ID,
      IND_UPDATE
    select
    EMPLOYEE_ID,
      FIRST_NAME,
      LAST_NAME,
      EMAIL,
      PHONE_NUMBER,
      HIRE_DATE,
      JOB_ID,
      SALARY,
      COMMISSION_PCT,
      MANAGER_ID,
      DEPARTMENT_ID,
      IND_UPDATE
    from (
    select 
      EMPLOYEES.EMPLOYEE_ID EMPLOYEE_ID,
      EMPLOYEES.FIRST_NAME FIRST_NAME,
      EMPLOYEES.LAST_NAME LAST_NAME,
      EMPLOYEES.EMAIL EMAIL,
      EMPLOYEES.PHONE_NUMBER PHONE_NUMBER,
      EMPLOYEES.HIRE_DATE HIRE_DATE,
      EMPLOYEES.JOB_ID JOB_ID,
      EMPLOYEES.SALARY SALARY,
      EMPLOYEES.COMMISSION_PCT COMMISSION_PCT,
      EMPLOYEES.MANAGER_ID MANAGER_ID,
      EMPLOYEES.DEPARTMENT_ID DEPARTMENT_ID,
      'I' IND_UPDATE
    from HR.EMPLOYEES   EMPLOYEES
    where (1=1)
    ) S
    where NOT EXISTS
      ( select 1 from HR.EMPLOYEES_TGT T
      where 
      and ((T.EMPLOYEE_ID = S.EMPLOYEE_ID) or (T.EMPLOYEE_ID IS NULL and S.EMPLOYEE_ID IS NULL)) and
      ((T.FIRST_NAME = S.FIRST_NAME) or (T.FIRST_NAME IS NULL and S.FIRST_NAME IS NULL)) and
      ((T.LAST_NAME = S.LAST_NAME) or (T.LAST_NAME IS NULL and S.LAST_NAME IS NULL)) and
      ((T.EMAIL = S.EMAIL) or (T.EMAIL IS NULL and S.EMAIL IS NULL)) and
      ((T.PHONE_NUMBER = S.PHONE_NUMBER) or (T.PHONE_NUMBER IS NULL and S.PHONE_NUMBER IS NULL)) and
      ((T.HIRE_DATE = S.HIRE_DATE) or (T.HIRE_DATE IS NULL and S.HIRE_DATE IS NULL)) and
      ((T.JOB_ID = S.JOB_ID) or (T.JOB_ID IS NULL and S.JOB_ID IS NULL)) and
      ((T.SALARY = S.SALARY) or (T.SALARY IS NULL and S.SALARY IS NULL)) and
      ((T.COMMISSION_PCT = S.COMMISSION_PCT) or (T.COMMISSION_PCT IS NULL and S.COMMISSION_PCT IS NULL)) and
      ((T.MANAGER_ID = S.MANAGER_ID) or (T.MANAGER_ID IS NULL and S.MANAGER_ID IS NULL)) and
      ((T.DEPARTMENT_ID = S.DEPARTMENT_ID) or (T.DEPARTMENT_ID IS NULL and S.DEPARTMENT_ID IS NULL))
    I modified the code to the following :
    insert /*+ append */ into HR.I$_EMPLOYEES_TGT
      EMPLOYEE_ID,
      FIRST_NAME,
      LAST_NAME,
      EMAIL,
      PHONE_NUMBER,
      HIRE_DATE,
      JOB_ID,
      SALARY,
      COMMISSION_PCT,
      MANAGER_ID,
      DEPARTMENT_ID,
      IND_UPDATE
    select
    EMPLOYEE_ID,
      FIRST_NAME,
      LAST_NAME,
      EMAIL,
      PHONE_NUMBER,
      HIRE_DATE,
      JOB_ID,
      SALARY,
      COMMISSION_PCT,
      MANAGER_ID,
      DEPARTMENT_ID,
      IND_UPDATE
    from (
    select 
      EMPLOYEES.EMPLOYEE_ID EMPLOYEE_ID,
      EMPLOYEES.FIRST_NAME FIRST_NAME,
      EMPLOYEES.LAST_NAME LAST_NAME,
      EMPLOYEES.EMAIL EMAIL,
      EMPLOYEES.PHONE_NUMBER PHONE_NUMBER,
      EMPLOYEES.HIRE_DATE HIRE_DATE,
      EMPLOYEES.JOB_ID JOB_ID,
      EMPLOYEES.SALARY SALARY,
      EMPLOYEES.COMMISSION_PCT COMMISSION_PCT,
      EMPLOYEES.MANAGER_ID MANAGER_ID,
      EMPLOYEES.DEPARTMENT_ID DEPARTMENT_ID,
      'I' IND_UPDATE
    from HR.EMPLOYEES   EMPLOYEES
    where (1=1)
    In the same way for other steps in the same session I got some errors and I fixed them by changing the code. But the problem is that where can I change this so that it will be a permanent solution.
    Thanks,
    Anvesh

  • How to make the changes in Existing DC

    hi
    I am new to the NWDI. We have created one trac and we have added one .SCA file to that. This file contains many DC's.
    I have imported this track in to NWDS. I am able to see the list of the DC in Development configuration prospective. Now i need to make some changes in the existing code or to see the details.
    But i am not able to see the those DC's in  Webdypro prospective to make the changes.
    what need to be done. Please let me know any steps need to be configured to access the DC's in webdynpro prospective.
    Regards
    Vijay

    Hi ,
    check the below link
    http://help.sap.com/saphelp_nw04s/helpdata/en/34/053fa30a68844c8495a863ae13dbe1/frameset.htm
    Koti Reddy

  • How to make the list code visible?

    Dear All Experts,
         How to make the list with A1 and so on visible?
         Pls refer to below screenshot:
    Thanks!

    Dear All,
         I already find it.
    Thanks!

  • Windows media is corrupt, I have QuickTime but don't know how to make the change, can you please help me?

    Hi, I am new to you and I am having problems with my Windows Media. I ran a fix it test on it and it came back saying that the player is corrupt and can not read the dll. Plus I have gotten pop-ups saying the script on the page had quit running 2 or 3 times, that's what made me check it. I have Quick Time on here, I have never used it before. How do I properly go about making the the switch? Do I delite the Windows Media? Do I need to do anything to QuickTime other than just open it? Thank you so much for your time & help.
    Terri Young

    When you say "account," do you mean your iTunes library, because your iTunes library is what is on your computer?  Your iTunes library does not have an email address.  An account that is related to iTunes is your Apple ID (which is an email address) and you use it as your user name to sign in to the iTunes Store, to make purchases.  Changing your Apple ID will not make songs disappear from your computer's iTunes library.
    If you had an Apple ID and used it to make song purchases from the iTunes Store, and then started using a different Apple ID, you should be able to re-download the songs purchased with the old Apple ID.  In iTunes, sign in to the iTunes Store using your OLD Apple ID (and password).  That may not be your current email address, but Apple uses it as your user name, so it does not matter.
    On the iTunes Store Home screen, click on Purchased under QUICK LINKS.  This takes you do the Purchased screen, where you can re-download previous song purchases (for that Apple ID) at no cost. 
    NOTE:  If those song purchases are from more than a few years ago, you may also need to authorize your computer to play (and sync) songs for your old Apple ID. 
    For songs that were not purchased from the iTunes Store, if they are also gone, you cannot get them back unless you have a backup (or they are still loaded on your old iPod).
    If that's not what you mean by "changed the email address on my account," please post back with more details.

  • I just installed photoshop cc, how to make the english UI available in preferences, as it doesn´t appear! Please help??

    I just installed photoshop cc, how to make the english UI available in preferences, as it doesn´t appear! Help please??

    Hi George,
    Kindly try the below mentioned steps.
    Sign in, Sign out | Creative Cloud desktop app
    Click on download on Digital photography software | Download free Adobe Photoshop Lightroom CC trial
    Please share the results once done.
    Thanks,
    Atul Saini

  • I just bought a used Macbook Pro. How do I make the changes to make it personal. Example the iTunes comes up as the old user and I have to have his password to make changes on the laptop. Can you make any suggestions?

    I just bought a used Macbook Pro. How do I make the changes to make it personal. Example the iTunes comes up as the old user and I have to have his password to make changes on the laptop. Can you make any suggestions?
    Also I cant make a right click on the pad. Is that normal?

    Your first going to have to remove all your personal data off the machine to a external storage drive, do not use TimeMachine when it asks as this will copy the entire drive and is unnecessary at this time (also takes too long).
    You need to drag and drop copy your personal data folders (Music, Pictures, Movies etc) to a external storage drive, once done, unmount and disconnect this drive.
    Most commonly used backup methods
    Next your going to follow the Zero Erase and install method for your OS X version, either 10.6 or 10.7, here
    How to reinstall just OS X or erase/install OS X
    10.7 requires your AppleID and password to install, so make sure to have that ready.
    Once you reboot your into the real setup of OS X, which will require your name etc, so it's now your machine.
    Install your programs, iLife package is only free for the owner of the machine.
    If you have the 10.6 machine specific disks, then it's on there.
    If your using 10.7, then you'll have to purchase it from the App Store.
    Last, return your files from the storage drive, consider setting up a TimeMachine or clone on the external drive.

  • To make the change from MobilMe I will have to update from System 10.4.11 to 10.7.2.  How many system and firmware updates will I have to do?

    To make the change from MobilMe I will have to update fro System 10.4.11 to 10.7.2.  How many firmware and system updates will I have to make

    First, see if your system can run Lion:
    http://www.apple.com/macosx/specs.html
    If you have any PPC apps, none of them will work under Lion.
    If you meet the requirements for Lion, you can go to Snow Leopard(US $29), then update to 10.6.8, then update to Lion(US $29).
    Apple says 2GB's of memory minimum. I wouldn't update to Lion unless you can run at least 4GB's.

  • Why can't I update any apps? When I hit update it gives me an old id. But in settings my new id is totally set and verified. How cam I make the change in App Store?

    Why can't I update any apps? When I hit update it gives me an old id. But in settings my new id is totally set and verified. How cam I make the change in App Store?

    App purchases are permanently tied to the ID with which they were purchased. They cannot be transferred to a new ID.
    You will have to enter the password for that ID or delete the apps and re-purchase them with the new one.
    ~Lyssa

  • We intended on purchasing CS6; not CC.  How do we make the change?

    We intended on purchasing CS6; not CC. How do we make the change?

    Cancel http://helpx.adobe.com/x-productkb/policy-pricing/return-cancel-or-change-order.html
    -or by telephone http://helpx.adobe.com/x-productkb/global/phone-support-orders.html
    Buy CS6 Creative Suite 6

  • We had to change the feed adress and the epsiode adresses. Now all the episodes of my podcast are downloaded (although i have downloaded them already). How can I make the changes in my feed and avoid that all the episodes are reloaded?

    Hello,
    We had to change the feed adress (<itunes:new-feed-url>)and the epsiode adresses in the feed because the feed and the episode-files are on a new server. Now when i open my iTunes subscription of our podcast all the episodes of my podcast are downloaded again (although i have downloaded them already).
    My Question therefore is: How can I make the changes in my feed and avoid that all the episodes are reloaded?
    Maybe have an answer?
    Thank you very much.

    Thank you very much for your answer
    As I see now, our 'guid' tags contain the episode URLs
    To avoid this problem in the future i would like to change guid tags. Can you please tell me how a guid tag should look like if it is not the URL?
    Thank you for helping us!
    ps now it looks like this eg:
    <guid isPermaLink="false">http://www.castyourart.com/podcasts/213_thinkglobal_en.mp4</guid>

  • How to make/save changes to the file - /etc/httpd/httpd.conf - in Terminal

    I'm new to Unix/Terminal and am attempting to make changes in the Apache Web server's configuation file - /etc/httpd/httpd.conf - so that I can use PHP locally. (The "LoadModule php4" has a "#" mark in front of it which I am attempting to remove.) This approach is suggested in the book "Dreamweaver MX 2004 with asp, coldfusion, and php." The book includes instructions on how to adjust the files using pico in Terminal. But the book doesn't explain how to work with Unix/Terminal to enable the right access permission to save the changes in Terminal. I've been able to make the changes in pico the book recommends, but I'm not able to save the changes. I'm the only user of the computer.
    Please advise how to be able to save the changes. Thank you!
    G4   Mac OS X (10.3.9)  
    G4   Mac OS X (10.3.9)  
    G4   Mac OS X (10.3.9)  

    jamesk,
    httpd.conf is owned by 'root'. therefore, to save your changes you need to use 'sudo' when editing the file. before you do that, you should type in
    man sudo
    and read about what sudo actually does. be aware that it can give you all-encompassing power to do many things - including messing things up.
    once you have read about sudo, first do (substitute full paths, if necessary - e.g. /etc/httpd/httpd.conf for httpd.conf)
    sudo cp httpd.conf httpd.conf.bak
    to backup your httpd.conf file (in case you make an error), then do
    sudo nano httpd.conf
    to make your changes, then save the file.
    then do
    sudo apachectl configtest
    to test changes to the server config (it should let you know if there is an error).
    finally do
    sudo apachectl graceful
    to restart the server and re-read the config file.
    cheers,
    b

  • IPhone 5S IOS 8. Can't figure out how to disable the "live" location feature within the native calendar app used for mapping/travel time.  Have looked everywhere and it's driving me nuts.  Thanks for any help on where to make the change!!

    iPhone 5S IOS 8. Can't figure out how to disable the "live" location feature within the native calendar app used for mapping/travel time etc.  Have looked everywhere and it's driving me nuts.  Thanks for any help on where to make the change!!

    iPhone 5S IOS 8. Can't figure out how to disable the "live" location feature within the native calendar app used for mapping/travel time etc.  Have looked everywhere and it's driving me nuts.  Thanks for any help on where to make the change!!

Maybe you are looking for

  • HP Officejet 4630 e-All-in-one Series change time on clock?

    clock on printer screen says it is 7:34PM.  Actual Central Daylight time is 2:35 PM. This question was solved. View Solution.

  • How to identify a Spool generated.

    Hi Guru's, I am working on a print program, once the program is exicuted i am saving the data into a Ztable. Now wat i want is that to save the o/p data only when a print is taken but not when only print preview is viewed. for this i am thinking of u

  • There is any Scripting languages is used for mobile application development

    Is there is any Scripting languages is used for mobile application development? For example java script,vb script is used for web development.Like that is there is any scripting language is used for mobile application development along with J2me. Tha

  • Enterprise Java Beans how to start??

    Hi All, I am new to EJB. I need to use EJB in my finantial Application. Can anybody tell me how to start learning EJB?? We are using WebSphere Application Server..There are lots of material availabe ..but its enough to make me confuse.. I dont know w

  • How do I network windows and mac?

    I've an older windows xp laptop that can access internet via my home wifi and of course, my mac family of iMac, macbook pro, iPad, and iPhone can access internet by wifi.   The macbook pro and iMac can see each other in Finder. Problem is, I can't ge