Any function like WM_CONCATE  in webi 4.0?

Hi ,
I am trying to have different values coming from the same column in DB , to accumulate in one cell and also wanna concatenate it
For Example ,
Country
Projects
USA
111
USA
1222
USA
3333
want to show the above as in one cell
USA          111,1222,3333
I know it can be done at DB level by WM_CONCATE but how to do it in Webi 4.0?

Hello Usman,
PFB a useful link where a similar requirement has been explained well.
http://bi.srivatsakr.com/2011/08/converting-rows-into-single-cell-comma.html
Hope it helps
Regards,
Nikhil Joy

Similar Messages

  • Is there any function like malloc and free in labview?

    Im writing a vi that will handle my memory request.
    Im doing a very high speed video record sessions , and the frames cant be saves on hardisk in realtime), so im saving the frames on memory, and i want to use memory as
    much as i can(~2GB) and to save the maximum frames that i can save (and it depends on bit depth, height, width, total memory).
    VI Operations={
    Allocate Memory (frame width, frame height,TotalMemorySize) ,
    Add Frame(index) ,
    Get Frame (index),
    Free Memory
    In each record session, there will be a different FrameWidth and Height, so the maximum frame that i can save in memory may be different and equal to
    IndexMax=TotalMemorySize/(FrameWidth*FrameHeight)
    Im doing this by allocating a 3D array [FrameIndex , row , column]
    The fact that the width and height change in different sessions indicate  that i need an ability to free the previous allocated 3D array memory and allocate a new one.
    (lets say that i have 2GB total memory..)

    This request really takes the system and the programmer to the limits....
    First of all:
    LabVIEW does not have any functions like malloc and free. LV wants to prevent the user to have to think about stuff like this. On the other hand, the memory management in LV is therefore hard to do or even impossible, at least to such an extend as you request.
    Some thoughts about your application:
    1. If you want to have about 2GB of framedata in RAM during runtime, you will need the large memory awareness active. Otherwise, a 32 bit OS will give you "out of memory" messages. Refer to the LV help "VI memory usage".
    2. Storing the data in an array could be a difficult task. Arrays have to be in memory without any gap. Therefore, you'd encounter "out of memory" messages even if your RAM totals enough free memory (theoretical).
    3. The idea of linked-lists does not compy in LV since you cannot store pointers to structs (since those are abstracted from the user).
    4. Maybe you should take a look into vision. 
    hope this helps,
    Norbert 
    CEO: What exactly is stopping us from doing this?
    Expert: Geometry
    Marketing Manager: Just ignore it.

  • If any function like greatest or least for addition,subtraction and multi?

    if any function like greatest or least for addition,subtraction and multi?
    there are two columns 'a' and 'b'...i have to add the values in column wise
    a b add
    10 30 -->40
    20 40 -->60
    IS there any function?

    Hi,
    794244 wrote:
    if any function like greatest or least for addition,subtraction and multi?
    there are two columns 'a' and 'b'...i have to add the values in column wise
    a b add
    10 30 -->40
    20 40 -->60
    IS there any function?Do you mean something like
    FUNCTION_X (a, b, c, d, ...)that would return the sum of all those numbers?
    No, not that I know of. If there were, it would be harder to use than
    a + b + c + d + ...The first is a comma-delimited list of columns, with a function name and parentheses.
    The second is a +-sign delimited list, with nothing else needed.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Any function like 'SEARCH', 'SEARCH NEXT' available in tree element?

    As we know, the tree control in EnjoySAP Controls provides the functions 'Search' and 'Search Next'. Are these functions available in a tree UI element in WebDynpro?

    Hi
    According to my information i dont think functions like 'Search' and 'Search Next' are available for a tree UI element in WebDynpro.
    If you want to check any value follow the below instructions:
    1.      In the test script editor, open the command interface.
           2.      Expand the tree in the left side of the structure editor to display the relevant element.
           3.      From the context menu, choose Insert Check. The element is copied to the GETS_AND CHECKS node.
           4.      Under the GETS_AND CHECKS node, double-click the element to display it for editing in the right-hand pane.
           5.      Parameterize the CheckAction field and ExpectedValue field as required. Optionally, parameterize the Value field to perform a GET as well.
    For further clarifications please go through the link:
    http://help.sap.com/saphelp_nw2004s/helpdata/en/84/ef2a41b108f523e10000000a155106/frameset.htm
    Rergards
    Elizabeth

  • Any function like While in XSLT

    Hi All,
    Do we have any function in XSLT which works like while..
    I mean when some condition is violated it should come out of the loop..
    Regards
    PavanKumar.M

    Hi Shanmu,
    Thanks for the reply..
    I am not trying to do the generation but i am trying to do transformation based on a condition.
    Below one is my requirement..
    we have an XML like below
    <Stops>
    <Stop>
    <RequestStartDTTM>2009-12-09T05:02:02.000Z</RequestStartDTTM>
    <RequestEndDTTM>2009-12-15</RequestEndDTTM>
    </Stops>
    </Stop>
    <Stops>
    <Stop>
    <RequestStartDTTM>2008-12-09T05:02:02.000Z</RequestStartDTTM>
    <RequestEndDTTM>2008-09-13</RequestEndDTTM>
    </Stops>
    </Stop>
    <Stops>
    <Stop>
    <RequestStartDTTM>2007-12-09T05:02:02.000Z</RequestStartDTTM>
    <RequestEndDTTM>2007-09-05</RequestEndDTTM>
    </Stops>
    </Stop>
    <Stops>
    <Stop>
    <RequestStartDTTM>2006-05-08</RequestStartDTTM>
    <RequestEndDTTM>2006-07-23</RequestEndDTTM>
    </Stops>
    </Stop>
    Here the condition is, the first Stop RequestStartDTTM should be less than next stop RequestStartDTTM, if it violates this condition we have to adjust second stop RequestStartDTTM such dat it shd be 1 min grater than first stop RequestStartDTTM.
    So i am checking second stop RequestStartDTTM with first stop RequestStartDTTM... and i am adding 1 min to RequestStartDTTM and assigning that value to RequestStartDTTM.
    Now while checking third stop RequestStartDTTM i have to check with second stop RequestStartDTTM .. but here we have changed second stop RequestStartDTTM (i think which is not possible to get that value which we have changed). How can i compare the third stop RequestStartDTTM with the changed second stop RequestStartDTTM.
    Here we should not use sort because the customer is sending the data in this manner and we have to manipulate and do the transform..
    If i am wrong plz corret me..
    Regadrs
    PavanKumar.M

  • Is there any function like...?

    Hi, I am new to Oracle and got a problem, may someone help me thanks in advance:
    Is there any built-in function in Oracle like:
    functionname(predication?action1,action2)
    that means, if the predication is true, then do action1 else action2?
    Thanks.

    In PL/SQL, there is a BOOLEAN datatype you can use.
    SQL> set serveroutput on
    SQL> declare
      2      v_var boolean:=true;
      3      v_out varchar2(1);
      4  begin
      5      v_out:=case when v_var then 'Y' else 'N' end;
      6      dbms_output.put_line(v_out);
      7  end;
      8  /
    Y
    PL/SQL procedure successfully completed.Be aware, DECODE is only allowed inside a SQL statement, dislike the CASE as it has been showed here above.
    Nicolas.

  • Is there any functionality for AVERAGE in ALV, like do_sum, subtot?

    Hi Experts,
    In my_alv report, am doing sub/totals for prices, by using do_sum, subtot functions.........fine. But, I need to do/display the AVERAGE value for Discount % column?
    Is there any functionality for AVERAGE in ALV, like do_sum, subtot?
    thanq

    hi
    check these links out
    http://www.sapfans.com/forums/viewtopic.php?t=20386
    http://www.sapfans.com/forums/viewtopic.php?t=85191
    http://www.sapfans.com/forums/viewtopic.php?t=88401
    http://www.sapfans.com/forums/viewtopic.php?t=17335
    regards
    vijay
    reward points if helpful

  • Is there any Standard Web dynpro Java Components like in ABAP Web dynpro's

    Hi,
    Experts,
    I want to know that in web dynpro for Java there is any standard components exists or not like in ABAP web dynpro's standard components exits.Please clarify on that question..
    Thans in advance,
    Shaber Ahmed.

    Hi Ahmed,
    I dont think there are any standard components available on Webdynpro Java like ABAP. But, there are quite a few standard Project available on SDN if you want to practise some exercises. Just do a search on SDN you get lot of standard example projects that you download and Import them in to the WebDynpro Java Perspective of NWDS.
    I hope this help. Let me know if you need any more help.
    Regards,
    Ammu Gopal.

  • Any RunningApplications-like function for non-windowed processes?

    Am I missing any RunningApplications-like function for non-windowed processes like Unix executables? To start with I'd settle for processes in user-space but would ultimately like to list processes like Activity Monitor does. Even comparing RunningApplications results to user space Activity Monitor results will show the difference.
    As far as I can tell you need to go all the way down to kauth and kernel space to watch for non-windowed processes being launched. Is there somethig in-between I'm missing? A notification device about launching apps would be perfect if it cover all processes.
    Thanks,
    =Tod

    I think kqueue may be able to do what you want. Look at the EVFILT_PROC filter. You may have to watch a number of processes - perhaps all of them. But that would tell you any time you get a fork and whenever a process is reaped.
    I looked at kqueue at it does what I want but you need to register it on a by process/file basis which is great for a very specific set of things but not for overall system watching. (I also looked at fsevents but it is designed as a post-event notification system.) While NSWorkspace has the usual Cocoa model notifcation willlaunchApp, didlaunchApp, etc it seems that you need to get the kernel to watch the launch lifecycle of non-windowed functions.
    I actually did manage to get a comprehensive list of running apps out of parsing sysctl output with much less trouble than I expected. So far I have managed to get the pid, uid and abbreviated processname and the list seems to match the Activity Monitor list - at least at this testing printf stage. Getting the username from uid should be trivial and the full file name is doable it just requires some struct length and offset math. I'd like the launch path information but I can live without it for monitoring purposes if I can't figure out how to get it.
    This means that the monitoring part of the running system seems relatively straight forward - wrapping the call in an NSTimer and watching for changes in the returned results. But the watching of the actual starting and stopping of all processes remains some deeper work.
    Thanks for all the suggestions,
    =Tod

  • My notification center (windows 7 64 bit) disappear from time to time, any idea? (When it disappears, I cannot use the special keyboard functions like sound...

    My notification center (windows 7 64 bit) disappear from time to time, any idea?
    When it disappears, I cannot use the special keyboard functions like sound,brightness...
    Thanks!

    How is Acrobat 8 not fully Windows 7 compatible?  I see discussions on this Adobe Community saying how Acrobat 8 does work on Windows 7 and with 64-bit.  It appears that if Acrobat 8 is updated to the latest version, then this should fix AA8-Win7 issues.  And I am at the latest AA8 version, 8.3.1. 
    And how are Acrobat 8 and Reader XI are not compatible?  I have always had Acrobat and Reader installed on the same PC, without ever having any issues.  And Adobe allows the installation of one after the other.  So apparently Adobe allows them both to exist together.  If they are incompatible, then why would Adobe allow them to exist together? 
    Anyway, I did uninstall the FileOpen Plug-in and the Reader XI, then reinstalled the FileOpen Plug-in.  So now Reader is not installed and only Acrobat 8 is installed.  I then tried to load the PDF file, but I still get the Acrobat 8 error described above. 

  • How can we get the image which is stored in clipboard by labview, is there any functions available like text from clip board

    How can we get the image which is stored in clipboard by labview, i can get the text in clipboard by using invoke node directly.but i cannot get the image, is there any functions or vi available.(image is in Png format)

    The Read from Clipboard method is, unfortunately, limited to text. If the clipboard contains an image then you need to use OS-specific functions calls. This is an example program for Windows. It's old, but it should still work.

  • Is there any functions to work like Excel's sumproduct function?

    Dear Guru,
    Is it possible to run a BPC's function like Excel's sumproduct function?
    Thanks,
    Suphawat

    Hi,
    If your template is static, you can write the excel function anywhere in the template. If the template is dynamic, then you can write the function after the expansion ( at the end of the expansion).
    Hope this helps.

  • There is any app like tasker for iphone thanks

    there is any app like tasker for iphone, thanks?

    No. Not based on what I can see from the Tasker web page. I wouldn't hurt to search the app store though. Some functionality may be available from apps there.

  • How do I watch my iTunes movies, tv shows on my mac without having to download them all to my HD?  I really want my Mac to function like my Apple TV since I have just moved and don't have my TV for another few weeks. Help please?

    How do I watch my iTunes movies, tv shows on my mac without having to download them all to my HD?  I really want my Mac to function like my Apple TV since I have just moved and don't have my TV for another few weeks. Since I purchased my three Apple TV. I have had no need to download any of my movies to my Mac.  Which has been great.  However, I remember that I used to now have to do this... or did I?  I am just frustrated because I want to stream all this stuff vice haveing to waiting for it all to download fill up my Mac's HD and then just delete. Someone help please?

    Play the movie in iTunes to stream it.
    Click the cloud icon to download it.

  • Is there any function to automatically adjust the voice volume in the multitrack

    I'm trying to mix voice sounds and music files into one track. Sounds easy! But almost every music has its loud parts(for example the climax) and quiet parts. Therefore when i listen to the voice and the music at the same time, the voice files are sometimes relatively too quiet and sometimes to loud. I don want to adjust the volume pan one part after another because I have a lot of files to mix. Could you tell me is there any function I can use to automatically adjust the voice volume to make it always 'just a bit higher than the music'? Or can I read some documents about this problem?
    Thank you very much!

    Sounds like you want to do what is called "ducking" & "side chaining".
    First try using a compressor and or limiter on the voice tracks to get a more even volume.
    Google: Audio Ducking tons of stuff on how to.
    I myself have never tried this with Audition, or the compressors that come with it. I have done it in other multitrack software and older versions of Dave Browns Compressor.
    Duff

Maybe you are looking for