CRM2007-Display an attribute set (Marketing ) on the header page of BP

Display an attribute set (Marketing ) on the main view of the business partner
Only the attributes of a certain attribute set should be displayed. The full mkt attrib tab is available in the standard solution.
Example: We want to show the attributes of set u201CBP_CUST_CLASSu201D on the header page.
Regards
Aashish

Hi,
this should be possible. Here a short idea how:
Create a new view as table view that displays the marketing attributes. Have a look at the standard solution or even copy it. In the ON_NEW_FOCUS method filter out all attributes of different attribute sets than you desire.
In the BP Details page create a new viewarea and assign your newly created table view to it.
cheers Carsten

Similar Messages

  • SAP Query: Display Selection Fields in the header page of Basic list

    Hello,
    I have to display the selection fields in the header page of the basic list and statistics
    in a SAP Query.
    I know the usage of short names for fields in the header page, but this doesn't work
    for the selection fields.
    How can I display the selection fields in header pages?
    Kind regards
    Thomas

    Try using:
    DATA: wa_lstab TYPE line
    READ LINE sy-index line value INTO wa_lstab
    Thanks,
    SKJ

  • Display Doc ID with Link to the Property page in SharePoint 2010

    Good Morning. 
    I have been asked to add the DocID to the search results.  Part two is to have that docID link to the property page for the item.
    I have added DocID to fetched property's and can display it fine on the page but I am having problems creating the link to the property pages. 
    can anyone help?
    So far I am trying to do this in the searchcoreresults XSL.
    I would like the format of the DOCID to appear like this.
    [ DOCID ] with the Hyperlink to take you to the item property's page.
    thank you.

    Hi,
    According to your post, my understanding is that you wanted to display Doc ID with Link to the Property page in SharePoint 2010.
    SharePoint indexes Document IDs as a managed property by default, which means that with a little magic, we can add the Document ID into the search results.
    We need to modify the XSL so that we display the Document ID in the search results.
    Here is a great article for your reference:
    SharePoint 2010–Returning Document ID in Search Results
    Thanks,
    Linda Li                
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Linda Li
    TechNet Community Support

  • Unable to find  "Display/edit Attribute Sel " Button in the IP

    Hi  guys ,
    BPS If we click on the Any planning level  (Display)  We will get tabs : char/Selection/Keyfigure/Description/Char Rels.
    In the selection we have  Display /edit Attribute Sel button there ..So that we can edit the Attribute Vales From to To.
    Im very new to IP ,  I'm unable to find this options..
    awaiting for your inputs...
    Regards
    tunath

    Hi Kirill,
    Thanks for your input ...But If we took as navigation attributes in that Modeler, Where is the option for the value restriction From & to...
    Could you elaborate a bit..
    Regards,
    tunath

  • Conditional display of Worklist Notifications region in the Home Page

    Hi ,
    We have personalized the Home page of Oracle by displaying the Notifications work list . Now , I have a requirement to display the Notiifcations worklist section conditionally (based on some of the existing responsibilites to each user) .
    I was thinking we can do this using SPEL and opened up the HomePG.xml in the JDeveloper . I have created a boolean attribute in the ResponsibilitySearchVO and then in the Rendered section of WorklistRN of HomePG.xml I have put *${oa.ResponsibilitySearchVO.getCustomFunction}* . getCustomFunction* is the method in the RowImpl of VO . In this method for now , I have not put any logic but just returning a false value . Now,when I run my page from JDev , i could still see the Worklist Notification section . I was thinking if I did something wrong / if this is not the right away to do it .
    Gurus ... any replies will be of great help !!
    Thanks,
    Chandu
    Edited by: Chandu_CS on May 19, 2009 7:29 PM

    Yes, you are correct. It's possible to drop the dataguard configuration and to add the standby database manually. But I really would like to know in which table/view the current configuration is stored.Seems like a bug to me that the GrdiControl uses the wrong name for the standby-database. All other standby databases carry the hostname in their name, but since stbySELLPROD_demzivup01.akc.prod is too long for the agent, it gets shortened to stbySELLPROD.akc.prod (on the agent side, but not in the GridControl).
    Edited by: VivaLaVida on Dec 13, 2010 10:37 AM

  • Display more than one Graph in the same page along with report datails

    Hi,
    I have  to display 3 lines out put along with the 3 GRAPH’s  below corresponding to the 3 lines  in the same page of a the report output. .How do i achieve this?  The function modules like ‘GRAPG_2D’,   ‘GRAPG_3D’ brings the graph in separate pop up, but I want all the 3 graphs in the same page along with the some text above those graphs (ie my report details in 3 lines).
    Could you please let me know how to achieve this?
    Waiting fro your kind suggestions,
    Regards,
    Steve

    Hi,
    Refer to the following code to display graphs in report.
    DATA: BEGIN OF ITAB_DATA OCCURS 0,
    DATANAME(15),
    QUANTITY1 TYPE I,
    QUANTITY2 TYPE I,
    QUANTITY3 TYPE I,
    END OF ITAB_DATA,
    BEGIN OF ITAB_OPTIONS OCCURS 0,
    OPTION(20),
    END OF ITAB_OPTIONS.
    ITAB_DATA-DATANAME = 'Electricity'.
    ITAB_DATA-QUANTITY1 = 55.
    ITAB_DATA-QUANTITY2 = 62.
    ITAB_DATA-QUANTITY3 = 59.
    APPEND ITAB_DATA.
    ITAB_DATA-DATANAME = 'Gas'.
    ITAB_DATA-QUANTITY1 = 35.
    ITAB_DATA-QUANTITY2 = 52.
    ITAB_DATA-QUANTITY3 = 44.
    APPEND ITAB_DATA.
    ITAB_DATA-DATANAME = 'Water'.
    ITAB_DATA-QUANTITY1 = 18.
    ITAB_DATA-QUANTITY2 = 22.
    ITAB_DATA-QUANTITY3 = 19.
    APPEND ITAB_DATA.
    CALL FUNCTION 'GRAPH_MATRIX_3D'
    EXPORTING
    COL1 = 'Jan'
    COL2 = 'Feb'
    COL3 = 'Mar'
    TITL = 'Utility Expenses in US$.'
    TABLES
    DATA = ITAB_DATA
    OPTS = ITAB_OPTIONS
    EXCEPTIONS
    OTHERS = 1.
    Hope this helps.
    Reward if helpful.
    Regards,
    Sipra

  • How set  ContextMenu in the Header  TableView?

    in Swing is table.getJTableHeader().setPopupMenu(....)
    or something.

    If you want the same ContextMenu in all TableColumns, simply set it in all TableColumn instances you create.Oh, that works . . . so easy . . .
    for (TableColumn column : table.getColumns()) {
      column.setContextMenu(contextMenu);
    }Kind of surprised that it sets the context menu on just the header rather than the whole column, but that is what the javadoc says as well. Seems to do exactly what giovanni wants.
    header return null.You didn't do the lookup after the table had been rendered on a stage.
    But Jonathan's solution using a supported api is better than using the lookup anyway . . .

  • I cannot set FF to the default page

    I cannot set the default home page in FF 3.6. When I try I get an error messagge, "GOOGLE ERROR".When I try to set the home page "GOOGLE.CN" appears as opposed to either the GOOGLE home page, or the FF default home page. I un and reinstalled FF to no avail. Is this issue caused by the GOOGLE error? Will it go away on its own if I wait long enough? If I update to a newer FF will this go away? Is there a site where I can see screen shots of the newest version of FF BEFORE I download it and then find I do not like it? I stayed with 3.6 because I do not like version 4. I do not know what the others look like. HELP ME! [email protected]

    Clear the cache and the cookies from sites that cause problems.
    "Clear the Cache":
    * Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"
    "Remove Cookies" from sites causing problems:
    * Tools > Options > Privacy > Cookies: "Show Cookies"
    * https://support.mozilla.com/kb/Cannot+log+in+to+websites
    * http://kb.mozillazine.org/Websites_report_cookies_are_disabled

  • How to display more than one data on the same page?

    Hello all,
    I have a question that is if I want to choose more one data on the same page and the data is selected from the same column.
    I.E I want to tick more than one boxes in the page but the data is selected from the same column.

    Select all the item to burn... right click...
    Or
    Place all items into a folder and burn the folder to the disc.
    Or
    Make a Burn Folder in the Finder (place items into the folder) and burn from there to a disc.

  • Grand Total on the Header page

    Post Author: RogerR
    CA Forum: General
    Say I'm created a multiple page estimate report. As all the labor and material costs are being created and added up.
    Is it possible to put that Grand Total on the first page?
    Can you process the report first to get the numbers then print the report? I guess this is what would need to happen.

    Post Author: SKodidine
    CA Forum: General
    If you summarize a field (not a running total) then you should be able to create the summary field and move it to the Report Header without any problems.  This cannot be done if you use running totals for obvious reasons.

  • Can not delete marketing attribute set

    I am trying to delete an 'Attribute Set' & Attribute.  I have managed to delete the attribute but when trying to delete the attribute set i get the error - Attribute Group ZIC_PTS_BP Still Contains Business Partners.
    I have ran - CRM_MKTPFTPL_DELETE_ATSET which seemed to delete all the assigned entries but I still can't delete the attribute set
    any ideas?
    regards
    Barry

    The attribute set is not geeting deleted since it has been assigned to some buisiness partners, which can be seen in the marketing attributes tab page of the business partner.
    Delete the assignment first, than only you will be in a position to delete your attribute set.
    *If helpful, Do reward points*
    Regards,
    Shalini Chauhan

  • The order in attribute set is MESSED UP

    Hello forum,
    Here is an intricate description of my problem:
    When I define BRIDGE_TYPE attribute set for Discoverer the sequence of attributes often changes in attribute set without my intervention. This is especially the problem because advanced attribute properties themselves DO NOT change the order. Consequently, I am getting completely messed up. I cannot identify any possible pattern here. I observe it for both dimensions and facts attribute sets.
    What's wrong?
    Sorry for very vague description of the problem, but that's how it's going on!!!
    Another problem is sometimes on the Attribute Sets tab the button "Advanced..." is grayed out for BRIDGE_TYPE. When I move focus to the only one attribute set (BRIDGE_TYPE) and not changing anything press ok (or in some other way move out focus from the record about BRIDGE_TYPE attribute set), I get error message that only one attribute set of type BRIDGE_TYPE may exist. After I press ok for this message, the type of attribute set is automatically changed to USER_DEFINED (of course Advanced button is still grayed out). Then I press ok and open Table Properties again. There I can see two identical attribute sets but with different types: BRIDGE_TYPE and USER_DEFINED. The names of attribute sets are the same, so I have to change name of one attribute set or delete them. If I delete them and create new attribute set of type BRIDGE_TYPE, I am able to go to advanced properties and everything fine, except order problem described above. Again I cannot see any pattern here - this happened only with some of dimensions.
    Does anybody observe such a strange behavior? I'm lost and disappointed. :(
    Regards,
    Alex

    I have found a solution for ordering problem but it's realy error-prone. :(
    I have determined that order is changed only when I change advanced properties for BRIDGE_TYPE attribute set. If I change them again, the order is back to the previous state, so I can handle it with some efforts. Of course, this is not good way of doing thing, but I don't know better way to handle this.
    This trick really slows the work down! If someone experienced similar results, please, share your knowledge.
    Regards,
    Alex

  • Display Document Set Columns Within The Document Set

    Hello all! Hopefully you all can let me know if the idea I have in my head is possible:
    Background: I have a Document Library with a custom made Document Set that has about 15 columns. The way I initially designed this, I left about 10 of the fields as "Hidden" because we didn't want the user to fill out that information
    when creating a Document Set. That information would be completed in the next step through a Workflow. The Document Set Welcome Page has been left pretty much untouched with the usual web parts for Document Set Properties and the view of the items within the
    Document Set.
    Question: What I would like to know is...would it be possible to display those Document Set fields within the Document Set itself? At the moment, if I try to add another Document Library web part and view it, the information web part is
    empty, or it contains information about one of the items within the Document Set.
    Simplified Structure of Document Set:
    Name (required)
    Fiscal Year (Required)
    Total Cost (Required)
    Approval Date (Hidden)
    Requisition # (Hidden)
    Team Members (Hidden)
    Reminder Date (Hidden)
    User creates a new Document Set, fills out the information, and saves (this triggers a background workflow that approves the Document Set). After approval, a new workflow is started to provide the information for the Hidden fields (and also schedules a reminder
    for that Reminder date.)
    The goal would be to display those Hidden fields in another web part on the page. Right now, I have users going back up to the main level of the Document Library to look at a view that contains those fields.
    Hopefully I haven't confused you all too much! Please let me know if my idea is possible and any resources you might have!
    Thanks!
    Toni
    Toni Marie

    Here is the approach to read document set columns and assign to other webparts:
    for each document set you can find the id when you clicking on the document set or navigating to the welcome page,
    using this id read query string and  the associated item column values and assign to otherwebpart .
    Reference code:
    //page_load for other webpart read the query string of welcome page
    if (Page.Request.QueryString["ID"] != null)
                    ID = Convert.ToInt32(Page.Request.QueryString["ID"]);
                    if (itemID > 0)
                        GetDocumentSetItem(ID , site);
      protected void GetDocumentSetItem(int itemid, SPSite sSiteUrl)
                SPSite site = sSiteUrl;
                SPWeb web = site.OpenWeb();
                SPList list = web.Lists.TryGetList("DocumentlibraryName"); //where documentset content type attached
                SPListItemCollection items = list.GetItems();
                SPListItem item = null;
                if (itemid > 0)
                    item = list.Items.GetItemById(itemID);//getting the current item
       //read the document set item column values and assign it other webpart controls , 
                    txtDocsetidname.Text = Convert.ToString(item["FileLeafRef"]);
                    txtDocsetid.Text = Convert.ToString(item["hiddenfield"]);
    In the welcome page I have placed button to load webpart ,while loading the webpart I am reading the query string assigning the values to otherwebparts.
    G1

  • Keyfigure display attribute not visible in the report

    Hi,
    I am facing a problem. I have <b>keyfigures as display attributes</b> in my master infoobject. Earlier I was able to see those <b>display keyfigure attributes</b> in my query and was able to use them in it. After that, few changes were done to the master infoobject (addition of few attributes and deletion of few - but none of them were what I was using). Now after the change, when I open the query in design mode, it gives me error saying that it can't access those attributes (only keyfigure display attributes) and repairs the query (removes those attributes). All the other attributes are visible.
    I have already tried rsrv for the master infoobject (corrected the error) and rsrt for the query. After that also it doesn't solve the problem.
    What could be the reason? Any pointers would be highly appreciated.
    Thanks,
    Saket

    Hi,
    Display keyfigure attributes are visible in the reports because I was using and running them in the reports before the change in that particular master infoobject. Only, keyfigures maintained as attributes can't be made navigational (hence can't be used for drilldown). Its only after the change, there is this error.
    I had also checked the authorization for Keyfigure earlier, which I have. Therefore its not the problem.
    Thanks for the help anyways! Any more pointers? Btw, I am working on BW3.5.
    Thanks,
    Saket

  • Creating Attribute Sets

    Hi:
    On OA Framework Developers Guide Chapter 3 there is a sectioin of
    " Creating Attribute Sets"
    I followed the example and try to execute the command on the tiltle
    "Generating Attribute Sets Automatically (Only on Linux)" which I tried the following
    /jdevbin/<SelectedJDevBuild>/build attributesets APPS APPS ................
    but I could not find the /build command that will help the execution on the command line
    Does any one tried?
    I am trying to create attributesets for XMLType table.
    Please help
    Ali_2

    Hi John,
    The Attribute Set of Format type 'Value Table' is for the Mutiple Attribute Sets. These can be either a Single Attribute Set with Multiple values or the Multiple Attribute Sets with One value.
    You can include all such marketing attributes into one table which is a check table with search help. and use this as the Value Table.
    Hope this helps you out!
    Regards
    Veena.

Maybe you are looking for

  • AC 212 - Course Material

    Hi, I am on a look out for AC 212 course material. If someone has it please forward the same to my email ID <b>[email protected]</b> Thanks, Sahaj.

  • ACH help- Urgent

    Hi All, I am trying to configure the ACH with Classic Payment Medium program (SAP standard program : RFFOUS_T). But when i run F110 and then i go to DME Admin, i could not see any data. can u please help me, . I will assign point on any input. Regard

  • How to undo a false Exchange account ``Hotmail``?

    Hello! At the beginning when I used the iPad, I was asked to create an Exchange account ``Hotmail`` which never worked and was not necessary. Theses days I have problems with my computer but with the corrections its better. Now its the iPad that does

  • Flash 8 not recognizing fonts

    I'm experiencing difficulties with Flash 8 not recognizing the majority of a font family. Its strange because Photoshop & Illustrator recognize them & display them just fine. The fonts involved my project include: Helvetica Helvetica Compressed Helve

  • How to find master data and atrribute

    Hi Experts, I have table in ECC, transectional data coming from there. how to find attrib and hierarchies they have attrib and hierarchies, how to find which one to use. Thanks