Very Urgent -Change delivery picking status from A  to Picking not relevant

Hi
We have created the delivery with item category - Picking relevant.
Now we have changed the Item category to picking not relevant.
We want to change the exisitng deliveries created with picking relevant into Picking not relevant
Looking your inputs as soon as possible, as the issue need to fixed in the production.
Thanks and Regards
Senthilnathan

Hi,
Since you have more than 1,500 deliveries, I reckon it would not be ideal for either one of the above options mentioned earlier.
It would be possible to leverage on the available tool in SAP as following:
1. Go to tcode VL06O --> List Outbound Deliveries.
2. Filter and list down all the deliveries that you intend to change based on the criteria which picking is relevant (VBUK-KOSTK nEQ <blank>). Add all other filter criteria such as Shipping Point etc etc as necessary to filter all the deliveries you intend to change. Then download these Deliveries number into an Excel sheet. Alternatively, you could use SE16 table entries if you find that more comfortable.
3. Then, build two LSMW program (recording) - one for deleting the deliveries (i.e. delivery numbers) and one for creating deliveries (i.e. shipping point, sales order etc.).
4. Based on the upload template, fill in all the information in two separate Excel sheet and perform the mass deletion and creation in LSMW.
This would reduce the hassle of processing it manually.
Hope the above helps.
Thanks.

