Can I create a new Group by column in  OBIEE analytic Report ?

Hi Everyone,
Here I have a report
ProductID Price
LCD1 12
LCD2 11
LCD3 10
TV 100
GAME 50
I hope to add a new column on this report in OBIEE and the result should be like below:
ProductID Price New_ProductID_Grouped
LCD1 12 LCD
LCD2 11 LCD
LCD3 10 LCD
TV 100 TV
GAME 50 GAME
I hope to show LCD* products as LCD in the New_ProductID_Grouped field.
Is it possible in OBIEE?
I hope to create the column and then do hierarch later.
Thanks in advance.

Yeah you can go with new logical column with expression and can use it for hierarchy so that you can treat it as one of the level.
ex: drill down column value LCD on click on that you can see LCD1, LCD2 etc..
Try to see the valid expression to define new column.
If helps pls mark

Similar Messages

  • Can I transfer a new group I created in contacts to my iPhone?

    I'm not sure where to put this query, but since it has to do with something on my MAC, I hoped that this is the right place.
    I have created a new group for specific contacts, and I would llike to transfer that group to the contacts on my iPhone 4S.  I could type in all of the entries on the iPhone, but it would take a while.  Much easier if I could just send it over from my MAC Pro tower.
    Thank you.

    Thank you.
    I have been able to transfer the new group to my iPhone, however, when I want to send a blanket e-mail, I cannot get it to send as a group, but only individual names in the group.  All of my other groups can be sent as groups, but not the new one.  Also, this new group only shows in my iCloud contacts, not my e-mail contacts.  Can I transfer from iCloud to my email contacts?
    Thank you again.

  • In Address Book, how do you create a new group under "On my Mac", not under "iCloud"?

    In Address Book there are groups under "On my Mac" and groups under "iCloud".  When I do File -> "Create new group", the new group always goes under "iCloud".  How can I make a new group to go under "On my Mac".  I also tried dragging the new group from the iCloud area to the "On my Mac" area, but that doesn't do it.  Address Book is version 6.1.3.  Thanks for your help.

    Maybe look in the Preferences > Accounts & disable the iCloud account? That should force it to create a local group then re-enable the iCloud account. I would use the 'File > Export… Addressbook archive' to make a backup before you begin, but it should be fine.
    I'm not sure 10.6.8 supported iCloud natively, so perhaps that is why it is being wierd?

  • Creating a new group in LDAP using JLDAP

    Can anybody tell me how to creat a new group in LDAP using JLDAP

    Hi,
    Have a look at the following link. It will surely help you.
    <a href="http://help.sap.com/saphelp_crm50/helpdata/en/20/a4ffee7e0fcc4ebb7e5466d3903d38/frameset.htm">http://help.sap.com/saphelp_crm50/helpdata/en/20/a4ffee7e0fcc4ebb7e5466d3903d38/frameset.htm</a>
    <b>Please reward points if it helps.</b>
    Regards,
    Amit Mishra

  • Create a new group in Active Directory ?

    Hello,
    I'd like to create a new group in Active Directory. Can somebody show me a sample code please ?
    Thanks.

    Someone should show you how to perform a search. There's a sample in this forum.
    http://forums.sun.com/thread.jspa?threadID=623860

  • Create a new Grouping in IBY_FD_EXTRACT_EXT_PUB

    Hi,
    I need to create a new group in  IBY_FD_EXTRACT_EXT_PUB like below.
    eg:
    +*<OutboundPaymentInstruction>*+
    ---+
    +*<OutboundPayment>*+
    ---+
    +*<ExtendValue>*+
    -- <Extend>+
    ---<OUTPUTVALUE>Concatenated Value - 1</OUTPUTVALUE>+
    +*</Extend>*+
    -- <Extend>+
    ---<OUTPUTVALUE>Concatenated Value - 2</OUTPUTVALUE>+
    +*</Extend>*+
    -- <Extend>+
    ---<OUTPUTVALUE>Concatenated Value - 3</OUTPUTVALUE>+
    +*</Extend>*+
    *</ExtendValue*
    +*<OutboundPayment>*+
    ---+
    +*<ExtendValue>*+
    -- <Extend>+
    ---<OUTPUTVALUE>Concatenated Value - 1</OUTPUTVALUE>+
    +*</Extend>*+
    -- <Extend>+
    ---<OUTPUTVALUE>Concatenated Value - 2</OUTPUTVALUE>+
    +*</Extend>*+
    -- <Extend>+
    ---<OUTPUTVALUE>Concatenated Value - 3</OUTPUTVALUE>+
    +*</Extend>*+
    +*</ExtendValue>*+   
    I have got the Concatenated value inside a loop, but I need to split each of the values into 80 characters and then insert it into <OUTPUTVALUE>+
    So, if I have 240 characters, then I need it like+
    +*<OutboundPayment>*+
    ---+
    +*<ExtendValue>*+
    -- <Extend>+
    ---<OUTPUTVALUE>Concatenated Value - 80 characters*</OUTPUTVALUE>*+
    +*</Extend>*+
    -- <Extend>+
    ---<OUTPUTVALUE>Concatenated Value - 80 characters*</OUTPUTVALUE>*+
    +*</Extend>*+
    -- <Extend>+
    ---<OUTPUTVALUE>Concatenated Value - 80 characters*</OUTPUTVALUE>*+
    +*</Extend>*+
    +*</ExtendValue>*+
    What I have tried is
    FUNCTION Get_Pmt_Ext_Agg(p_payment_id IN NUMBER)
    RETURN XMLTYPE
    IS
    l_ins_ext_agg XMLTYPE;
    CURSOR get_invoices_cur(cp_payment_id in number) is
    SELECT IDP.document_payable_id DOCUMENT_PAYABLE_ID
    ,SUBSTR(IDP.calling_app_doc_ref_number,1,30) REFERENCE_NUMBER
    ,IDP.payment_amount PAYMENT_AMOUNT
    ,IDP.document_amount DOCUMENT_AMOUNT
    ,IDP.payment_curr_discount_taken DISCOUNT_AMOUNT
    ,SUBSTR(IDP.po_number,1,30) PO_NUMBER
    ,IPA.payment_amount PAYMENT_AMNT
    ,IPA.ext_branch_number EXT_BRANCH_NUMBER
    ,IPA.ext_bank_account_number EXT_BANK_ACCOUNT_NUMBER
    ,IPA.payee_name PAYEE_NAME
    ,IPA.int_bank_name INT_BANK_NAME
    ,IPA.payment_reference_number PAYMENT_REFERENCE_NUMBER
    ,IPA.creation_date CREATION_DATE
    ,IPA.payment_instruction_id PAYMENT_INSTRUCTION_ID
    FROM iby_docs_payable_all IDP
    ,ap_invoices_all AIA
    ,iby_payments_all IPA
    WHERE AIA.invoice_id = idp.calling_app_doc_unique_ref2
    AND IPA.payment_id = IDP.payment_id
    AND IDP.payment_id = cp_payment_id;
    BEGIN
    <Initialize all valiables>
    FOR get_invoices_rec IN get_invoices_cur(p_payment_id)
    LOOP
    lc_concatenate: = <Get the concanated Value as required>;
    lc_split:= < Written some logic to split it into char >
    BEGIN
    SELECT XMLConcat(
    XMLElement("Extend",
    XMLElement("lc_value1" lc_split))
    INTO lc_extendval
    FROM dual
    END;
    END LOOP;
    BEGIN
    SELECT XMLConcat(
    XMLElement("ExtendVal",lc_extendval),
    INTO l_ins_ext_agg
    FROM dual;
    END;
    RETURN l_ins_ext_agg;
    EXCEPTION
    WHEN OTHERS THEN
    RETURN NULL;
    END Get_Pmt_Ext_Agg;
    Now, my output comes only as the last 80 characters, I do not have the first 80 and second 80 characters.
    ANy inputs to achieve all the 240 characters split into 3 rows like described above would be helpful.
    Thanks

    >
    Now, my output comes only as the last 80 characters, I do not have the first 80 and second 80 characters.
    >
    based on
    >
    lc_split:= < Written some logic to split it into char >
    >
    so check logic for splitting
    i can't test on your data but
    >
    SELECT XMLConcat(
    XMLElement("Extend",
    XMLElement("lc_value1" lc_split))
    INTO lc_extendval
    FROM dual
    >
    what's code doing?
    looks like it's wrong because it create tag "lc_value1"
    >
    BEGIN
    SELECT XMLConcat(
    XMLElement("ExtendVal",lc_extendval),
    INTO l_ins_ext_agg
    FROM dual;
    END;
    RETURN l_ins_ext_agg;
    >
    what's code doing?
    so try another way
    FUNCTION Get_Pmt_Ext_Agg(p_payment_id IN NUMBER)
    RETURN XMLTYPE
    IS
    l_ins_ext_agg XMLTYPE;
    CURSOR get_invoices_cur(cp_payment_id in number) is
    SELECT IDP.document_payable_id DOCUMENT_PAYABLE_ID
    ,SUBSTR(IDP.calling_app_doc_ref_number,1,30) REFERENCE_NUMBER
    ,IDP.payment_amount PAYMENT_AMOUNT
    ,IDP.document_amount DOCUMENT_AMOUNT
    ,IDP.payment_curr_discount_taken DISCOUNT_AMOUNT
    ,SUBSTR(IDP.po_number,1,30) PO_NUMBER
    ,IPA.payment_amount PAYMENT_AMNT
    ,IPA.ext_branch_number EXT_BRANCH_NUMBER
    ,IPA.ext_bank_account_number EXT_BANK_ACCOUNT_NUMBER
    ,IPA.payee_name PAYEE_NAME
    ,IPA.int_bank_name INT_BANK_NAME
    ,IPA.payment_reference_number PAYMENT_REFERENCE_NUMBER
    ,IPA.creation_date CREATION_DATE
    ,IPA.payment_instruction_id PAYMENT_INSTRUCTION_ID
    FROM iby_docs_payable_all IDP
    ,ap_invoices_all AIA
    ,iby_payments_all IPA
    WHERE AIA.invoice_id = idp.calling_app_doc_unique_ref2
    AND IPA.payment_id = IDP.payment_id
    AND IDP.payment_id = cp_payment_id;
    BEGIN
    <Initialize all valiables>
    FOR get_invoices_rec IN get_invoices_cur(p_payment_id)
    LOOP
    lc_concatenate: = <Get the concanated Value as required>;and add logic for splitting like
    select xmlelement("ExtendValue", xmlagg(xmlelement("Extend", substr(lc_concatenate,1+80*(level-1),80) )))
    INTO lc_extendval
    from dual
    connect by level <= ceil(length(lc_concatenate)/80)so example
    SQL>
    SQL> with t as
      2  (
      3  select 1 id, lpad('a',80,'a') ||lpad('b',80,'b') ||lpad('c',80,'c') str from dual
      4  )
      5  --
      6  select xmlelement("ExtendValue", xmlagg(xmlelement("Extend", substr(str,1+80*(level-1),80) )))
      7  from t
      8  connect by level <= ceil(length(str)/80)
      9  /
    XMLELEMENT("EXTENDVALUE",XMLAG
    <ExtendValue><Extend>aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
    SQL> if you have some problem then plz post test data

  • Cannot Create a New Group

    All of a sudden, I cannot create any new groups within Address Book! Will not work either from the plus sign at the bottom of the group list or the main menu!
    Any advice on how to resolve?

    quit Address book and delete the file homedirectory/library/application support/address book/AddressBook-v22.abcddb. then start Address Book and see if you can create groups.

  • When using Panorama, everytime I create a New Group, I am redirected to the Google Calendar App that I created. Tab groups are not being remembered. Any workaround?

    I am trying to use Panorama for the first time. I can successfully create a tab group, but Firefox does not remember it. When I view a new web page and try to use "add to group" I am redirected to the app tab I created for Google Calendar. I am using Windows 7 64x with Firefox as my default browser.
    Are there any know issues with the apps tap and Panorama?

    I have a somewhat related problem running FF7 on WinXP32, specifically concerning your ''I can successfully create a tab group, but Firefox does not remember it.''
    When I reopen FF, I find FF
    * ''sometimes'' does not remember all tab groups.
    * ''often'' seems to move at least 1 tab from one group to another.
    ''kursiver Text''
    I am new to using this tab grouping feature, and I have not identified a specific and consistent misbehavior yet.

  • No "samples" in evaluation download, can't create model or group

    Hi forum, I'm trying to learn BPA Suite.
    Downloaded the evaluation version from the main site. It installed ok, but I can't find any "samples" directory anywhere like the Quick Start PDF says should exist. Are these downloadable separately? Couldn't find them on the site if they are.
    Also can't create a new model, since I have no groups. I click on "LOCAL" in the new model wizard but the "New group" button is greyed out. No instructions in the doc on how to get this running.
    Please help!
    Thanx
    M

    Hi,
    have you start your server?
    On linux you have to run y-serverlauncher.sh
    in .../BPASuite/JavaClient.xxx/localserver/
    Then you can use the sample and create new projects.

  • Groups in Address book on iPad will not let me create a new group

    My address book on the iPad will not let me create a new group. The red ribbon is there and shows my groups that I already have, but when I click on the ribbon the plus sign does not appear on the group side to let me create one.
    Can anyone help me? I have turned it off and back on.

    You can't create new groups on a mobile device.

  • Address book can't get a new Group Folder & 'large type' function doesn't.

    Since loading Tiger a few months ago the Address Book doesn't function as it did. I'd like to reload just the address book software - as that might solve it, but there doesn't seem to be anywhere to download specific piece of apple software online. The current irritating problem is I can't create a new folder for a new group - and I'm sure there's other functions that I don't have - besides losing the large type thing and showing the map link on the address etc...

    Hmmm...I don't know....I wonder whether this could be a file permissions or ownership problem?
    In Terminal.app, when you type
    ls -alTk Library/Application\ Support/AddressBook
    what do you get? When I type that, I get:
    drwxrw-rw- 12 jv user 408 Aug 30 09:23:46 2006 .
    drwx------ 12 jv user 408 Aug 29 21:11:26 2006 ..
    -rw-rw-rw- 1 jv user 6148 Aug 5 22:56:55 2005 .DS_Store
    -rw------- 1 jv user 10 Aug 30 09:23:46 2006 .database.lockN
    -rw------- 1 jv user 10 Aug 29 18:26:44 2006 .skIndex.ABPerson.lockN
    -rw------- 1 jv user 10 Sep 4 11:58:13 2005 .skIndex.ABSubscribedPerson.lockN
    -rw------- 1 jv user 147456 Aug 21 22:36:20 2005 ABPerson.index
    -rw------- 1 jv user 139264 Aug 29 18:26:44 2006 ABPerson.skIndexInverted
    -rw------- 1 jv user 6144 Sep 4 11:58:13 2005 ABSubscribedPerson.skIndexInverted
    -rw------- 1 jv user 942735 Aug 30 09:08:48 2006 AddressBook.data
    -rw------- 1 jv user 139361 Aug 17 18:19:33 2006 AddressBook.data.previous
    -rw-r--r-- 1 jv user 92 Aug 28 20:12:42 2006 LastImport.plist
    Are you seeing similar permissions ("-rw-------", etc.) on all your corresponding files of the same names (AddressBook.data, etc.)? Are they showing the same owner and group as the top two "." and ".." entries (in my case, jv and user -- will be different for you)?

  • HT2486 how do I copy an existing Group in Contacts to create a new group with the same contacts in it?

    How do I copy an existing group in Contacts to create a new group with the same contacts in it?

    Hi there,
    Unfortunately the use case you describe hasn't been implemented in Firefox. It's not possible to move a tab group out to its own window at this point. Generally the tab groups feature hasn't been worked on much recently, not sure why.
    As to TabMixPlus, that's a third-party add-on which Mozilla doesn't directly support. You can find support links from the add-on page: https://addons.mozilla.org/en-us/firefox/addon/tab-mix-plus/
    Hope this helps.
    Cheers,
    David

  • Added user as Farm Admin - still can't create a new Web Application

    What exactly does it take for someone (assuming through Central Admin) to be able to have enough permissions to create a new Web Application?
    I just added one of our developers as a Farm Admin, and the 'New' button is disabled for him, so he can't create a new Web Application.

    As I mentioned in my post.  To create a Web Application you need to be both a Farm Administrator and a local administrator on the server.  You said he was a farm admin.  Was he also a server admin on the server?
    Paul Stork SharePoint Server MVP
    Principal Architect: Blue Chip Consulting Group
    Blog: http://dontpapanic.com/blog
    Twitter: Follow @pstork
    Please remember to mark your question as "answered" if this solves your problem.

  • How can I create a new iCloud account for a familiy member having a new iDevice and reuse one of my aliases for it

    Hi there,
    I moved into iCloud from the very beginning and started with one iCloud account for me and my family, making use of email aliases for family members. Now the number of personal iDevices grows and I want to create a new and separate iCloud Account for my son. The pity is, that I reserved his full name already as alias address on my initial iCloud account. If I now delete this alias, can I create a new account with the former alias as new primary email address?
    Or is there at least any transfer procedure supported for aliases between different accounts?
    Thanks for your help, lauterbachj

    Couldn't agree more... the folks who are getting penalized for this are the early adopters of .Mac/iCloud dating from the days when the only way to implement a "family" account was to use aliases. Now all my kids' / my wife's name aliases sit in my account, unable to move. I guess the good news is that if I delete them nobody else will get them, but this seems a pretty poor consolation.
    Would it really be so difficult to implement a "move this alias to another iCloud account" option that requires the "sender" and "receiver" to exchange some sort of code to implement the transation in order to prevent fraud?

  • TS2756 How can i create a new usb connection (service)  on my iMac for sharing internet from my iPhone5 ( i seem have to deleted it )

    How can i create a new usb connection (service)  on my iMac for sharing internet from my iPhone5 ( i seem have to deleted it )
    i know its not a problem whit my carrier o data plan or sharing preferences on the ipone because when i use it un my laptop it works perfectly through
    the usb and even works on the Imac through wifi and bluethood tethering but NOT through usb!!.
    the problem is that trying to make it work i deleted the "profile" usb iphone on the network prefereces panel. Now i only have 3 options: ethernet / wifi / bluetooth
    but not the usb iPhone i used to have.
    And when i try to add a new one i dont get a USB option.
    can some one help me please??
    this is how it looks (after the bluetooth PAN i used to have USB iPhone option)

    The question would be more appropriate in the Mac forums as it is not really related to the iPhone.

Maybe you are looking for