Unable to Update EAM Work Order

Hi Team,
I want to update the attribute columns of EAM Work Order. The eam_work_orders_v.attribute10 has to be updated with a quote number that is generated from order management. I tried using the following api
set serveroutput on;
Declare
l_eam_wo_rec EAM_PROCESS_WO_PUB.eam_wo_rec_type;
l_eam_op_tbl EAM_PROCESS_WO_PUB.eam_op_tbl_type;
l_eam_op_network_tbl EAM_PROCESS_WO_PUB.eam_op_network_tbl_type;
l_eam_res_tbl EAM_PROCESS_WO_PUB.eam_res_tbl_type;
l_eam_res_inst_tbl EAM_PROCESS_WO_PUB.eam_res_inst_tbl_type;
l_eam_sub_res_tbl EAM_PROCESS_WO_PUB.eam_sub_res_tbl_type;
l_eam_res_usage_tbl EAM_PROCESS_WO_PUB.eam_res_usage_tbl_type;
l_eam_mat_req_tbl EAM_PROCESS_WO_PUB.eam_mat_req_tbl_type;
l_out_eam_wo_rec EAM_PROCESS_WO_PUB.eam_wo_rec_type;
l_out_eam_op_tbl EAM_PROCESS_WO_PUB.eam_op_tbl_type;
l_out_eam_op_network_tbl EAM_PROCESS_WO_PUB.eam_op_network_tbl_type;
l_out_eam_res_tbl EAM_PROCESS_WO_PUB.eam_res_tbl_type;
l_out_eam_res_inst_tbl EAM_PROCESS_WO_PUB.eam_res_inst_tbl_type;
l_out_eam_sub_res_tbl EAM_PROCESS_WO_PUB.eam_sub_res_tbl_type;
l_out_eam_res_usage_tbl EAM_PROCESS_WO_PUB.eam_res_usage_tbl_type;
l_out_eam_mat_req_tbl EAM_PROCESS_WO_PUB.eam_mat_req_tbl_type;
l_out_eam_direct_items_tbl EAM_PROCESS_WO_PUB.eam_direct_items_tbl_type;
x_eam_wo_rec EAM_PROCESS_WO_PUB.eam_wo_rec_type;
x_eam_op_tbl EAM_PROCESS_WO_PUB.eam_op_tbl_type;
x_eam_op_network_tbl EAM_PROCESS_WO_PUB.eam_op_network_tbl_type;
x_eam_res_tbl EAM_PROCESS_WO_PUB.eam_res_tbl_type;
x_eam_res_inst_tbl EAM_PROCESS_WO_PUB.eam_res_inst_tbl_type;
x_eam_sub_res_tbl EAM_PROCESS_WO_PUB.eam_sub_res_tbl_type;
x_eam_res_usage_tbl EAM_PROCESS_WO_PUB.eam_res_usage_tbl_type;
x_eam_mat_req_tbl EAM_PROCESS_WO_PUB.eam_mat_req_tbl_type;
x_eam_direct_items_tbl EAM_PROCESS_WO_PUB.eam_direct_items_tbl_type;
X_status VARCHAR2(4000);
X_msg_cnt NUMBER;
X_msg_data VARCHAR2(4000);
Begin
fnd_global.apps_initialize (user_id => 27789,
resp_id => 23119,
resp_appl_id => 426
COMMIT;
l_eam_wo_rec := null; Record Group need to be initialized at the beginning
l_eam_wo_rec.WIP_ENTITY_NAME := '665443';
l_eam_wo_rec.organization_id := 12384;
l_eam_wo_rec.attribute10 := '2112000245';
l_eam_wo_rec.NOTIFICATION_REQUIRED := NULL;
l_eam_wo_rec.TRANSACTION_TYPE := '2';
l_eam_wo_rec.ASSET_NUMBER := '11234';
l_eam_wo_rec.ASSET_GROUP_ID := 481810;
l_eam_wo_rec.SCHEDULED_START_DATE := sysdate;
l_eam_wo_rec.SCHEDULED_COMPLETION_DATE := SYSDATE;
l_eam_wo_rec.STATUS_TYPE := wip_constants.released; -'Unreleased';
l_eam_wo_rec.OWNING_DEPARTMENT := 6003;
l_eam_wo_rec.PRIORITY := 10 ;
l_eam_wo_rec.SHUTDOWN_TYPE := null;
l_eam_wo_rec.class_code := 'WS0';
--l_eam_wo_rec.material_issue_by_mo := 'N';
--l_eam_wo_rec.issue_zero_cost_flag := 'Y';
--l_eam_wo_rec.po_creation_time := 1;
--l_eam_wo_rec.job_quantity := 1;
--l_eam_wo_rec.notification_required := 'N';
/* Additional Parameters to be passed Start */
l_eam_wo_rec.ACTIVITY_TYPE := 1; --It should be the lookup code value for the activity_type
l_eam_wo_rec.maintenance_object_source := 1;
l_eam_wo_rec.maintenance_object_type := 3;
l_eam_wo_rec.maintenance_object_id := 26005;
l_eam_wo_rec.requested_start_date := SYSDATE;
l_eam_wo_rec.job_quantity := 1;
l_eam_wo_rec.wip_supply_type := null;
/* Additional Parameters to be passed End */
apps.EAM_PROCESS_WO_PUB.PROCESS_WO
( p_bo_identifier => 'EAM'
, p_api_version_number =>1.0
, p_init_msg_list =>TRUE
, p_commit => 'Y'
, p_eam_wo_rec =>l_eam_wo_rec
, p_eam_op_tbl =>l_eam_op_tbl
, p_eam_op_network_tbl =>l_eam_op_network_tbl
, p_eam_res_tbl =>l_eam_res_tbl
, p_eam_res_inst_tbl =>l_eam_res_inst_tbl
, p_eam_sub_res_tbl =>l_eam_sub_res_tbl
, p_eam_res_usage_tbl =>l_eam_res_usage_tbl
, p_eam_mat_req_tbl =>l_eam_mat_req_tbl
, p_eam_direct_items_tbl => l_out_eam_direct_items_tbl
, x_eam_wo_rec =>x_eam_wo_rec
, x_eam_op_tbl =>x_eam_op_tbl
, x_eam_op_network_tbl =>x_eam_op_network_tbl
, x_eam_res_tbl =>x_eam_res_tbl
, x_eam_res_inst_tbl =>x_eam_res_inst_tbl
, x_eam_sub_res_tbl =>x_eam_sub_res_tbl
, x_eam_res_usage_tbl =>x_eam_res_usage_tbl
, x_eam_mat_req_tbl =>x_eam_mat_req_tbl
, x_eam_direct_items_tbl => x_eam_direct_items_tbl
, x_return_status =>X_status
, x_msg_count =>X_msg_cnt
, p_debug =>'Y'
, p_output_dir => '/user/temp'
, p_debug_filename =>'Amit_6_EAM_WO_DEBUG2.log'
, p_debug_file_mode => 'a'
commit;
DBMS_OUTPUT.PUT_LINE('Status : '||X_status);
IF X_msg_cnt > 0 THEN
DBMS_OUTPUT.PUT_LINE('Error Occurred in WO Creation : '|| X_msg_cnt||' : '||SQLERRM||' : '||SQLCODE);
END IF;
DBMS_OUTPUT.PUT_LINE('First record inserted.......');
END;
The Result:
anonymous block completed
Status : E
Error Occurred in WO Creation : 3 : ORA-0000: normal, successful completion : 0
First record inserted.......
Can i know if missed something over here??
Thanks
Mohan

Hi,
If you have a maintenance BOM and Routing for the activity in use for your work order
The work order created will get the data defaulted from those BOM and Routing ie operations , BOM and Routing.
Please check whether you have the BOM and routing and also please compare the BOM and routing information with the information you are adding.
Also make sure that you are passing all the mandatory inputs.
thanks
Krishna

Similar Messages

  • Oracle EBS drill link targets for EAM Work Order and Asset

    Hi All - I am running Oracle EBS 12.1.3 and OBIEE 11g and I'm trying to link from OBIEE to EBS, but struggling to find the target functions / parameters to provide a direct URL link to EBS EAM Work Order and Asset. I have successfully linked to a Purchase Order View page, I would like to find the similar for EAM Asset and Work Order.
    I can see some parameters in WorkOrderDetailsPGCO but can't seem to work out how to get to the page from a URL.
    For reference MOS Note 555254.1 has some details, but not for EAM.
    Has anyone provided users in any reporting system with a link to EAM Work Order or Asset page and if so how were the links generated?
    Thanks,
    Gareth

    I am giving this a bump as I really need some help with this. Is I run the SQL with TOAD or SQLPlus it seems to consistently runs fine, The problem seems to only be from APEX. I think it has do to with the non-persistent state.

  • SAP EAM Work Order 1.0 and SAP Field Service 1.0

    Hi All,
    Related to these two new applications launched recently by SAP, taking advantage of the fusion between SAP and Sybase (SAP EAM Work Order 1.0 and SAP Field Service 1.0), someone already implemented some of these new features in mobile?
    If someone did, may share some information regarding these new features?
    Best regards,
    Rogério Reis
    Someone can help?
    Edited by: Rogério Reis on Dec 12, 2011 11:33 AM

    Hi,
    Please review the link below
    http://news.techworld.com/mobile-wireless/3280507/sap-announces-new-push-into-mobile-applications/
    Regards
    Carlos

  • Oracle MES for EAM Work Order

    Hi,
    We know Oracle MES supports discrete Work orders.
    Is it supports EAM Work Order also.
    we need to introduce Clock in Clock out functionality against resources of EAM WO.
    Thanks
    Raman

    Hi Din;
    Please check below notes and see its helpful for your issue:
    Department Wise Work Order Release Approvers in EAM using AME [ID 944918.1]
    EAM DOCUMENT APPROVALS USING AME [ID 972652.1]
    Regard
    Helios

  • EAM Work Order Capitalization

    Can we capitalize incomplete Work Order, as this comes under the definition of CIP, especially at the period close if Work order is still open, this cost has to be shown in CIP, if to be caplitalized later.
    Kindly suggest
    Regards
    Yasir

    Hi.
    I have downloaded the latest client from Service Marketplace: Support Packages and Patches  -> My Company's Application Components -> My Company's Software -> SAP EAM WORK ORDER -> SAP EAM WORK ORDER 1.0 -> Comprised Software Component Version -> SAP EAM WORK ORDER CLIENT 1.0 -> Win32.
    Under installations and upgrades you can find it at My Company's Application Components -> My Company's Software -> SAP EAM WORK ORDER -> SAP EAM WORK ORDER 1.0 -> 51041739.
    Hope it helps.
    /Michael.

  • Have a Problem in EAM work order creation API........

    I have used the following code to create work order but i was unable to do so
    I am getting return status SUCCESS(S)....
    but am unable to view the record in EAM_WORK_ORDERS_V..
    any sort of help would be appreciated...
    declare
    g_eam_wo_relations_tbl0 eam_process_wo_pub.eam_wo_relations_tbl_type;
    g_eam_wo_relations_rec eam_process_wo_pub.eam_wo_relations_rec_type;
    g_eam_op_rec0 eam_process_wo_pub.eam_op_rec_type;
    g_eam_op_rec1 eam_process_wo_pub.eam_op_rec_type;
    g_eam_op_network_rec0 eam_process_wo_pub.eam_op_network_rec_type;
    g_eam_op_network_rec1 eam_process_wo_pub.eam_op_network_rec_type;
    g_eam_mat_req_rec0 eam_process_wo_pub.eam_mat_req_rec_type;
    g_eam_mat_req_rec1 eam_process_wo_pub.eam_mat_req_rec_type;
    g_eam_di_rec0 eam_process_wo_pub.eam_direct_items_rec_type;
    g_eam_di_rec1 eam_process_wo_pub.eam_direct_items_rec_type;
    g_eam_res_rec0 eam_process_wo_pub.eam_res_rec_type;
    g_eam_res_rec1 eam_process_wo_pub.eam_res_rec_type;
    g_eam_res_inst_rec0 eam_process_wo_pub.eam_res_inst_rec_type;
    g_eam_res_inst_rec1 eam_process_wo_pub.eam_res_inst_rec_type;
    g_eam_op_tbl0 EAM_PROCESS_WO_PUB.eam_op_tbl_type;
    g_eam_op_tbl1 EAM_PROCESS_WO_PUB.eam_op_tbl_type;
    g_eam_op_network_tbl0 EAM_PROCESS_WO_PUB.eam_op_network_tbl_type;
    g_eam_res_tbl0 EAM_PROCESS_WO_PUB.eam_res_tbl_type;
    g_eam_res_inst_tbl0 EAM_PROCESS_WO_PUB.eam_res_inst_tbl_type;
    g_eam_sub_res_tbl0 EAM_PROCESS_WO_PUB.eam_sub_res_tbl_type;
    g_eam_res_usage_tbl0 EAM_PROCESS_WO_PUB.eam_res_usage_tbl_type;
    g_eam_mat_req_tbl0 EAM_PROCESS_WO_PUB.eam_mat_req_tbl_type;
    g_eam_di_tbl0 EAM_PROCESS_WO_PUB.eam_direct_items_tbl_type;
    g_out_eam_wo_relations_tbl eam_process_wo_pub.eam_wo_relations_tbl_type;
    g_out_eam_wo_rec eam_process_wo_pub.eam_wo_rec_type;
    g_out_eam_wo_tbl eam_process_wo_pub.eam_wo_tbl_type;
    g_out_eam_op_tbl EAM_PROCESS_WO_PUB.eam_op_tbl_type;
    g_out_eam_op_network_tbl EAM_PROCESS_WO_PUB.eam_op_network_tbl_type;
    g_out_eam_res_tbl EAM_PROCESS_WO_PUB.eam_res_tbl_type;
    g_out_eam_res_inst_tbl EAM_PROCESS_WO_PUB.eam_res_inst_tbl_type;
    g_out_eam_sub_res_tbl EAM_PROCESS_WO_PUB.eam_sub_res_tbl_type;
    g_out_eam_res_usage_tbl EAM_PROCESS_WO_PUB.eam_res_usage_tbl_type;
    g_out_eam_mat_req_tbl EAM_PROCESS_WO_PUB.eam_mat_req_tbl_type;
    g_out_eam_di_tbl EAM_PROCESS_WO_PUB.eam_direct_items_tbl_type;
    g_eam_wo_rec1 eam_process_wo_pub.eam_wo_rec_type;
    g_eam_wo_rec2 eam_process_wo_pub.eam_wo_rec_type;
    g_eam_wo_tbl0 eam_process_wo_pub.eam_wo_tbl_type;
    g_eam_wo_res_usg_tbl0 eam_process_wo_pub.eam_res_usage_tbl_type;
    l_return_status VARCHAR2(1);
    l_msg_count NUMBER;
    g_eam_wo_usg_rec1 eam_process_wo_pub.eam_res_usage_rec_type;
    g_eam_wo_usg_rec2 eam_process_wo_pub.eam_res_usage_rec_type;
    begin
    g_eam_wo_rec1 := null;
    g_eam_wo_rec1.transaction_type := EAM_PROCESS_WO_PVT.G_OPR_CREATE;
    g_eam_wo_rec1.batch_id := 1;
    G_EAM_WO_REC1.HEADER_ID := 1;
    G_EAM_WO_REC1.WIP_ENTITY_ID := NULL;
    g_eam_wo_rec1.wip_entity_name := '10040';
    g_eam_wo_rec1.organization_id := 207;
    g_eam_wo_rec1.asset_group_id := 16884;
    g_eam_wo_rec1.asset_number := '28Z1933';
    g_eam_wo_rec1.rebuild_item_id := null;
    g_eam_wo_rec1.rebuild_serial_number := null;
    G_EAM_WO_REC1.MAINTENANCE_OBJECT_SOURCE := 1;
    g_eam_wo_rec1.maintenance_object_type := 3;
    g_eam_wo_rec1.maintenance_object_id := 1768219;
    g_eam_wo_rec1.parent_wip_entity_id := null;
    g_eam_wo_rec1.manual_rebuild_flag := null;
    g_eam_wo_rec1.owning_department := 4002 ;
    g_eam_wo_rec1.description := 'Creating a Released Work Order';
    g_eam_wo_rec1.class_code := 'MAINT';
    g_eam_wo_rec1.status_type := wip_constants.released;
    g_eam_wo_rec1.date_released := sysdate-100;
    g_eam_wo_rec1.firm_planned_flag := 1;
    g_eam_wo_rec1.scheduled_start_date := sysdate;
    g_eam_wo_rec1.requested_start_date := sysdate;
    g_eam_wo_rec1.scheduled_completion_date := sysdate;
    g_eam_wo_rec1.material_issue_by_mo := 'N';
    g_eam_wo_rec1.priority := 10;
    g_eam_wo_rec1.issue_zero_cost_flag := 'Y';
    g_eam_wo_rec1.po_creation_time := 1;
    g_eam_wo_rec1.job_quantity := 1;
    g_eam_wo_rec1.notification_required := 'N';
    g_eam_wo_tbl0(1) := g_eam_wo_rec1;
    EAM_PROCESS_WO_PUB.PROCESS_WO
    ( p_bo_identifier => 'EAM'
    , p_api_version_number => 1.0
    , p_init_msg_list => TRUE
    , p_commit => 'Y'
    , p_eam_wo_rec => g_eam_wo_rec1
    , p_eam_op_tbl => g_eam_op_tbl0
    , p_eam_op_network_tbl => g_eam_op_network_tbl0
    , p_eam_res_tbl => g_eam_res_tbl0
    , p_eam_res_inst_tbl => g_eam_res_inst_tbl0
    , p_eam_sub_res_tbl => g_eam_sub_res_tbl0
    , p_eam_res_usage_tbl => g_eam_res_usage_tbl0
    , p_eam_mat_req_tbl => g_eam_mat_req_tbl0
    , p_eam_direct_items_tbl => g_eam_di_tbl0
    , x_eam_wo_rec => g_eam_wo_rec2
    , x_eam_op_tbl => g_out_eam_op_tbl
    , x_eam_op_network_tbl => g_out_eam_op_network_tbl
    , x_eam_res_tbl => g_out_eam_res_tbl
    , x_eam_res_inst_tbl => g_out_eam_res_inst_tbl
    , x_eam_sub_res_tbl => g_out_eam_sub_res_tbl
    , x_eam_res_usage_tbl => g_eam_res_usage_tbl0
    , x_eam_mat_req_tbl => g_out_eam_mat_req_tbl
    , x_eam_direct_items_tbl => g_out_eam_di_tbl
    , x_return_status => l_return_status
    , x_msg_count => l_msg_count
    , p_debug => 'Y'
    , p_output_dir => '/sqlcom/log/lv115dyp'
    , p_debug_filename => 'eambo22.log'
    , p_debug_file_mode => 'w'
    dbms_output.put_line('work order creation status:'||l_return_status);
    commit;
    END;
    thanks in advance
    DEV

    You have opened the render engine, not the full program.
    Mylenium

  • Work Center update during work order save (SAP PM) using exit IWO10009

    Hi All,
    I am updating the work center in the operation record of a work order using exit IWO1009. In the debug, the internal table for operation is updated successfully. But once the processing is done and I see the order though t-code IW33, I couldn't see the updated workcenter. And surprisingly, plant field which I am updating with work center, is getting updated in the operation and I can see this in IW33.
    Pls help.
    Thanks,
    Bhaskar

    Here is the code:
        REFRESH : lt_afvgd.
    Getting Operation details
        CALL FUNCTION 'CO_BO_OPR_OF_ORDER_GET'
          EXPORTING
            aufnr_imp = caufvd_imp-aufnr
          TABLES
            afvgd_get = lt_afvgd.
        IF caufvd_imp-AUART = lc_auart1 or caufvd_imp-AUART = lc_auart2 .
    Determination of Work Centre for Operation Relevent To PTE Eng.
          CLEAR : ls_afvgd.
          READ TABLE lt_afvgd INTO ls_afvgd WITH KEY usr00 = 'PTE'.
          IF sy-subrc eq 0.
            ls_afvgd-arbpl  = caufvd_imp-VAPLZ.
            ls_afvgd-WERKS  = caufvd_imp-VAWRK.
            MODIFY lt_afvgd  FROM ls_afvgd TRANSPORTING arbpl WERKS WHERE usr00 = 'PTE'.
          ENDIF.
        endif.
    **-- Updating operations buffer
        CALL FUNCTION 'CO_BO_UPDATE_OPR_OF_ORDER'
          TABLES
            afvgd_upd = lt_afvgd.

  • HOW TO: EAM - Work Order Page - Change Concurrent Program to run

    Hi,
    my customer is using EAM and in the Work Order Search page the customer can select a work order and press the button "Print Work Orders". The standard work order (BI Publisher report) print is submitted.
    Their request is to submit the Customized version of this concurrent program.
    Can this be done and how can this be done?
    Thanks in advance.
    Regard Roel
    Edited by: user13071061 on 6-okt-2010 6:26

    Hi,
    Can you please check that what is the Template of Standard Work Order Report.
    It comes from the setup for Document Types in Oracle. Most probably the template will be
    XXL-FO. And if yes, then you need to have the customized report also, in XXL-FO Template and then in Document Types just give the name of the customized Template Name (Register the Template and Data Definition in Oracle first). Save it
    and then run the page again to see if now it picks the template of your customized report or not.
    Thanks,
    Gaurav

  • Unable to upload PM Work Order Header Status

    Hi,
    I have made LSMW for tcode: IW31. I have a requirement to upload legacy data to SAP with their existing header status.
    For instance:
    I have a work order which got a header status complete and I want to upload this work order with its status. So, how can I upload different work orders with their different header status.
    Do let me know as soon as possible.
    Thanks for the contribution.
    Regards,
    Yahya

    Yes, you are right. Originally it should be the way you answered but requirement is to upload data with respect to their order status from legacy.
    In addition, is there any possiblity that I can create one complete LSMW for transaction IW31 OR IW32?
    This is asked because I am unable to upload data in Operatoins Tab
    Thanks.
    Regards,
    Yahya

  • Revision updation on work orders

    Dear All,
    I want to know that there is any way to update the dates on work orders which is holding revision value.
    user input a revision into work order
    user changes the dates on the revision.
    if user want to apply the changed date values, then user must change the work order by manual, need to input the same revision number once again.
    our customer want to apply the changed values automatically or by mass.
    please advise me and thanks for your help in advance.
    Best Regards,

    Hi CHOI JIHOON,
    As per suggested by Pete, for Single order you may process it going to iw32 --> Order --> Revision--> Refresh Dates.
    If you want to do it in Mass you may:
    1. go to IW38, give your selection (Revision in particular) for displaying the list of orders,
    2. Select all the orders whose dates you wish to refresh,
    3. Go to Order --> Revision --> Refresh Dates your order dates will be refreshed.
    (For Mass you may use IW37N also as suggested by Pete but, that will give you list of Operations together with order).
    Hope this helps.
    Chin2.

  • Eam Work order assignment info

    Hi Guys
    This is a followup to a question I asked in the SCM forum but was asked to post EAM questions here by Sandeep who answered my previous questions graciously.
    A> I am tracking a specific situation- when every operation assigned to a work order is completed I need to execute a pl/sql Concurrent program.
    For this one I think the work order status would be changed to complete?
    B>I am also tracking another situation- When a resource is assigned to a work order I need to execute a pl/sql conc prog.
    What table info gets set when this happens?
    Thanks
    Jake

    A> WIP_MOVE_TRANSACTIONS is probably what you are looking for. Write a trigger on that table.
    B> WIP_OPERATION_RESOURCES is the table used. So you can write a trigger on that table.
    Hope this helps,
    Sandeep Gandhi

  • Unable to settle PM work order

    Hi,
    We have done settlement for a PM work order successfully with transaction KO8G.
    But still it shows in the open settlement list -Transaction s_alr_87013127.
    Please advice.
    Regards,
    Pratap

    Please take a look at the work order, if the material and labor cost is associated to it correctly...
    Please check the settlement profile for the same....check for the settlement object...check for the status of the work order (not on the report but on the order)
    Make sure everything is correct, when using KO88, fill in all the necessary parameters for the order you and then from the menu bar select "EXTRAS", it has the option of running the trace...
    From your message, looks like the settlement profile and the work order do not conform...either its that or there is no cost attached to the work order...

  • EAM Work order completion issue

    Hi guys
    We have a requirement where we need to complete a work order using an API call .
    There are times where even when all operations are completed the users dont change the status to complete.
    I've tried using the EAM_PROCESS_WO_PUB.PROCESS_WO to change the status to different statuses and it works for some statuses,
    but when I try to change the status of the WO from released to complete it gives me the following error.
    change from 3 to 4 not poss
    oddly this call does change the system status of the work order to complete but not the status type
    any ideas , suggestions?
    Thanks
    Dan

    user eam_completion API
    take care
    Aamir

  • Unable to update a sales order in VA02

    Hi Experts,
    When I am adding a another line item (material) in a sales order in VA02, it deletes the line item in the sales order.
    I.e The second line item is not updated in a sales order.
    Note::
    We have partial deliveries allowed.
    And moreover there is no error message.
    Please  suggest.
    Thanks
    Montee

    Hi Montee
    If order is not delivered completey then you can maintain another line item.But If you are adding another line item, after billing is also completed then it is not possible .So check wheather any Material determination is done for the material or not.Also check wheather any user exit is working or not.So kindly check with your technical team
    Thanks and Regards
    Srinath

  • How to update PM work Order Tasklist

    Hi all , hoping i can get some help on this one.
    We have release a pm workorder and then updated the tasklist.
    What i would like to know is how to get the updated tasklist to appear and already released pm order.
    This would be similisr to re-exploding a BOM in PP.
    Thanks for all your help

    There's no standard way of doing this other than deleting the operations and re-importing the relevant task list
    PeteA

Maybe you are looking for

  • Team Calendar in Read-Only Mode in Leave Request Approver Screen

    Hi,   After lots of interaction and inputs in my previous thread,   Customization Done for 2 level approval of leave in ESS but Facing Problems        Our Team had decided to make the Team Calendar in Leave Request Approval Screen in Read-Only Mode (

  • How to solve problem with Installer Package for itunes

    Hi! I'm attempting to upadte itunes so I can get the latest software for my iphone. It's a 3GS. Every time when ready to instal it says I have a problem with the installer package  -  something is missing. What can I do to solve this?

  • Adding chapters to iPad movies?

    This is a question which I have no idea where to post.  So I'll start here, and youse guys can tell me where it might be more effective. Since the demise of the DVD (c'mon, ya can't play 'em in an iPad, so they're dead...), what has replaced it in th

  • Where is the move tool on Ps Touch?

    I made a selection and created a new layer and am trying to change the position of thay layer but I dont find the move tool. How can I move a new layer to a different position on the image?

  • Font is shown very small when using IE Tab and Windows Display is selected to show larger fonts

    I'm on Windows 7 - 64 bit and I set my Windows display to show larger fonts (from Control Panel, Display, then choose Larger Fonts). Now all pages show bigger fonts, except when I use IE Tab. I use IE Tab so that I can open my Microsoft Dynamics CRM