Inbuilt Function

Hi Experts,
I have a universe on SAP BW Bex Query, I have a Dimension "Tracking Number" Defined as
[ZTRCK_NUM].[LEVEL01]
in Select clause.
I need to create a new Object in Universe Designer which gives count of "Tracking Number"; I am not sure how to use the inbuilt function which is defined as below:
COUNT(,)
COUNT("Set"[, EXCLUDEEMPTY | INCLUDEEMPTY] ) count number of cells in a set, optionally including or excluding empty cells
Your help is highly appreciated.
-Thanks,
  DEEPU

If you have a simple characteristic with Level0 and Level1 you can count the members using this syntax
<EXPRESSION>Count([ZTRCK_NUM].[All].Children, excludeempty)</EXPRESSION>

Similar Messages

  • Is there any inbuilt function to split a comma seperated text

    Dear Friends,
    Is there any inbuilt function to split a comma seperated text for inserting the values thus split in to a table.
    Text Ex: Mango, Orange, Pinapple, Jack Fruit
    Output: Mango
    Orange
    Pineapple
    Jack Fruit
    Thanking you,
    With regards,
    Franklin

    Using DBMS_UTILITY.COMMA_TO_TABLE:--
    DECLARE
    l_tab dbms_utility.uncl_array;
    l_tablen number;
    BEGIN
    dbms_utility.comma_to_table('A,B,C', l_tablen, l_tab);
    dbms_output.put_line('TABLE LENGTH : '|| l_tablen);
    dbms_output.put_line('TABLE COUNT : '|| l_tab.COUNT);
    for i in 1..l_tablen
    loop
    dbms_output.put_line(l_tab(i));
    end loop;
    END;
    source --google.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Inbuilt function in oracle

    Hi
    If
    my input 3
    my out put should like as 111
    if my input as 10 then my output should like as 1111111111.
    is there an inbuilt function else please help to try to solve this issue
    regards
    r

    Hi,
    You don't need a user-defined function for that. There are built-in functions.
    For VARCHAR2 output, (that is, a string of n characters, all of which are '1'):
    LPAD ('1', n, '1')For NUMBER output (an n-digit number, all the digts are 1), just pass the above to TO_NUMBER:
    TO_NUMBER (LPAD ('1', n, '1'))

  • What is the inbuilt function for ctrl+f11 and f11?

    what is the inbuilt function for ctrl+f11 and f11?

    Forms version?
    If 11g then see the fmrpcweb.res file in %ORACLE_INSTANCE%config\FormsComponent\forms folder.
    If you ask questions with inadequate inputs like this one, you are bound to end up with
    >
    Handle:      shravan
    Status Level:      Newbie
    Registered:      Sep 20, 2011
    Total Posts:      16
    <b>Total Questions:      10 (10 unresolved) </b>
    >
    Cheers,

  • Any inbuilt Function Module available in CRM to create a Business Partner

    Hi All,
    I need to create a business partner in CRM not manually through GUI. I need to develop a function module that will create a Business Partner in CRM.
    Can some one tell me if there is an in-built BAPI/Function Module availabe in CRM to create a business partner in CRM.
    When i researched i found that there is a BAPI BAPI_BUPA_FS_CREATE_FROM_DATA2 which can create a business partner in CRM.
    I dont know how to use this BAPI, can some one help me with some sample code.
    Also will the development of a function module differ in CRM when compared to ECC?

    Hello,
    Standard CRM PC UI application offers three options when you push 'New' button: 'Person', 'Organization' and 'Group' (combobox appears). In your case, 'Person' should be selected.
    p.s. If you don't see combobox mentioned above, it could be security issue.
    Kirill

  • FFT implementation without using inbuilt FFT function provided with labview

    Hi,
    I am very new to labview ,I have to implement FFT on NI Node WSN-3202.No fft inbuilt function on WSN target is there to do so.Please anyone give me some idea to implement FFT without using fft function in labview.
    Thanks

    Hi rita,
    when all you need is "some idea" I would suggest to read the Wikipedia article on FFT...
    Best regards,
    GerdW
    CLAD, using 2009SP1 + LV2011SP1 + LV2014SP1 on WinXP+Win7+cRIO
    Kudos are welcome

  • Letter of Credit Functionality

    Hi
    We are implementing Oracle E-Business Suite for a Govt of India Organization on Release 12.1.3 Can anyone let me know if there is an inbuilt functionality for Letter of Credit Scenario in R12. to my knowledge it is not available in 11i
    Regards
    Anand S.

    Hello Marias,
    I regret to inform you that the functionality you request is not
    implemented in the standard system within the Foriegn trade area.
    " The documentary payment functionality (Letter of Credit) for vendors
      is not available in SAP Standard System.
      Documentary payments can only be created on the SD side for customer
      but not for vendors.
      At this time, there is no plan to develop this functionality. "
    Please note that the Foriegn Trade functionality has been expanded and
    is available in the solution product "Global Trade Services" (GTS).
    As you are probably already aware information on GTS is available in SAP
    Service Marketplace.
    Regards,
    Alex

  • Function to generate a random ID

    Hello all,
    Do we have any inbuilt function in SAP to generate a random alphanumeric ID?
    The requirement is such that there is an import parameter "Sales Rep ID" which is optional. So if the user is not providing the ID, then we have to randomly generate it ourselves. Hence I am looking for a FM which does that job.
    Regards,
    Abhishek

    look at the function modules in F052, rthere yiou can generate random value for any data type.
    RANDOM_AMOUNT
    RANDOM_C
    RANDOM_C_BY_SET
    RANDOM_F8
    RANDOM_I2
    RANDOM_I4
    RANDOM_INITIALIZE
    RANDOM_P
    RANDOM_TABLE_ENTRY

  • Syntax of function

    hey hii
    i just wanted to know that is there any way to just find the syntax a inbuilt function in oracle??
    like we have in cmd in windows or ny other thing the help command so we can know waht r the arguments required in that function.

    810345 wrote:
    say my function is substr how can i know abt its arguments using dictionaryIn general, there is no way to get SQL function arguments from data dictionary. However, for SQL functions that have a matching PL/SQL function, you could use USER/ALL/DBA_ARGUMENTS:
    SELECT  CASE ROW_NUMBER() OVER(PARTITION BY OVERLOAD ORDER BY POSITION)
              WHEN 1 THEN 'FUNCTION ' || OBJECT_NAME || ' RETURNS ' || DATA_TYPE
            END FUNCTION,
            CASE ROW_NUMBER() OVER(PARTITION BY OVERLOAD ORDER BY POSITION)
              WHEN 1 THEN NULL
              ELSE ARGUMENT_NAME || ' ' || DATA_TYPE || ' ' || IN_OUT
            END AGRUMENT,
                    CASE ROW_NUMBER() OVER(PARTITION BY OVERLOAD ORDER BY POSITION)
              WHEN 1 THEN NULL
              ELSE DEFAULT_VALUE
            END DEFAULT_VALUE
      FROM  DBA_ARGUMENTS
      WHERE OWNER = 'SYS'
        AND PACKAGE_NAME = 'STANDARD'
        AND OBJECT_NAME = 'SUBSTR'
    FUNCTION                                 AGRUMENT                       DEFAULT_VALUE
    FUNCTION SUBSTR RETURNS VARCHAR2
                                             STR1 VARCHAR2 IN
                                             POS BINARY_INTEGER IN
                                             LEN BINARY_INTEGER IN
    FUNCTION SUBSTR RETURNS CLOB
                                             STR1 CLOB IN
                                             POS NUMBER IN
                                             LEN NUMBER IN
    8 rows selected.
    SQL> However, it will not work for function like NVL2 which does not exist in PL/SQL:
    SELECT  CASE ROW_NUMBER() OVER(PARTITION BY OVERLOAD ORDER BY POSITION)
              WHEN 1 THEN 'FUNCTION ' || OBJECT_NAME || ' RETURNS ' || DATA_TYPE
            END FUNCTION,
            CASE ROW_NUMBER() OVER(PARTITION BY OVERLOAD ORDER BY POSITION)
              WHEN 1 THEN NULL
              ELSE ARGUMENT_NAME || ' ' || DATA_TYPE || ' ' || IN_OUT
            END AGRUMENT,
                    CASE ROW_NUMBER() OVER(PARTITION BY OVERLOAD ORDER BY POSITION)
              WHEN 1 THEN NULL
              ELSE DEFAULT_VALUE
            END DEFAULT_VALUE
      FROM  DBA_ARGUMENTS
      WHERE OWNER = 'SYS'
        AND PACKAGE_NAME = 'STANDARD'
        AND OBJECT_NAME = 'NVL2'
    no rows selected
    SQL>SY.

  • Function to retrieve LOV description from sql

    Hello,
    Is there an inbuilt function in apex to retrieve a LOV description?

    Yes, take a look at the docs for the APEX_ITEM package http://download.oracle.com/docs/cd/E14373_01/apirefs.32/e13369/apex_item.htm#insertedID19
    HTH
    Chris

  • Brief of all in built function

    Hi All
    Is there any reference page where I can find a concise description of all inbuilt functions in SQL an PL/SQL available over ORACLE.
    Would appreciate if some one can send me a link to that page.
    Thanks in advance
    Vikas Chandra

    <BLOCKQUOTE><font size="1" face="Verdana, Arial, Helvetica">quote:</font><HR>Originally posted by Vikas Chandra ([email protected]):
    Hi All
    Is there any reference page where I can find a concise description of all inbuilt functions in SQL an PL/SQL available over ORACLE.
    Would appreciate if some one can send me a link to that page.
    Thanks in advance
    Vikas Chandra<HR></BLOCKQUOTE>
    Hi
    Typicaly all SQL functions described in ORACLE SQL Reference are available in PL/SQL. But there are many usefull functions and procedures in diferent packages. There is no single place described all of them. The most usefull ones are described in ORACLE PL/SQL Reference and in ORACLE Programmers Guide.
    Regards
    null

  • VIs with different inputs and same functionality.

    Hi everyone
    I need to know how to implement a single VI (without using the copies of that VI) which takes different inputs at different instance but the inbuilt functionality being same.
    For example, I need to write data of COM1 to one excel at time instance T1
                          I need to write data of COM2 to another excel at time instance T2. (T1+n)
    According to above example the functionality is same i.e writing to excel file. But inputs are taken from different Port outputs. I tried concept of Polymorphic VIs but i found it id restricted to variation in data types. 
    Plese let me know whether I can use concept of Polymorphic VI in any way to solve this problem? Or completely different solution is there?
    Thanks in advance! 

    Hi divyaa,
    split functionality into several VIs:
    - one VI to communicate with your COM ports (one for each port?)
    - one VI to save data "in Excel"
    Call each subVI when needed (according to your T1/T2 parameters).
    I don't think polymorphic VIs will help you here!
    Best regards,
    GerdW
    CLAD, using 2009SP1 + LV2011SP1 + LV2014SP1 on WinXP+Win7+cRIO
    Kudos are welcome

  • Hi. Can you tell me if using the sat nav functionality on the in-built maps app on my iphone 5, uses just GPS (hence no cost) or GPS and data roaming, hence a running cost for the extent of my journey?

    Hi
    As the tile says, I am looking to find out if I need to purchase an actual Sat-nav app or if I can use the inbuilt functionality and not incur additional data charges
    Thanks

    The built in Maps apps requires a data connection to download mapping data. So, if you want to avoid data costs, you need to purchase a navigation app that stores the data locally on your phone.

  • DBMS_PIPE inbuilt package usage

    Can anyone provide an oracle package where DBMS_PIPE inbuilt function is used extensively

    :) wrote:
    Can anyone provide an oracle package where DBMS_PIPE inbuilt function is used extensivelyhttp://asktom.oracle.com/pls/apex/f?p=100:11:0::::P11_QUESTION_ID:532926800138
    is GOOGLE broken for you?

  • Refresh Functionality

    Hi Experts,
    Can you pls tell me about any inbuilt functionality in ADF for Refreshing a screen so that it goes to database and gets refreshed records ?
    Thanks,
    Sandy

    Hi
    Im facing the similar kind of problem. im having select one list box it contain primary key of my record by selecting list box value it displaying the records of that particular primary key field. in that page im having new button its go to another page to insert the new record. while returning to that page it should automatically refresh the list box but it is not doing. I assign the post back condition to that query in page def file.
    ${!adfFacesContext.postback} please let me know the solution for this problem

