Combination of two properties possible?

Hi folks,
I need a good idea to handle the following problem:
my Properties:
myName:ProjectName
myName:ProjectID
myName:NameArisExport
myName:URLToArisExport
I have no problem to create a folder with this properties! But it is not very nice to show the properties in the LayoutSet.
I have made column for every property in the Layoutset (Collection List Renderer Settings --> Displayed Properties).
The last to properties are the problem. I don´t want to have two properties like this myName:NameArisExport,myName:URLToArisExport
It would be better to show the property myName:NameArisExport but by clicking into the property the URL from the property myName:URLToArisExport should be open.
We are on EP 6 SP2 Patch 35!
Do I have a create a command instead of a property?
Can I do something with e.g. myName:NameArisExport(contentLinkCommand=myName:URLToArisExport)?
Any idea?
Thanks and bye Sybille

Hi Sybille,
in my opinion it is the best approach to write a Property Renderer no matter if you want to show the Property URLArisExport as link to another property or as an icon (with a link).
It should be no big implementation task.
BUT: I found out that there is really a modifier called "contentLinkCommand" (as you stated above) but I can not tell you if it's in SP2 Patch 35 and was not even able to use it in my version.
Maybe some colleague from KM development can supply some information here.
Best regards from the north part of Germany,
Robert

