Can Transport  Visual Admin Settings and Configuration?

Hi all,
I'm using EP 7.0 and SP13. Due to reinstallation of  our server  i need to export all the configuration setting of Visual Admin.
Exported all the visual Admin configuration by using Tool-->Export.
while exporting the corresponding zip file automatic stored in the server path C:\usr\sap\Server Instance No\JC00\j2ee\admin\J2EE Engine Configuration.zip
But i dont know how and where to import the J2EE Engine Configuration.zip again into server .
what can i do..
Regards
Thillai J

Thillai J
This question is marked both answered and u2018not solvedu2019.
In case you are still looking for an answer, Config Tool Export and Import should be used instead of Visual Admin.
Hope this helps.
PJ

Similar Messages

  • MM - Basic Settings and configurations

    Hi Folks,
    Please tell me what are all the Basic(General) settings and configurations to be made during a Standard SAP Implementation, as a MM Consultant. Please give them in order.
    -Pallu

    hi for basic setting u canrefer first thread of the MM forum
    New to Materials Management / Warehouse Management?
    now for the settings u can also refer the building block notes
    for MM refer following
    http://help.sap.com/bp_bblibrary/600/html/J05_EN_IN.htm
    for CIN use following link
    https://www.sdn.sap.com/irj/scn/wiki?path=/display/erplo/cin%252bconfiguration
    More useful for CINwill be following
    http://www.scribd.com/doc/2527809/CINcustomizing-1
    regards
    KI

  • I am ordering a new IPad 4 and I now own an Original IPad.  Can I transfer all settings and info. direct from old to new?

    I am ordering a new IPad 4 and I now own an Original IPad.  Can I transfer all settings and info. direct from old to new?  How?

    Yes, restore the iPad usind a backup file created in iTunes from the iPad 1.

  • How can I parse GPO settings and get the GPOApplyOrder?

    I have created a script that will search all GPO's in the domain and parse only those which have Drive Map settings and writes the information to a .csv file.  I have tried to figure out a way to get the GPOApplyOrder to no avail.  The closest
    I have come to any sort of reasonable output is
    "@{GPOSettingOrder=}", which is better than the nothing I had been getting.  I think it would be really helpful if I could sort on the appy order so I could see the flow of the applied settings.  Here is what I have.
    # ==============================================================================================
    # NAME: GetGPO_DriveMappings.ps1
    # AUTHOR: Mike
    # DATE: 6/17/2014
    # Updated: 7/29/2014
    # COMMENT: This script will get all the GPO's in the domain. It will parse only the GPO's that have drive map settings.
    # The results are written to GetGPO_DriveMappings.csv
    # This script is written to be run from the domain that the GPO(s) is in.
    # NOTE: The script will not perform any group provisioning.
    # ==============================================================================================
    # set Variables and load assemblies
    ImportSystemModules
    Import-Module GroupPolicy
    [void][System.Reflection.Assembly]::LoadWithPartialName('Microsoft.VisualBasic')
    $ScriptPath = "R:\Procedural Instructions\Scripts\Get AD Object Info"
    # Get drive map settings from all GPOs.
    Function Get-DriveMappings
    # File listing the drive mappings via GPO.
    $ExportFile = "GetGPO_DriveMappings.csv"
    # Creates .csv file for logging.
    $Header = "GPO Name,Drive Letter,Action,Apply Order,Drive Path,Group,OU,User"
    Set-Content -Path $ScriptPath\$ExportFile -Value $Header
    $GPO = Get-GPO -All
    ForEach ($Policy in $GPO)
    $GPOID = $Policy.Id
    $GPODom = $Policy.DomainName
    $GPODisp = $Policy.DisplayName
    If (Test-Path "\\$($GPODom)\SYSVOL\$($GPODom)\Policies\{$($GPOID)}\User\Preferences\Drives\Drives.xml")
    [xml]$DriveXML = Get-Content "\\$($GPODom)\SYSVOL\$($GPODom)\Policies\{$($GPOID)}\User\Preferences\Drives\Drives.xml"
    ForEach ( $MapDrive in $DriveXML.Drives.Drive )
    $GPOName = $GPODisp
    $DriveLetter = $MapDrive.Properties.Letter + ":"
    $DrivePath = $MapDrive.Properties.Path
    $DriveAction = $MapDrive.Properties.action.Replace("U","Update").Replace("C","Create").Replace("D","Delete").Replace("R","Replace")
    $GPOApplyOrder = $MapDrive | Select GPOSettingOrder
    $Filters = $MapDrive.Filters
    $FilterOrgUnit = $null
    $FilterGroup = $null
    $FilterUser = $null
    ForEach ($FilterGroup in $Filters.FilterGroup)
    $FilterGroupName = $FilterGroup.Name
    ForEach ($FilterOrgUnit in $Filters.FilterOrgUnit)
    $FilterOrgUnitName = $FilterOrgUnit.Name
    $FilterOrgUnitName = $FilterOrgUnitName -Replace (",",";")
    ForEach ($FilterUser in $Filters.FilterUser)
    $FilterUserName = $FilterUser.Name
    $ExportText = "$GPOName,$DriveLetter,$DriveAction,$GPOApplyOrder,$DrivePath,$FilterGroupName,$FilterOrgUnitName,$FilterUserName"
    Add-Content -Path $ScriptPath\$ExportFile -value $ExportText
    # --End of Function: Get-DriveMappings--------------------------
    # Notifying that the scripted finished.
    Function Script-Finished
    [System.Reflection.Assembly]::LoadWithPartialName(“System.Windows.Forms”)
    [Windows.Forms.MessageBox]::Show(“Script completed successfully”,"GetGPO_DriveMappings.ps", [Windows.Forms.MessageBoxButtons]::OK, [Windows.Forms.MessageBoxIcon]::Information)
    # --End of Function: Script-Finished--------------------------
    # Main Code:
    # Execute the functions
    $ErrorActionPreference="SilentlyContinue"
    Get-DriveMappings
    Script-Finished
    $ErrorActionPreference="Stop"
    Thanks to all in advance.

    I am looking for the order in which the drive map settings are applied. Truly the GPOSettingOrder value. I guess was thinking that it was the order that the drives were mapped so that is what
    I named the variable. In the middle of it all it made sense, now with your question, from the outside looking in, it doesn't. My apologies.
    -<ExtensionData>
    -<Extension xsi:type="q3:DriveMapSettings" xmlns:q3="http://www.microsoft.com/GroupPolicy/Settings/DriveMaps">
    -<q3:DriveMapSettings clsid="{8FDDCC1A-0C3C-43cd-A6B4-71A6DF20DA8C}">
    -<q3:Drive clsid="{935D1B74-9CB8-4e3c-9914-7DD559B7A417}" bypassErrors="1" uid="{B7F4229B-9A38-4A52-A987-7FB0CA53BF26}" changed="2013-11-19 18:03:50" image="3" status="P:" name="P:">
    <q3:GPOSettingOrder>1</q3:GPOSettingOrder>
    <q3:Properties letter="P" useLetter="1" persistent="1" label="" path="\\---------------------\APPS" userName="" allDrives="NOCHANGE" thisDrive="NOCHANGE" action="D"/>
    -<q3:Filters>
    <q3:FilterOrgUnit name="OU=---------------,DC=com" directMember="0" userContext="1" not="0" bool="AND"/>
    <q3:FilterOrgUnit name="OU=---------------,DC=com" directMember="0" userContext="1" not="0" bool="OR"/>
    <q3:FilterOrgUnit name="OU=---------------,DC=com" directMember="0" userContext="1" not="0" bool="OR"/>
    <q3:FilterOrgUnit name="OU=---------------,DC=com" directMember="0" userContext="1" not="0" bool="OR"/>
    <q3:FilterOrgUnit name="OU=---------------,DC=com" directMember="0" userContext="1" not="0" bool="OR"/>
    <q3:FilterOrgUnit name="OU=---------------,DC=com" directMember="0" userContext="1" not="0" bool="OR"/>
    </q3:Filters>
    </q3:Drive>

  • Oracle settings and configuration for PS

    I am attempting to install PeopleSoft 9.0 CRM etc on an Oracle database. I have a new PC (IBM T41) 1 GB RAM 1.6MHZ CPU.
    I have downloaded Oracle 10x, PS 9.0 apps, Tuxedo, BEA, IIS 6.0.
    All, except PS has been installed successfully.
    Question: What are the settings in Oracle that need to be configured in order to get PeopleSoft 9.0 running. [I am not a DBA and do not know the specifics to get Oracle configured properly]
    Is there anyone out there who is able to guide me, either through documentation or a response to this post?
    Charles Cohorst

    Network configuration assistant may have created at least two out of the four listed files at your ORACLE_HOME/network/admin directory:
    tnsnames.ora
    sqlnet.ora
    It can configure, if required the listener.ora and ldap.ora files. Same issue at your ORACLE_HOME. It is important to make sure those files are properly located, otherwise you won't be able to connect to your instance, and if required, your listener won't be properly configured.
    If you want further details on how to configure these files and what the required entries mean, you may want to read the Configuration and Administration of Oracle Net Services reference manual: http://download-west.oracle.com/docs/cd/B19306_01/network.102/b14212/part2.htm#i436475
    ~ Madrid.

  • My daughter was taping on iPad and turned the voiceover, however I have a passcode and I can't get to settings and I can't unlock now

    My daughter was taping on the iPad and turned the voiceover on. I have a passcode on the iPad. I can't enter it now when the voiceover is on because the keyboard is weired. how do I reset? Please any idea?

    Touch or tap the field that you want to use/select and it should get a box around it ; then double-tap that field to activate/type it. Once you've entered your password you can do the same (i.e. touch to select, double-tap to activate) to gradually get into  Settings > General > Accessibility > VoiceOver and turn it off.
    So to enter your passcode you first need to tap the 'slide to unlock' button to highlight it (it should get a box around it), then double-tap it to unlock it. Then for your passcode tap the digit that you want and it should get a box around it; then double-tap that digit to type it; and similar for the other three digits in your passcode.
    The manual (http://support.apple.com/manuals/#ipad) also says that you should be able to switch voice-over off by connecting to your computer's iTunes :
    Turn VoiceOver on or off in iTunes: Select iPad in the iTunes sidebar. In the Options section of the Summary pane, click Configure Universal Access. Select VoiceOver, then click OK.
    So select Configure Universal Access at the bottom of the Summary tab and set Seeing to Neither

  • Settings and configuration for APO SNP?

    Hi,
    we want to use SNP in the future.
    Which configuration must be done in the APO customizing?
    Which data must be transferred from R/3 to APO?
    Does anybody has a kind of check list for the necessary settings?
    Thanks,
    Michael

    Ken,
    Ever since SAP discontinued the SCM 5.0 Best Practices, I have never seen all the APO building blocks that actually still exist all stored in a single place by SAP.  I have to hunt around to find them.
    RDS solutions (which sometimes include APO Building blocks) can be  downloaded at
    https://websmp206.sap-ag.de/~form/handler?_APP=00200682500000001943&_EVENT=DISPHIER&HEADER=N&FUNCTIONBAR=N&EVENT=TREE&TMPL=INTRO_SWDC_IU_PSP&V=INST&TA=ACTUAL&
    provided you have adequate authority.  Most of the building blocks that can be downloaded at the above link have also been published "somewhere" in help.sap.com.  Also, you occasionally see a non-RDS BB in help.sap.com.  So, when I want to find APO building blocks, and I can't find them under RDS solutions, I go into Help.sap.com and start using the search feature (the "Global search" on the home page, not Trex search). 
    If in your travels you ever find a 'centralized' repository for all APO BB docs that is publicly available, please publish it in SCN, because I am sure that many SCN readers would find this info valuable.
    Best Regards,
    DB49

  • SNC Router settings and configuration

    Hi All, I wanted to open ports only for Production Server in my SNC Router and not for my Other servers please help me how can I configure SNC Router settings for the same. And also please send me the configuring steps of SNC router from SAP notes PDF. I will be thankful for it.
    Regards,
    Prashant Chauhan

    Hi Rupali,
    Thanks for ur reply, I had tried by doing the same settings but it did not worked, below is my current setting of SNC Router, here my SOLMAN Server IP is 192.168.1.135 & my Production Server IP is 192.168.1.84, and when I am using SAP Router string I am able to access all my other servers like Quality, Development or BIW. So I want to restrict those access & want to allow only my Production server. Please help.
    P * * *
    KT "p:CN=sapserv2, OU=SAProuter, O=SAP, C=DE" 194.39.131.34 *
    KP "p:CN=sapserv2, OU=SAProuter, O=SAP, C=DE" 192.168.1.135 3200
    KP "p:CN=sapserv2, OU=SAProuter, O=SAP, C=DE" 192.168.1.135 3389
    KP "p:CN=sapserv2, OU=SAProuter, O=SAP, C=DE" 192.168.1.135 3200
    KP "p:CN=sapserv2, OU=SAProuter, O=SAP, C=DE" 192.168.1.135 3389
    KP "p:CN=sapserv2, OU=SAProuter, O=SAP, C=DE" 192.168.1.135 3299
    #Permission entries to check if the connection is allowed at all
    #P sapserv2 194.39.131.34 3200
    #P sapserv2 172.168.1.228 3200
    #P sapserv2 124.247.200.231 3200
    #P * sapserv2 3299
    P * 192.168.1.135 3209
    P * 192.168.1.135 3299
    P * * *

  • PS Generic settings and configuration

    Dear all,
    I am configuring the PS module for project based industry (ETO).
    I have J12 and J214 config guides from SAP building block library describing the generic settings for PS module.
    Are these two docs are sufficient to configure entire PS module / settings?
    Pl sggest me if any other useful / important doc exists in the similar context.
    Rest all other modules are being configured by different module leads.
    Pl dont give ref of SAP help as I am already refering to it but it is very general and covers all the scenarios which is canabalizing the things.
    The useful answer will be awarded with full marks.
    Thanks in advance.

    Hi
    If furthur details. Check out Business partner id and password from your company
    So from there u can get COOK BOOKS, which will be very much useful for understanding PS and do config
    - Pithan

  • Admin settings and Apple mail

    I'm not having any serious challenges with Snow Leopard. But, previously when I changed the admin pix in preferences, the pix also appeared in mail. Now, after trying most everything I can think of - I still get the default mail image. In short, would rather use a different image - one that I've created - which appears in the admin account but, alas, not in the mail account. Other than that - loving Snow Leopard!
    Thanks in advance.

    Thanks a bunch! Hadn't tried that!
    Pretty crazy - but not serious - just a minor frustration.
    Thanks again for the quick and very helpful reply.

  • No CD, can't change admin login and password???

    Hi...Please help. I do not have a startup disk and cannot change the aministrator login and password...what do I do?

    Hi skyjac, and a warm welcome to the forums!
    Reset OS X Password Without an OS X CD...
    http://theappleblog.com/2008/06/22/reset-os-x-password-without-an-os-x-cd/
    Admin Hack...
    http://www.hackmac.org/?q=node/4
    Starts up like the first time you buy a new Mac, but after filling in all that info again, you should have access to the computer and the other Users & files will still be there... though I was just thinking, this new User probably shouldn't be the same name as an existing one.
    If that doesn't work for you (and some users have reported it has not worked for them), try Niel's procedure Making the Setup Assistant reappear.
    http://discussions.apple.com/thread.jspa?messageID=607547
    I lost my admin user (Mac OS X 10.4 and earlier) ...
    http://discussions.apple.com/thread.jspa?threadID=121786&tstart=0

  • Can't Restore User, Settings, And Files

    Hi.
    I had a user account with a misspelled "full name" and therefore a misspelled home folder name. I followed apple's directions to change these issues here: Change your OS X account name and home directory name - Apple Support
    When I followed these directions and restarted, I lost everything in that user's file structure - desktop items, home folder items, preferences, etc. I essentially got a completely clean account. So as far as I can tell, these directions are pretty crappy.
    In addition, the setting changes I make to the account won't stay. My adjustments to the icons in the launcher keep disappearing, as do my changes to track pad preferences, etc.
    I have a time machine backup from the night before, but when I try to restore it it will only use a "full backup" from December 5th, which is missing a lot of my work.
    Can anyone suggest how I can restore all my stuff?

    having the exact same problem and am at the same point - can't access my ID. love to hear something helpful

  • Documentation and configuration settings

    Hi Experts,
    Can any one provide documentation and configuration settings  for the following areas.
    Planning and budget,
    PC Industrial,
    Standard Cost Calculation,
    Production Variance Analysis
    Regards
    Balu

    HI Madhu
    I have sent you the Io & Pctr documents to ur mail id. Plz assign points if its helpful.
    Regards
    Rajaram

  • Managing and configuring log files for Oracle 9ias

    Hi all,
    I'm wondering where I can find documentation on managing and configuring log files like:
    ORACLE_HOME/admin/ sid/*dump/* ORACLE_HOME/assistants/opca/install.log ORACLE_HOME/webcache/logs/*
    ORACLE_HOME/dcm/logs/*
    ORACLE_HOME/ldap/log/*
    ORACLE_HOME/opmn/logs/*
    ORACLE_HOME/sysman/log/*
    ORACLE_HOME/j2ee/ OC4J_instance/log/*/* ORACLE_HOME/config/schemaload.log ORACLE_HOME/config/useinfratool.log
    because I didn't find anything in document like:
    Oracle9 i Application Server
    Administrator�s Guide
    Release 2 (9.0.2)
    May 2002
    Part No. A92171-02
    So, if anyone has any idea...
    Thanks in advance

    Does anyone know how or if it is possible to send the stdout and/or stderr to the log4j type of logging? I already capture the stdout and stderr to the flat file. But I would like to timestamp every line to compare and diagnose problems with each application that encounters problems. Each web app is using log4j to their own application log4j log file. When they encounter errors or resource draining problems, I would like to see the container logs and see what was occuring inside the container at around that same time.
    Any ideas?

  • Have lost settings and data

    Hi, i've got a refurbished G4 running OS x.4.10 and until recently it's been working fine but i logged on the other night to find that the desktop had reverted to default settings, iphoto had started from scratch (and lost all my photos) - the same with mail (lost all emails and settings), address book, stickies and other dashboard items including previously downloaded stuff - not good.
    Fortunately i backup everything so i've not lost much but i'd like to know what has happened and how i can get the lost data back without having to upload it all again from my external drive (which could take hours).
    As far as i know, i've not done anything unusual to cause this to happen - the previous days work involved downloading a couple of files from apple.com and changing some settings for address book - other than that i was just typing a word document and sending e-mails.
    If anyone can help by suggesting what went wrong and how to avoid it again i would be very grateful, also - can i get my settings and data back without having to upload it file by file (i don't think my sanity could cope with that).
    Adam.

    Hi Adam,
    If the Netinfo database becomes corrupt your account files can become "lost". They can be recovered if you have a recent backup of the database. It's backed up when the cron jobs run (when the computer is on over night or manually via Terminal or a maintenance application). The following article explains how to do it.
    http://docs.info.apple.com/article.html?artnum=107210
    John

Maybe you are looking for

  • Changing default save location

    In our student labs we need Appleworks to default to SAVE to the Student folder - NOT the documents folder. I cannot find any place to change that setting/preference/location. Lab computers are running Appleworks 6.2.9 and OS 10.4.8. Thanks, Monica

  • Encrypt on CLR decrypt in SQL?

    Hi folks, I'm trying to encrypt a small token of data on my client c# application and have it decrypted by SQL on the server side, the problem is i cannot find articles on the subject. I don;t really want to get involved with certificates but base th

  • Streaming mp3 data

    Hi and thanks in advance to anyone willing to help out :) I was disappointed by the general lack of quality in every single J2ME app out there for listening to internet radio (and I'm not going to pay for something so simple), so I decided to have a

  • Missing feature: APEX_APPLICATION_INSTALL not useful for TRANSLATED apps

    Hello, all and Joel Kallman. Thank you Joel for confirming my bug reports yesterday. I have two more problems. One too simple to explain, another more complex but reproducable (related to ora-4031 in large pool with translated apps). According to you

  • JTabbedPane, and JPanel.

    Hi im going thrue swing tutorials here on sun. And wonder a bit about hierarchy. I use JTabbedPane and every class have there own JPanel that i add to the extended JPanel. I show below with example. In Main class   public JFrame mstFrame() {