ICE Offer Target Path

Hello,
We are trying to use the ICE service to pull a KM folder and its contents (xml docs) from a source portal into another "slave" portal.
When we configure the offer from the syndicator portal it automatically enters a Target Path. For example
We have the same base folders created in the documents repository on both portal A (Syn) and portal B (Sub):
<b>Portal A:
/documents/folder1</b>
<b>
Portal B:
/documents/folder1</b>
When we create the offer on Portal A the default Target Path is <b>documents/folder1</b>. When this transfer then takes place we end up with
<b>Portal B:
/documents/folder1/documents/folder1</b>
It has added the extra <b>documents/folder1</b> into folder1 on portal B and all the content of folder1 from Portal A gets created under <b>/documents/folder1/documents/folder1</b> on portal B, not just under <b>/documents/folder1</b> as wanted.
Can anyone help? I have tried changing the Target Path to . and ../ and just / but nothing seems to work.
Also, you have to be very carefull otherwise you can delete folders on Portal B very easily without wanting to! (believe me :-o)
Any ICE gurus out there that can help me?
BRgds,
Simon
P.s. Is there a good way to copy KM content from one portal DB to another? For example we want to build a Test Portal with a copy of the content from Development and ICE and WebDAV are too slow and do not take all the meta data ACLs etc.... Any good suggestions? I know that you can do the equivalent of client copies now in NW04, could we use this?

> I have tried changing the Target Path to . and ../ and
> just / but nothing seems to work
Unfortunately, it seems there's no easy way to obtain your desired effect. The only solution would be to create in the syndacator (Portal A) distinct offer components <b>for each</b> subfolder contained in /documents/folder1:
Name........Content Path.....................Target Path
comp1......./documents/folder1/sub1.....sub1
comp2......./documents/folder1/sub2.....sub2
comp3......./documents/folder1/sub3.....sub3
and so on, and setting the destionation to /documents/folder1 in the Portal B's subscription.
I know it could be very tedious if you've got many subfolders, but as far as I know this is the only way. Not supporting a current path (.) target path is a feature/limitation/bug (?) of Content Exchange.
> ICE and WebDAV are too slow and do not take all the
> meta data ACLs etc....
I don't know what you can do with client copies in NW, anyway in my experience ICE is far better than WebDAV. At least it keeps some metadata and doesn't have some problems I faced with WebDAV (file corruption, not complete folder copies...). And yes, both are so slow...
Davide