Maybe you are looking for

  • Airport Extreme dropping out and can't connect PC anymore

    Hello Suddenly, a couple of weeks ago, my internet connection dropped in the middle of surfing. I couldn't reconnect, Airport was only seeing the base station spasmodically and when I did try to connect I was being asked for a password which wasn't r

  • Trading partner related issue

    Hello All, we are in ecc 6.0 .Using Document splitting. For Intercompany transactions trading partner field is populated.We want to see the trading partner field on the zero balancing line items also i.e in General Ledger View where we have this zero

  • Report freight charges route wise

    Hi I need to generate the report for Freight charges per tonne route wise(we have implemented Transportation module). Kindly provide me tabels&logic .. Thanks & Reg JJ

  • WD iView not fond

    hi All, after maintaining my JcoDestination (Modeldata,Metadata) I import all Webdynpro iVies in my targetsystem. After assigning the correct WD_SYSTEM the following error occured. Any idea?? b.r. Wolfgang #1.5#00132169DA9700090000000900000EEC00041F0

  • Javascript API $x_uptill problem

    Hi people, I have a little boring problem... Simply I made this function in order to hide & show a page element with it's label function ApplyVisible(obj, Visible){ var lblobj = html_GetElement(obj); labels = document.getElementsByTagName("LABEL") fo