Change system status from PDLV to DLV

Hi All
Please help me with this error. Already tick the delivery compeleted in Goods Receipt Tab but then system status won't change from PDLV to DLV. Is there any other way wherein I could change it?
Thank you
Jesielle

Hi Jesielle,
We're facing the same issue with you. The status remains at PDLV even though we had set the "Delivery Completed" indicator. This only happens to Production Orders that having multiple Items.
Please share on how you resolved this issue?
Thanks.
Regards,
Hooi Chia

Similar Messages

  • Changing system status depending on user status

    Hello All,
    What I need to do is, when the user sets the user status to, let's say, "Finished", I have to detect it and change the system status to "Concluded".
    Does anybody have any idea about how could I manage this situation?
    Thanks in advance.

    If you set the system status from within the transaction online, the solution by Richard is indeed correct. However, if you change a user stauts using an action, you have to perform two actions: set the user status (FM CRM_STATUS_CHANGE_EXTERN) and set the system status (FM CRM_STATUS_CHANGE_INTERN) as well.
    In this case, you also must check if you have to set this status only on header level, or also on item level, but a good developer can help you out on this one.
    Hope this helps you.

  • Is it possible to change the status from Bid Rejected to Bid submitted?

    Hi there.
    We are working in SRM 4.0.
    One user rejected a bid, but it was a mistake. Is it possible to change the status from Bid Rejected to Bid submitted?
    We would like to modify the status from Bid Rejected to Bid submitted or Awaiting Approval to Bid submitted in order to solve errors.
    Thanks and regards.
    Raúl Moncada.

    Hi ,
    Use Function Module : BBP_PD_BID_STATUS_CHANGE
    Supply Activity = 'QOSU' .
    Regards,
    Sachin S M

  • FM for changing system status in Service Notification

    Hi all,
    I have a tough situation here.
    To change the system status in service notification, the system use "IQS4_CHANGE_STAT_NOTIFICATION".
    CALL FUNCTION 'IQS4_CHANGE_STAT_NOTIFICATION'
      EXPORTING
        i_qmnum                  =
        i_vrgng                  =
        I_CHECK_ONLY             = ' '
        I_SPRAS                  = SY-LANGU
        I_BEZDT                  = SY-DATUM
        I_BEZUR                  = SY-UZEIT
        I_POST                   = 'X'
        I_COMMIT                 = ' '
        I_WAIT                   = ' '
        I_REFRESH_COMPLETE       = 'X'
      IMPORTING
        E_VIQMEL                 =
        E_STTXT                  =
        E_ASTXT                  =
      TABLES
        RETURN                   =
    2 main fields are required; i_qmnum and i_vrgng.
    I am able to provide i_qmnum (as this is the service notification number that i need to change).
    However, i_vrgng is a field in table (TC33-VRGNG). The values in the table does not make sense to me.
    Example. To change the status to NOPR (Put in progress), the FM uses PPM2 or PPM6 for i_vrgng. If we take a look at the table TC33, it doesn't indicate in anyway how NOPR is related to PMM2 or PMM6.
    Is there a guideline (ie, to change status to OSTS, i use a certain value in TC33-VRGNG to run the FM)?
    Please see BAPI_SERVNOT_POSTPONE & BAPI_SERVNOT_PUTINPROGRESS for a clearer picture of what I'm saying.
    Thanks,
    Earl

    Please try using FM STATUS_CHANGE_INTERN for changing System Status as i was not able to find any link between status and the field provided in FM in ur post.
    This FM directly changes system status of any object.But this FM requires System Status Value not Text.
    NOPR, NOCO etc are system texts.The main table for system status  is TJ02T which will give u the status value for the status text.
    For eg NOPR status text will have status value as 'I0070'.
    Reward Points if useful
    Edited by: Pratyasha Shishodia on Mar 14, 2008 11:07 AM

  • Change Build Status From PL/SQL

    Apex 3.2
    Please see my previous thread
    Change Build Status From PL/SQL
    We tried this code
    CREATE OR REPLACE procedure APEX_030200.pr_sup_unfreeze_apex
    as
    begin
      for l_app in (select id
                          ,security_group_id
                    from APEX_030200.wwv_flows
      loop
        wwv_flow_api.set_security_group_id(l_app.security_group_id);
        wwv_flow_api.set_flow_status (p_flow_id     => l_app.id
                                     ,p_flow_status => 'AVAILABLE'
      end loop;
      commit;
    exception when others then
      dbms_output.put_line (sqlcode);
      dbms_output.put_line (substr(sqlerrm,1,250));
      dbms_output.put_line (substr(sqlerrm,250,250));
      rollback;
      raise;
    end;but recieved error
    BEGIN APEX_030200.pr_sup_freeze_apex; END;
    Error at line 1
    ORA-20001: Package variable g_security_group_id must be set.
    ORA-06512: at "APEX_030200.PR_SUP_FREEZE_APEX", line 51
    ORA-06512: at line 1
    Any ideas ?
    If I just run
    select id,security_group_id
    from APEX_030200.wwv_flows
    ID SECURITY_GROUP_ID
    4000 10
    4050 10
    4155 10
    4300 10
    4350 10
    4400 10
    4411 10
    4500 10
    4550 10
    4700 10
    125 1.07701203277056E15
    1000 1.08971536719791E15
    1010 1.08971536719791E15
    114 1.41432144152464E15
    123 1.43440509319107E15
    160 2.25192481868561E15
    190 2.41432896355852E15
    100 3.93632559648557E15
    103 3.93632559648557E15
    130 5.9543257997941E15
    140 5.95501879180405E15
    Edited by: Gus C on Nov 8, 2012 5:43 AM
    Edited by: Gus C on Nov 8, 2012 5:50 AM

    Hi Gus,
    as Rod already mentioned, wwv_flow_api.set_flow_status would be the way to go. It's no officially documented or supported API but it will do what you want. Just be prepared that it might be removed in the future. The API is defined as following:
    procedure set_flow_status (
        p_flow_id                   in number,
        p_flow_status               in varchar2,
        p_flow_status_message       in varchar2 default null,
        p_restrict_to_user_list     in varchar2 default null )Example code to make all applications unavailable (has to be executed as APEX_040200).
    begin
        for l_app in ( select id,
                              security_group_id
                         from wwv_flows )
        loop
            wwv_flow_api.set_security_group_id(l_app.security_group_id);
            wwv_flow_api.set_flow_status (
                p_flow_id     => l_app.id,
                p_flow_status => 'UNAVAILABLE' );
        end loop;
        commit;
    end;Regards
    Patrick
    My Blog: http://www.inside-oracle-apex.com
    APEX Plug-Ins: http://apex.oracle.com/plugins
    Twitter: http://www.twitter.com/patrickwolf

  • Cannot Change Item Status from Active to Inactive

    Dear All
    Cannot Change Item Status from Active to Inactive on Item master screen. can any one provide the steps.
    Best Regards
    Arifuddin

    Check on below link under "Defining Item Status Codes"
    http://docs.oracle.com/cd/E18727_01/doc.121/e13450/T291651T291798.htm#I_t_ditstatus
    thanks

  • How to check system status from Windows command line?

    Does anyone has an idea how to check system status from Windows command line? In UNIX we use startsap check, unfortunately I didn't find an appropriate command provided by SAP.
    The only idea we have is to use
    tasklist /FI "Username eq SAPService<SID>" | find "disp+work"
    which isn't as nice as startsap check.

    Hi,
    In windows you can use the command
    go to profile directory in command prompt and the give the following command to check the status of the instance.
    sapstart check pf=START_DVEBMGS<nr>_<hostname>
    that means you need to mention start profile or instance profile. So that it will say whether the instance is running or not.
    If you want any other information please reply back to me.
    Thanks,
    Chaitanya.

  • I can change system status without canceling lot,,"CRTD CHCR SPRQ"

    HI
    A insp lot have (System status) "CRTD CHCR SPRQ" system can not allow for any recording at the lot,, But Question is that i want to change status without cancleing this lot, Have any idea for this lot status.. "CRTD CHCR SPRQ"
    thanks Expert
    regards
    kazz

    Hi kazz, i can't tell if your issue was resolved but if not then you should check the 'valid from' date on the ECM used to setup the inspection plan.  this is assuming that you are using ECMs to create inspection plans and maintain revisions on the material.  the valid from date on the ECM used to create/assign the inspeciton plan to the material must have a date that is equal to or before the valid from date on the ECM used to assign the revision to the material.
    for example,
    ECM 123 has a valid from date of 01.01.2013 and was used to assign revision A to the material
    then the ECM used to create/assign the inspection plan to that same material must have a valid from date of 01.01.2013 or prior...otherwise SAP will not find a valid inspection plan that's valid on the date for the inspection lot and revision of the material in the inspection lot.
    hope this helps!
    nicole land

  • How to change system time from Java

    Could someone tell me if there is possibility to change the system time, from within a Java program. And how to do it.

    In general, no.
    You could do it using JNI if you're running your JVM
    with sufficient system privileges.
    It seems a highly questionable thing to want to do.
    Why do you have a requirement for this?
    Sylvia.Now there's an idea (thread now has a 'watch'), I think I'll drop the the idea of being a hacker and learn how to write viruses instead - happy days ahead ...

  • Sharepoint Designer - Two step List Workflow task item is not changing the status from not started to Complete

    Hi 
    Using SPD i am creating list workflow.
    Scenario: Employee submits a request . Task assign to manager. Manager can either approve/ reject. If approve then change the state column to "done". If rejected the state column to "Rejected".
    Problem is "Assign a to do item" is assigning the task to manager. But after manager approves the status in the task list not changed to "Completed". Still it is showing "Not started". I dont want to manually complete the task.
    Please help me for automatic process. 
    What i should do to change the status to "Complete" automatically after manager approval
    Regards
    Jhanani
    Janani.R

    Hi Janani,
    From your description, you would like to create an approval workflow for a list. When an employee submit a request to the list, an approval task should be assigned to manager, then manager could approve or reject the request. From the request list,
    we should be able to see the Approval task’s status.
    Not understand the reason of designing the workflow to two steps, an approval action should be enough from my understanding. For producing, I create a list named Request list, then customize it in InfoPath form to add a Request field for stating request
    content. Then add a workflow to list named Approval task, add the action of Start an approval process with administrator and make the workflow automatically start when item is added.
    The image below shows the status of Adding items, Approving and Rejecting. Please check if it could meet your requirement.
    Regards,
    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] .
    Rebecca Tu
    TechNet Community Support

  • Change System Status of SO item dynamically based on Reason for Rejection

    Hi ppl,
    Our SAP user has raised a requirement as described below:
    In sales order (in creation mode (VA01) or change mode (VA02)), if at the item level, the reason for rejection is mentioned, then the system status for that item should be automatically set to Technically Complete SET (TECO); and if the user removes the reason for rejection for the item, then the system status Technically Complete should be RESET automatically.
    We are looking for any user-exit or BADI available which would be allow this dynamic change of system status based on the reason for rejection field. (No manual interaction for setting or resetting the system status).
    Technically, the functionality is based on the below fields:
    Reason for Rejection: VBAP-ABGRU
    System Status: JEST-STAT
    Please provide suitable inputs.
    Thanks,
    Dawood
    Edited by: Dawood.S.Ghasletwala on Jun 29, 2009 3:14 PM

    program: SAPMV45A
    User exit: USEREXIT_SAVE_DOCUMENT_PREPARE.
    loop at xvbap where updkz NE 'D'.
      if not xvbap-abgru is initital.
        "set your system state here.
      else.
       "reset your system state here.
      endif.
    endloop.
    hmmm you can as well try if you got all you need to know already in userexit: USEREXIT_CHECK_VBAP.
    Edited by: Florian Kemmer on Jun 29, 2009 11:53 AM

  • How to change system status of order created in IW31

    Hello All,
    I created a maintenance order in IW31. System status of that Order is like this,
    Now i have a requirement to change the system status.
    But the BAPI : BAPI_ALM_ORDER_MAINTAIN has option to change user status. Please suggest what i have to do?
    Thanks in Advance

    EXIT_SAPLBSVA_001 will fulfill your requirement.
    Try to change your system status inside this exit.
    You will get both User status and System status.

  • Change Report Status from "completed / passed" to "Completed"?

    With Captivate 5, is it possible to change the Report Status from "completed / passed" to "Completed"? The "completed / passed" given is causing issues with my LMS thus need "Completed" only. Is this possible with version 5 or even version 6?
    Thank you in advance for any help!

    Hi There,
    Thank you for reaching Adobe Community.
    You can select the below settings from Edit > Preferences >  Quiz > Reporting panel. You can change the Status representation to Incomplete > Complete.
    Here is the screen shot frm ScormCloud LMS:
    Thanks!

  • Change client after changing system status

    first we registered our system as develop. after that we have to change its status to productive. on service.sap.com we changed the system status to productive. in transaction USMM we changed the system type to production. as far as i concern also we had to change the mandat status to productive.how can we do it? can you help me with the documentation or to write how to do it.
    thanks in advance

    Hi Andrey,
    You can change the client status to "Production" in SCC4. Is this what you mean?
    Gary

  • Change system status

    Hi all!!
    Can any one please tell me how to chenge the system status of the object number from "ACTIVE" to "INACTIVE" ?
    Can anyone please suggest a function module to do that?
    Thanks,
    Sachin.

    check the function STATUS_CHANGE_INTERN , try to pass OBJNR and status to the table parameter

Maybe you are looking for