Subfolders referred in two places!!!

Hi,
It is not suggested to create same content in the subfolder in two separate folders.
Requirement:
Content of the subfolder maintained in one place, which should be listed under 2 or more Folders. So that any update on the contents of the subfolder will updated in both the main folders.
Please help me out if we have any feature to fix my priblem in IFS.
Thank you

I think you are wanting to create a link.
Please look at chapter 3 Managing Files and Folders in the Internet File System User's Guide Release 1.1, Using Links to Display the Same File in Multiple Folders.
This should cover what you want to do.
null

Similar Messages

  • Please help me to merge two places.sqlite to get my old and New history at the same time, every time i rename my two places.sqlite to see my old and new history

    every time i rename my new places.sqlite to see my old history and come back rename old places.sqlite to see my new history, i tired and i found No Way to merge two places.sqlite :( but it's must be found this way for The PPL to see their old and new history :(
    Thank You all in Advance

    You can't merge history otherwise then using Sync to store the history and bookmarks of one places.sqlite on the Sync server and then disconnect.<br />
    Copy the second places.sqlite file to your Firefox profile folder with Firefox closed.
    Then setup Sync once again using that account and merge the content on the Sync server with your computer.
    * Merge this device's data with my Sync data

  • Exception in two places of insert statment

    Hi All,
    I want to insert exception in two places in pl sql. I am getting the error.Is there a way to implement exception in two places in insert statement.
    Thanks,
    uday
    Begin
    Declare
    V_Code Number;
    V_Errm Varchar2(64);
    V_Code1 Number;
    V_Errm1 Varchar2(64);
    INSERT INTO Raise
    Select Employee_Id, Salary*1.1 From Employees
    Where Commission_Pct > .2;
    EXCEPTION
    When Others Then
    V_Code := Sqlcode;
    V_Errm := Substr(Sqlerrm, 1, 64);
    Dbms_Output.Put_Line ('Error code ' || V_Code || ': ' || V_Errm);
    Insert Into Scap_Fact_Loading_Errors Values (V_Code, V_Errm, Systimestamp);
    INSERT INTO Raise
    Select Employee_Id, Salary*1.1 From Employees
    Where Commission_Pct > .1;
    EXCEPTION
    When Others Then V_Code1 := Sqlcode;
    V_Errm1 := Substr(Sqlerrm, 1, 64);
    Dbms_Output.Put_Line ('Error code ' || V_Code1 || ': ' || V_Errm1);
    INSERT INTO Scap_Fact_Loading_Errors VALUES (v_code1, v_errm1, SYSTIMESTAMP);
    END;
    Edited by: 929521 on Jan 7, 2013 10:15 AM

    >
    I want to insert exception in two places in pl sql. I am getting the error.Is there a way to implement exception in two places in insert statement.
    >
    Sure - use two different blocks. The code you posted doesn't have any BEGIN.
    The proper structure is:
    BEGIN
    . . . put your first code here
    EXCEPTION
    . . . put your first exception handling here
    END;
    BEGIN
    . . . put your second code here
    EXCEPTION
    . . . put your second exception handling here
    END;If you need your code to quit after an exception in one of the blocks issue a RAISE in the exception handler for that block.
    Depending on what each block does and what you want to save or rollback it is also common to use SAVEPOINTs for the blocks.
    See SAVEPOINT in the SQL Language doc.
    http://docs.oracle.com/cd/B28359_01/server.111/b28286/statements_10001.htm
    >
    savepoint
    Specify the name of the savepoint to be created.
    Savepoint names must be distinct within a given transaction. If you create a second savepoint with the same identifier as an earlier savepoint, then the earlier savepoint is erased. After a savepoint has been created, you can either continue processing, commit your work, roll back the entire transaction, or roll back to the savepoint.
    Example
    Creating Savepoints: Example To update the salary for Banda and Greene in the sample table hr.employees, check that the total department salary does not exceed 314,000, then reenter the salary for Greene:
    UPDATE employees
    SET salary = 7000
    WHERE last_name = 'Banda';
    SAVEPOINT banda_sal;
    UPDATE employees
    SET salary = 12000
    WHERE last_name = 'Greene';
    SAVEPOINT greene_sal;
    SELECT SUM(salary) FROM employees;
    ROLLBACK TO SAVEPOINT banda_sal;
    UPDATE employees
    SET salary = 11000
    WHERE last_name = 'Greene';
    COMMIT;
    >
    For your use case you could create a SAVEPOINT before each of the blocks and then in the exception handlers issue a ROLLBACK to the appropriate SAVEPOINT before you exit the procedure.

  • Finished DVD Momentarily Hangs In Two Places

    I have created a 33 minute slide show in Aperture 3. The show is very good quality but it hangs in two places on the burned DVD. Have dragged plist to trash, exported again, burned disk appromimately 7 times, and each time I get the same thing. It hung one time when I burned the movie using iMovie HD6. I assume from this that my problem is iDVD. Any suggestions? Has anybody else experienced these hangs in iDVD

    It's good to know that other's are having the same issue. I recently upgraded to the Quad Core iMac with Snow Leopard. Previously I was using a 24"iMac with just Leopard where I was not experiencing the issue.
    I have a similar work flow to creating motion DVD's. I create a 25 - 30 minute slideshow with audio tracks in fotomagico then export as Quicktime .MOV file then drag into iDVD to create menu and burn to DVD. When I play this disc back in DVD player connected to TV there is a pause around half way where the entire slideshow including audio stops for about 3 seconds, then another pause towards the end of the slide show. The same disc played back in the iMac plays perfectly.I have tried reducing burn speeds right down to 1x but this did not solve the issue. Oddly the pause location changed depending on which burn speed I used. I also have a Mac Book Pro with Leopard, (not Snow Leopard) which burns the same project file with no issues when played back on the non computer DVD player. This makes me think it is an operating system issue. I have spent quite a few hours on the phone to Apple and reinstalled operating system, tried burning through different users, tried different quicktime export options, all totalling around 20 different burns and viewings to look for rectifications or errors! That's a lot of my valuable time wasted! If you hear of a solution be sure to post it up! In the meantime I am having to burn my work on the laptop which is not so practical but the only solution I can reliably count on.

  • How to use my logic sessions and ilok at two places

    Hi there,
    I am wondering if I can use my Logic sessions and even my ilok plugins at two places, two countries?
    - but still keeping my ilok at one place.
    Is there any way via internet? perhaps using some kind of network server for my sessions
    - iDisk perhaps?
    what is the best solution?
    Thanks
    Message was edited by: Olavur
    Message was edited by: Olavur

    Buy a second iLok, and licenses for your software

  • Round decimal number to two places

    trying to round a decimal number to two places i.e. 1.98999 should round to 1.99.
    -tried using math.round but it only rounds to nearest integer
    -tried using decimalformat class but that converts to string, and cast wont allow me to convert from string back to double
    *is there a round method that allows you to specify decimal places?
    *or is there an easy method to cast a string back to a double?
    any advice is appreciated:)

    coynerm wrote:
    trying to round a decimal number to two places i.e. 1.98999 should round to 1.99.Agree.
    -tried using math.round but it only rounds to nearest integerI advise against rounding in most newbie situations. Usually it's the display of the variable you want to change.
    -tried using decimalformat class but that converts to string, and cast wont allow me to convert from string back to doubleOf course cast won't allow you to convert back. If you wanted to do that you'd use Double.parseDouble(stringVar); But we don't know why you are doing all this converting in the first place.
    *is there a round method that allows you to specify decimal places?
    *or is there an easy method to cast a string back to a double?Advice: Forgetting all this fooha with rounding, what in essence are you trying to achieve? Why all of this number manipulation in the first place? It will affect what should be the best answer.

  • Two places to input encryption key alias in WS Security proxy wizard?

    Hi,
    When you secure a Web Service Proxy in JDeveloper you can input encryption key alias in the Encrypt tab and in the Keystore Path tab. I don't understand why there are two places for this. Anybody know why?
    Screen dumps:
    http://i16.tinypic.com/63tp2pw.jpg
    http://i10.tinypic.com/4tpmc0h.jpg
    Regards Pete
    Message was edited by:
    the heat
    Message was edited by:
    the heat
    Message was edited by:
    the heat

    Hi,
    check http://www.oracle.com/technology/products/jdev/howtos/1013/wssecure/10gwssecurity_howto.html
    this should have some answers for you
    Frank

  • Why two places for videos? (N95 8gb)

    Why do i have two places for videos?
    If I bluetooth myself a video and save it it goes into gallery. What if I want it in My Videos instead how do I move it? And i only want to see the video in My Videos and not in the gallery as well?
    Also when I do a memory search it doesnt show the videos in My Videos up..
    P.S what does the little sheild mean next to some videos?

    07-Jan-2008 04:07 PM
    liam182 wrote:
    Why do i have two places for videos?
    If I bluetooth myself a video and save it it goes into gallery. What if I want it in My Videos instead how do I move it? And i only want to see the video in My Videos and not in the gallery as well?
    Also when I do a memory search it doesnt show the videos in My Videos up..
    P.S what does the little sheild mean next to some videos?
    There's a program called "File Manager" that lets you move/copy and delete files from your device. It's usually under Tools.
    If you put videos in "My Videos" folder I think they don't show up in the Gallery. Also files in "Videos" don't show up in Video Center but they do in the Gallery.
    What do you mean "memory search"?,
    About the little shield, I have no idea what it means. I guess it's about the DRM protection, but I'm not 100% sure.
    640K Should be enough for everybody
    El_Loco Nokia Video Blog

  • What makes my default project location to bounce between two places in FCP X?

    I wonder what makes my default project location to bounce between two places in FCP X?The project I am working on is on my local disks which are backed up (daily) to external eSATA enclosure. If I run FCP X just by clicking its icon (not a project file) in most cases it opens FCP X with a project but in event library there is not files linked.Sometimes it expands the project’s library located on backup station.
    To make active the the local version (get it expanded and access all the files related to the project, I have to: close FCP X, launch FCP X by click on a project or a library file, close FCP X again and then I can get the project and its content displayed correctly just by clicking on a FCP X icon.
    After backup is made (I use Carbon Copy Cloner to backup this volume) if I relaunch my FCP X, I have to start the procedure mentioned above all over again. What I am doing wrong?

    Munas, what you describes sounds a lot like the problem I've been experiencing.
    I have two matching external drives mounted. Drive 1 is the primary, Drive 2 is an identical back-up. Both identically formatted.
    FCPX randomly opens drive 2 when I start the program, even when I click on a sidebar link to a project on Drive 1. The clips are often, nonsensically, shown as off-line.
    I really don’t care if FCPX recognizes drive 2, in fact I wish it wouldn’t. I don’t, obviously, want to unmount Drive 2 just to use FCPX.
    My workaround for this was to rename the Final Cut Events and Final Cut Project folders “FCE” and “FCP” respectively on Drive 2, and configure my back up utility accordingly.
    Now, although Drive 2 is listed in the Events and Project Libraries on start up, FCPX doesn’t recognize any events or projects on it, and it sits there as an icon that can’t be expanded.  I can live with this until a fix comes, in fact I rather like it.
    Cheers

  • Two PCs on two places, both with iTunes using same AppleId. Streaming videos for iPad

    Hi everybody.
    I'm living in two places, both of them equiped with PCs, one running Windows 7 and the other Windows XP (nobody's perfect !). They run last version of iTunes with same Apple Id.
    As one is the backup of the other, both of them have all the videos I'd like to broadcast on may iPad (not enough place, so no download). Some of them are TV shows I bougth, other one are personnal videos.
    All was perfect on the first PC (the one running Windows 7) until I activate the same setups on the second one. Now I can broadcast personnal videos from that PC, but I can't anymore on the first one : when I open Videos (the application) on iPad, the only thing I see on the menu is "TV show", witch allow me to download (not broadcast) from Internet the show I'd like to see, but I don't see the "shared library" I used to see before.
    Anyone has an idea ?
    Thank's 

    Hi everybody.
    I'm living in two places, both of them equiped with PCs, one running Windows 7 and the other Windows XP (nobody's perfect !). They run last version of iTunes with same Apple Id.
    As one is the backup of the other, both of them have all the videos I'd like to broadcast on may iPad (not enough place, so no download). Some of them are TV shows I bougth, other one are personnal videos.
    All was perfect on the first PC (the one running Windows 7) until I activate the same setups on the second one. Now I can broadcast personnal videos from that PC, but I can't anymore on the first one : when I open Videos (the application) on iPad, the only thing I see on the menu is "TV show", witch allow me to download (not broadcast) from Internet the show I'd like to see, but I don't see the "shared library" I used to see before.
    Anyone has an idea ?
    Thank's 

  • How to round decimal point to two places

    Hi all, I have been tasked with creating a custom "calculator" for a client that uses a specific equation. The client inputs data into two Input Text fields and the result shows up in a dynamic text field. Is there any way I can limit the number of decimal places to two? Here is my code (which works, except for the decimal issue):
    function onCalculate()
    one = Number(number_one);
    two = Number(number_two);
    result_1 = ((one / 4) * (65 / (1 - 0.25))) + ((two / 0.5) * (65 / (1 - 0.25)));
    Thanks in advance!!!!

    What will often be done is the result is first multiplied by 100, then rounded to an integer, then divided by 100.  So picking up from your last line where you calcvulate the result_1 value...
    result_1 = Math.round(result_1*100)/100;

  • Dose Part Number for instance "MD244C/A" refers to the place

    Dose Part Number for instance "MD244C/A" refers to the specific place or market for which any iphone is produced?
    if so , pls let me know my iphone which has the Part Number  "MD244C/A" produced for which market?

    The C identifies it as being originally sold in Canada. The rest of the code is the actual part number and revision.
    (65698)

  • Put same toolbar button in two place

    Hi,
    Is there a way to put a same toolbar button in two or more places?
    Before version 4, I am able to put the 'Open a new tab' button in front of the bookmarks toolbar and still have the new tab button next to the last opened tab. But since the version 4 update, I notice the 'Open a new tab button' will only appear in one of these places.

    Hi,
    You can change the .skn file with notepad, but I'm not sure what will be retained in the output.
    For all skin related questions, check Rick Stone's Skinny on Skins: http://www.robowizard.com/RoboWizard/NewProject.htm#Downloads/Skinny_on_Skins.htm
    I don't know whether your questions are answered in skinny on skins, so post back if you don't find the solution in there.
    Greet,
    Willam

  • How can you be in two places at once when you're not anywhere at all?

    Hi all,
         I have an object oriented predicament I want to run by you just to see how best to solve it. My program is based around a library of objects called Midgets. I've structured it with MVC. The MidgetLibraryModel Object takes events from a controller, alters the MidgetModel, and sends out events to any view objects.
    So far so good. Now, I'd like to create "groups of midgets." It seems that I have two options and I have serious problems with both of them from a computer science stand point.
    Option A*
    Store the name of every group that a midget belongs to inside the MidgetModel itself.
    Problems with Option A
    * There is nowhere to store attributes or variables for any group.
    * Every time I display a group, I have to mine it's contents from the MidgetModel array.
    Option B*
    Create a completely separate array of MidgetGroupModel objects inside the MidgetLibraryModel, each group object would contain the ID numbers of the midgets it contained.
    Problems with Option B
    * if I ever delete a MidgetModel, I can't alert the group objects since I don't have a deconstructor.
    * When sending out a MidgetModel to be displayed, it doesn't have the groups it belongs to.
    * If I need send out a MidgetModel to be viewed, the view can't display the groups that the MidgetModel belongs to
    what would a computer scientist do?

    ask yourself whether a midget should know to what groups it belongs or whether a group should know what midgets belong to it.
    Each scenario has its implications for how the midgets and groups can be used and can interact, in some situations one or the other solution may be the most obvious one.
    In others you might have to implement both at the same time.

  • Can CC work in two places at once???

    Hey, question about Creative Cloud being installed in more than one location. I often have people I work with come over to use my machines at my home when we are working on big projects. Would CC still work if I am working on my laptop from my account and some one else is using my PC and also working from my account as well? Or would I have to have another version of Adobe like CS6 or something installed on the computer for them to use it separately? I am interested in getting Adobe CC but want to know if it would be worth it considering that I would have to be able to use it simultaneously in two different locations in cases where I have persons over to work with me.
    I am a student and would like to open the account for students .... Would I be able to create two separate accounts with my credentials if I can't use my account on my laptop and PC at the same time? Hoping to get some solid answers before I go paying for a service that leaves me handicapped. Thanks for the help in advance.

    Moving this discussion to the Adobe Creative Cloud forum.
    Camk you can activate your membership on up to two computers.  The login is specific to the individual you would be the individual using it on either computer.  If you wish to have multiple Users of the Creative Cloud then I would recommend investigating the Creative Cloud for Business option at Creative Cloud free trial & plans : Adobe Creative Cloud.
    You can find more details regarding the specifics in the EULA listed at http://wwwimages.adobe.com/content/dam/Adobe/en/legal/licenses-terms/pdf/CC_EULA_Gen_WWCom bined-MULTI-20121017_1230.pdf.

Maybe you are looking for

  • How to connect a macbook to an external projector?

    I would like to connect my macbook to my school's projector for presentation and it seems the projector cable at school doesn't fit into any slot in my macbook. What kind of cable do I need? I remember the cable at school is able to plug into any PC,

  • Site mailbox and EWS 'Email address can't be found' error

    Company I work for has sharepoint 2013 in the cloud as long as exchange (both cloud and on prem) I have been writing some applications using C# and Exchange EWS to access site mailboxes to do things with email. Out of the 3 site boxes we created, 2 w

  • WebI Report using BW Query

    Hi, I am using WebI Report using BW Query. I don't see some Formulas in Universe which is there in BEx Query. Did anybody face the same problem before?

  • Zenwork 7 app to backup file normal.dot to network drive

    I'm attempting to build a simple zenwork app that backs up the file normal.dot from C:\Documents and Settings\NWUSERNAME\Application Data\Microsoft\Templates The file no matter what will not copy to the network. I have succussfully copied other files

  • Folio Producer Tools in both InDesign CS5 and CS5.5

    Two versions installed (InDesign CS5 + CS5.5 - Win7-64Bits). I installed the Folio Producer Tools / Panel in both, but on version 5.5 "Extensions" menu does not appear. What is the solution to the problem?