Configuring import and export directories for Repository and Directory

Hello PI experts,
we have installed a new PI 7.11 system landscape.
Now we have an issue that when we export on our DEV system a Repository object (exapmple.tpz) it will be exported to K:\usr\sap\DEV\SYS\global\xi\repository_server\export
At the moment when we want to import this file in our PRD system we have to copy it from server A to server B and save it there in K:\usr\sap\PRD\SYS\global\xi\repository_server\import
Is there a wa to configure this that we do not have to copy the files maually.
Thank you!
Philipp

Hi Philipp,
this path is not changeable and I don't think this got changed in 7.11
so you need to do it manually or write a script that will move it once the file arrives
Regard,
Michal Krawczyk

Similar Messages

  • Import and directory synchronize problem

    I'm having a problem importing new pictures into an existing file directory which appears in my Lightroom catalog. The photos import normally but show up as a new directory entry off the root of the Lightroom catalog. When I attempt to move/drag them to the existing Lightroom directory I want, I'm told they can NOT be move because they are already there which I can confirm in the Windows file system. Strangely, synchronizing the directory in Lightroom does not find the files even though they are physically there but not showing up in the catalog.  This is a new problem but I can't associate it with anything I've changed in Lightroom lately.  Can anyone suggest what might be going on and more important how to fix it?  It is very irritating. I have another problem and I don’t know if it is related or not.  Lightroom will NOT remember changes I make to calalog location I make through the edit, calalog settings menu or my watch directory for auto import through file, auto import, auto import settings.  It just ignores them and uses what is already there. Again, any suggestions would be greatly appreciated.

    The idle-timeout on DSEE was set to none, which I believe is the default. I tried setting it to 1200 and 2400 seconds without success.
    h3. get-ldap-data-source-pool-prop
    <pre>
    client-affinity-bind-dn-filters : any
    client-affinity-criteria : connection
    client-affinity-ip-address-filters : any
    client-affinity-policy : write-affinity-after-write
    client-affinity-timeout : 20s
    description : -
    enable-client-affinity : false
    load-balancing-algorithm : proportional
    minimum-total-weight : 100
    proportion : 100
    sample-size : 100
    </pre>
    h3. get-ldap-data-source-prop
    <pre>
    bind-dn : none
    bind-pwd : none
    client-cred-mode : use-client-identity
    connect-timeout : 10s
    description : -
    down-monitoring-interval : inherited
    is-enabled : true
    is-read-only : false
    ldap-address : localhost
    ldap-port : ldap
    ldaps-port : ldaps
    monitoring-bind-dn : none
    monitoring-bind-pwd : none
    monitoring-bind-timeout : 5s
    monitoring-entry-dn : ""
    monitoring-entry-timeout : 5s
    monitoring-inactivity-timeout : 2m
    monitoring-interval : 30s
    monitoring-mode : proactive
    monitoring-retry-count : 3
    monitoring-search-filter : (objectClass=*)
    monitoring-search-scope : base
    num-bind-incr : 10
    num-bind-init : 2
    num-bind-limit : 1024
    num-read-incr : 10
    num-read-init : 2
    num-read-limit : 1024
    num-write-incr : 10
    num-write-init : 2
    num-write-limit : 1024
    proxied-auth-use-v1 : false
    ssl-policy : never
    use-read-connections-for-writes : false
    use-tcp-keep-alive : true
    use-tcp-no-delay : true
    </pre>

  • Import PDF into Director for Interactive CD

    I'm in the process of creating an interactive CD with
    Director 11. This is also the first time I've used this program. I
    need to be able to link interactive buttons to the PDFs that have
    the information I want displayed. Director doesn't have pdf as a
    possiblity to import. What do I need to do to get it to read those
    files and get my links to work? I'm also on a tight deadline - any
    & all help would be greatly appreciated! Thanks!

    You can also open PDFs using Director's Open command.
    We normally use the Buddy API Xtra to do this (see script
    below). The following sample script requires the Buddy API Xtra,
    the user must have Adobe Reader installed on their system. The file
    will open with what ever application is associated with the PDF
    file type on their computer. It is basically the same as double
    clicking on a file.
    This script also assumes that the PDF file is located in a
    folder at the same level as your Director movie that calls it. This
    can be modified to fit your particular file structure.
    When you drag this script to a sprite, the
    getPropertyDescriptionList behavior will prompt you to enter the
    folder name and the PDF file name.
    Note: if the path to the file, or the name of the file is not
    correct, the file will not load. Also, due to the "\" path
    separator used, this script is formatted for windows only. This can
    also be modified if needed.
    Sample script:
    property myFolder --the folder that contains the PDF
    property myPDF --the PDF to be launched
    on getPropertyDescriptionList
    description = [:]
    description.addProp(#myFolder,[#format:#string,#default:"PDF_folder",#comment:"Folder
    containing PDF"])
    description.addProp(#myPDF,[#format:#string,#default:"PDF_file",#comment:"PDF
    file to load"])
    return description
    end
    on mouseDown me
    baOpenFile( _movie.moviePath & myFolder & "\" &
    myPDF, "" )
    end
    -------------------------------------------

  • I exported a library as to an ext HD. Trying to import it back in to managed lib, her message could not be  imported, still exporting, wait for export to stop

    exported some pictures from a project to a HD, as a library, and everything went smooth. I go to import it back into my original library [ I know it comes back as a project] and repeatedly get the message "Library could not be imported because it is still being exported. Please wait for export to complete and try again." That was two days ago. How do I get my pics back?

    Have you tried to repair your Libraries? Both, the original library you exported from, and the exported library?
    Start with repairing the permissions, and then repairing the database.
    To repair using the Aperture Library First Aid Tools, hold down both the options and the command key at the same time, and with both ⌥⌘ keys firmly pressed, double click the Aperture library that you want to repair.
    Select the "repair" option you want to use from the panel that will pop up,
    Regards
    Léonie

  • Import and export parameters.

    Hi Experts,
    If I am using import n export parameters for getting data from a different program into my main program, do i have to declare the variables again in the second program.
    For ex:
    The main report has the following piece of code:
    data: int1 type I,
            int 2 type I.
    export: int1 to memory id 'mem1',
               int2 to memory id 'mem2'.
    submit report 'call_report' and return.
    The call_report has the following piece of code:
    import: int1 from memory id 'mem1',
               int2 from memory id 'mem2'.
    So if I am not declaring int1 n int2 explicitly in this report, i get the syntax error that they r not defined.
    My confusion is that when v r exporting int1 n int2 from the main report, then y is the explicit declaration required?
    Is ther no other way out than decalring int1 n int2 in the call_report.
    I will reward all the helpful answers.
    Thanks,
    Ajay.

    Hi Ajay,
    With EXPORT u r not exporting the variable and its definition but the content(data) of the variable u r exporting. So if u want to get the content in another program then u have to declare the variables of same type in the calling program also. Similarly with IMPORT u are not downloading the attributes of the field but only the content of variable u exported earlier.
    Another point to remember is u have declare the variable in the second report with the same name and type as of first report.
    Also check below piece of code which is similar to ur req
    First report
    REPORT Z75694_TEST .
    DATA: i_data TYPE i VALUE '1111'.
    EXPORT i_data TO MEMORY ID 'VINOD'.
    CHECK sy-subrc IS INITIAL.
    WRITE: 'Exported'.
    SUBMIT Z75694 AND RETURN.
    Second report
    REPORT z75694.
    DATA i_data TYPE i.
    IMPORT i_data FROM MEMORY ID 'VINOD'.
    WRITE:/ i_data.
    It is working fine.
    Hope this clarified ur doubt.
    Thanks,
    Vinod.
    Edited by: Vinod Kumar Vemuru on Apr 11, 2008 10:35 AM
    Edited by: Vinod Kumar Vemuru on Apr 11, 2008 10:44 AM

  • New firefox does not have import export facility for bookmaks how can I do it

    I have got firefox 4 and it seems it does no longer have the import or export feature for the bookmarks so what can I do

    Hit the '''Alt''' to reveal the Menu Bar. <br />
    Bookmarks > '''Show All Bookmarks''' -> Import & Backup - Export HTML... and Import HTML...

  • Is it possible to import and export Config Toll Configuration  from one sys

    Hi All,
    Is it possible to import and export Config Toll Configuration  from one system to Another system (QUS/PRD), for especific service.
    Kindly let me know the pro and corn of it and step by step process
    Thanks alot for your time.
    Thanks
    AB

    Yes...It is certainly possible but then you would need to bring OS level j2ee filestructure as well and there are lots of changes at OS level in *.properties file and then at configtool level changes related to hostname, system numbers and port numbers etc.
    This is not much difficult but not impossible also if you do it very carefully. Please note that SAP DOES NOT SUPPORT THIS METHOD.
    alternatively, you can use sapinst to export-import j2ee filesystem from source to target which inturn would require to do configtool export/import and then changes at configtool level.
    Do let us know your requirement so that we cud help you in case you are facing any issues.
    cheers !!!
    Ashish

  • Upgrading to new version and references for repository export

    Hello,
    We have made a reference for repository export / import in MDM7.1 sp2.
    Now we want to upgrade to the newest version of MDM 7.1 .
    Is this reference automatically upgraded to the new version too or do have to upgrade and then start with a new reference?
    Thanks in advance
    Harrie

    Hi Harrie,
    You need to download the latest upgrade patches from Service Market Place. And install them.
    1. Browse to SMP - https://websmp105.sap-ag.de/~sapidb/011000358700001827872008E
    2. Navigate/scrowl down to section - 'What`s New - Release Notes'
    3.Select the latest patch you need >A window with details of that Release opens up > Select 'Download Corrections' > add patch to download basket > 'Download'to download the patches.
    Your SMP ID must have Download authorization for dowloading the patches.
    Regards,
    Vinay M.S

  • Looking for a program that can handel import and export of palm doc files

    I am looking for a program that can handel the import and export of palm doc Files that can convert them to to either txt or RTF files for Vista 32, running Palm Desktop 7.1.
    Could anyone give me a few suggestions of any plug-ins that would be good me?
    Hearns
    Post relates to: Palm IIIxe
    This question was solved.
    View Solution.

    Ok, you need to clean uninstall Palm desktop 6.2. Install Palm desktop 4.1.4 and download and install documents to go version 6.
    Here are the clean uninstall instructioins for Vista.
    You should first make a copy of your data to have just in case something
    happens. You can find your data files by going to Start --> Documents -->
    Palm OS Desktop. Highlight your Palm Desktop username and right click and
    copy. Then go to your PC desktop right click on a blank spot and select paste.
    If this is the first time you are installing Palm desktop and encountering a problem, skip the previous step.
    Now you want to uninstall Palm Desktop and remove everything that has to do
    with Palm Desktop from your computer.
    Go to the following locations on the PC and delete the folders listed below.
    C:\Program Files\Palm or Palm One
    C:\Users\[Vista Login Name]\appdata\local\virtualstore\Program Files\Palm or
    PalmOne
    C:\Users\[Vista Login Name]\appdata
    *Note you may need to view hidden folders to get to appdata. To do that go
    into your control panel and open folder options. Go to view tab and uncheck
    hide hidden files.
    Once this is done you will need to delete some registry keys from your PC Operating System.
    Word of warning, going here and deleting the wrong thing can cause your PC
    from starting up, crashing and deletion of programs and data. If you feel
    you are unsure of yourself, see if you have a friend that can help you or a
    PC technician that you can pay to help you. This procedure will show them everything they need to delete. To make sure we have a good copy of the current registry, we need to do a backup of the Registry.
    Go to start on the PC, in the search field type "regedit.exe" without quotes.
    Highlight COMPUTER, go to File --> Export. Should pop up with a Save As box.
    Current location is fine, should be in My Documents or save to a location you will remember. In the file name on the bottom type "backup[todaysdate]" i.e. backup07072008. Next, the hard part.
    The easiest way to make sure your working with the correct key, highlight the key i.e. palm quick install, and press delete on your keyboard. It will ask you, are you sure. Say yes. Do the same thing for all keys below.
    If you make a mistake, stop what you are doing. And call a PC technician.
    BUT do not turn off your computer.
    The reg keys are as follows (Note: some of theses reg keys will not be here
    but if they are delete them)
    * HKEY_CURRENT_USER\Software\U.S. Robotics\Palm Quick Install
    * HKEY_CURRENT_USER\Software\U.S. Robotics\PalmOne File Transfer
    * HKEY_CURRENT_USER\Software\U.S. Robotics\Pilot Desktop
    * HKEY_CURRENT_USER\Software\Palm
    * HKEY_CURRENT_USER\Software\Palm, Inc.
    * HKEY_CURRENT_USER\Software\PalmDesktopAutorun
    * HKEY_CURRENT_USER\Software\palmOne
    * HKEY_CURRENT_USER\Software\PalmSource
    * HKEY_LOCAL_MACHINE\Software\PalmSource or anything else that says palm
    Next reboot your computer.
    Then reinstall your palm desktop from the CD and do a hotsync. Use the username that is on the handheld.

  • Query to do import and Export for Oracle 10g

    For MYSQL we have queries available for import and export
    import:-LOAD DATA INFILE 'filename' INTO TABLE tablename FIELDS TERMINATED BY ','
    export:-SELECT * into OUTFILE 'file name' FIELDS TERMINATED BY ',' FROM tablename
    Do we have similar query in Oracle which can be executed on SQL * Plus

    Is it a feedback opinion you want to get/put ?
    If not, then use a proper forum, which you can find somewhere here below :
    http://forums.oracle.com/forums/category.jspa?categoryID=18
    Maybe Database General is the one for your question.
    By the way, explain where you get the data from (flat file -sqlldr - or dump file -imp -?), and where you want to put the data (flat file - select - or dump file -exp - ?), be sure you know the format of file of your output.
    Nicolas.

  • No data source - OLE DB provider for ODBC is not shown in import and export wizard

    Dear Sirs,
    Would you please let me know how to activate the OLE DB provider for ODBC in import and export wizard?
    Now I could use .NET framework for odbc only but it seems have problem in mapping table fields.
    Please advise.
    Thanks & Regards,
    Clara

    see this
    http://msdn.microsoft.com/en-us/library/windows/desktop/ms712975(v=vs.85).aspx
    Please Mark This As Answer if it solved your issue
    Please Vote This As Helpful if it helps to solve your issue
    Visakh
    My Wiki User Page
    My MSDN Page
    My Personal Blog
    My Facebook Page

  • Import and/or export for actionscript without extention?

    I have a project in which I need to import several hundered png images.
    When I import them into the library, then select all the images, then view the properties, I Check the export for action script and the export in frame 1.
    Now, all my images have class names that I can access though my code, however, it included the file extensions in the class names, thus making invalid class names.
    Is there any way I can import and/or set class names so they do not include the file extensions without having to do it manually for EVERY file?

    My actual project has something like 9200 images in it.
    if  my main project, let's call it "main.fla", was to contain every one of  those images, every time I tried to run or debug it, it would take  FOREVER to compile... as a work around that I discovered in a previous  project was to put all my graphics and media into an swc file. (Let's  call it MyLibrary.swc)
    While I was trying to get the  swc working, I discovered that while my media in the swc was indeed  setup to be exported for actionscript with unquie classes and  everything, when I compiled and built my project, I could not get any of  those media elements using the getDefinitionByName function.
    After alot of reading and trail and error I found that the only way to get it to work was to have someplace in my code, an actual reference to the objects that I was trying to get with getDefinitionByName. It turned out, that without instantiating the object in the code, the compiler was omitting it.
    Now, but instantiate, I mean doing this:
    var bm:BitmapData = new MyImage();
    Where MyImage.png is in my swc and has a class defined as "MyImage"
    Once I do that, then I can do this
    var classRef:Class = Class(  getDefinitionByName("MyImage")  );
    But without that line above SOMEWHERE in my code (even if it's not actually executed), the getDefinitionByName returns an error saying it can't find the class.
    Now, here's the problem.
    When I import all my images into my swc library they get named with the file extention... "MyImage.png" and when I select all the images that Imported and batch set the export for actionscript, they get automatically assigned a class name equal to their library name, so the class name is "MyImage.png"
    so if I wanted to use getDefinitionByName to access the class, I would need to instantiate it in my code by doing this:
    var bm:BitmapData = new MyImage.png();
    BUT, that is erronous as the period causes an error and the adobe docs says right in it that class names can't use periods or any other non-alphanumeric character.
    So while the getDefinitionByName function DOES actually work with classes with periods in them, because my media is external of the main.fla, I can't load it unless it's instantiated first, which leaves me right back where I was.... having to to manually rename over 9000 classes manually one at a time.
    I did some searching and found the "Flash Library Renamer" extension, but it requires me changing all my class names to be sequenial, which the vast majority is not.
    Is there a way that I can import the files into the library and have it omit the file extension?
    if not, is there a way that I can set the class names in a batch and not have it use the file extentions?
    if not, is there an Flash Extention or plug in that will allow batch renaming using regular expression or wildcards?

  • Nokia Photo Transfer for Mac - import and export y...

    Hi, Nokia has published new Nokia Photo Transfer for Mac application, which allows importing and exporting photos and videos from Nokia Lumia with Windows Phone 8 smartphones to Mac.
    - Importing photos and videos from your Nokia Lumia with Windows Phone 8, for example Nokia Lumia 1020, to your Mac
    - Exporting photos and videos from Mac to your Nokia Lumia with Windows Phone 8
    - Deleting photos and videos from the phone.
    - Nokia Photo Transfer for Mac supports also full resolution photos taken with Nokia Lumia 1020; photos taken with Nokia Smart Cam and Nokia Smart Shoot applications; photos taken with Nokia Cinemagraph application.
    You can download Nokia Photo Transfer for Mac from Nokia Photo Transfer for Mac web pages.
    Nokia Photo Transfer for Mac supports Nokia Lumia smartphones with Windows Phone 8 operating system. Supported operating systems for Mac are Mac OS X 10.8 Mountain Lion and Mac OS X 10.7 Lion. You need to have compatible USB cable for your Nokia Lumia smartphone.
    Let us hear what you think about the application. Nokia Photo Transfer for Mac informs you about new updates automatically.
    Cheers, Samuli

    Ultimateone wrote:
    I believe that after the OS Mavericks came out that this app is NOT broken.
    Not mentioned as compatible in this link: http://www.nokia.com/gb-en/support/product/nokia-photo-transfer-for-mac/ and no longer works upon Mavericks for me!
    Happy to have helped forum in a small way with a Support Ratio = 37.0

  • Find import and export for method

    Hi,
    i wont to use method in se24 , how i now the import and export and ... for Method?
    Regards

    Hi,
    for an easy use of methods i recommend using the button "pattern" in SE80. If you choose "ABAP Objects Patterns" the source of a method call is generated and all existing Parameters are listed.
    You can display the parameters also within SE24. Call the Class of the Method. Then click on "Methods". Set the mouse focus on the method you are interested in and click the button "Parameters".
    Hope this helps!
    Regards
    Mark-André

  • Itunes keeps telling me "the registry setting for importing and exporting and burning cds are missing" reinstall itunes.  I have reinstalled itunes about 30 times and still get the same message.  I do not have another cd burning software loan

    I keep getting the message "the registry settings for importing and exporting and burning cds are missing. Please reinstall itunes. This may be the result of other cd burining software on your computer"  I do not have another CD burning software on my computer and have reinstalled itunes about 30 times and still get the same message and am not able to burn CDs.  All of my drivers and firmware are up to date. Please help

    Check out this Apple article -> iTunes for Windows: "Registry settings" warning when opening iTunes
    The article will walk you through reinstalling iTunes and then checking for or creating device filters. Did it help? Did you run into any problems?

Maybe you are looking for

  • 16:9 Export trick from Final Cut Pro to iDVD

    If this is posted, I have not seen it. I have spent years trying to get a decent photo quality video on my widescreen tv without peoples faces looking like 4 pixel blocks. I think I have found a pretty decent result. This is for Photo Slide shows onl

  • View files

    hey again. I had a error : mysql_fetch_array() which i got it solved, but when i open my view_files.php Text it doesn't show the file names. This is my code, again: i dont know what could possibly be. <?php # Script 12.9 - view_files.php // This page

  • Can you delete PO (Service, Limit or Material) in SRM ECS????

    We are currently using SRM 4.0 (ECS) and we appear to have problems when deleting PO's (Service, Limit, Material) with just one line item.  The PO after having the one line item deleted goes into status Error in Process.  My questions are these:    

  • Using relative-URI  in creating the REST based proxy service

    Hi, I am facing an issue when i am trying to create REST based proxy. i am looking at the urls given in the forum post Using Business Service that supports XML over HTTP in OSB I have created a conditional branch with xpath expression like *./ctx:tra

  • Why can I no longer "share" news article and YouTube links to my Facebook?

    In recent weeks I am no longer able to "share" links from online news articles and YouTube videos to my Facebook. Is this a Firefox issue or a Facebook issue? When I click share it shows the typical page, but does not process the task.