Changing Lead Status

Hi All,
I am trying to change lead status when saving. I have configured action profile as follows:
Created new action in action profile
Processing type: Method Call
Method Used: Complete_document ( Am I using right Method?)
Processing Parameters: PROCESS_TYPE = LEAD (LEAD is my TX type)...Here I have dout ...which parameter I have to pass here.
Created new condition
Defined start condition as follows:
&CRM Lead.System Status& = I0802 ( I0802 = Complete).
Gun....Thanks for your inputs to my previous question...I have given max points..
Please help in this issue.
Thanks,
Ajay

Hi again Ajay,
Using method COMPLETE_DOCUMENT, you don't need to set any parameter.
I still don't get you for start condition :
&CRM Lead.System Status& = I0802 ( I0802 = Complete).
Because using COMPLETE_DOCUMENT, once you run it, it will set the document
system status to I1005 - COMPLETED.
Is &CRM Lead.System Status& = I0802 your last system status you want to
change to I1005 ?
Hope this could help.
Gun.

Similar Messages

  • Code to change LEAD status

    Hi Experts,
    I have a requirement, in which the user wants to change the LEADs STATUS via a Z-Code.
    Means, we have a WebDyn Pro report displaying the list of Leads in ALV with their status. User wants to change the staus of Lead their itself in the report and save it. User dont want extra work effort of opening LEAD maintainence screen and changing status their & then saving it, rather user wants to update the status then & their in the webdyn pro report.
    Hence to acheive this I found two Function module : CRM_ORDER_MAINTAIN & CRM_ORDER_SAVE. Unfortunately, I cannot figure out, what all IMPORTING/CHANGING paparameters need to be passed in those FM.
    Has anyone faced similar situation, if yes then please provide me a sample code.
    Or can anyone put some other idea to update that status. ??
    Waiting for replies..
    Rgds
    Pankaj Khare

    You can use CRM_ORDER_MAINTAIN and populate the parameter IT_SERVICE_OS
    or use BAPI_OPPORTUNITY_CHANGEMULTI and populate the parameter SERVICE_OS.
    BR,
    Florin

  • Can i Change/Update the Lead Status using Action profile of Activity.

    Hi,
    I have created one Lead, and on the basis of Qualification level action triggers and Ativity getting generated.
    I want to know that it is possible by using functions(Action Profile/conditions) in activity, If i change the status reason of Activity (as Accepted) Earlier Leads status would change.(as Close)
    Please resolve with solution.
    Regurds,
    Dipesh.

    Hi Dipesh,
    What I understand is, u wish to change the status of preceding lead transaction when the activity status reason is changed to accepted.
    1.  This functionality can be achieved using ORDER_SAVE Badi. This Badi implementation shall check the activity reason changed to accepted, if yes, read the doc flow, get the lead transaction and change its status to close.
    2. As per my knowledge use of action profiles and conditions will not be helpful in this case.Else, create an action definition as Activity reason changed, put a condition which like Activity reason= Accepted.
    In the action definition Processing type use method call.
    Here u will have to create a new implementation of the BADI of action profile, and put the same logic as stated in point 1.
    But in think implementing point 1 should be easier.
    Wish the information is useful.
    Regards,
    Shalini Chauhan

  • CRM LEAD STATUS CHANGE : BAPI_LEAD_CHANGEMULTI

    Hi everyone,
    I see that you were able to change status via BAPI_LEAD_CHANGEMULTI. I am currently using CRM 4.0
    trying to do the same thing; but unsuccessfully.
    Any help in this matter will be greatly appreciated.
    I undated statusx-status = 'X', filled out status table
    as well as the input_fields. But comes back with wrong object type (STATUS) error message.(input field invalid)
    Thanks in advance,
    David

    Hi David,
    If you want to change the status try CRM_MA_ACT_SAVE
    FM.
    Best Regards,
    Chetan

  • Add value to Lead Status

    Hi All,
    How can I add new value's to Lead Status. Status field on the Lead Screen is a read only Pick list.
    Thanks

    Debendra, at this time it is not possible to add or change the values in the Lead Status field.

  • SETTLEMENT procedures - change values statuses (SET_CUSTOMER_VALUE_STATUS?)

    Hi, Experts,
    at customer, we have implemented a solution, in which during processing of settlement step (e.g. standard 'SUMINTSU' step), we redefined the PROCESS method (in this case of class CL_ISU_EDM_SETTLSTEP_0003).
    In that redefinition, we use standard method ADD_SUBTRACT_VALUES to compute the output value for the corresponding profile. Now, this solution is OK and works fine.
    Cusomer's next need is to evaluate the output profile values statuses (that means the status of each profile value at each timestamp). Those statuses are located in the interface IF_ISU_EDM_PROFILE_DATA, attributes VALUE_STAT_TAB, VALUE_STAT_TAB_UTC. In the database, statuses are located in table EPROFVALSTAT.
    We have already made one working solution in 4.6C system, but we managed that only by changing many standard objects (under time pressure). Now we have to do the same on a 6.0 system with a minimum of changes to standard objects. I already made some analysis in the CL_ISU_EDM* classes framework and found out methods SET_CUSTOMER_VALUE_STATUS and LCL_PERFORM_VALUES_ACTION in class CL_ISU_EDM_PROFILE that should do the job (as I made some sort of debugging).
    Now my problem is to find out, how to call those methods and how to manage to compute the values and statuses of values either at once (in 1 processing step) or even in 2 steps. Again, with a minimum of changes to standard objects. I was not able to find any docu on this topic (I only have Guidelines for the Development of Settlement Procedures" - year 2001 and did not find any newer.
    Any help will be appreciated
    Thanks in advance

    Hi, Igor,
    thanks a lot for your answer. I already know about the method PERFORM_VALUES_ACTION, it's implementation is placed in the class CL_ISU_EDM_SETTLSTEP (not in CL_ISU_EDM_SETTLSTEP_0010 - as the method is flagged as final, you can't redefine this one). Yes, you are right, that the attributes (tables VALUE_TAB, VALUE_TAB_UTC) are placed in the corresponding interface, but this does not help me solving the problem, how to change the statuses during settlement step.
    1. In the call of LCL_PERFORM_VALUES_ACTION (class CL_ISU_EDM_PROFILE), there is a parameter - CUST_VAL_STAT_TAB, but this only works in the process of importing profile values - not in the process of settlement step (I can't fill the parameter, as there are other calls precending this one).
    2. Even if I could fill the parameter, mentioned above (1.), I still have to use only one of the parameters ACTION_TAB / CUST_VAL_STAT_TAB. As ACTION_TAB will keep the computed profile values and CUST_VAL_STAT_TAB can set the statuses of profile values, but I can't combine them (leads to an error). This I tried only in debugging.
    3. If i set the settlement steps in the order - first the step to compute the values, second the step to set the value statuses, then the statuses will be set, but values will be initial (as the second step initializes the values). If I reverse the order of those two steps, then the values will be computed ok, but the statuses will remain system-managed (no custom statuses are set).
    So really helpful would be any real implementation of this process - if anybody did exactly this - setting customer statuses for calculated profile values.

  • Automating the Lead Status "Rejected" to "Archived"

    Hi all,
    My Customer, wants the Rejected leads to be archived automatically. Manually we can do it from Lead Detail page, where as daily n number leads will be rejected so manually it might be a problem. Can we "update values"(Lead Status field) by writing workflows.Can this be done.
    Regards,
    Ratan

    Hi Dipesh,
    What I understand is, u wish to change the status of preceding lead transaction when the activity status reason is changed to accepted.
    1.  This functionality can be achieved using ORDER_SAVE Badi. This Badi implementation shall check the activity reason changed to accepted, if yes, read the doc flow, get the lead transaction and change its status to close.
    2. As per my knowledge use of action profiles and conditions will not be helpful in this case.Else, create an action definition as Activity reason changed, put a condition which like Activity reason= Accepted.
    In the action definition Processing type use method call.
    Here u will have to create a new implementation of the BADI of action profile, and put the same logic as stated in point 1.
    But in think implementing point 1 should be easier.
    Wish the information is useful.
    Regards,
    Shalini Chauhan

  • Lead Status in CRM

    HI CRM experts,
    Is there any way I can set all the leads existing in CRM from particular date to Inactive in one go. Doing it manually requires lot of efforts. Scenario is like that I some 1000 leads were loaded on 5th of January now I want to make them all inactive now currently they are in "Active" status in CRM. Any help in this regard will be appreciated.
    Thanks,
    Ashutosh

    Hi
    write ABAP program that, for number range of leads that you will provide, will check if they have date = 5th jan (eg with FM crm_order_read), and if yes with FM eg. crm_order_maintain, you will change its status.
    Regards
    Radek

  • Lead status flow

    Is there a way to rename/ update the lead status's - (we want to track more than just qualified and converted), but don't
    necessarily want it to become an opportunity.

    No. it's a read only picklist, in other words, a system field. you can't change the value in the picklist.
    when lead is created, it's qualifing. after that, you can only changed the status with the push bottons on the top, like convert, reject, archive and so one...

  • Picking status in Out. delivery changed to status A after GR post with MB0A

    Hi,
    I am facing an issue in our production system, these is the scenario:
    - Replenishment delivery
    - ZPicking confirmation idoc sucessfully picked the outbound delivery and post the GI.  The material was cut and it was batch splitted.
    - Then it was performed a GR (mov 101)  against a stock transfer order via MB0A.
    - After this GR posted, the status of picking of the parent material of the batch split was changed from status " " (Not relevant) to status "A" (Not yet processed).
    - Also the status at header level was changed.
    Current status of the delivery
    Header Status
    Picking Confirmation --> B
    Total Gds mvt status --> B
    Item Status
    Item 10:
        Pick confirmation --> A
        Goods movt --> B
    We have tried to reverse the GI to generate it again and reset the statuses but it is not possible to do it via VL09 neither MBST, etc.
    Any idea on how to correct this problem?
    Thanks,

    Hi,
    What is the moment type being taken for PGI through idoc?check the moment type definition for its allowable transactions and foe reverse.
    Regards,

  • Usage decision follow up action change of status in equipment

    Hello every one, I am having calibration scenerio in my project. All process is running properly but the issue which i am having is that when i am giving usage decision i should get a pop up to change the status of the equipment which is not coming in my case. i have checked followup action whch PM_QM there i have activated 2 Funtion modules one is for automatic TECO of order which is working properly and second is change to status in equipment master which is not working for me. Kindly give some guidance to me on same.
    Regards
    Abhishek

    Helloo,
    Please let me know the equipment type you are using.
    If you are using equipment type other than Q then u may get such type of issues.
    Please try out with equipmetn type Q or P
    Thanks

  • Changing the status of Equipment in a follow up action

    Hi All,
               I have a requirement in which a function module will be triggered for a particular Follow up action.
    In this FM we have to determine the equipment and the Maintenance Order , if both are available , status of the equipment
    should change to 'A' , status of maintenance - order = 'Technically completed' and Maintenance Notification = 'Notification Completed' .
    How can this be done.? I am able to change the status of Maintenance order and notification but can anyone help me in
    determining the equipment and changing its status to 'A'. ?
    Thanks in advance.
    Vasuki

    Hi Gajesh,
                     The process is as follows :
    1) During Calibration of a product,depending on the technician's User decision , 3 follow up actions are created.
    2) Each follow up action has one FM associated with it, which is customised in      SPRO > Display IMG > Quality Management > Quality Inspection > Inspection Lot Completion > Define follow-Up Action .
    3) In the first case ( first Follow up action when the inspection is successful) the first FM is triggered. In this FM we have to perform the following steps :
                                   a) Determine the Maintenance Order and the equipment.
                                   b) Incase both are available, status of equipmnt should be changed to 'A',
                                       Maintenance Order should be changed to 'Technically completed' and
                                       Maintenance Notification to 'Notification Completed' .
    If you need further info pls let me know.
    Thanks,
    Vasuki

  • Change of Status is not working in WebUI

    Hello All,
    Iam facing a problem in changing the status of the item in web UI requirement as follows.
    We need to set the item status from the To be Closed to Close.The status To be closed is set by an contract processor and schedules the Action .i.e Close item Once the contract approver execuets the action.It need to be change to Closed and the item end date need to be set to the date when the Action is execueted
    I have done my coding in the Execute method for the action Close item by using the FM CRM_ORDER_MAINTAIN
    to change the item enddate and CRM_STATUS_CHANGE_EXTERN to change the Status to Closed and the Commit Work .My code is working fine in GUI but this is not working in WebUI . I can only see it when i execute the action go to the edit mode.
    Can any one help me out in this regards.
    Thanks in Advance.
    Regards,
    Kiran Posanapalli.
    Edited by: posanapalli kiran on Feb 15, 2010 7:16 PM

    Hi Kiran,
    we're having the same issue that an opportunity is updated in the normal Gui but not in the WebUI when using FM CRM_ORDER_MAINTAIN.
    What coding did you use for fixing this?
    Kind regards,
    Roy Willems

  • Regading function module to change User Status IN CJ02

    Hi All,
    I need to chage System status from Budget Assigned(BDAS) to Release. Can any body help me is there any FM to change this status.Tell me ASAP
    Thanks,
    Sagar.

    Hi,
    BAPI_BUS2001_SET_STATUS: For Project Defn, WBS
    BAPI_BUS2002_SET_STATUS: For Networks
    Regards

  • Change Checkbox status at runtime

    Hi,
    I've got a question about checkboxes.
    How do I change the status of a checkbox from unchecked to checked (or vice versa) at runtime?
    How can I access it's values to say something like this:
    if (cond1 = true) then
    checkbox1 = 'CHECKED'
    else
    checkbox1 = 'UNCHECKED'
    pls help me.
    Thanks!

    Hello,
    Take a look at this thread -
    Re: reference checkbox.checked value in javascript
    If you're using a fairly recent version of Apex you can use the $x and $v syntax rather than html_GetElement, like this -
    if ($x('item').checked == false) {
    alert("The checkbox is not checked!");
    }Hope this helps,
    John.
    http://jes.blogs.shellprompt.net
    http://www.apex-evangelists.com