Similar Messages

  • How to change the IDOC Status from 30 to 03

    Hi Friends,
    In the Partner Profiles Collect IDOCS option is Selected and the Output mode is 4.
    In my Custom Program i am Using the Function Module MASTER_IDOC_DISTRIBUTE to generate the IDOCs
    I am getting the IDOCs of Status 30.
    then in my Custom Program, I am Submitting the IDOCs to RSEOUT00 program.
    to change the IDOC status from 30 to 03.
      SUBMIT rseout00 USING SELECTION-SCREEN '1000'
                   WITH docnum  IN  gt_range_idocs
                   WITH p_compl EQ 'Y'
                   AND RETURN.
    but still i am not getting the IDOCs of changed status.
    I need to get the Changed IDOC status and if the IDOC status is not changed then I need to generate an Error file for the IDOCs data and send that data to customers as a mail.
    so my requirment is to call the RSEOUT00 in the Custom Program and Change the IDOCs Status to 03.
      When i am Executing the RSEOUT00 Indidually by giving the IDOCs numbers, then the IDOCs Status is going to change to 03 from 30.
    Kindly Guide me how to proceed furthur
    Thanks in Advance,
    Ganesh

    Thanks Shrishit,
    RC1_IDOC_SET_STATUS changing the Status from 30 to 03.
    Its fine, But my Question is will IDOC Data will be reached to XI Server or not.??
    means is the functionality of this Program is same as the RSEOUT00.
    MY job is to change Status from 30 to 03 only
    and then Check the Status of those IDOCs, and if the IDOC is not sended to XI  i.e.;03 status, then I need to send the Details of IDOC (i.e.; data in filed IDOC) to Customer Mail ID through an Attachement.
    I hope you Understood my AIM, why I need to change the Status in my Custom Program only, by submitting IDOCs to this report .
    Kindly waiting for your reply,
    Thanks in Advance,
    Ganesh

  • How can I change my Developers status from Individual to Company?

    How can I change my Developers status from Individual to Company? Please

    https://developer.apple.com/support/ios/account-management.html

  • OB048 - ED Status from valuation type does not match ED Status handling type TE

    Hi,
    Good day!
    We have experienced an error message (# OB048) indicating that ED Status from valuation type does not match ED Status handling type TE.  I have already checked configuration under Tariffs, Duties, and Permits of the Industry Solution Oil & Gas (Downstream) and the following were in order:
    1. Excise Duty Group
    2. Excise Duty Status
    3. Set Handling Type
    4. Set Pricing Indicator
    5. Maintain excise duty/tax status/account determination
    6. Maintain handling type/tax status
    May I know what can be the solution to this error message considering that the above configurations were already accomplished.
    Thanks in advance.
    Regards,
    Vensim
    Note: Attached is the file with screenshots of the error message. FYR.

    EdStevens wrote:
    856483 wrote:
    <snip>
    can i have you mobile contact phone number if possible?
    I have seen some pretty astonishing requests on this board, but this one really raises (or lowers) the bar. Just what is it your boss is paying you to do?
    Some listserves have lots of people giving their number. I find it odd that people would, but not astonishing for someone to ask. Outside the norm here, but how would someone know ahead of time? It's a bravely connected new world.

  • Very Urgent : Reterival of AWKEY field from BKPF table

    Hi,
    I am making a report in which i have to make relation of 2 fields BKPF-AWKEY and MKPF-MBLNR . but the problem is i am not to reterive data from it as i have to make inner join among these fields so data can be reterived fmo these tables.
    plz provide me some guidelines as it is really urgent to me and help will be deinfately rewarded.

    First and foremost, i would advice you not to use words like VERY URGENT in your subject. You might want to go through the following link to understand the basic rules of the forum:
    [Rules of Engagement|https://wiki.sdn.sap.com/wiki/display/HOME/RulesofEngagement]
    For your requirement, below code might help you understand the logic in determining the link between BKPF and MKPF.
    TYPES: BEGIN OF t_bkpf,
             bukrs type bukrs,
             belnr type belnr_d,
             gjahr TYPE gjahr,
             awtyp type awtyp,
             awkey type awkey,
            end of t_bkpf.
    types: begin of t_mkpf,
             mblnr type mblnr,
             mjahr type mjahr,
           end of t_mkpf.
    data: i_bkpf type STANDARD TABLE OF t_bkpf,
          i_mkpf type STANDARD TABLE OF t_mkpf.
    data: wa_bkpf type t_bkpf,
          wa_mkpf type t_mkpf.
    PARAMETERS: p_bukrs type bukrs OBLIGATORY,
                p_gjahr TYPE gjahr OBLIGATORY.
    START-OF-SELECTION.
      SELECT bukrs belnr gjahr awtyp awkey
        into table i_bkpf
        from bkpf
        UP TO 20 ROWS
        where bukrs = p_bukrs
        and   gjahr = p_gjahr
        and   awtyp = 'MKPF'.
    IF NOT i_bkpf[] is INITIAL.
       select mblnr mjahr from mkpf into table i_mkpf
          for ALL ENTRIES IN i_bkpf
         where mblnr = i_bkpf-awkey(10).
    *     and   mjahr = i_bkpf-awkey+10(4).
    ENDIF.
    LOOP AT i_bkpf into wa_bkpf.
      READ TABLE i_mkpf into wa_mkpf
        with key mblnr = wa_bkpf-awkey(10)
                 mjahr = wa_bkpf-awkey+10(4).
      IF sy-subrc eq 0.
         write:/ 'Accounting Document:', 23 wa_bkpf-belnr,
              35 'Material Document:', 55 wa_mkpf-mblnr.
      ENDIF.
    ENDLOOP.

  • How to change the user status from CJ01 transaction

    Hello All,
    I am doing a BDC in CJ01 transaction where there is a field called "User Status" .
    This field is not editable. However the requirement is to populate this field with some value based on some other entries.
    Is there any Function module / BAPI to update user status from CJ01.
    Thanks in advance.
    Regards
    Indrajit

    Hi Anbu
        Thanks for your kindness.
         I had got the proper badi definition ( RECN_CONTRACT ) before. I have try to implement the badi in my implementation YCL_IM_RECN_CONTRACT and below is my example codes. It can update the user status when the SAVE button is pressed. My example codes are below:
    METHOD if_ex_recn_contract~check_all.
      DATA:
          cl_recn_contract   TYPE REF TO cl_recn_contract.
      DATA: r_status_mngr TYPE REF TO if_reca_status_mngr.
      DATA: lv_status_profile TYPE j_stsma.
      DATA: lt_status TYPE re_t_status,
                ls_status TYPE LINE OF re_t_status.
      DATA: r_message TYPE REF TO if_reca_message_list.
      cl_recn_contract ?= io_object.
      CHECK if_before_store = 'X'.
      CALL METHOD cl_recn_contract->if_reca_has_status~mo_status_mngr->get_current_status
        IMPORTING
          ed_status_scheme = lv_status_profile
          et_status        = lt_status.
      lv_status_profile = 'ZBCIA01'.
      CALL METHOD cl_recn_contract->if_reca_has_status~mo_status_mngr->set_status_profile
        EXPORTING
          id_status_profile = lv_status_profile.
      READ TABLE lt_status INTO ls_status INDEX 2.
      ls_status-stat = 'E0001'.
      ls_status-inact = ''.
      MODIFY lt_status FROM ls_status INDEX 2.
       CALL METHOD cf_reca_message_list=>create
         RECEIVING
           ro_instance = r_message.
      CALL METHOD cl_recn_contract->if_reca_has_status~mo_status_mngr->set_status
        EXPORTING
          it_status           = lt_status
          if_only_user_status = 'X'
          io_msglist          = r_message.
      REFRESH lt_status.
    ENDMETHOD.

  • VERY URGENT : Download  SP14 WAS/EP from SMP

    Dear Portal Gurus,
    I need to download and install WAS SP 14  amd EP SP14 in HA.
    In my "SAP Software Distribution Center"  in SMP,
    I see :
    EXE     51031503_1
    DVD SPC SAP NW 04 Stack 14 - 2005/12 (2) 1 of 13
    3/1/2006.
    There are 13 parts in total.
    Is this the one I should be downloading ?
    Which one has SCS in it.
    Pls treat this as very urgent.
    Thanks.
    Josh

    Hi Josh
    EXE 51031503_1
    DVD SPC SAP NW 04 Stack 14 - 2005/12 (2) 1 of 13
    this dvd contin SP 14 for WAS 6.40 and othe NW component which is running on WEBAS JAVA server.
    click on info beside it.
    u can't use this DVD for installing WEABS 6.40 and Portal platform SP14.
    if any query related to download software installing revert back.
    when u download the NW software form SMP it's current SP level is 9 i.e SP9 means when u install it it's current version is SP9 than after u can apply the patch.
    regards,
    kaushal

  • How to change DTP Overall Status from Yellow to Red

    Dear all,
      if I choose "set overall status automatically", how can I change DTP overall status when I want to stop the DTP running? Thanks.

    Folks
    I know how frustrating this problem is even in netweaver 7.0 environment. I found a solution for this problem atlast and it works but a not direct way of resolving this issue.
    When this request is in yellow status and not able to change / delete the request, its actually in a pseudo status and it is a bug in the program. This request sits in table RSBKREQUEST with processing type as 5 in data elements USTATE, TSTATE and this 5 is actually "Active" status which is obviously wrong.
    All we need is, ask your basis person to change the status to 3 in both these data elements and then it allows to reload the delta. Once the delta is successfully loaded, you can delete the previous bad request even though it is still in yellow. Once the request is deleted, the request status gets updated as "4" in table RSBKREQUEST.
    Hope this helps.
    Thanks

  • While adding custom field in urgent change-Create new field button in AET is not coming

    Dear All,
    we have requirement to add some custom fields in urgent change document. while adding custom fields using AET, create new field button is not coming.
    Thanks in advance. points will be awarded.
    Rahul

    Hi Jignesh,
    Thanks for your valueble inputs, it really helped me to understand the process.
    I checked in Web UI configuration for urgent change document as you mentioned but still that button is not coming.
    In transaction BSP_WD_CMPWB, i have created enh. set: Z_ENHANCEMENT_SET.
    Can you tell what to selelect in application and page popup which comes after selecting Enhance component button. Actually i tried but i am not able to add new record in conf.
    Thanks in advance.

  • Get invoice status from back end (validated/ not validated)

    Hi,
    How can i find the invoice status from the back end. I am creating a custom form where in need to populate only validated invoices. Is there any proc. for this ? Was looking around for the proc but unable to find one.
    Regards
    Deepak

    Hi all,
    I have got the proc. ap_utilities_pkg.get_invoice_status
    This proc. takes invoice_id as an input parameter and returns in "UNAPPROVED' if validation or approval fails.
    Regards
    Deepak

  • Change masthead text away from welcome - homepage framework not working?

    Hi,
    I've  trawled through countless threads without getting a clear understanding on this...
    I'd like to change the masthead text from Welcome <username> to  Hello <username>
    I thought I could do this by changing the text for the Header in the homepage framework (SAPDEFAULT) but someone in a another thread mentioned that this change doesn't work on later versions - not sure if they mean't portal of backend (we're using NW7 and ERP6.0).
    Can anyone advise what's the reccomended method for doing this?... or should the homepage framework change work?
    Regards
    Phil

    Hi Jay,
    Thanks for this. I've followed your steps through and the Z copy of the class returns the expected result in debug. I've assigned the class to the SAPDEFAULT header but the old text 'welcome' still shows in ESS.
    Can you advise?
    Also, can you clarify if/why/when the "text" field in the homepage framework header is redundant for ESS changes? The help text isn't helpful in this respect!
    Thanks
    Phil

  • Change of Message status from Error message to Warning message

    Hello,
    I would like to know the configuration details of changing the status of a message class from Error message to warning message.
    Thanks
    Manish

    Hi,
    You can do it via OBA5 transaction; enter the application code, and put an entry for the message setting the flag to warning. Keep in mind, that not for every message it could be done.
    Regards,
    Eli

  • BAPI to change invoice document status from deleted to something else

    Hi experts,
    When the document is deleted thorugh MR8M, the invoice status(rbstat) in rbkp table of the invoice doument(MIRO) change to 2 i.e. deleted.
    I want to use the same data for parking again by using standard BAPI_INCOMINGINVOICE_GETDETAIL. But v=before that i have to change the status of the document from deleted to something else
    Is there any BAPI exist by which i can change the status (rbstat) from deleted to parking or somthing else. i am trying to change it thorugh BAPI_INCOMINGINVOICE_CHANGE , but its not working.
    Please help me to find such BAPI
    regards
    Mudit

    Hi Lan,
    you can print with SDK using following code :
    ReportLayoutsService oReportLayoutService = SBO_Company.GetCompanyService().GetBusinessService(ServiceTypes.ReportLayoutsService);
    ReportLayoutPrintParams oReporPrintParams = oReportLayoutService.GetDataInterface(ReportLayoutsServiceDataInterfaces.rlsdiReportLayoutPrintParams);
    ReportParams oReportParam = oReportLayoutService.GetDataInterface(ReportLayoutsServiceDataInterfaces.rlsdiReportParams);
    oReportParam.ReportCode = "QUT1";
    DefaultReportParams oReportParaDefault  = oReportLayoutService.GetDefaultReport(oReportParam);
    oReporPrintParams.LayoutCode = oReportParaDefault.LayoutCode;
    oReporPrintParams.DocEntry = 337;
    oReportLayoutService.Print(oReporPrintParams);
    I tried to print an unprinted document but it didn't change the printed flag at all ( in / active BP ). So unfortunately it doesn't work.
    regards,
    Maik

  • Very urgent prices to be populated from products form

    hi
    ive included the price list for all products in products form in opportunity page i want to populate it to the purchase price of product revenue section wat s the solution pl help me
    [email protected]
    thanxs in advance

    hi bob
    thank u in my case im using two types of prices INR Price and USD Price
    ive created 2 custom fields in products form , also created new field in revenue section also then
    i created a workflow with condition PRE('<ProductId>')<>[<ProductId>] for revenue record
    Actions
    I've used JoinFieldValue('<Product>',[<ProductId>],'<cInr_ITAG>') for the new revenue field but not working
    pl refer any solution

  • Urgent help needed: RFC messages from R3 system are not arriving to the XI

    Hello,
    We have a RFC to RFC scenario in which when we execute a function module it sends a message to XI through a sender RFC communication channel but the message is not coming to XI.
    I checked the TCP IP connection between R3 and XI the test connection is working fine.
    This scenario was working fine so far but since yesterday we are facing this problem.

    Hi Rajeev,
    in r/3 in transaction sm58 see the entries and see what error is happening to your RFC entries.
    in XI in RWB in comm channel monitoring, just check your sender RFC adapter......i think your sender rfc comm channel is in error.........rectify this comm chnnel error in ID...........save and activate everything..............then from r/3 reexucute your SM58 entry for RFC.
    Regards,
    Rajeev Gupta

Maybe you are looking for

  • "Keys out of order" message in Disk Utility

    Hi, I was just doing a regular maintenance check with Onyx and to my surprise it said I needed to repair the disk using the Installer DVD and Disk Utility. I did this and again to my surprise I seem to have a problem. After the whole processs is comp

  • Flash cs3 simple question

    I know this is a very simple question, but i just dont know what im doing wrong Im trying to add a script on a movie clip, but everytime i click on the movie clip then click on the actions i get a message "Current selection cannot have actions applie

  • OWB-Creation of sequence

    I tried creating a sqquence with increment by -1. It got deployed but failed during execution of the mapping . Please explain how I can achieve a sequence which would start with 0 and then decrements by 1 i.e. 0,-1,-2,-3,...... Thanks

  • Can i update ios 7 to ios 8

    Hello Sir/Madam                          Can i update ios7 to ios8?

  • OK!! I give up!!

    I didn't want to do this but here is my code: import java.awt.*; import java.applet.*; import java.awt.event.*; public class Numbers extends Applet implements AdjustmentListener, ItemListener, ActionListener{      private TextField value;      privat