Update lead

HI Gurus !
I have to update the description in Lead (CRM) . I am using BAPI_LEAD_CHANGEMULTI. Pls tell me how to do that.
Regds
Navneet

I think that I have my syntax issue figure out, but it doesn't behave like I expect it to. Actually, it doesn't do anything.
IIf(LookupValue("Status","Qualified") AND ('<Lead Name>' != 'Qualified Lead'),True,FALSE)
What I'm still confused on is how to look up the *'type'* in the function --> LookupValue (type, lang_ind_code). I'm not thinking I may have the incorrect and the reason for no action being taken.
The status field is a read-only picklist, does this make a difference?
Edited: Carrot-type not equal to sign was parsed out of my message for some reason.
Edited by: sivartk on Jul 2, 2009 1:24 PM

Similar Messages

  • CRM-MAS 4.0 SR1 required software updates lead to system crash !?

    (long post, sorry !)
    Hello
    I'd like to know how MAS 4.0 behave when the software required for its installation are updated : over the past few months my computer has acted more and more strangely, and in the end I couldn't even log into Windows. The ghost we made after the installation has just ended the same way this afternoon.
    As I only have installed WinMerge on that computer, my own other apps were portable apps, I was wondering if software updates could lead MAS to make the system fail.
    Here is the starting environment : Windows 2000 company master with SQL Server 2000, Lotus Notes 6.5, Java 1.4.2 (and IE 6)
    Required for MSA are Lotus 5 and Java 1.3.5
    - Notes 6.5 is uninstalled and replaced by Notes 5.
    - Java 1.4.2 is uninstalled, left registry keys manually removed and Java 1.3.5 is installed.
    - Installation of MAS + SPs + packages
    - Notes 5 is uninstalled and replaced by Notes 6.5 (which, I think, updates java to 1.4.2)
    So first, what is the impact of updated versions for MAS ?
    Second, I think I saw the behavior becoming worse after some windows update, do you think it is possible, or it just made an existing problem bigger ?
    The different problems I had were first a random crash from MSA when I had IE open (email webaccess). Then it almost crashed everytime. Then I could't even get into MAS when I had IE open, then the same with Notes.
    Other things (don't remember the order) were :
    - Couldn't launch any application when MAS was lanched (even "My Computer" properties)
    - I had visual glitches with CRM, Notes and IE when they were running at the same time
    - I couldn't run the project from the debug feature of MAS ("Could not access registry").
    And this afternoon, when I logon, a message asking me to increase the registry size then reboot. Then I can see the desktop but can't do anything
    Besides installing WinMerge (old version, installer only), I had on my usb key : Firefox portable, Miranda portable, Notepad++ Portable and in the end I also used winmerge directly form it.
    What do you think about this ? Maybe there was just a flaw in the initial computer installation, or maybe MAS does really not like to have its initial requirements updated ? 
    At the moment I am having my computer re-installed, and they have changed their masters to Windows XP, Notes 6.5 and Java 1.4 (maybe 1.6).
    Have requirements of MSA 4 changed, for installation on WinXP ?
    Thanks a lot and Regards,
    François

    Hi,
    the installation of JRE (Java Runtime) or LN is not related to MAS directly but to an additional MSA installation. So their installation resp. update cannot have any impact on MAS.
    I rather think that there might be a corruption of the Windows Installer Database which is used as a standard installation engine e.g. also for MAS.
    I also can remember to have serious problems (always automatic start of Windows installer popup when trying to open MAS/MSA) some years ago on a customer MAS machine where windows updates were applied automatically.
    Finally there was only the solution even to reinstall the complete OS.
    Maybe you could check for microsoft tools like msicuu2.exe to uninstall the applications also from the installer database mentioned above.
    By the way: Did you already check the hard disk resp. memory for failures?
    Regards,
    Wolfhard

  • Error Updating Lead Owner?

    This is a really odd error, and I'm not quite sure what's going on.
    The premise is this: When a Lead's Owner changes, we want to change all Leads of that Company and Line of Business to the same owner.
    My code works, somewhat.
    It works fine unless there are more than 10 Leads at the same company with the same opportunity type. This is because the default page size for queries is 10. When I change the page size(to anything), I get the following error:
    System.Web.Services.Protocols.SoapException: Error while processing argument urn:/crmondemand/xml/lead:ListOfLead for operation LeadUpdate(SBL-EAI-04316)
    Here is the update portion of the code:
    Lead.LeadWS_LeadUpdate_Input lui = new Lead.LeadWS_LeadUpdate_Input();
    Lead.LeadWS_LeadUpdate_Output luo;
    lui.ListOfLead = new Lead.Lead1[LeadIDs.Count];
    for (int j = 0; j < lui.ListOfLead.Length; j++)
    lui.ListOfLead[j] = new Lead.Lead1();
    lui.ListOfLead[j].LeadId = LeadIDs[j];
    lui.ListOfLead[j].OwnerId = CommonOwnerID;
    luo = LeadRef.LeadUpdate(lui);
    Note: the Lead.cs file has a namespace of Lead(this is avoid duplicate code for our web services package that I'm writing. Several proxy classes contain similar code under the same names.
    Note that LeadIDs is a List<string> that, through the query stores each Lead ID returned.
    LeadRef is the Lead.Lead object with the correct URL
    Any thoughts?

    Hi user635035!
    I've the same limitation problem than you when I try to process (update) my User list (500 users and growing!)...please, could you so kindly to write me a few lines about how do you "step through" the whole list 10 (or 20... taking advantage of the limitation!) at a time?
    I'm currently developing in C#
    Your help would be very apreciated!
    Thanks in advance!
    Noël

  • Help: SQL for Bulk update (lead function)

    Hello,
    I am using Oracle11.2. I would like to update the column hist_dttm of tb_hist with the value of column crt_dttm of tb_base in the next row, which is ordered by crt_dttm. here are the details:
    creat table tb_base(tid varchar2(32), crt_dttm timestamp(6));
    creat table tb_hist(tid varchar2(32), crt_dttm timestamp(6), upd_dttm timestamp(6));
    insert into tb_base values ('AAA', to_timestamp('01-12-05 14:00:00.123456', 'dd-mm-rr hh24:mi:ss.ff') );
    insert into tb_base values ('AAA', to_timestamp('05-12-05 14:00:00.123456', 'dd-mm-rr hh24:mi:ss.ff') );
    insert into tb_base values ('AAA', to_timestamp('16-12-05 14:00:00.123456', 'dd-mm-rr hh24:mi:ss.ff') );
    insert into tb_base values ('AAA', to_timestamp('01-12-05 14:00:00.123456', 'dd-mm-rr hh24:mi:ss.ff'), null );
    insert into tb_base values ('AAA', to_timestamp('05-12-05 14:00:00.123456', 'dd-mm-rr hh24:mi:ss.ff'), null );
    I am using the following SQL to update the upd_dttm column of tb_hist, I expect the upd_dttm will be updated as ''05-12-05 14:00:00.123456' and '16-12-05 14:00:00.123456'. However they remains in NULL. Any suggestion?
    update tb_hist hist
    set (upd_dttm) = (select lead(base.CRT_DTTM over (Partition by base.tid order by base.crt_dttm)
    from tb_base base
    where base.tid = hist.tid
    and base.crt_dttm = hist.crt_dttm)
    ;

    After some modifications in your sample data
    DROP TABLE tb_base;
    DROP TABLE tb_hist;
    create table tb_base(tid varchar2(32), crt_dttm timestamp(6));
    create table tb_hist(tid varchar2(32), crt_dttm timestamp(6), upd_dttm timestamp(6));
    insert into tb_base values ('AAA', to_timestamp('01-12-05 14:00:00.123456', 'dd-mm-rr hh24:mi:ss.ff') );
    insert into tb_base values ('AAA', to_timestamp('05-12-05 14:00:00.123456', 'dd-mm-rr hh24:mi:ss.ff') );
    insert into tb_base values ('AAA', to_timestamp('16-12-05 14:00:00.123456', 'dd-mm-rr hh24:mi:ss.ff') );
    insert into tb_hist values ('AAA', to_timestamp('01-12-05 14:00:00.123456', 'dd-mm-rr hh24:mi:ss.ff'),null  );
    insert into tb_hist values ('AAA', to_timestamp('05-12-05 14:00:00.123456', 'dd-mm-rr hh24:mi:ss.ff'),null );The following statement can do the job?
    MERGE INTO tb_hist dst
    USING
      SELECT tid, crt_dttm, LEAD(crt_dttm) OVER(PARTITION BY tid ORDER BY tid, crt_dttm) as d
        FROM tb_base
    ) src
    ON (dst.tid = src.tid AND src.crt_dttm = dst.crt_dttm)
    WHEN MATCHED THEN
      UPDATE SET dst.upd_dttm = src.d;

  • Update Lead Status on save of follow up opportunity using Action

    *I am exploring the possibility of updating the status of lead(preceding transaction) as "closed" on saving the follow up opportunity. Can we achieve this functionality using Methods in Action Profile?*

    Hi Amit,
    You can try calling 'CRM_STATUS_MAINTAIN_OW' Function Module on saving the followup opportunity.
    Cheers
    Ajay

  • Safari 3 Update Leads to Tears and Bad Font

    what a day.
    so i've updated my mac os x version 10.4.11, which included the new safari 3 update.
    until i decided to do this, i would use safari and safari only because firefox and netscape had very hard to read fonts in them (also Very slow!!-on this machine), of which i've found you cannot change through preferences. well, the update to safari also changed its fonts to match the ones in firefox and netscape. it hurts my eyes/head to read and is extremely annoying. i decided to throw away safari, in hopes of downloading the old one, only to find that this isn't possible after you've completed the 10.4.11 update (see this post: http://discussions.apple.com/thread.jspa?threadID=1241335&tstart=0 ).
    sounds like it's going to be a matter of finding my disc before i can have safari again (i'm in the process of moving to a new home). although, i imagine that even after reloading safari i will still have this font issue. any ideas to why all my browsers have the same messed up font? it's almost like there is a gap within each individual letter. see here: http://i228.photobucket.com/albums/ee41/Lulu_Lagoon/Picture8.png
    my @ symbols do not show up in this font either.

    *Hi paperplain, Welcome* to Apple's Users Help Users Forums.
    In addition to above, Public Library or Internet Café w CD.
    Good Luck, JP

  • IPhoto 6 Library Update leads to deletion of everything

    I'm distraut (I KNOW I should have backed it all up!).I have my iPhoto Library on an external. Within that I've always kept all other camera downloads in another folder from my Canon software too.
    I come to use my new MacBook Pro iPhoto 6 to access earlier photo's and I am asked to update the Library so version 6 can access it. Whilst updating it, an error message come up telling me to make sure all permissions are set to 'read/write' within the folder to able iPhoto to access all files. This I do.
    When IPhoto opens up, earlier Folders I created are showing empty icons, no previews except one photo preview repeated everywhere instead of the correct one. IPhoto recognises there are photos there, but can't even show them except this repeat incorrect preview of half the thumbs.
    I also find ALL OF MY OTHER PHOTOGRAPHS HAVE BEEN DELETED from my other Canon folder called ALBUMS from within my iPhoto Library.
    PLEASE HELP - THERE'S SOME EXTREMELY IMPORTANT PHOTO'S WHICH HAVE VANISHED. I contacted Apple support who said "It shouldn't have happened, it would have kept your other ALBUMS folder within your Library". "Try Diskwarrior" was his last suggestion. Tried that - nothing.
    Any suggestions would be gratefully received.

    What version were you updating from? With v6 the Library has an entirely new layout:
    A Note about the iPhoto Library Folder:
    In this folder there are various files, which are the Library itself and some ancillary files. Then you have three folders
    Originals are the photos as they were downloaded from your camera or scanner.
    (ii) Modified contains edited pics, shots that you have cropped, rotated or changed in any way.
    This allows the Photos -> Revert to Original command - very useful if you don't like the changes you've made.
    (iii) Data holds the thumbnails the the app needs to show you the photos in the iPhoto Window.
    So, can you confirm that the Originals Folder is empty but for this last import?
    Have you tried FileSalvage?
    Regards
    TD

  • T410 - high DPC latency in ACPI.sys on BIOS update (leads to audio pops and crackles)

    I recently updated my Thinkpad T410's BIOS because the fan wasn't working properly. The fan is working fine now, but ever since the BIOS update I've been experiencing severe audio pops and crackles. I used the tool LatencyMon to inspect, and the chief culprit seems to be ACPI.sys, with execution times as long as 10ms.
    I've tried disabling all the power management options in the BIOS and changing everything to max performance. I've also tried disabling other various devices such as the network adapters, but nothing seems to help. Any idea?

    Hi agrilledfish,
    Is your BIOS 3.03?
    I found a post on MixVibes regarding audio drops:
    Audio drops/USB problems
    You can try to disable ACPI.sys in device manager or uninstall and reinstall the software.
    Be AWESOME Everyday!
    Donate KUDOS and Click "Accepted Solution"
    Did someone help you today?
    Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"
    This will help the rest of the Community with similar issues identify the verified solution and benefit from it.

  • Kit kat update leads to dropped calls an failed text messages?

    I've had a total of 3 replacement devices due to this sad part is verizon has nothing to say about this problem,  I heard at other phone companies they will swatch your phone with another of your choice of equal value. In the mean time I pay $200 to get all my calls dropped an have to sit an wait 10 minutes to see that my text failed.

    Hello Plude
    Start with the article below to troubleshoot issues with the cellular connection. It will walk you through checking for carrier updates and also restoring your iPhone as well.
    iPhone: Troubleshooting a cellular data connection
    http://support.apple.com/kb/ts3780
    Regards,
    -Norm G.

  • System Update lead to Bogged System

    Hello - I am running Tiger 10.4.11 on a MacBook 2 ghz. I just updated the system software and am now having troubles running my programs (namely Abelton Live). Before the update my computer was working great - everything was processing quickly; now it is quite bogged down. Is there any way to find out exactly what I updated and is there any way to revert?
    Thanks in advance for any help.

    Hi Aletheia, and a warm Welcome to the forums!
    How much Free Disk Space on what sized drive?
    Could be many things, we should start with this...
    "Try Disk Utility
    1. Insert the Mac OS X Install disc that came with your computer, then restart the computer while holding the C key.
    2. When your computer finishes starting up from the disc, choose Disk Utility from the Installer menu. (In Mac OS X 10.4 or later, you must select your language first.)
    *Important: Do not click Continue in the first screen of the Installer. If you do, you must restart from the disc again to access Disk Utility.*
    3. Click the First Aid tab.
    4. Click the disclosure triangle to the left of the hard drive icon to display the names of your hard disk volumes and partitions.
    5. Select your Mac OS X volume.
    6. Click Repair. Disk Utility checks and repairs the disk."
    http://docs.info.apple.com/article.html?artnum=106214
    Then Safe Boot from the HD, (holding Shift key down at bootup), run Disk Utility in Applications>Utilities, then highlight your drive, click on Repair Permissions, reboot.
    The usual reason why updates fail or mess things up, is if Permissions are not fixed before & after every update, with a reboot... you may get a partial update when the installer finds it doesn't have Permissions to change one obscure little part of the OS, leaving you with a mix of OS versions.
    Some people get away without Repairing Permissions for years, some for only days.
    If Permissions are wrong before applying an update, you could get mixed OS versions, if Directory is the slightest messed up, who knows!
    If many Permission are repaired, or any Directory errors are found, you may need to re-apply some the latest/biggest updates.

  • Software updates lead to nearly 10,000 "conflicting" calendar items

    I installed the following software updates on Sept. 17: Mac OS X Update 10.5.5, Digital Camera Raw Compatibility Upd 2.2, Remote Desktop Client Update 3.2.2 and Front Row Update 2.1.6.
    Ever since then, Conflict Resolver (iSync 3.0.2) keeps popping up with an increasing number of "conflicts" between my iCal (3.0.5) and Entourage 2008 for the Mac (12.1.2 (080729)) calendars. I never saw Conflict Resolver before I installed the above updates. Now I see it all the time. I've got almost 10,000 "conflicts."
    I use iSync to sync my iPhone (not a G3).
    I haven't run Conflict Resolver yet. I just keep telling it that I'll deal with this later. But I have been deleting duplicates that started showing up in Entourage. It seems that this ends up deleting the whole item, not just the seeming duplicate.
    Has anyone had this problem? What can I do about it?
    Thank you.

    {quote}That's too bad , it seems it wouldn't be that hard to implement it.{quote}
    I'm sure it's not. Other third party developers are doing it. I think Apple is just leaving it up the third party developers for now. I use Bento for the Mac and iPhone and they showed screen shots of the iCal to do's database so I purchased it. Funny thing is the iCal Bento database is the only one that they don't allow you to sync to your iPhone/Touch. So someone at Apple is ****-bent on keeping the to do lists from happening.
    Anyway if you're willing to buy an app to sync with iCal they have some pretty good ones. Macworld reviewed some of them and I went with 2Do.
    http://www.macworld.com/article/145671/2010/01/iphonetasksync.html

  • Attempting to update leads to a loop

    When I go to Help>>About and click check for updates, it returns a link to the Firefox homepage. When I click on the update button on the Firefox homepage, it takes me to a Support page that tells me to go to Help>>About and click check for updates. Ad infinitum.

    Download and install the latest version of Firefox from this page. <br />
    http://www.mozilla.com/en-US/firefox/all.html

  • Software update leads to freezing.

    Ever since the latest software update, (which I used to ignore on my PCs), programs like Safari, iChat and Mail have been freezing. The force quits haven't been effective and I'm forced to shut down my MacBook Pro by holding down the power button.
    Is there a way to fix this? I'm now worried about performing any software updates in the future.

    Start with http://www.thexlab.com/faqs/multipleappsquit.html
    Once you sort things out, get a bootable, external HD, and make a bootable backup/clone before updating. That allows you to revert to the previous good state without having to reinstall everything. Then, peruse these
    http://docs.info.apple.com/article.html?artnum=106941
    http://www.macmaps.com/upgradefaq.html
    http://www.macmaps.com/backup.html
    http://www.thexlab.com/faqs/installswupdates.html
    http://www.thexlab.com/faqs/backuprecovery.html
    and adopt the necessary habits to mitigate what happened to you. There's no good reason to be worried about updating as long as you properly plan for them.

  • Iphone 4 software update leading to sound problem?

    I have a iphone 4 and after the software update 7.1, whenever I'm listing to music the slider where you control how loud it is vanishes from the screen and I can't hear anything I've tried turning it on and off that works for 5 minutes then it does it again, this also happens when I'm talking on the phone, or watching netflix. Thanks

    Try to reset the phone by holding the sleep and home button for about 10sec, until the Apple logo comes back again. You will not lose data by resetting, but it can cure some glitches after installing new software.
    If this does not work, set it up as new device, explained here:
    How to back up your data and set up as a new device

  • Full system update lead to unresponsive terminal

    Hi, all.
    I performed a full system update with pacman -Syyu on my machine. This machine has not been fully updated for some time, though I updated some packages occasionally. The only warning message I noticed is that "/bin/mountpoint" existed already, and the system didn't allow the update. I remembered I also ran into similar issues before (https://bbs.archlinux.org/viewtopic.php?id=132225), so I adopted the same approach and added  the --force option.  The updating process was quite smooth.
    However, after reboot, the system is unresponsive. I could see the login prompt, but the system didn't accept any input from the keyboard, and I could do nothing. The booting message showed the filesystem (RAID1 with LVM) were mounted, but /dev/pts and /dev/shm couldn't be mounted. And it seemed that many binaries in /sbin and /bin couldn't be found. (I think it is due to the merge of /sbin and /bin to /usr/bin.)
    I understand you might need more information to offer advise, but the system is effectively frozen, I need to have a responsive shell to provide more information. So this is basically a dead loop now ... Any help is appreciated, thanks in advance!

    First question: did you force just the util-linux package, or did you actually do `pacman -Syyu --force`.
    I think the former would have been a mistake, but the latter would be a major f&*^ up.  It might be useful to know just how wrong this could have gone.
    Last edited by Trilby (2012-05-18 17:40:20)

Maybe you are looking for

  • Not a Cisco expert here but trying to load config.txt...

    So a few years ago we purchased (3) Aironet 1242AG AP's and was able to configure one of then, download the config.txt via the GUI, edit the config.txt file with the unique host name and IP's for the other (2) AP's.  Loaded them all just fine and the

  • How does one mount a VESA mount on a iMac 27"

    How does one install a VESA mount on a 27" iMac and how long does it take to install it on the computer?

  • Forms sending report output horizantally in excel...

    Hi....when I send my group above report output to exel it arranges each group horizantally. For example if there are two master groups 'A' & 'B' each of them having 500 child rows, then in excel fristly appears the Group 'A' with its 500 child record

  • Interactive Page Curl - But printing?

    My client is insistent on having an interactive PDF (with mousover zooms, hyperlinks and so on) including a page turn. This is fine, I have read and done the tutorials on iPDFs (exporting as SWF, importing to Acrobat etc). However, the client wants h

  • Serious Error crashes CS and CS2 when importing XML

    Hello, I'm trying to import XML carrying text and images into a 130+ page brochure. I have been working on it for several weeks and have been re importing the XML successfully although something has changed. Now when I try to import I get an error me