How to undeploy an .sda file through command line

Hi,
How to undeploy an .sda file through command line.send me the related command to do it.and related information and links.

Hi
Please find below the steps to undeploy thro command line :
Shut down the sdm server
1)SDM shutdown "sdmhome=D:\usr\sap\J2E\JCO1\SDM\program" "sdmguiport=50018" "sdmhostname=<hostname>" password="<password>" "shutdownmode=abort"
2)sdm jstartup "mode=standalone" "sdmhome=c:\usr\sap\J2E\DVEBMGS00\SDM\program"
3) sdm undeploy "sdmhome=D:\usr\sap\J2E\DVEBMGS00\SDM\program" "compname=c:\test.sda"
4)sdm jstartup "mode=integrated" "sdmhome=c:\usr\sap\J2E\DVEBMGS00\SDM\program"
5)start the sdm server again
SDM server "sdmhome=D:\usr\sap\J2E\JCO1\SDM\program"
Hope this helps. do not forget to reward points
regards
rajeshkr

Similar Messages

  • Undeploy an sda file through command-line

    Hi All,
          I want to undeploy an .sda file through command-line,what is the procedure to undeploy an sda file through command-line and send me the procedure for this
    Thanks & Regards,
    guru

    Hi
    Please find below the steps to undeploy thro command line :
    Shut down the sdm server
    1)SDM shutdown "sdmhome=D:\usr\sap\J2E\JCO1\SDM\program" "sdmguiport=50018" "sdmhostname=<hostname>" password="<password>" "shutdownmode=abort"
    2)sdm jstartup "mode=standalone" "sdmhome=c:\usr\sap\J2E\DVEBMGS00\SDM\program"
    3) sdm undeploy "sdmhome=D:\usr\sap\J2E\DVEBMGS00\SDM\program" "compname=c:\test.sda"
    4)sdm jstartup "mode=integrated" "sdmhome=c:\usr\sap\J2E\DVEBMGS00\SDM\program"
    5)start the sdm server again
    SDM server "sdmhome=D:\usr\sap\J2E\JCO1\SDM\program"
    Hope this helps. do not forget to reward points
    regards
    rajeshkr

  • How to install adobe flash player through command line with some script

    Hi Guys,
    Do you know how to install adobe flash player through command line with some script?
    Thanks,
    Galina

    Windows. I tried silent install  with "install_flash_player.exe /install" but it works only with one file that I downloaded from adobe.com - "install_flashplayer10_mssd_aih.exe". But it is possible to download this last file only one time, every next time it redirects me to download install_flash_player.exe file.

  • Deploy EAR file through command line

    Hello Gurus,
    We have external consultants helping us with Java development of a certain application on our CRM system. Usually I would deploy this file through SDM (RemoteGUI). Is there a way to do this on a command line?
    Thanks much.
    Arvind.

    Hello Community,
    the sdm utility allow this, but it can be executed only if SDM server is stopped and it is in standalone mode... a bit too complicated, but it works
    StopServer.sh
    sdm.sh jstartup mode="standalone"
    sdm.sh deploy file=<full path to file to be deployed>
    sdm.sh jstartup mode="integrated"
    StartServer.sh
    You can find the sdm utility in <sdm_home>/program and the documentation in <sdm_home>/program/doc
    Regards,
    Valerio

  • How to send e-mail attatchement from command line

    Hi,
    Is it possible to send an e-mail with some attatchment like a .zip file through command line in iPlanet messaging Server 5.2.
    Please let me know the procedure.,
    Thanks
    Rajeev

    I suggest you try blat.exe from www.blat.net
    I use it regularly to send myself statistics and logfiles from servers without any client. Can be automated in a script.
    Eli

  • How To make jar file through Command Promt and run it through Command Promp

    Now i am using Netbeans to create jar file but i want to create jar file for my project through command line and also want to run through command line

    Note: This thread was originally posted in the [JDK's Monitoring & Troubleshooting Tools|http://forums.sun.com/forum.jspa?forumID=538] forum, but moved to this forum for closer topic alignment.

  • Compare two pdf files using adobe acrobat through command line

    Does anyone know how to compare two pdf files using adobe acrobat through command line. I want to do this via command line because we want to compare hundreds of file every day through some automated windows tasks.
    If command line option is not available in acrobat, then is it feasible to make use of acrobat javascript API to do this task?
    Any kind of help will be greatly.

    Command-line: Not possible.
    JavaScript: Possible, but very limited. Basically the only thing you can do is simulate clicking the Compare Documents button. The rest has to be done manually.
    However, it *might* be possible to automate this process a bit more using a plugin. Ask over at the Acrobat SDK forum for more information...

  • How to read a text file through pl/sql

    How to read a text file through pl/sql

    pl/sql runs inside the database. so your file also should be on the database server file system for you to be able to read.
    check out UTL_FILE package. This is the database package to read/write files on the database server.

  • How To Run An External .exe File With Command Line Arguments

    Hiya, could anyone tell me how I can run an external .exe file with command line arguments in Java, and if possible catch any printouts the external .exe file prints to the command line.
    Thanks.

    Using the Runtime.exec() command. And read this:
    http://www.javaworld.com/javaworld/jw-12-2000/jw-1229-traps.html

  • How to open an .indd file in commands

    does any one know how to open an .indd file in commands from a plugin(without opening from the normal procedure..File -> Open ...)
    in my plugin I tried,
      SDKFileOpenChooser fileChooser;
    fileChooser.AddAllFiles();
    fileChooser.ShowDialog();
         It shows the dialog window to choose a file. but i don't know what to use that file to be apperead in Indesign application.
    If you have any idea please let me know..

    Here's a sample function I use:
    // Create an OpenDocCmd:
            InterfacePtr<ICommand> openDocCmd(CmdUtils::CreateCommand(/*kOpenDocCmdBoss*/ kOpenFileCmdBoss));
            if (openDocCmd == nil)
                break;
            // Get an IOpenFileCmdData Interface for the OpenDocCmd:
            InterfacePtr<IOpenFileCmdData> openFileData(openDocCmd, IID_IOPENFILECMDDATA);
            if (openFileData == nil)
                break;
            // Set the IOpenFileCmdData Interface’s data:
            openFileData->Set(docSpec, uiFlags, openFlags ,IOpenFileCmdData::kNotUseLockFile);
            // Process the OpenDocCmd:
            error = CmdUtils::ProcessCommand(openDocCmd);
            if (error)
                break;
    // Create a layout window for the new doc:
            InterfacePtr<ICommand> newWinCmd(CmdUtils::CreateCommand(kOpenLayoutCmdBoss));
            newWinCmd->SetItemList(UIDList(*openDocCmd->GetItemList()));       
            error = CmdUtils::ProcessCommand(newWinCmd);
    Make sure of error checks!
    OR Search for SDKLayoutHelper Class Reference

  • How to deploy the SDA files in PI 7.1 ?

    Hi Guys,
    I have SDA file to deploy in PI 7.1. I could not find SDM in 7.1, Is this removed, if yes then how to deploy the SDA files.
    any help would be appreciated
    Thanks,
    Srini

    Hi Stefan,
    I placed the SDA file in the JSPM inbox directory and the JSPM could not detect this file as hotfix. I am getting the following error, it looks like i need to use the Netweaver developer stuido to deploy the SDA files.
    I am getting the following error even after placing the sda file in the respective directory.
    No applicable development component(s) found for deployment in Inbox directory
    sappn5\sapmnt\trans\EPS\in.
    Thanks,
    Srini
    Edited by: srinivas kapu on Oct 7, 2008 6:57 AM

  • VISA: How to get the CSV file through C/C++ code?

    How to get the CSV file through C/C++ code?
    I'm communicating with a USB oscilloscope using VISA.

    Thank you for your reply.
    I am using Apache Commons File Upload. Here is the code where I got the "fi".
         DiskFileUpload fu = new DiskFileUpload();
              fu.setSizeMax(1000000000);
              List fileItems = fu.parseRequest(request);
             Iterator itr = fileItems.iterator();
              FileItem fi = (FileItem)itr.next();
              if(!fi.isFormField())
                File tempFileRef  = new File(fi.getName());
         System.out.println("Field = "+tempFileRef.getAbsolutePath());
         }

  • How to index an attribute through command line

    Hi,
    I want to index an attribute through command line. I am using OID. I am creating every attribute and object class through command line. Any suggestion will be of great help.
    Thanks.

    Hi ,
    When Oracle Internet Directory is installed,by default,certain attributes are already indexed. If you want to use additional attributes in search filters, you must index them.
    Below are the points one should remember when indexing an attribure....
    - We can index an attribute while creating it from Oracle Directory Manager admin tool.
    - You can not index an existing attribute from Oracle Directory Manager tool.
    - To index an already existing attribute and that does not have any data, use ldapmodify command.
    - To index an already existing attribute and the has the data, use catalog.sh command.
    If you are sure that the attribute does not have any data in any of the object profile (user,group,container,etc...) then prepare any ldif file and index it using ldapmodify otherwise use catalog.sh command.
    Regards
    GK Goalla

  • How to block IP addresses or IP blocks through the 5505 ASDM interface, not through command lines?

    Is it possible to block IP addresses or IP blocks through the 5505 ASDM interface, and not through command lines? If so, how?

    Unfortunately I can't share any information on the router. It's company policy. But, if you could let me know where in the GUI interface of the router where I can find the ACL and how to enter the IPs to block I would really appreciate it.

  • How to make a .sda file?

    I remember that I read somewhere about how to make a .sda file
    from other files. But I cannot recall.
    Would you please give some hint? Thanks!

    Thanks!
    I am referring to note 897289. Please have a look, thanks!
    Seems that you can rename the generated zip file to sda file. Is that true?
    About inolving portal: how to you export some files sitting on your folder?
    Please explain more.
    Regards!

Maybe you are looking for

  • Image does not appear in preview

    I want to put logos for facebook, twitter, RSS, and Flckr on mainindex page and othher directory pages.  The images appear in design but not when I preview in Firefox.  instead the alt text appears.   How do i get the images, not the text to appear?I

  • Using sets with Strings

    Hello, I'm in a dilemma here I'm using a Set to store Strings: private Set<String> X; I have a class that receives a String and first check if the string is allready on the set and if not it adds it: public boolean method (V e) { if(X.contains(e.getS

  • Issues With Manual Music Sync

    I unchecked about thirty bands and checked about thirty different bands. With each selection the songs continued to count up and the usage meter filled. Until I clicked a final band and the song count and usage meter dropped to zero (all items still

  • SAP DBA Cockpit for Sybase ASE/IQ/RS

    SAP has adjusted the lately cockpit to work with Sybase ASE (IQ?/RS?). Is there a trial version available for inspection?  Will the cockpit be distributed like SC/SCC to the customers in the long run? Those responsible for the distribution, I'd appre

  • Creation NA object for fired person

    Hello. We have the next problem. It is necessary to create an object NA for fired person. Nowadays there are only two objects for him: P and CP (and there is no BP). The report HRALXSYNC does not create an object NA without BP and it is not understan