Similar Messages

  • HT1473 My girlfriend and I both have iTunes account with our own music libraries and we want to combine our two libraries into one icloude accounts so can both then access our one shared libary at anytime in the cloud.  How do we do this?

    My girlfriend and I both have iTunes account with our own music libraries and we want to combine our two libraries into one icloude accounts so can both then access our one shared libary at anytime in the cloud.  How do we do this?

    No it is not possible.  Content purchased from the iTunes Store is permanently tied to the account from which it was originally purchased, and Apple does not provide a way to change it.

  • MSSQL Query/View Single Line Output For Combined Multiple Data Elements - Possible Pivot Table?

    HELLO...
    I hope you experts out there can help me.  Consider the following (2) Tables in MSSQL:
    1. TENDERED --> Primary Key = DATE / DOC_NO / PAYMENT_SEQ_NO
    DATE
    DOC_NO
    PMNT_SEQ_NO
    PAYCODE_TYPE
    AMOUNT
    2. TENDERED_CR_CARD -->Primary Key = DATE / DOC_NO / PAYMENT_SEQ_NO
    DATE
    DOC_NO
    PMNT_SEQ_NO
    CR_CARD_NO_MASKED
    CR_CARD_NAME
    CR_CARD_EXP_DATE
    These two tables are certainly related, based on their Primary Key values.
    Now, consider the following data in those two tables:
    DATE            
    DOC_NO      PMNT_SEQ_NO              
    PAYCODE_TYPE               
    AMOUNT
    03/10/2014         100001 
    1             
    CASH            
    100.00
    03/10/2014         100001 
    2             
    CASH                             
    -9.75
    03/10/2014         100002 
    1             
    CASH                             
    50.00
    03/10/2014         100002 
    2             
    VISA                             
    100.00
    03/10/2014         100002 
    3             
    VISA             
                   250.00
    03/10/2014         100003 
    1             
                            MC
    125.00
    03/10/2014         100003 
    2             
    AMEX           
    75.00
    DATE          
    DOC_NO PMNT_SEQ_NO  CR_CARD_MASKED     
    NAME            
    CR_CARD_EXP
    03/10/2014  100002   2                       4225******801289  
    MARY JONES   2016/08/31
    03/10/2014  100002   3                       4121******637442  
    JOHN DOE      2015/04/30
    03/10/2014  100003   1                       5428******971134  
    MIKE BAKER   2018/09/30
    03/10/2014  100003   2                       3732*****344756    
    LINDA LIU      2017/07/31
    OK...so what we NEED...is a Combined, SINGLE RECORD Audit Report type query. 
    The resulting query should show, based on the Data from above, the SINGLE LINE represented in the Attached Spreadsheet. 
    NOTE...what's important to point out here..is that ONLY the 'CASH' Tender gets "summed"...EACH INDIVIDUAL Credit Card record MUST have its own Field...as represented in the corresponding Columns of the Spreadsheet (i.e. PMT_TYP_1, AMT_1, PMT_TYP_2,
    AMT_2, and so forth).
    PLEASE HELP!  Any suggestions/advice would be most appreciated! 
    Thank You!...Mark

    I would not do this in SQL if I could possibly avoid it.  Instead do it in the front end.
    If you must do it in SQL, this is a dynamic pivot on multiple columns.  Naomi Nosonovsky has a blog at
    http://blogs.lessthandot.com/index.php/DataMgmt/DataDesign/dynamic-pivot-on-multiple-columns/ on how to do that.  Look especially at her second example using the claims table.  Of course, you must do some manipulation even before you do the multi-column
    pivot, since you must first combine all the cash entries.
    So one way to do it would be to build a temp table with all the entries you have except the cash entries combined into one payment sequence number.  To do that you may need specifications that are not clear to me from what you have given us.  For
    example, if PMT SEQ 1 is VISA,  PMT SEQ 2 is CASH, PMT SEQ 3 is VISA, PMT SEQ 4 is CASH, and PMT SEQ 5 is VISA, you want to combine the two cash payments.  So they become PMT SEQ 2?  If so, what happens to PMT SEQ 4 - is it left N/A or does
    PMT SEQ 5 become PMT SEQ 4?
    But once you have this temp table with the cash payments combined in the algorithm you need, then you can use Naomi's method to do the multi-column pivot.  Note that Naomi uses the code
    FROM INFORMATION_SCHEMA.COLUMNS
    WHERE TABLE_Name = 'Claims'
    to get the column names from the permanent table Claims.  To get the column names from a temp table use code like the following.  To find the column names in a temp table named #MyTempTable, do
    From tempdb.sys.columns
    Where object_id = OBJECT_ID('#MyTempTable')
    But as I say, if feasible, I would do this in the front end, not in SQL.  T-SQL is a very good language for storing and retrieving data, not so good at formatting it. 
    Tom

  • Sorting dimension member based on two properties

    Hello,
    I am using SP BPC NW 10.0 SP04 (801).
    I have a query regarding sorting dimension member based on two properties. In Report Editor under Sorting and Grouping tab there is option for grouping based on single propery only.
    I have taken Profitcenter in Row axis. There are two properties TYPE and SEGMENT I have taken along with it as local member. A SEGMENT can have multiple TYPE(defined in TYPE property). I have sorted SEGMENT using Report Editor Sorting and Grouping. Now I want to sort TYPE of a segment also.
    Same thing is possible in MS version with SortCol1, SortCol2 etc.. How this can be possible in NW version. Can anyone help in this.
    Thanks & Regards,
    Deepak Palsaniya

    Hi Raju,
    Thanks for reply.
    I am using EPM add-in SP-18 Patch01, Although this is not possible in this patch also.
    Any help in this?
    Best Regards,
    Deepak

  • I opened an itunes account then forgot my password. I opened a new account now I would like to combine my two accounts into one but I still can't remember my password and now I have a new email account. Help!

    I opened an itunes account then forgot my password. I opened a new account now I would like to combine my two accounts into one but I still can't remember my password and now I have a new email account. Help!

    You can't combine accounts but help here Apple ID FAQ's for resetting your Apple ID password.

  • HT201272 I have two iTunes account.  How do I combine the two??

    I have two iTunes account.  How do I combine the two??

    Did you recieve any response on your questions?  I have teh same one can we load two itunes accounts onto one device?  It seems apple should have some fix to address this...thanks for any insight you can provide.

  • HT3819 If my partner & I both have an iTunes account, can we home share both or somehow combine the two accounts?

    If my partner & I both have an iTunes account, can we home share both or somehow combine the two accounts?

    As of right now there is no way to combine Apple accounts.
    As for "sharing", you can go into the iTunes settings for each and turn on Home Sharing, this will make your music libraries available to each other, provided you are both using different computers.

  • For Each Combination of Two Cols Create a Record

    How do I PL/SQL creating a new record in table B for each combination of two columns in table A? Do I need to create a cursor?
    my_cursor IS
    SELECT col1, col2 FROM tableA
    and then with a FOR loop somehow write SELECT FROM INSERT INTO?
    Thanks,

    For unique combination you have to do more than just distinct:
    SQL> ed
    Wrote file afiedt.buf
      1  select distinct least(x.id1, y.id2) as num1, greatest(x.id1, y.id2) as num2
      2  from t x, t y
      3* order by 1
    SQL> /
          NUM1       NUM2
             1          2
             1          3
             1          4
             2          2
             2          3
             2          4
             3          3
             3          4
    8 rows selected.
    SQL>Which, as you can see strips out the 3,2 because we already have a 2,3
    We have to use the greatest and least functions here so that the 3,2 combination was turned around to become 2,3 thus causing a duplicate which was stipped out using the distinct. There are other techniques too, but it depends on your data and what you want to achieve.

  • Need help on combining these two program

    Hi all,
     I needed some help on combining these two program. But i not very sure how to do it.
    My program in working with TimeIn/TimeOut attendance taking. The snippet vi "insert data" is the where i start to TimeIn and insert into the microsoft access. And i wanted to insert it together with a camera catching the user's face. But i have no clues on how to combine them.
     Can u guys give me some ideas to help me ?
    Thanks in advance.
    Attachments:
    IMAQdx.png ‏55 KB
    insert data.png ‏68 KB

    Hi Himanshu,
    But if i put everything inside the IMAQdx loop ,it make my whole program more complicated. 
    This is how my program looks like below.
    I only want to display the image only when i "insert" all data into the database ( which i given at the perivous post).
    Is there other way?? And how do u make the IMAQdx loop stop without putting a stop button?? Because everytime i run the program,it will run continuously at the IMAQdx loop..
    Thank in Advance.
    Attachments:
    FYP.png ‏205 KB

  • How can I combine my two apple/Itunes accopunt?

    Ho can I combine my two apples/itunes account?

    If you mean iTunes Store accounts, you can't. If you mean iTunes libraries, you need to import the music from one to the other.
    (79742)

  • How can I combine these two DAQ tasks???

    I am using LabVIEW 11, Windows XP, cDAQ-9174 chassis, two NI-9205 modules.
    Please see my code for reference. I am very new so i will accept all suggestions.
    I am acquiring 12 volatage signals in a producer/consumer structure giving me a queue of 1-d array of waveform(dbl). Then I am acquiring 12 voltage signals in another loop giving me 2-d array of waveform(dbl).
    There is an issue creating the channels. How can I combine these two tasks?
    Thanks,
    ~Chris
    Attachments:
    WaveTest_6.2.vi ‏558 KB

    Hello chrisbe723,
    When you say that there is an issue creating the channels, are you getting a specific error message when running your code? Also are you referencing the same set of channels for the two DAQ task you are configuring?
    Paul-B
    Applications Engineer
    National Instruments

  • Capturing drop & non + combining the two in a FCP project

    First off, please excuse what I'm sure are pretty 101 type questions, if you could please shed some light on this I'd appreciate it. I'm capturing a series of NTSC DV tapes in FCP 6 in which some appear to have been shot at 29df and others at 29ndf, so these are my questions:
    1) It doesn't appear that upon capturing, FCP allows you to make a choice between capturing 29.97df or 29.97ndf, it just has 29.97 period. Does this mean it looks to the code on the tape to decide whether it's drop or non-drop?
    2) Are there any potential issues in combining drop and non in a single timeline as long as they're both 29.97?
    3) If I know I'm never going back to the tape again and my new master is my capture, is there any issue in forcing the clip to have non-drop code in Modify>Timecode to keep it consistent with the 95% of my other footage which is non-drop?
    Thanks, I really appreciate the help.
    Roert

    No problem. It's a rather confusing subject.
    Answers:
    1. Yes, it looks to the code on the tape. Every frame on the tape already has a number assigned to it whether in drop or non-drop form. You really wouldn't want FCP to just make up numbers; you wouldn't be able to re-capture otherwise.
    2. You shouldn't have any problems with combining the two. It's just a way of counting frames. Nothing else.
    3. If you aren't going back to tape, you could modify the code, but why? It won't make any difference in your editing. Again, it's just a way of counting frames.

  • Dimension Overrride with Two properties referencing Excel Cells

    Hi Gurus,
    I'm using a Dimension override as the one below. It works fine. I can reference two properties and one of them is an Excel cell:
    =EPMDimensionOverride(D31;"D_PO";"P_ALOC_NR=03 AND P_CTRY="&D3)
    However, I would like to add some flexibility to the first property, too. I would like to also reference it to another Excel cell instead of hardcoding the value 03. I've been trying several commands but nothing seems to work.
    Any clue? BPC NW 10.0 Add-in SP17
    Thanks,
    Alberto Sabate

    I think the issue was due to leading zero of the property value P_ALOC_NR=03
    Try "P_ALOC_NR=""03"" AND...
    Or "P_ALOC_NR='03' AND...
    Ups, sorry, the linked cell has to be formatted as text to accept 03 without conversion.
    Vadim

  • Bookmarks now combined across two users

    Bookmarks have now combined across two user accounts and now interact with each other.  Any ideas how I can stop this?

    Bookmarks have now combined across two user accounts and now interact with each other.  Any ideas how I can stop this?

  • I accidentally bought two subscriptions to convert PDFs to word. Can you combine the two subscriptin

    I accidentally bought two subscriptions to convert PDFs to word. Can you combine the two subscriptions?

    Contact Adobe Customer Care via http://helpx.adobe.com/contact.html?product=export-pdf

Maybe you are looking for

  • Availability of movie sales in the Belgium store.

    Hi everybody, I was wondering when the moviestore will be available for Belgium? At the moment I cannot find it in the Belgian iTunes Store. Am I doing something wrong? Can I buy items in the US store? Last time I tried I needed a valid adres in the

  • Solution to connecting Photosmart to Airport Extreme via Ethernet

    Occasionally Airport Extreme flips out and goes wrong. Then you discover that none of your computers on the network can connect to the Photosmart printer using the Ethernet from the Airport Extreme. I've tried everything to restore this. Here's the a

  • 5400 versus 7200 rpm firewire disk: does it matter?

    I'm in the market for an external firewire drive. The model I'm considering (LaCie Rugged Hard Disk) comes in 5400 rpm and 7200 rpm versions. I will be using my iMac G5's FireWire 400 connection. Given the transfer speed limitations of FireWire 400,

  • Is the iPhone 5s shipping for re-shipping companies??

    Is the iPhone 5s shipping for re-shipping companies??

  • Help! When I upload songs Itunes Freezes

    I need some SERIOUS help. I work for a company that uses Itunes as we have a music Library that we distribute. We aslo store our entire Music Library as well as our artists and composer works on Itunes. We have 6 different computers that link to our