Link to folder in a room - missing header area and navigation panel

Hello Community,
I have a problem, again. While creating favorites to specific folders I got a problem while using and "publishing" them.
While using the "send to..." feature the recipient gets an eMail with the link to this folder. When clicking this link he gets as the result the opened folder, displayed in a browser. Until now nothing really unexpected.
What we want is that he gets not only the opened folder. We want that he gets the whole navigation around it (navigation panel, header area) for the specific room the folder is in.
Now my question. Is it possible to create a link with this behavior?
Thanks for every hint in advance!
Regards,
Frank

Hi Frank,
if you have navigated to the room / within the room to the room part you want, check the page toolbar, choose "Add to Portal Favorites", add it under some name; then in IE choose Favorites, right-click on the favorite just added, right click, properties (or just call it). The upcoming URL of the form http://portal:50000/irj/portal?NavigationTarget=navurl://1f9eaddf81792cb6f2b9f05381cce360&&NavTargetAsRoot=true should do the trick (this at least holds from SP14 on).
Hope it helps
Detlev

Similar Messages

  • CS3 Missing KBSCE area for this panel's Windows menu submenu

    Missing KBSCE area for this panel's Windows menu submenu. Does anybody recognize this assert message? I have found posts from other people with the exact same problem, like this one for example: http://forums.adobe.com/message/1303048#1303048 , but no solutions to it.  We have the exact same problem, our menus are listed under the Windows Menu Product area in the Keyboard shortcuts editor and they do not have the “ourPrefix :”. I assume there is something wrong with the resource declarations but we are unable to locate a sdk sample or anything in the documentation about this.

    First, you need to realize that resetting preferences will put them back to ground zero, not the way they were the last time you were happy.
    You can try the key combination again and see if you are any faster (we're talking near instantaneous) or you can open your user profile, show hidden files and folders and navigate to C:\Documents and Settings\Administrator\Application Data\Adobe\InDesign\Version 4.0 and rename the two files InDesign Defaults and InDesign SavedData.
    In your case, a better first option, I think, would be to try System Restore which you'll find in System Tools under the Programs > Accessories heading on the start menu. Go back to the first restore point before you tried to open the file, if you can.
    In any case, for you to open a CS3 .inx file you will need to be fully patched the the last CS2 update, and you should expect to see some text reflow issues, as well as missing any CS3 features that the author used which aren't supported in CS2.
    Peter

  • How to import catalog and create new link to folder in a new external disk

    I lost my data in my laptop. I have a back-up into an external hd. Now I would like to import the catalog and change the link of folder to external disk

    You can open the backup of your catalog file by copying it to wherever you want it to be and then double-click on it.
    You would have to re-link all the photos inside of Lightroom using these instructions: Adobe Lightroom - Find moved or missing files and folders

  • How to avoid Room Part folder while adding Room Part?

    Dear friends,
    When i add new Room Parts in the Room Maintenance, it add the room part with the folder. 
    Is there anyway where i can avoid the folder to be displayed and only the part link to displayed.
    please reply
    kantha

    I'm also looking for a solution to this.  I've tried some fancy stuff that I though should work - configuring the Room Part Workset as a 'Leaf Folder' and then setting the page underneath as 'Invisible in Navigation' and as the 'Default Entry for Folder'.  This works properly in the normal DTN, but it seems like the rooms use a special DTN that incorporates some additional logic, and does not understand the 'Leaf Folder'.  It displays the workset as a page, but then when you click on it, a blank page shows up in the content area and the DTN does not select the just selected node.  If I had to guess, SAP forked the code and created a similar looking/functioning DTN specifically for Collaboration Rooms, but did not include all bug fixes or features.
    This page discusses the 'Leaf Folder' feature...
    http://help.sap.com/saphelp_nw70/helpdata/en/9d/36458642e748d7a4bfbf44f00cd7a7/frameset.htm
    Can anyone from SAP comment on this (seeming) limitation?  Thanks.

  • Missing header files when importing a shared library with labview 8.6?

    Hi all,
    I want to import a .dll into my .vi program but I am not able to do it...
    I have created the dll  following the ni website tutorial
    http://zone.ni.com/devzone/cda/tut/p/id/3303#toc2
    Once the dll has been created, I have tried to import it with
    Tools-Import-Shared Library(dll)
    After parsing the header file appears an error like this one:
    void __cdecl Zdmt(LVBoolean *stop, double P, char channelName[],
        TD1 *errorIn, TD14 *FFTOptions, TD12 *Calibration, char FileName[],
        int32_t minRecordLength, TD26 *InstrumentHandler, LVRefNum sessionRefArray[],
        LVRefNum *queueIN, TD1 *errorOut, LVBoolean *averagingDone,
        HWAVES LastRecordFetched, TD24 *Impedance, TD17 *ColeColeCluster,
        TD18 *FFTcluster, TD5 *InstrumentHandleOutputCluster, LVRefNum *queueOut,
        int32_t *Acquired, TD6 *FreqTimeInfoCluster, double *averagesCompleted,
        int32_t len);
    The following symbols are not defined:
    LVBoolean; int32_t; LVRefNum;
    Undefined symbols can prevent the wizard from recognizing functions and parameters. To correct this problem, check the header file to determine if you must add predefined symbols. Click the Back button to return to the previous page of the wizard to add a preprocessor definitionsl (for example, "NIAPI_stdcall = __stdcall" or "NIAPIDefined = 1").
    The following header file was not found in the specified header file or one of the referenced header files:
    -  extcode.h
    To fix, click the Back button to go to the previous page and add the header file path to the Include Paths list.
    I have replaced the first line #include "extcode.h" of the dll header file for #include "C:\Program Files\National Instruments\LabVIEW 8.6\cintools\extcode.h" that is the full path where the header file is located. However, new libraries seems to be missed:
    -  stdint.h
    -  MacTypes.h
    Does anybody know what I have to do??
    Any help will be really appreciated,
    Regards,
    Benjamin

    If you use any of the LabVIEW cintools headers, they reference other headers too. The import wizard is written in a way that it simply skips parsing datatypes that can not be resolved due to missing header files.  If your functions you want to import references such datatypes then you get an according error about any include files the wizard could not load, otherwise not. The wizard can not know which of the missing header files is the problem since it obviously doesn't know what would be in those header files.
    The LabVIEW cintools headers are multiplatform, meaning they evaluate various compiler predefined defines to determine which platform they are included in. The import library wizard does not define any specific defines, since it is not really a compiler. So you have to define them. And they get adapted with each new LabVIEW version to support new compilers and compiler versions, so the defines described in the link in the first post do not have to be correct for cintools headers in newer LabVIEW versions.
    All in all writing DLLs that interface to LabVIEW cintools headers should not be done by writing them and then importing them using the wizard but instead you should write the VI and create the Call Library Node, then let LabVIEW create a template C file from the context menu of the Call Library Node and copy that into your C sources and fill in the functions from there.
    Rolf Kalbermatter
    CIT Engineering Netherlands
    a division of Test & Measurement Solutions

  • I am missing header and footer in numbers

    after I updated to Numbers 3.01 I miss the footer and header in my docs
    and can't find any posiibility how to do that.
    In the older versions there were always header and footer.
    Can anyone please help?
    Thanks
    p

    let's hope and wait ;-)
    Meanwhile there are some workarounds that can work for some headers (though, for footers, you're limited to page number).  See this in Print Preview:
    You can set up extra Header Rows in your table and have them repeat on each printed page. The Table Name only shows on the first printed page, so you may want to uncheck Table Name before printing:
    See this thread for an example of how this workaround worked for one user.
    SG

  • I'm having a huge issue with itunes locating my missing files..and it's too many for me to locate 1 by 1..It says I'm missing over 3,00 songs and They are all in my music folder..What can I do to fix this issue?

    I'm having a huge issue with itunes locating my missing files..and it's too many for me to locate 1 by 1..It says I'm missing over 3,000 songs and They are all in my music folder..What can I do to fix this issue? I've looked at all the tutorials on youtube and none of it works. I recently got a new computer and I Back-Up all my music and itunes playlist and I import it on my new computer with the new itunes and I go to play a few songs, it says I'm missing them I locate a few but it's still like 3,000 missing and again they are all on the computer and in one folder..Please Help !

    I did that and nothing changed half my songs still have examination marks beside them
    I also just tried dragging my folder of music int he playlist and it duplicated all of my songs? My playlist was at 5k now it's at 10k becuz of 3 duplicates of songs. Is there a way to delete multiple duplicate files?

  • How to link c-Folder with DMS?

    Hello,
    I'm a new in this tool and i would like to know somethings.
    1) What the Object Type i use to link c-Folder with DMS?
    2) Can I do this if I install C-Folder in a separate server other than SAP R/3?
    Regards
    Pedro Sasso

    Hi,
    DO you mean via the 'Object Linking' feature in DMS?
    If yes, please ensure that the 'c-projects Elements' object has been selected for the particular document type in DC10.
    Also, to view the attached DIR in c-projects, ensure that the RFC is established b/w c-projects and DMS.
    Yes..you can,since c-Folders has functionality of maintaining public and private collaboration scenarios so c-Folders is being used to communicate between Suppliers and Vendors.
    c-Folders is not like webDMS, it is a separate application for which the link can be created from portal itself.
    In c-Folders user ID and password can be created which need not have any licenses.
    Hope it helps you.
    Thanks
    Arbind Prasad

  • Missing header files? Chapter Prefs Command

    I am trying to send a kModifyChapterNumPrefCmdBoss command.
    The documentation mentions that it aggregates the IID_ICHAPTERNUMBERPREFERENCES interface, however the documentation doesn't give us any additional information of functions to set and get the information. Any help, guidance or even hints will be appreciated.
    Thanks

    It's most likely your compilation strategy. When you begin to break things up into mutliple files, you cannot (always) use the gcc form:
    gcc main.c -o main
    as that actually does 2 things at once.  It compiles main.c and then links it.  That is where the undefined function comes from.  It is a linker error.
    To avoid this there are two things you can do.  The "proper" way is to split these steps manually.
    gcc -c main.c
    gcc -c header.c
    The -c flag tells gcc ONLY to compile the code.  This will produce main.o and header.o.
    Now, you can link manually, and you need to link ALL objects that contain used functions.  "undefined" errors result from not linking in something that contains a function used.
    gcc main.o header.o -o main
    Now ./main should run as expected.
    Now.  There is a shorthand to this... but I would recommend using the above way, just to make you more familiar with the separation of the two steps AND what kind of errors are compiler errors vs what kind of errors are linker errors.
    Shorthand:
    gcc main.c header.c -o main
    As with the initial usage, this combines both compilation and linking steps.

  • How to add/change missing header lines in RNIF B2B?

    Hi all,
    We are using RNIF exchange protocol. We have sent invoice from BPEL to B2B. The message invoice reaches the trading partner but they are unable to process it or sent ack back as few header lines are missing in the RNIF envelope.
    Can anyone tell me or provide some pointers abt how to add/change missing header lines in B2B?
    These are the headers missing:
    Delivery header:
    <locationID> <Value>HostTradingPartner</Value> </locationID>
    Service Header:
    <messageStandard>
    <FreeFormText xml:lang="EN">PIDX</FreeFormText>
    </messageStandard> <standardVersion>
    <VersionIdentifier>1.0</VersionIdentifier>
    </standardVersion>
    Can anyone provide some inputs on this?

    As per RNIF standard, all these header elements (locationID in Delivery Header & messageStandard and standardVersion in Service Header) are optional. As you are using RossettNet over RNIF, so Oracle B2B might not be setting these headers.
    I do not have a 10g setup here so cann't test it. I would suggest you to raise a case with Oracle Support because PIDX is a non-RossettaNet standard and it's implementation in Oracle B2B will be different to RossettaNet implementation. Meanwhile, I would try the same in B2B 11g setup.
    Regards,
    Anuj

  • Previews questions from link - "preview folder so big, even after purging the 1:1"

    Can someone clear this up a bit?
    My LR 2.1 preview folder is at 12gb, and I want to get that under control. After reading all of the threads here about previews it seems one of the best choices is just delete the folder and then let LR 2.1 rebuild it. But before I do that I want to set my preview options correctly. The info below (found in another thread) is good, but confusing at the same time.
    1) "You have 4 choices: 1024, 1440, 1680 and 2048. If all you want is standard-sized then choose a size equal to or slightly less than your screen size" Is this based on the long edge of your screen size? long edge meaning 1280.
    2) "Now take the example of a larger camera, say a 8MP camera such as the Canon 1DMKII with an image size of 3504 by 2336 pixels. With the standard-sized set at 1680 pixels the full-size will again be purged (i.e. 3504/2=1752 pixels, which is greater than 1680 pixels)". This formula looks to be saying the long edge, correct?
    Am I understanding this correctly? This looks to be saying;
    A) standard previews uses your screen size.
    B) 1:1 previews uses images pixel sizes?
    C) you only have one setting to control previews for standard and 1:1? (that being the "You have 4 choices: 1024, 1440, 1680 and 2048")
    This is interesting because in my case my screen size in 1280, but most all my Nikon D3 images are 42xx. So if I want to keep my previews folder clean and growth controlled, I should basically set my previews option to the lowest 1024? And one more interesting tid bit, how does a cropped image play into the 4 choices? Say I crop a 42xx image to oh say 2024, then my 1:1 for that image will never be purged? I'm probably missing something here, and it wouldnt be the first time.
    Why is the Lightroom preview folder so big, even after purging the 1:1 previews?
    Ian Lyons - 05:18am Aug 18, 2008 Pacific
    1:1 or full-size previews take up a large amount of HD space, often many 10's of GB's. This is why building them on demand is an alternative to building them up front, and why you have options for auto or manually purging them. That said, it may not always be possible to delete 1:1 previews - more later.
    Standard-sized previews are based on the pixel size option you chose in Catalog Settings. You have 4 choices: 1024, 1440, 1680 and 2048. If all you want is standard-sized then choose a size equal to or slightly less than your screen size. Lr also builds smaller versions at the same time. These are used for the thumbnail, 1:2, 1:3 and 1:4 zoom levels. Adobe call this the "preview pyramid".
    1:1 previews will not be deleted unless your chosen standard-sized preview is less than half the size of the full-sized preview. For example, you have images with pixel dimensions of 3072 by 2048 pixels (6MP camera such as Canon 10D) and have selected 1680 pixels for standard-sized previews. Since a 1680 pixel preview is more than half the size of the original the full-sized preview will be kept, even after using the purge 1:1 preview command. Had you chosen 1440 pixel for standard-sized previews then the full-sized would have been purged (i.e. 3072/2=1536, which is greater than 1440). Now take the example of a larger camera, say a 8MP camera such as the Canon 1DMKII with an image size of 3504 by 2336 pixels. With the standard-sized set at 1680 pixels the full-size will again be purged (i.e. 3504/2=1752 pixels, which is greater than 1680 pixels).
    thanks,
    Donnie

    The chance of an answer is inversely proportional to the length of the posting. ;)
    You do not indicate what your preview setting was while you accumulated a 12Gb preview folder. Nor do you indicate how many images are in your catalog.
    Given your screen size of 1280 (laptp?) I would set the preview size to 1440 since this is still far less than half of your D3 images.
    Cropping - I'll safely guess - has no effect on your preview size choices.
    I confess that preview sizing and purging is confusing. I avoid the confusion by shouting "more disk, mama".

  • Creating links to folder resources in XDB repository

    Hi,
    I have a problem with creating links to folder resources in Oracle XDB repository, especially when I delete child resources from the linked folder or the linked folder itself.
    For instance, if I have the following two resources:
    /public/folder1/mydocument.xml
    /public/folder2
    and then create a link to folder1 within folder2 like this:
    begin
    dbms_xdb.link('/public/folder1', '/public/folder2', 'mylinkedfolder');
    end;
    and then delete the resource from the linked folder, like this:
    delete from path_view where equals_path('/public/folder2/mylinkedfolder/mydocument.xml') = 1;
    the resource 'mydocument.xml' is completely removed from the database, from both locations. The manual states that: "Deletion of a link deletes the resource pointed to by the link if and only if that was the
    last link to the resource and the resource is not versioned." Before executing the delete statement the following query gives two results (links):
    select path from path_view where resid = <<resid of mydocument.xml>>
    The statements:
    begin
    dbms_xdb.deleteresource('/public/folder2/mylinkedfolder/mydocument.xml', dbms_xdb.DELETE_RECURSIVE_FORCE);
    end;
    and:
    delete from path_view where path = '/public/folder2/mylinkedfolder/mydocument1.xml'
    result in the same behavior. Also, when I remove the folder '/public/folder2/mylinkedfolder', the document mydocument.xml is also removed from both locations.
    Is this behavior expected behavior? Is there another way to get the behavior that is described in the manual?
    Thanks,
    Maarten

    Removing the second link to the folder should not delete the contents unless you specify delete recursive when doing so.. See below
    SQL> var folderPath varchar2(246)
    SQL> --
    SQL> begin
      2    :folderPath  := '/public/398437';
      3  end;
      4  /
    PL/SQL procedure successfully completed.
    SQL> begin
      2    dbms_xdb.deleteResource(:folderPath,dbms_xdb.DELETE_RECURSIVE_FORCE);
      3  end;
      4  /
    PL/SQL procedure successfully completed.
    SQL> commit
      2  /
    Commit complete.
    SQL> declare
      2    res boolean;
      3  begin
      4    res := dbms_xdb.createFolder(:folderPath);
      5  end;
      6  /
    PL/SQL procedure successfully completed.
    SQL> select path
      2    from path_view
      3   where under_path(res,:folderPath) = 1
      4  /
    no rows selected
    SQL> declare
      2    res boolean;
      3  begin
      4    res := dbms_xdb.createFolder(:folderPath || '/t1');
      5    res := dbms_xdb.createResource(:folderPath || '/t1/test.txt','Mary had a little lamb');
      6  end;
      7  /
    PL/SQL procedure successfully completed.
    SQL> commit
      2  /
    Commit complete.
    SQL> select path
      2    from path_view
      3   where under_path(res,:folderPath) = 1
      4  /
    PATH
    /public/398437/t1
    /public/398437/t1/test.txt
    SQL> begin
      2    dbms_xdb.link(:folderPath || '/t1', :folderPath , 't2');
      3  end;
      4  /
    PL/SQL procedure successfully completed.
    SQL> commit
      2  /
    Commit complete.
    SQL> select path
      2    from path_view
      3   where under_path(res,:folderPath) = 1
      4  /
    PATH
    /public/398437/t2
    /public/398437/t1
    /public/398437/t2/test.txt
    /public/398437/t1/test.txt
    SQL> begin
      2    dbms_xdb.deleteResource(:folderPath || '/t2');
      3  end;
      4  /
    PL/SQL procedure successfully completed.
    SQL> commit
      2  /
    Commit complete.
    SQL> select path
      2    from path_view
      3   where under_path(res,:folderPath) = 1
      4  /
    PATH
    /public/398437/t1
    /public/398437/t1/test.txt
    SQL>
    SQL>
    SQL>
    SQL>

  • How to turn off linking on folder when publishing it as portlet

    when I publish a folder as a portlet. The display name of the
    portlet becomes a link. I just want to display the folder items
    under the name rather than have a link on the name. It confuses
    the users and looks weird. How do I turn it off?

    You'll have to wait for the next release. The only solution in
    the current release is to turn off portlet headers in the region.
    Regards,
    Jerry

  • I am missing Insert options in Dreamweaver CS6. Where do I find header and navigation?

    I am missing Insert options in Dreamweaver CS6. Where do I find header and navigation?

    A lot changed between DWCS6 and DWCS6 Cloud. You need to make sure you are using tutorials/resources built for Version 12.0x.
    IIRC, "Structure" is the new name for "Layout"
    Dreamweaver Help | Removed features | Dreamweaver CC
    EDIT: Development of the perpetual license version of DWCS6 has stopped. There is no way to add that into the version of the program you have. To get those options, you would need a Cloud Subscription where you can get DWCS6 Cloud, DWCC and DWCC2014.x (all three can be installed at the same time, they just won't run at the same time).

  • When my desktop (Mac Power 5) starts a folder comes up with 2 heads which changes to a question mark. Does anyone know how to fix this.?

    My Husband turned his desktop off without shutting down now When my desktop (Mac Power G5) starts up  a folder comes up with 2 heads which changes to a question mark. Does anyone know how to fix this.?

    Step 1- Try booting to Startup Manager by holding Option/Alt key.
    Select the boot source and click the right arrow.
    Once booted, open System Preferences and select the desired boot volume.
    Replacing the PRAM battery is likely wise if the machine keeps forgetting it's boot source.
    If that doesn't work,
    Step 2-  Boot holding a mouse click, insert the OS X install disc and hold C to boot to the install disc.
    Once booted, open Disk Utility and "Repair Disk" on the boot drive.
    Once done, reboot normally.
    More:
    http://support.apple.com/kb/TS1440

Maybe you are looking for