Maybe you are looking for

  • New User Here: Changing the color scheme of console

    Hi there... My name is Zia and I am from Pakistan. I am primarily a Ubuntu user. But I needed a lightweight console-only operating system specifically for some work in Intel Assembly and a few other things which do not need X. Someone told me Arch wa

  • I downloaded an app on my iphone,but when i try to install it on the ipad it says that the purchase wasn't succesful,what should i do?

    Hello guys,i purchased fifa 14 today on my iphone,when i try to activate the package on my ipad it says that the purchase wasn't succesfull.On my ipone it works normally and that why i don't get it.Should i pay another 4,99 to activate it on the ipad

  • Drop down list in Numbers

    Hey Everyone, I am currently working on a private cost center plan and stuck with this problem: In cell C2 I have a drop down list to choose a specific cost center. Now I want to have a drop down list for my types of costs in D2 but I want the option

  • Director 11.5 and Windows 7

    Has anyone tried Director 11.5 on Windows 7 (release candidate)? Is it compatible? Windows 7 will be out in October, so it would be nice to have a compatible version of Director available at that time.

  • Idriver.exe -application error apprears when instaling itunes 6

    ok i try to install itunes 6 and when it meant to bring up the installshield wizard it will apprear in the taskbar but nothing is actually there. a while after it the following message appears Idriver.exe application error blah blah blah the memory c