Displaying not only contact persons

Hello Friends,
I'm working with CRM 7.0 and configuring IC-Agent.
After Account Identification, the standad system only shows contact persons(BUP001) from that account, but we need to show all contacts related to an account. We need to display all contacts inserted on relationships infoblock at Account Overview.
Is there any way to make this possible?
Any help will be apprecited!
Best Regards,
Nivea

Hi Nivea,
With CRM 7.0, SAP has provided a new functionality of multiple business partner in Define Account Identification Profiles for Multiple Business Partners.
Below is the path, CRM>iC webclient>Master data-->Define Account Identification Profiles for Multiple Business Partners
try configuring with multiple business partner and check if this helps.
Regards,
Chandrakant

Similar Messages

  • Display relationships by contact persons

    Hello,
    if you display the master data from a company, you have an info block for relations where you can see the connected contact person to the company. at this positions its also possible to delete the relationship between the company and the contact person.
    If you display the master data from a contact person, the info block relations are not filled.
    Its possible to see the businessadress of the related companies, but its not possible to delete the connection between the contact person and the company from the master data of the contact person.
    So, somebody have a tip how we can make this possible?
    why i cant see the relationship to the company in the info block relations at the contact persons?
    Thanks a lot for your help!
    kind regards - Helmut

    Hi
    Please check the following note it should resolve your issue:
    Note 1238913 - Account: how to display contacts in AB "Relationships"
    Also see the following notes:
    Note 1175899 - CRMWebUI:Is Contact Person Rel.ship not displayed in Account
    Note 1331704 - CRM Web UI Account / contact / employee search: corrections
    Note 1310163 - CRM WEBUI: Standard contact in search result
    Note 1117424 - Contact Person-role not created for Contact Persons
    Hope this helps
    Rupesh

  • IPod Classic Won't Display Notes or Contacts

    After I installed iTunes 11.1.0.126, my notes and contacts don't display on my iPod Classic.  I have the "enable disk use" option checked on iTunes. I have manually saved txt files saved to the Notes folder and vcf (vCard) files saved to the Contacts folder on my iPod.  When I select "Notes" on my iPod, I get the display "No Notes" even though there are notes entered. Likewise, when I select "Contacts" on my iPod, I get the display "No Contacts".
    Thanks for Responding,
    George

    I have discovered a bug in iTunes related to this issue.  If you click on "Enable Disk Use" in the Summary tab in iTunes with your iPod Classic 160 connected, you can then manually add notes and contacts.  Unfortunately, if you uncheck it and then sync your device, all of the manually added Notes and Contacts will disappear on your device.  The only way you can make Notes and Contacts reappear is to use the restore function on the Summary tab in iTunes with your device connected.  Of course if you do this it will erase everything on the device and you will have to start over again like it is new.
    A word to the wise, if you ever check "Enable Disk Use" don't ever uncheck it.

  • Authorize Users to Create ONLY Contact Person Details in a BP Account.

    Hello,
    I have an issue with respect to Authorization in CRM WebUI.
    Issue:-
    A User (end-user) depending on his role (Role A Assigned in SU01) should not be allowed to edit any account details except CONTACT Block Details, i.e. the respective user should be able to edit/create only the contact block details.
    The standard Authorization Groups CRM_BPROLE & B_BUPA_RLT are set with the folliowing values:-
    ROLE A
    1) BPTYPE = 000000, BUP003
        ACTVT = '  '
    2) BPTYPE = BUP001, BUP002, CRM000
        ACTVT   = 1,2,3
    *Analysis & implementation *
    I have created a Z BADI implementation of BADI in the method IF_UIU_BP_AUTHORITY~CHECK_EDIT.
    Commented the code from Ossnote 1259940 and wrote a simple code to give no/full authorization depending on parameter
    IV_APPLICATION_NAME.
    IF iv_application_name = cl_crm_ic_bp_constants=>gc_cp_create or
        iv_application_name = cl_crm_ic_bp_constants=>gc_cp_edit.
        cv_not_allowed = abap_false.
    ELSE.
        cv_not_allowed = abap_true.
    ENDIF.
    RESULT
    The test results are -
    either the user gets to edit the complete BP account (incl. CP) or
    he gets no authority to edit any BP details (incl. CP).
    What I want is->
    Though the user CANNOT edit the complete BP account details, he should be able to EDIT/CREATE Contact Details.
    Now i need help from you all to suggest me on how to achieve it.
    One option is - Take away the complete authority from the user and give only authority on CONACT PERSON block.
    But for this I need to know how do we create authorizations on block levels.
    Any Help/Tip would be appreciated.
    Thanks
    Dedeepya

    Dedeepya reddy,
    I just wanted to say thanks for coming back, and giving the solution you used.
    It is helpful to anyone who may want to perform a similiar thing.  If you didn't do that they would be just as lost!
    I appreciate that people provide solutions when they ask questions that way it can further the help for others.
    Again thank you.

  • When creating a "lookup" column be able to display not only one column from the other list, but additional columns

    With the lookup technique, it is possible to select an item from another list and display one column of this item
    It is obviously possible to create several lookup columns on the same list and therefore display several columns
    There’s a high risk of not selecting the same item and therefore have inconsistent columns
    The Requirement therefore consist of being able of displaying several columns of the same item from the other list, based on one unique selection
    Example:
    In list(x), define lookup column on list (y), column Title (possible today)
    Then define a “secondary” lookup column on same list, column Code
    The effect would be that when selecting an item from list (X), both Title and Code would show up consistently in 2 different columns of list (Y)
    All possible solutions are welcomed

    If you are using SharePoint 2010, you can retrieve additional columns when adding a Lookup. If you are using 2007, there is no direct OOTB way, but the following two posts provide potential work-arounds:
    https://www.definitivelogic.com/blog/microsoft-sharepoint-2007-pulling-column-data-one-list-another-based-common-list-field
    http://stefan-stanev-sharepoint-blog.blogspot.com/2010/11/sharepoint-2007-associated-lookup.html
    Dimitri Ayrapetov (MCSE: SharePoint)

  • Label update and numbers displaying, not only string

    Hi all
    i'v three classes, one which creates random information "generator" and another class which displays the information.
    so my question is now, how can i update the information in the display class instantly? and why can i only show strings "text" an no numbers? for example i need to display numbers too for temperature purpose.
    attached are the files.
    the generator class:
    public class Generator extends Thread {
         public long delay;
         public boolean stopped;
         Generator() {
              delay = 2000;
              stopped = false;
         public void run() {
              while (!stopped) {
                   try {
                        Thread.sleep(delay);
                        MeteoDaten meteodaten1 = new MeteoDaten();
                        // Stadt Generator
                        int stadt = (int) (Math.random() * 5) + 1;
                             if (stadt == 1) {
                                  meteodaten1.getOrt();
                                  meteodaten1.setOrt("Zurich");
                             if (stadt == 2) {
                                  meteodaten1.getOrt();
                                  meteodaten1.setOrt("Basel");
                             if (stadt == 3) {
                                  meteodaten1.getOrt();
                                  meteodaten1.setOrt("Bern");
                             if (stadt == 4) {
                                  meteodaten1.getOrt();
                                  meteodaten1.setOrt("Lausanne");
                             if (stadt == 5) {
                                  meteodaten1.getOrt();
                                  meteodaten1.setOrt("Genf");
                             // Temperatur Generator
                             int temp = (int) (Math.random() * 35 - Math.random() * 20) + 1;
                             meteodaten1.getTemp();
                             meteodaten1.setTemp(temp);
                             // Beschreib Generator
                             int beschreib = (int) (Math.random() * 5) + 1;
                             if (beschreib == 1) {
                                  meteodaten1.getBeschreib();
                                  meteodaten1.setBeschreib("Bewoelkt");
                             if (beschreib == 2) {
                                  meteodaten1.getBeschreib();
                                  meteodaten1.setBeschreib("Sonnig");
                             if (beschreib == 3) {
                                  meteodaten1.getBeschreib();
                                  meteodaten1.setBeschreib("Gewitter");
                             if (beschreib == 4) {
                                  meteodaten1.getBeschreib();
                                  meteodaten1.setBeschreib("Stuermisch");
                             if (beschreib == 5) {
                                  meteodaten1.getBeschreib();
                                  meteodaten1.setBeschreib("Bedeckt");
                   } catch (InterruptedException e) {
    }the other class:
    class MeteoDaten {
         // Initialisierung
         public String ort, beschreib;
         public int temp;
         // Getters Setters
         public String getBeschreib() {
              return beschreib;
         public void setBeschreib(String beschreib) {
              this.beschreib = beschreib;
         public String getOrt() {
              return ort;
         public void setOrt(String ort) {
              this.ort = ort;
         public int getTemp() {
              return temp;
         public void setTemp(int temp) {
              this.temp = temp;
    }and finally the label class:
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.GridLayout;
    import java.awt.event.WindowAdapter;
    import java.awt.event.WindowEvent;
    import javax.swing.JLabel;
    import javax.swing.ImageIcon;
    public class LabelFrame extends Frame {
         private static final long serialVersionUID = 1L;
         public LabelFrame() {
              setTitle("MeteoDaten");
              setBackground(Color.white);
              addWindowListener(new TestWindowListener());
              MeteoDaten meteoDaten = new MeteoDaten();
              setLayout(new GridLayout(6, 2)); // GridLayout setzen
              // Initialisierung Buttons
              Button button1, button2;
              button1 = new Button("Get Data");
              button1.addActionListener(new Test1ActionListener());
              button2 = new Button("Stop");
              button2.addActionListener(new Test2ActionListener());
              // Initialisierung Labels
              Label labelOrtlinks, labelTemplinks, labelTemprechts, labelBeschreiblinks, labelBeschreibrechts, labelVisuell;
              // Initialisierung Font
              Font bigFont = new Font("Verdana", Font.BOLD, 14);
              // Label Text Setzung
              labelOrtlinks = new Label("Ort: ");
              labelOrtlinks.setFont(bigFont);
              labelTemplinks = new Label("Temperatur:");
              labelTemplinks.setFont(bigFont);
              labelTemprechts = new Label(meteoDaten.getTemp());
              labelTemprechts.setFont(bigFont);
              labelBeschreiblinks = new Label("Beschreib: ");
              labelBeschreiblinks.setFont(bigFont);
              labelBeschreibrechts = new Label(meteoDaten.getBeschreib());
              labelBeschreibrechts.setFont(bigFont);
              labelVisuell = new Label("Visuell:");
              labelVisuell.setFont(bigFont);
              // Add First Label
              add(labelOrtlinks);
              // Ort Auswahl
              Choice choice = new Choice();
              choice.add("Zurich");
              choice.add("Basel");
              choice.add("Bern");
              choice.add("Lausanne");
              choice.add("Genf");
              add(choice);
              // Add Labels
              add(labelTemplinks);
              add(labelTemprechts);
              add(labelBeschreiblinks);
              add(labelBeschreibrechts);
              add(labelVisuell);
              // Bild
              JLabel labelpic = new JLabel(new ImageIcon("thunders.png"));
              add(labelpic);
              // Abstand
              add(new Label(""));
              add(new Label(""));
              // Buttons
              add(button1);
              add(button2);
              pack();
              setVisible(true);
              //Gr��sse vom Fenster
              setSize(300, 250);
              setVisible(true);
         class TestWindowListener extends WindowAdapter {
              public void windowClosing(WindowEvent e) {
                   e.getWindow().dispose();
                   System.exit(0);
         class Test1ActionListener implements ActionListener {
              public void actionPerformed(ActionEvent e) {
                   System.out.println("Getting Data...");
                   //Generator starten
                   Generator gen1 = new Generator();
                   gen1.start();
         class Test2ActionListener implements ActionListener {
              public void actionPerformed(ActionEvent e) {
                   System.out.println("Stop!");
                   //Generator stoppen
         public static void main(String args[]) {
              new LabelFrame();
    }thank you in advance for your help!

    Hello,
    you can declare the label as member under the class declaration,then use labelname.setText() , like this :
    public class LabelFrame extends Frame {
    private JLable labelTemprechts =new JLable();
    public void changeLabelValue(int newValue){
    this.labelTemprechts.setText(String.valueOf(newValue));
    .

  • How Do I Get Yt Chart To Display not Only on y-Axis?

    I am importing data from a simple ASCII file w/ no time information (simply displacement values) and I want this to display on a Yt chart. Currently the Chart displays a small dot on the Yaxis- that moves up and down, but will not diplay along the x-axis. How do I fix this so it will display along the whole chart?!
    I have included a file with this simple part of my program I am having problems with and the file I am trying to import from.
    Thanks! 
    Attachments:
    WP_Simple.DSB ‏88 KB
    S3.ASC ‏20 KB

    The X/Y chart is block based - you define the number of blocks that will be plotted, but each block is plotted as it is received.
    The Chart Recorder is one of the most flexible displays, allowing data of varying block size and sample rate to be plotted. It is time based, and plots each block as received. It does need at least two points to draw the line.
    The Y/t Chart and the X/Y chart are less flexible, and are optimized for speed, plotting a full block or blocks as received. The Y/t Chart has some additional features - Fast Recorder and 
    The Diagram module is time based and plots each block as received.
    - cj
    Measurement Computing (MCC) has free technical support. Visit www.mccdaq.com and click on the "Support" tab for all support options, including DASYLab.

  • Add Employees to Buying Center, not only Contacts

    Hi there,
    we want to use the Buying Center functionality, mainly in the opportunities.
    When I add a buying center and want to add contacts to it, it is impossible to select any employee.
    Is there a possibility to add employees to the buying center? One would be to add all employees in the role BUP001, but this is no real solution for me.
    Best Regards,
    Fabian Nothacker

    Hello!
    As far as I know, this is not possible but Iu2019m not sure from a technical point of view.
    Usually the Buying Center is always an external view of the buying organization and never of the internal u201Csellingu201D organization.
    However I think the Use-Case perfectly makes sense to have a u201CBuying Centeru201D and a u201CSelling Centeru201D and to combine this.
    Best regards
    Arno

  • How can I display not only one account's mail but all in the central inbox?

    I am changing from OSX (machines with OSX 1.8.5 and Mavericks) mail to Thunderbird.
    However, one feature of OSX Mail I can't find in Thunderbird or have overseen it:
    I use several mail accounts, that OSX Mail is showing me on top level in one general inbox.
    Below that level, I can of course jump into the different accounts if needed to read mails only related to that account.
    Is there a similar view in Thunderbird?
    Thanks for any help
    Christoph

    http://kb.mozillazine.org/Global_Inbox

  • Qualifications Profile for Contact Person-PT

    I have assigned qualification to Contact Person -- Object Type "PT-Contact Person" but in transaction PPPD, I am unable to display Qualifications Profile for the Object "PT-Contact Person", while I am able to display Qualifications profile for other objects such as "Person"
    Message reads as follows:
    Unable to display a profile for object "PT" -- Message no. PQ213
    I am wondering if I am supposed to change any settings in order to be able to display Qualifications for Object TYpe "PT-Contact Person" or do I have to use a different transaction for this object type

    Hi sap hr consultant
    As per my knowledge qualification profile is displayed only for the object type "P" not for contact person or user even the same problem we faced but according sap help also for contact person you cannot display the profile.  please delete that contact person hire him for the same positon and again you can assign him as a contact person and do the qualification profile.  As per my knowledge these contact person and user is addition or you can see it is supporting to person so try with the person only.
    bye
    naveen

  • Contact person in BBP_SUSPO

    Hello!
    We are using the MM-SUS scenario. Smartform BBP_SUSPO provides some information,
    which is needed to comunicate with the vendor. But in the field contact person, the company
    is printed, not the contact person.
    Has anybody some experience on that.
    Is there a possiblity to print the the name of the mrp-controller,
    who created the PO and who is the responible contact person for the PO.
    Kind regards,
    Barbara

    no SD is not implemented here..anyways i got the result using subroutin..but here-
    PERFORM GET_PERSON IN PROGRAM Z_CONTACTPERSON
    USING &EKKO-LIFNR&
    CHANGING &LF-NAMEV&
    ENDPERFORM
    Kind attention: &LF-namev&----> this value is not getting displayed in script
    EPORT  Z_CONTACTPERSON.
    form GET_PERSON tables lt_lifnr structure itcsy
                           lt_NAMEV structure itcsy.
      data: lf_lifnr type lifnr,
            lf_person like knvk-NAMEV.
    read table lt_lifnr index 1.
      move lt_lifnr-value to lf_lifnr.
      CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
        EXPORTING
          input         = lf_lifnr
       IMPORTING
         OUTPUT        = lf_lifnr.
      select single  NAMEV from knvk into lf_person where lifnr = lf_lifnr.
       endselect.
        if sy-subrc = 0.
          move 'lf_person' to lt_NAMEV-name.
          move lf_person to lt_NAMEV-value.
          modify lt_NAMEV index 1. ---> The customer name is updating here but not coming in PO o/p.
          endif.
          endform.

  • Collection Contact person

    Hi All,
    Request your help in creation of Collection contact persons relationship in FSCM and find them in process receivables screen.
    We are not mantaining contact persons in customer master. But only in FSCM business partner relationship.
    i want collection contact person to show up in "Get contact Person" list in process receivables.
    What is the use of collection contact person if they donot show up in process receivables screen?..Please help
    Thanks - Donny

    please note this is a duplicate - therefore this thread is locked.

  • Replication of Contact person

    Hello All ,
    In BP relationship screen there is a field "Standard relationship".The data stored in BUT050-XDFREL. If I change this field a Bdoc is generated.I can see a value in Central data - main - data - Default relationship ="X"
    What field will be updated in R/3  by this BDOC? I am looking for "Standard relationship" field in R/3 contact person.
    Thank you very much,
    Rika

    Hi Rika,
    The field XDFREL in the table BUT050 is for the relationships of the
    Category 'contact person is of' used in order to display that a contact
    person is the 'main contact person' of a business partner.
    The SAP R/3 flag KNVP-DEFPA corresponds with field IS_DEFLT_PARTNER
    which is found in table CRMM_BUT_FRG0081.
    The standard flag doesn't exist in R/3. 
    Of course you can use User exit DE_EIOUT (see note  0620399) and any field in R/3 to have a corresponding mapping. For an upload of this flag you needs User Exit DE_BALE.
    Regards, Gerhard

  • How to avoid contact person deletion when partner function is assigned

    Hi All.
    I need your help for a contact person issue.
    I'd like to avoid a contact person relationship to be deleted when this contact person is assigned to one or more partner functions for any customer's sales area. In ECC I can't delete a contact person that is been used as a partner function in customer's sales data (KNVP). The system shows message F2 189. But it seems not to be the same in CRM as I'm able to delete this contact person relationship despite he's been used as a customer's partner function. Furthermore, when the contact person is deleted in CRM, no upload to ECC occurs, I mean, the contact person is still "alive" in ECC and linked to the customer.
    Thanks in advance for your help.

    Thanks, Prasenjit.
    Yes, we're using Web UI, so I'll try to check the partner function assignment as you told me.
    No problem regarding the concepts of contact person deletion and contact person relationship deletion, I know the difference. What I meant was that you can delete a contact person relationship in CRM (not the contact person itself but the relationship) and this relationship is not deleted en ERP due to the fact that this contact person is used as a partner function in the customer sales area. It seems CRM and ERP are working in a different way, using different checks that can lead you to inconsistencies.
    Kind regards,
    André

  • Merging Contact Persons

    Hello *,
    is it possible to perform data cleansing (merging) for contat persons as well as for accounts? Which steps are required?
    Kind regards
    Thomas

    Hello Thomas,
    I investigated a little bit more:
    The mentionned button is not in contact person search result but in account search result. But nobody stops you from searching for contact person in account search like I show in the following screenshots.
    Best regards,
    Thomas

Maybe you are looking for