Label "Customer" shows in Activity Clipboard shows both Customer & Contact

In CRM 4.0 we were able to enhance this so contact record would show as 'contact' instead of  'customer' in the activity clipboard.
In 5.0 this seems harder to do.  Have played with config & development but no luck so far.
Any thoughts on how to achieve? this is a B2B scenario.

on 7.0 now.

Similar Messages

  • How do I cancel a Newsstand subscription when there is no auto-renew facility/option through Settings? After removing the item on Newsstand it still shows as Active in Store Settings/Manage Subscriptions.

    How do I cancel a Newsstand subscription when there is no auto-renew option via Settings/Manage Subscriptions? After removing the item from the Newsstand site it still shows as Active via Settings/Manage Subscriptions. The publisher tells me it is not a subscription rate that is theirs, they have no knowledge of it, I subscribed through iTunes Store. Thank you!

    Hi qwerty,
    Dun tink that creative customer support sucks cos I had been dealing with them in the past and I can say that their service are quite gd and fast. If you wanted a refund, I tink you need to contact the store that sells you the product. Dun tink creative will refund you though.

  • Hello,everyone.i purchased an iphone 5S from a retailer in my country after coming back to my home i restore this iphone it shows an activation id but i dont know what i have to do now?my apple id does not work in this situation.kindly help me out

    Hello,everyone.i purchased an iphone 5S from a retailer in my country after coming back to my home i restore this iphone it shows an activation id but i dont know what i have to do now?my apple id does not work in this situation.kindly help me out because it cost me to high and if this is not activated i have to bear a huge loss.i am a loyal customer of apple from a past 5 years.thank you for your cooperation

    Yes, this is activation lock. Return the phone for a refund, as it is useless without the activation information of the previous owner.

  • Data element status showing Modified / Active

    Hi Gurus,
    created one custom field using EEW in WEB UI, that filed length and type is NUMC,2, my requirement is need to change the length from 2 to 3.So i am not able to change the length from WEB UI ,doing changes manually from SE11. i have chaged the particular Data element length to 3 and activated Data element the Data element status showing Modified /Active instead of Active.
    i have checked SE09 .showing inactive objects. please help me on this how to come out from this problem.how to activate Data element.
    Thanks & Regards,
    Sunil B

    Hi Sanly yan,
    i have done table Adjustment in se14.
    Thanks & Regards,
    Sunil B

  • Applet very slow and shows no activity, but its running

    I have a new applet for the users, but I am reluctant to implement until I get some others opinions. It is very slow (30 - 40 seconds)
    Before it outputs a screen with about 20 lines, it reads 90 different html files. It looks at the forth rec of each to extract a name. It also gets the file size to determine if the record needs to be on the screen.
    Anyway, it does 4 reads on 90 files. = 360 reads. Oops, it also reads and loads a 80 record file at the beginning. So total is 440 reads.
    It takes 30 - 40 seconds. Which is not horrible, but it is not good. What really bothers me is that the applet screen shows no activity. At the bottom is shows "done" and "100%". Task Manager shows no activity. But if you just let it sit there, it will finally fill the screen. Pretty amazing to me. I would much rather see a "progress bar" moving on the bottom like other screens. Actually, a progress bar would solve it, because the users are not in a big hurry anyway.
    I am using "openStream" and "readLine" for the files.
    Any opinions?
    import javax.swing.*;
    import java.applet.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.net.*;
    import java.io.*;
    import java.util.*;
    public class urlaa extends JApplet
    //zz  implements Runnable, ActionListener
          implements ActionListener
    // zz added
        private JLabel item;
        private JList itemList;
      int par;
      int errorflag = 0 ;
      int orgsize = 14900 ;
      String par1;
      String s;
      String e1;
      String e2;
      String e3;
      String w1;
      String w2;
      String w3;
      String w4;
      int i = 0;
      int len ;
      int size ;
      String stringsize ;
      URLConnection conn ;
      int i2 = 0 ;
      int k = 0;
      int current = 0;
      String s1 ;
      String s6 ;
      String s7 ;
      String s8 ;
      String printline ;
      String pageLink;
      String arr[]  = new String[150] ;
      String arr2[] = new String[150] ;
      String arr3[] = new String[150] ;
      int arr4[] = new int[150] ;
      String inputLine;
      Thread runner;
      public void init()
             String parameter = getParameter("par1");
             if (parameter != null)
                 par = Integer.parseInt(parameter);
             else
                 par = 99;
    // zz         Button goButton = new Button("Go");
    // zz         goButton.addActionListener(this);
    // zz         add(goButton);
    // zz   added
            this.item = new JLabel();
            this.addButton();
            Container container = this.getContentPane();
            this.itemList = this.getList();
            container.add(this.getPanel());
            URL u;
            InputStream wis = null;
            DataInputStream dis;
            int rcnt = 0;
            int rcn2 = 0;
           //    1)  read filelist.txt file
           //         and load into a table.
           //    2)  close the filelist.txt file
           //    3)  Use the tabled file names to
           //         read and see if the bio
           //         has been done
           //  1) Read filelist.txt and load table
            try
            u = new URL("http://www.classof1961.mysite.com/filelist.txt");
            catch (MalformedURLException e)
              errorflag = 1 ;  // set error flag to stop while loops
              e1 = ("FILELIST.TXT MalformedURLException: " + e.getMessage()) ;
            try
                u = new URL("http://www.classof1961.mysite.com/filelist.txt");
                wis = u.openStream();
            catch (IOException ioe)
              errorflag = 1 ;  // set error flag to stop while loops
              e1 = ("FILELIST.TXT IOException : " + ioe.getMessage()) ;
    //      does not work     size = wis.getContentLength() ;
                // Convert the inputStream to a buffered DatainputStream.
                dis = new DataInputStream(new BufferedInputStream(wis));
                // Read 1st record to set up while loop
                   try
                     s1 = dis.readLine() ;  // get 1st rcd
                   catch (IOException ioe)
                     errorflag = 1 ;  // set error flag to stop while loops
                     e3 = ("FILELIST.TXT IOException : " + ioe.getMessage()) ;
                   while (s1 !=  null)
                   {  // load file names loop
                   if (errorflag == 0)
                   {  // if errors
                    arr[i] = s1 ;
                    i++ ;
                    try
                    s1 = dis.readLine() ;
                    catch (IOException ioe)
                      errorflag = 1 ;  // set error flag to stop while loops
                      s1 = null ; // force end of loop
                      e3 = ("load table read failed" + ioe) ;
                    rcnt++ ;
                    if (rcnt > 100)  // test code
                    {                // test code
                      errorflag = 1;
                      s1 = null ;
                      e3 = "Load table is looping!!" ;
                   }  // end of error check loop
                   }  // end of table load loop
               int lasttableentry = i ;  //
                   // CLOSE the filelist.txt file
                   try
                    wis.close();
                   catch (IOException ioe)
                    errorflag = 1 ;  // set error flag to stop while loops
                    e3 = ("close of filelist.txt file failed" + ioe) ;
    //   End of filelist read and load and close
    //      ptr to whats new names in table arr
            i = 0 ;
    //      While more names in table,
    //        Connect and Open file
    //        Read file until 4th rcd (rel 3rd rcd)
    //          if rcd has date, then move it to table
    //          else
    //          bump to next file name
              w1 = arr[i] ;
              w2 = w1.substring(1, 4) ;   // ONLY USED FOR CHK FOR XXXX
    //    ______________  start of major loop  _____________
            boolean morenames = true ;
            while (morenames)
            {  // Name table loop
            if (errorflag == 0)
            {  //if no errors
              try
                u = new URL(w1);
                try
                  URLConnection conn ;
                  conn = u.openConnection();
                  size = conn.getContentLength();
                catch (IOException e)
                  errorflag = 4 ;
                  morenames = false ;
                  e1 = ("file size logic failed " + w1) ;
              catch (MalformedURLException e)
                    errorflag = 1 ;  // set error flag to stop while loops
                    morenames = false ;
                    e1 = ("next whats new url error : " + w1) ;
    // compile error                break ;
              try
                  u   = new URL(w1) ;
                  wis = u.openStream();
              catch (IOException e)
                errorflag = 1 ;  // set error flag to stop while loops
                morenames = false ;
                e2 = ("next whats new open error :  " + w1) ;
    //   compile error            break ;
    //            Convert the inputStream to a buffered DatainputStream.
                  dis = new DataInputStream(new BufferedInputStream(wis));
                if (errorflag == 0)
                {  //if no errors
                       try
    //  does not work                       String s2 = dis.readLine(3) ;
                         s1 = dis.readLine() ;
                         s1 = dis.readLine() ;
                         s1 = dis.readLine() ;
                         s1 = dis.readLine() ;
                       catch (IOException e)
                         errorflag = 1 ;  // set error flag to stop while loops
                         morenames = false ;
                         e2 = "whats new file MalformedURLException: " ;
                       // file is larger than original non-bio file size
                       if (size > orgsize)  //  if file size > original file size
                       String s2a = s1.substring(0, 5);
                       String s3 = "                       " ;
    //                 Only look at title records to get the name
                       if (s2a.equals("<titl"))
                          int k2 = 7 ;
                          int l = k2 + 1 ;
                            while (!s1.substring(k2, l).equals("<"))
                              k2++ ;
                              l++ ;
                          s3 = s1.substring(7, k2) ;
                       else
                          s3 = "               " ;
    //                 s3 now has blanks or the name
                       arr2[k] = w1 ;    // move name into arr2 (link to bio)
                       arr3[k] = s3 ;    // move name into arr3 (bio name)
                       arr4[k] = size ;  // move in file size
                       k++ ;
                       } // end of if length > 36
                } // end of chk for error flag zero (no errors)
                  //  now we have to close this whats new file
                   // CLOSE the current whats new file
                   try
                    wis.close();
                   catch (IOException ioe)
                    errorflag = 1 ;  // set error flag to stop while loops
                    morenames = false ;
                    e3 = ("close of the current whats new file failed" + ioe) ;
                  //  end of the close
              rcn2++ ;
              if (rcn2 > 100)  // test code
              {                // test code
                 errorflag = 2;
                 morenames = false ;
                 e3 = "Searching files is looping!!" ;
              i++ ;           // bump to next whats up name
              w1 = arr[i] ;   // load it into work string
              if (i > lasttableentry)
                morenames = false ;
              } // end of error checking loop
             else
                  morenames = false ;
            } // end major name table loop
                   // CLOSE the last whats new file
                   try
                    wis.close();
                   catch (IOException ioe)
                    errorflag = 1 ;  // set error flag to stop while loops
                    e3 = ("close of last whats new file failed" + ioe) ;
    // end of init
    //     _________________ other methods  ______________________
    // zz added
        private JList getList() {
            // Create a List
            JList tempList = new JList(arr3);
            tempList.setVisibleRowCount(3);
            // Enable single selection
            tempList.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
            return tempList;
        private JButton addButton() {
            JButton button = new JButton("Select Item below and click here to go to the bio");
            button.addActionListener(this);
            return button;
        private JPanel getPanel() {
            // set layout to GridLayout 3 rows and 1 columns, no separations
            JPanel panel = new JPanel(new GridLayout(3,1,0,0));
            JScrollPane spane1 = new JScrollPane(this.itemList);
            panel.add(this.addButton());
            panel.add(spane1);
            panel.add(this.item);
    //       panel.add(new JLabel("Example List"));
            return panel;
    //   _______________  actionPerformed method  ____________________
         public void actionPerformed(ActionEvent evt)
           s8 = "actionPerformed";
    // zz added
            String command = evt.getActionCommand();
            // Get the selected value from the list and update the JLabel
            item.setText((String)itemList.getSelectedValue());
    //  try to redirect to selected url
      try
             int idx  = itemList.getSelectedIndex() ;
             String urlvalue = this.arr2[idx] ;
             URL u = new URL(urlvalue);
             this.getAppletContext().showDocument(u, "_self");
         catch(Exception e)
    }

    jagossage wrote:
    But if you just let it sit there, it will finally fill the screen. Pretty amazing to me. The onus is on you, the developer, to decide how to distract your users as they wait for your code to finish. Why should you expect something to do it for you?
    I would much rather see a "progress bar" moving on the bottom like other screens.Ah, I think I see where you're confused. The progress bar and applet loading subtitles, etc are Java's way of presenting the progress of loading the applet. Once it's fully loaded, though (which it is when your code starts running), it hands off control to you. It's in your hands at that point.

  • How do I uninstall SyncMate Server, Activity Monitor shows it still there after appzapper uninstall of SyncMate app? Killing in AM proceeds with a SyncMate Server startup again??

    How do I uninstall SyncMate Server, Activity Monitor shows it still there after appzapper uninstall of SyncMate app? Killing in AM proceeds with a SyncMate Server startup again??
    Mavricks, MacbookPro, typical config of everything and standard business user, no heavy graphics, animation or media editing. MS Office, web apps, etc.
    I have the same issue with Logmein, which I installed a trial, uninstalled with appzapper, which I thought does a good job of untangling the components of apps but for these 2 it doesn't.  Any help would be greatly appreciated.
    Thx,

    Usually applications like these have their own uninstallers, either build into the installer ( ! ) itself or as a separate uninstaller app. Check the site of the software provider for instructions.
    Here's the instructions for SyncMate: http://wiki.eltima.com/user-guides/syncmate-mac-os/uninstall.html
    And LogMeIn: http://help.logmein.com/SelfServiceKnowledgeRenderer?type=FAQ&id=kA030000000DGF1 CAO&kw=

  • How can I show an active page on menu?

    I am working in DW CS3 and using a Spry menu and want to be able to show the active page on the menu. Have looked at previous discussions but am still very confused. New to DW and not very code editing proficient. Please help.

    Place the following in the HEAD section of your document
    <script src="SpryAssets/SpryDOMUtils.js" type="text/javascript"></script>
    <script type="text/javascript" language="javascript">
    function InitPage(){
    Spry.$$('#MenuBar1 li').forEach(function(node){
         var a=node.getElementsByTagName("a")[0]; // finds all a elements inside the li, but we only want the first so [0]
         if(a.href == window.location){
              Spry.Utils.addClassName(node,"activeMenuItem");
    Spry.Utils.addLoadListener(InitPage);
    </script>
    <style type="text/css">
    .activeMenuItem {
         background: #F00;
         font-weight: bold;
    </style>
    and make sure that SpryDOMUtils.js is in your SpryAssets folder.
    Ben

  • Iphone 5 fallen in water drained for around 20 secs, kept in rice bag for 2 days, worked perfectly for 6 hrs! now it shows to restore, after restoring during activation it says unknown device contact apple care.

    hello, i have an iphone 5 it just fell into water and was in there for around 20seconds. I've seen on many of websites saying to keep it in a rice bag for 48 hours nd said it may work so i've done the same. I took out my phone from dat rice bag yesterday which worked perfectly alright for 6 hours and then switched off automatically! when i connected it to itunes it detected as a recovery device which after recovery during activation it shows as an unknown device! been working on it soo long! i live in mauritius here i have no official apple store but my phone is still under warranty. Please help me!!

    When your phone was exposed to water, your warranty/support was voided, so you no longer have any warranty. An out of warranty exchange, from Apple, is US $269. Call AppleCare or whoever handles support where you live.

  • My mac mini is running slow.  Bought it in 2009.  Activity monitor shows nothing running that should not be.  Someone suggested it might be my operating system?  Check for software updates, and I am current.  Suggestions?

    My mac mini is running slow.  Bought it in 2009.  Activity monitor shows nothing running that should not be.  Someone suggested it might be my operating system?  Check for software updates, and I am current.  Suggestions?

    Open Activity Monitor, Show:>All Processes, sort on CPU%, see if anything using too much CPU% when this happens, click on Memory tab, do you have many Pageouts?
    Open Console in Utilities & see if there are any clues or repeating messages when this happens.
    Check the S.M.A.R.T. status of the drive in Disk Utilty by highlighting the Drive & looking at the bottom of the window.

  • How to copy show call active data to syslog or any ftp server

    i need all the info in show call active voice command in AS5400 to syslog server or any other way to store in my SQL server

    "Logging host" is the command used to transmit the logged messages to a syslog server host. For this, first enable logging using "logging on" command. Then, type "show call active " command. the output will be transferred to syslog server.

  • Problem with "show isdn active " command AS5400

    When i type "show isdn active " to see the actice voice calls , sometimes i dont se the calls , but my network management tool is showing me that there are active calls . I have check on the other side from where im sending the calls and i see the calls
    Ewerything else is looking normal.
    Details :
    AS5400
    IOS Version 12.3(4)T
    Who knows what happens?
    Thx , Cristi

    May be due to the bug CSCea54139 which is fixed in 12.3(5.4) 12.3(5.5)T

  • Activity reports showing only UME users

    Hi,
    Activity reports showing only the status of UME users. It is not showing the status of the users coming from LDAP.
    Will there be any additional settings needed for this. Can anyone give me the step by step full details of the activity reports cofiguration settings.
    Raghu

    Hi Raghu,
    What kind of report are you talking about?
    General information for How the Portal Activity Report Works :
    http://help.sap.com/saphelp_nw70/helpdata/EN/b5/c652070d474533a18a930112a4b926/frameset.htm
    Viewing Activity Reporting Status :
    http://help.sap.com/saphelp_nw70/helpdata/EN/08/242f423d09f750e10000000a155106/frameset.htm
    Regards
    Victoria Gur
    SAP IBD

  • Why does Activity Monitor show traffic to my external drive?

    Because one of my email accounts was hacked a couple of months ago (from my provider's end, I'm convinced), I have been monitoring network usage on my iMac using Activity Monitor. Yesterday, I noticed almost continuous use, altho "spiky".  The spikes were very regular and high and just kept going on and on.  I shut down all my apps (including mail, browser, etc.) except Photoshop.  Spikes still there.  Pulled out the Ethernet cord.  Spikes still there.  Shut down blue tooth, wi-fi - spikes still there.  Overnight, I shut down my computer.  This a.m. when I powered up, still spikes.  I noticed Time Machine was running.  Stopped it, and spikes stopped.  I have my back up on a separate external hard drive.  Why in the world would Activity Monitor show this as "network activity"?  Is there any way I can use settings that would show only "real" network activity, from outside my wi-fi, blue-tooth, and external drives? Spiky right now (can't get screen shot to upload), but more irregular. Have browser, email,and others open. Time Machine not running.
    Maybe there's some other app that would help me watch my network usage in the way I would like. Please recommend.   Thx!

    https://discussions.apple.com/thread/3045965

  • Safari will show as active but a website won't come up. It crashes if I try to open a bookmarked site.

    Safari will show as active but a website won't come up. It crashes if I try to open a bookmarked site.

    Hi,
    If Safari has just crashed, press the Report button on the CrashReporter dialog box to view the crash  information.
    Now copy/paste the entire contents of the Crash Reporter window into your reply here. If the crash report dialog does not appear or the crash is hard to reproduce, crash logs can be retrieved from the ~/Library/Logs/CrashReporter> folder.
    Post a crash report so we can try and help you. Make sure and include the "binary images" section.
    Carolyn  

  • Manual menu shows two active menu items on one page

    Hi--I'm having an issue where a manually-created menu shows two active menu items on the same page (as if two pages were active at the same time).
    You can see the issue on my test site here:
    http://teknationnewsite.businesscatalyst.com/telecommunications-services.html
    On the left hand menu, even though only the Telecommunications Services page is active, the menu shows an active state for the menu item below it also. How can I fix this? The states look like they are created correctly in the states panel.
    Thanks,
    Jennifer

    Okay, never mind. I am an idiot. It was a linking issue. I can't figure out how to delete this thread, however, so just please ignore.

Maybe you are looking for

  • My ical will not open

    I instailled .mac but it was 04 editon and ever secne then it will not open and the image has change to two peices of paper with a pen and a ruler and a burah i have tired to reinstaill it but it says try insatilling it again plaese help

  • HOW DOES THE NEW MBOX 2 MINI WORK WITH THE MAC MINI?

    I have a old original Mac mini 1.25GHz with 1 GB SDRAM - 40GB Ultra ATA drive, 4x SuperDrive (DVD±RW/CD-RW) OS 10.3 I also have just added the new MAC MINI 1.66 CTO OS 10.4 with the following configuration: * Processor 065-6673 1.66GHz Intel Core Duo

  • Showing preview column in icon mode crashes finder

    Issue: Finder crashes and my icons on my desktop disappear then reappear when attempting to view a file of any type in icon mode with "show preview column" selected in "Show View Options". I don't recall any recent updates or any changes to my G5. I

  • Sending ibook back if can't find help

    please, after two days of tech support with apple and my isp provider AND the local authorized dealer still no connection. i am going to have to send it back. out of the box, it never has conneceted. everything indicates that it recognized the networ

  • Forgot my password for AE, is there a way to reset it?

    Trying to upgrade my Airport Express but can't remember the pw. What do I do?