Similar Messages

  • Copy function results in Error 1430 when the target path terminal is &ltNot A Path

    Hello all.
    I'm having a little bit of trouble with the Copy function under LabView 8.2.  If I wire <Not A File> to the target path terminal, I get an Error 1430 (The path is empty or relative.) from the Copy File function's error out terminal.  According the the manual, wiring <Not a File> to the target path terminal should cause the Copy function to display a dialog box prompting the user to select a file.
    I've attached a sample VI which demonstrates this issue.  Is the documentation for the Copy function incorrect, or is something I'm doing wrong in my VI causing the error?
    Thanks,
    Mark Moss
    Attachments:
    copy.vi ‏16 KB

    Hi Mark,
    Thanks for bring this to our attention. I believe the documentation is incorrect here, as you suggested. When nothing is wired to the target path terminal, it behaves as expected (prompting the user to select a target directory).
    I will look into this further and report this issue to our LabVIEW documentation team.
    Sam
    -Sam F, DAQ Marketing Manager
    Learn about measuring temperature
    Learn how to take voltage measurements
    Learn how to measure current

  • SeeBurger Receiver VAN/FTP Adapter: where to mention the target path

    Hi,
    I am using SeeBurger VAN/FTP adapter for IDOC-XI-EDI scenario.
    In seeburger receiver VAN/FTP adapter, where I have to set the target path. My target path is very long (15 characters).
    I am able to configure Host, Port, User id and password.
    Please suggest where to put the path name in seeburger receiver VAN/FTP adapter.
    Thanks,
    Madan Agrawal

    HI Madan,
    Can you please tell me which VAN provider you are meant to use? It is the same question which Prateek asked above 'which protocol' without this it is hard to help dude.
    I just checked and half of them don't want you to use this field 'host path;
    Also the error is different ...
    1) Are you doing FTP or FTPS?
    2) which VAN/Protocol
    regards,

  • Target path issues, multiple nested mc's

    I have a movie clip with a total of 15 nested movie clips
    within it. My goal is to be able to scroll through these 15 mc's,
    they're thumbnails. Before I nested all the individual movie clips
    into one, they expanded when rolled over. Now that they are nested,
    they don't expand when rolled over. I'm new to flash and am using
    this project to learn as I go. I understand the concept of target
    paths, but can't quite seem to apply them. I'm assuming that's my
    conflict.
    The main movie clip is called container_mc, with an instance
    name of container. Each nested movie clip's instance name is
    button1 - button15, movie clips named buttonclip1 - buttonclip15.
    The expand actions are in my main timeline, with individual actions
    applied to each button.
    Here is the code in the main timeline:
    _root.numButtons=15;
    function Expand(buttonRate, buttonName, buttonSize) {
    if (buttonName.scale==1) {
    setProperty(buttonName, _xscale,
    buttonName._xscale+=((buttonSize*buttonRate)-(buttonName._xscale*buttonRate))*(buttonRate /10));
    setProperty(buttonName, _yscale,
    buttonName._yscale+=((buttonSize*buttonRate)-(buttonName._yscale*buttonRate))*(buttonRate /10));
    if (buttonName.scale==0) {
    setProperty(buttonName, _xscale,
    buttonName._xscale+=((buttonRate*100)-(buttonName._xscale*buttonRate))*(buttonRate/10));
    setProperty(buttonName, _yscale,
    buttonName._yscale+=((buttonRate*100)-(buttonName._yscale*buttonRate))*(buttonRate/10));
    And the code for each button:
    onClipEvent (enterFrame) {
    _root.Expand(2,_root.button1,115);
    and
    on (rollOver, dragOver) {
    this.scale = 1;
    for (i=1; i<=_root.numButtons; i++) {
    _root["button"+i].swapDepths(1);
    this.swapDepths(2);
    on (rollOut, dragOut) {
    this.scale = 0;
    Any help would be greatly appreciated, I've tried everything
    I could think of with no results.

    because button1 etc are no longer on the _root timeline,
    using _root.button1 etc and, more generally, _root["button"+i] will
    no longer target your buttons. attached to your movieclip butons
    try:

  • Target Path

    Hi everyone,
    I have a button inside a movie clip. The link available on
    this button should go to a different scene available on the main
    timeline. Using the target path feature available on the Action
    Panel, the following piece of code was generated:
    on (release) {
    _root.gotoAndplay("scene2", 1);
    No error was detected by the Check Sintax feature. However,
    nothing happens when after the button is clicked.
    Any idea about what is wrong? Thanks.
    Gustavo

    the goto methods accept one, not two, parameters: label your
    frame and use:
    on (release) {
    _root.gotoAndplay("scene2_frame1"); // <- be sure you
    labeled this frame
    }

  • Use variable in target path

    Hi
    Im sure this is no sweat for a lot of you guys but as im new
    to using arrays and stuff its still escapung me.
    I nees to use a variable as part of a target path inside a
    for loop so it populates a series of dynamic text boxes with
    instance names busName0, busName1 etc. can this be done?
    Heres my code so far:
    stop();
    var busNameArray:Array = new Array(
    "business 01",
    "business 02",
    "business 03",
    "business 04",
    "business 05",
    "business 06",
    "business 07",
    "business 08",
    "business 09",
    "business 10"
    var i:Number;
    for (i = 0; i < busNameArray.length; i++) {
    this.rightPanel.busName(need the variable i to go here).text
    = this.busNameArray
    Any help much appreciated.
    cheers chris

    I know
    You're welcome.

  • I need help using the target path tool

    Hi all,
    I realise that I need to keep all my code on the main timeline, so now I need some serious help with targeting movieclips and buttons, when I use the target path tool (the little gun sight in the action script panel) it lets me navigate to the thing I want, but when I use it's suggestion it very often doesn't work, and I am left using trial and error to work it out.  Ican get stuff to work, but I really have no idea why or how I am doing it, Sorry to be such a N00B, but I really think if I can work this out I am going to get somwhere.
    Cheers
    sub

    subtlefly72 wrote:
    Thanks kglad,
    OK that is basically what I have been doing, but its been a bit hit and miss, but maybe now I see why, your last sentence
    of course, all those objects have to exist at the time your code executes.
    So if I am referencing something inside a mc and it doesnt exist on the first frame there will be an error?
    exactly.
    also what is the       this.  Object() and Object(parent)  ??
    Do I need to be using these?
    not when using code on the main timeline.  "this" refers to the current scope which for code on the main timeline, is the main timeline.  the following are the same:
    this.mc and mc
    this.var1 and var1
    And still I want to know why the target tool gives me a path that doesn't work?
    i can't tell you much about the target tool.  i've never used it.  but i tried testing it just now and it seemed to work correctly to target a nested movieclip.  again, you must sure that object exists when your code executes so if you target something on frame 2 (or greater) of a movieclip using code on frame 1 of the main timeline, the reference may be correct but the object won't exist when your code executes.  there are a number of ways to handle that if it's your main problem.

  • BinScope 2014 not accepting target path in command line.

    I entered the following in an administrator command prompt:
    C:\Program Files\Microsoft BinScope 2014>binscope.exe /target "\Release"
    Microsoft BinScope 2014
    BinScope: The path "\Release" did not exist or was a directory. BinScope accepts only paths to existing files.
    BinScope is newly installed.  The folder does exist on the C: drive and there are multiple exe files in the folder.  I first tried this specifying a folder on my D: drive but got the same error.  I also tried "/target "C:\Release"
    and got the same error.  This is on a Windows 7 64-bit desktop.
    I was using the previous version of BinScope (1.2 I think) and had no problems using the GUI to scan my binaries.  This is my first attempt at using the new BinScope 2014 version.

    Apostolos,
    Check this out.
    http://www.oracle.com/technetwork/articles/adf/part4-098813.html
    -Arun

  • Content Server Publishing Target paths do not match

    In Content Server 5.0.2, I need to change the publishing target information from a local mapped drive to an FTP site hosted by a third party. After entering all the information and I click "Test Publish Target", I get the following error:
    "The site specified by the Browser Path does not match the Transfer Path location."
    The transfer path looks something like this:
    ftp://upload.thirdparty.com/12345/target_folder/
    and the browser path like this:
    http://download.server.com/target_folder/
    Can someone tell me why I get this error? Is it because upload.thirdparty.com and download.server.com aren't the same (they are, in fact, different machines)? I don't think it's the "12345" folder that's causing this problem because I also specified it in the browser path and I got the same error.
    Any help would be greatly appreciated.
    Thanks,
    -Jose

    Just to follow up and in case anyone is interested, I was able to publish to my new destination folder in spite of receiving this error.
    I assumed that I couldn't publish to the new destination because I was getting this error, but that's clearly not the case. I guess this "Path" check is there as a tool to help, but it doesn't necessarily apply to all configurations.

  • Target paths in external SWF's?

    Hi, Im having problems with a flash based website that I am
    creating. It is essentially a gallery, using a shell file for all
    the navigation with external .swf's being loaded in for each image
    set to keep the overall file size low. I have it all working fine
    except for one weird problem, within the external .swf's there is
    another layer of navigation to move forwards and backwards through
    the main timeline.. it works fine as an individual .swf but when
    loaded inside the shell interface none of the buttons work.
    The only thing I can think of is that the paths are wrong
    when it is loaded into another file, for example: does "on
    (release) { _root.play();" on a button inside the external swf
    refer to the root of the external file or the root of the shell swf
    itself? What path am i suposed ot use to refer to items on the main
    timeline of an external .swf file?
    I may not have explained this very clearly, but I would be
    extremely greatful for any insights, thanks for your time

    yes scott, the _root in this case refers to the main movie..
    try using the "on(release) {this.play()}" or
    on(release){_root._LEVEL##.play()}
    where ## is the level Number that the external swf is loaded
    into..

  • Getting, setting contents of a field, whose name is parsed out of target path

    It seems that every scripting language I start using, it all goes back to this problem.  How do I evaluate a string as a variable name or text field name, and get or set the contents of that variable or text field?
    Here's my attempt so far:  Where do I go off the rails?  Thanks in advance for your help.
    var mySelf:Person = new Person ("Enter Your Name", "Enter Your Email", "Enter Your Phone");
    //Person is an external class file.  The variables in it are named "_HomName, _HomEmail, _HomPhone."
    //I name the on screen text fields "HomName_txt, HomName_txt, HomPhone_txt.)
    var keyListener:Object = new Object ();
    keyListener.onKeyDown = function () {
    if (Key.isDown (Key.TAB)) {
      saveData(parseTarget (Selection.getFocus ()));
    Key.addListener (keyListener);
    function parseTarget (atarget) {
    var my_str:String = atarget;
    var my_array:Array = my_str.split (".");
    trace (my_array[1]);
    return my_array[1];
            function parseName(aname)
            //to delete the _something suffix off of a target hame
      var my_str:String = aname;
    var my_array:Array = my_str.split ("_");
    trace (my_array[0]);
    return my_array[0];
             function saveData(mystring)
             //to save data from a field or other onscreen container into class object var
             trace("What's in _HomName? " + mySelf._HomName);  //This returns "Enter Your Name"
    myvar = parseName(mystring);
    trace("Name from item " + myvar);
    myclassvar =  "_" + myvar;
    //this["var"+i] = "first"
    this["mySelf."+ myclassvar] = this[mystring + ".text"]
    trace ("whats in the class variable " + myclassvar + "? " + this["mySelf."+ myclassvar])  //this returns "undefined"

    You're welcome... Think of the brackets as including/implying a "." ahead of them, but a "." inside them isn't seen as an object divider.
    just as an added bit of info... If you ever need to string string evaluations, say for something like...
    this.movieclip1.movieclipA.property = x;
    where 1 and A would be some variable, then it would look like...
    this["movieclip"+var1]["movieclip"+varA].property = x;

  • How to change Rip targett path in 24 live!

    Just installed SoundBlaster 24 Li've! USB and tried ripping a CD. Initially, it gave me options for the folder where I wanted my ripped MP3 files to end up and I changed it from Default to a newly created folder on the Desktop. Now I want to change it again and/or create a different default path for ripped files but I just can't see where?the option is to change this in Organizer. There doesn't seem to be any info in Help files on this subjec..... Help, Please?

    Hi,
    Is your history disabled or just the path not showing ?
    The history path registry key is located under:
    HKEY_CURRENT_USER\Software\SAP\SAPGUI Front\SAP Frontend Server\LocalData\DataPath
    The "DataPath" is usually set to C:\Documents and Settings\<User>\Application Data\SAP\SAP GUI\History
    Nelis

  • Content Exchange -  PUSH - Delay

    Hi,
    EP6SP14. I configured a Syndictor and Subscriber on separate portal and configured the PUSH of content at 2 minutes interval.
    1. When I put a document on the source, it take a long time to get pushed to target portal but I need it in 2 min. Am I missing some configuration?
    2. During copy, even the initial directory path is also copied e.g. if the content is in /documents/News/Corp News...I want only /Corp News but the system copies /documents/News/Corp News too. Can I avoid this?
    Rgds

    Hi,
    1) the minimum interval possible is 5 minutes (unfortunately the UI doesn't show this )
    2) What you can do is the following:
    Setup the offer component on the ICE Syndicator
    - content path = "/documents/News/Corp News"
    - target path = "News"
    Configure the subscription on the ICE Subscriber
    - target path = "/Corp News"
    It will create a folder "/Corp News/News/..."
    But you cannot avoid the text "News" (or whatever text you typed in target path). If you don't type anything into target path, it will always default to the same value like the content path.
    Kind regards,
    Ralf

  • Need to capture full file path in Adobe Interactive Form

    Hi All,
    I have a requirement where I have a field ZPATH1 on Adobe Interactive Form. I am putting a BROWSE button and writing following JavaScript on CLICK event on this button for populating the chosen file path into field ZPATH1.
    *Start of JavaScript
    var sFile;
    event.target.importDataObject(sFile);
    var oFile;
    oFile = event.target.getDataObject(sFile);
    this.parent.parent.Sub_Form_Fields_Mass.ZPATH1.rawValue = oFile.path;
    *End of JavaScript
    1. event.target.importDataObject(sFile) --> Giving me the pop up to select the file.
    2. this.parent.parent.Sub_Form_Fields_Mass.ZPATH1.rawValue = oFile.path; --> Putting the oFile path in field ZPATH1 on the form.
    3. This way is only giving me the selected FILE NAME whereas I need the complete path.
    I have tried below way also:
    this.parent.parent.Sub_Form_Fields_Mass.ZPATH1.rawValue = even.target.path;
    This function returns me the complete path but in URL form. It does not give me the presentation server path.
    Please suggest me how to get the complete path of presentation server to the file.
    <REMOVED BY MODERATOR - REQUEST OR OFFER POINTS ARE FORBIDDEN>
    Regards,
    Ashish
    I have also tried below way:
    <MOVED BY MODERATOR TO THE CORRECT FORUM>
    Edited by: Alvaro Tejada Galindo on Oct 17, 2008 3:26 PM

    please post it here for quick response
    and also search in adobe forums also for java script related.
    http://www.adobe.com/support/forums/index.html

  • Trying to add filename and path in footer of Word doc and it only lets me "Convert to PDF"?

    I am running MS Office 03 and just installed Acrobat 9.0 Pro. When I try to insert the Filename and Path from the insert option of the footer properties, it only gives me the option to "Convert to PDF". I don't know why it's doing this, but it started after the install of Acrobat 9.0. What should I do?

      To get the path ... event.target.path;
    To get the file name .... event.target.documentFileName;

Maybe you are looking for

  • HT4527 what if your ipod is stolen and you would like to get the songs you purchased there back

    so my girlfriend had her i pod stolen and she had $300 worth of music in it. she is trying to regain the muic from i tunes but i tunes only has the music she bought with her i phone how can she get it all the songs which she bought from i tunes back,

  • Where can I buy a ThunderBolt display cable?

    I just bought the new MBP early 2011 and can not seem to find any display cables that utilize the ThunderBolt technology. Anyone have a reputable product they're like to share? Thanks!

  • HOWTO: Fix the system settings crash in KDEmod

    This crash is pretty frequent on fresh installations of the KDEmod, and while searching for info on lots of places I found the solution on the chakra forums. This howto is very short and easy to follow, and I post it on newbie corner forum because I

  • LSMW idoc Inbound Processing settings

    Hi, We have done LSMW with BAPI method to create Bank master. In Idoc Inbound Processing settings - We created partner type as 'B' i.e, for BANK While creating Partner Number it is not allowing to create Partner Number. The error is  "Enter a permiss

  • User level deployment.properties, setting args

    hi guys i am updating the user's deployment.properties as i need to customise runtime behaviour for my applet. this is an internal work thing so dont worry about security etc.. i am running applet jre1.5.0_06 and have the line below in my deployment.