Function module does not update the storage location in delivery

Hello,
I've been trying to use SD_DELIVERY_UPDATE_PICKING to update the storage location in SD return deliveries, without any success. Any clues? The FM works fine when it comes to updating the picking quantity, but the storage location issue still persists.
Thanks in advance,
Joao

Hi Joao,
I have the same problem. I tried to find the FM SD_OUTB_DELIVERY_CHANGE  but couldn't find it. Have you by any change specified the incorrect FM name here? If yes, can you please communicate the correct FM name?
Regards,
Divyaman

Similar Messages

  • Unable to create rule Error:Function Module does not meet the workflow conv

    Hi Workflow experts,
    Could any one help me with rule creation. Below is my Function Module Interface.
    ""Local Interface:
    *"  TABLES
    *"      AC_CONTAINER STRUCTURE  SWCONT OPTIONAL
    *"      ACTOR_TAB STRUCTURE  SWHACTOR OPTIONAL
    *"  EXCEPTIONS
    *"      NOBODY_FOUND
    The function module test is successful with all required conventions for workflow but while i try to create a rule with the funtion module i get the error "Function Module does not meet the workflow conventions"
    I Also have included the following in FM
    INCLUDE <cntn01>.
    Any suggestions would be helpful. Thanks in Advance,
    Imran

    Hi,
    I am not sure whether the rule accepts the optional flag. Remove the optional flag for the tables parameters and try again. According to the documentation you have implemented the right interface. It might be the issue with the tables parameter being optional.
    Hope this helps,
    Sudhi

  • Save_text Function module is not update the data in the notification, Help!

    Here is the code snippet, does anybody know why? Thanks!
    form update_root_causes
       tables p_it_root_causes type zqmtxt_t
       using notif_no.
      data:
          ls_header type thead,
          lit_lines type standard table of tline,
          lwa_line like line of lit_lines,
          lv_index type i value 0.
      field-symbols:
          <fs> like line of p_it_root_causes.
    fill the header
      ls_header-tdobject = 'QMEL'.
      ls_header-tdname = notif_no.
      ls_header-tdid = 'LTXT'.
      ls_header-tdspras = sy-langu.
    fill the lines table
    fill from line #2 ...
      lv_index = 0.
      loop at p_it_root_causes assigning <fs>.
        if lv_index gt 0.
          lwa_line-tdformat = '*'.
          lwa_line-tdline = <fs>-qmtxt.
          append lwa_line to lit_lines.
        endif.
        lv_index = lv_index + 1.
      endloop.
    update the save_text
      call function 'SAVE_TEXT'
        exporting
          header          = ls_header
          insert          = 'x'
        tables
          lines           = lit_lines.
      call function 'COMMIT_TEXT'
       exporting
         object                = ls_header-tdobject
         name                  = ls_header-tdname
         id                    = ls_header-tdid
         language              = ls_header-tdspras.
    endform.                    " UPDATE_ROOT_CAUSES

    Hi Anthony,
    Two things you can check:
    1. Ensure the notification number you are passing is valid, i.e. it has the requisite number of leading 0s (apply CONVERSION_EXIT_ALPHA_INPUT to ensure to the field notif_no before passing it to ls_header)
    2. In the function module to SAVE_TEXT - INSERT should be 'X' not 'x'
    Please check.
    Adi

  • WS_DELIVERY_UPDATE Function Module is not updating the Handling unit

    Hi Experts,
    I am using the Function Module WS_DELIVERY_UPDATE  for PGI and packing outbond delivery . I am getting the PGI date , Route.
    but i am not getting the time in delivery field-WAUHR and i am getting the message 'Reqiured HU could not be found'.
    Please find the attach code below:
    FORM update_packing  USING wa_index.
      wa_index = wa_index + 1.
      w_track = int_delivery_data-zn12+0(20).
      itaverko-exidv       =  w_track.
      ltahus-exidv         =  w_track.
      itaverko-vhilm       =  p_shpmtl.  " from screen select parm
      ltahus-vhilm         =  p_shpmtl.
      w_brgew = int_delivery_data-brgew.
      SHIFT w_brgew LEFT DELETING LEADING ' '.
      itaverko-brgew                 =  w_brgew.
      ltahus-brgew                   =  w_brgew.
      SHIFT int_delivery_data-inhalt LEFT DELETING LEADING ' '.
      w_fcosts = int_delivery_data-inhalt.
      SHIFT w_fcosts LEFT DELETING LEADING ' '.
      itaverko-inhalt                 =  w_fcosts.
      ltahus-inhalt                   =  w_fcosts.
      itaverko-gewfx                  =  int_delivery_data-gewfx.
      ltahus-gewfx                    =  int_delivery_data-gewfx.
      INSERT itaverko INDEX wa_index.
      INSERT ltahus INDEX  wa_index.
    ENDFORM.                    " UPDATE_PACKING
    FORM update_delivery .
      CLEAR :   i_vbkok,ita_prot.
      REFRESH : i_vbpok,ita_prot.
      CLEAR: d_return.
      CLEAR:  ef_error_in_item_deletion_0 ,
              ef_error_in_pod_update_0 ,
              ef_error_in_interface_0 ,
              ef_error_in_goods_issue_0 ,
              ef_error_in_final_check_0 .
      READ TABLE int_delivery_data INDEX wa_index.
      IF sy-subrc = 0.
    carry out goods issue
        i_vbkok-vbeln_vl = int_delivery_data-vbeln.  " Delivery nbr
        i_vbkok-vbeln    = int_delivery_data-vbeln.  " Pick Order
        i_vbkok-vbtyp_vl =  int_delivery_data-vbtyp.
        i_vbkok-wabuc = 'X'.       " post goods movement automatically
        L_VBKOK-KOMUE = 'X'.    " overwrite delvry qty with picking qty
       CONCATENATE 'US' INT_DELIVERY_DATA-ZN13 INTO W_ROUTE.
        i_vbkok-route = int_delivery_data-route.
        i_vbkok-kzroute = 'X'.
        i_vbkok-spe_kzgeoroute = 'X'.
        i_vbkok-packing_final  =  'X'.
       i_vbkok-wabuc  =  'X'.
        w_in_date = int_delivery_data-dattm+0(8).
        i_vbkok-wadat      =  w_in_date.
       L_VBKOK-WADAT_IST  =  W_in_DATE.
       w_gi_time       =  int_delivery_data-dattm+8(6).
        i_vbkok-wauhr          =  w_gi_time.
       w_track = int_delivery_data-zn12+0(20).
       t_sernr = w_track.
    SET UPDATE TASK LOCAL and Perform PGI.
        CALL FUNCTION 'WS_DELIVERY_UPDATE'
          EXPORTING
              vbkok_wa           = i_vbkok
              synchron           = 'X'
              no_messages_update = ' '
             update_picking     = 'X'
             commit             = 'X'
              delivery           = int_delivery_data-vbeln
              nicht_sperren      = 'X'
              if_error_messages_send_0 = space
           IT_SERNR_UPDATE    = T_SERNR
          IMPORTING
              ef_error_any_0              = ef_error_any_0
              ef_error_in_item_deletion_0 = ef_error_in_item_deletion_0
              ef_error_in_pod_update_0    = ef_error_in_pod_update_0
              ef_error_in_interface_0     = ef_error_in_interface_0
              ef_error_in_goods_issue_0   = ef_error_in_goods_issue_0
              ef_error_in_final_check_0   = ef_error_in_final_check_0
              ef_error_sernr_update       = ef_error_sernr_update
          TABLES
    *"      VBPOK_TAB STRUCTURE  VBPOK OPTIONAL
             prot                         = ita_prot
              verko_tab                   = itaverko        "  STRUCT VERKO
    *"      VERPO_TAB STRUCTURE  VERPO OPTIONAL
    *"      VBSUPCON_TAB STRUCTURE  VBSUPCON OPTIONAL
          IT_VERPO_SERNR               = T_VERPO_SERNR
    *"      IT_PACKING STRUCTURE  REPACK_HU_WM OPTIONAL
    *"      IT_PACKING_SERNR STRUCTURE  HUM_REP_SERNR OPTIONAL
    *"      IT_REPACK STRUCTURE  HUM_REPACK OPTIONAL
    *"      IT_HANDLING_UNITS STRUCTURE  HUM_REHANG_HU OPTIONAL
    *"      IT_OBJECTS STRUCTURE  PGR_OBJECTS OPTIONAL
            et_created_hus               = ltahus  "STRUCTURE  VEKPVB
          EXCEPTIONS
              error_message = 1
              OTHERS        = 2.
        IF sy-subrc <> 0.
        ENDIF.
        CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
        EXPORTING
          WAIT          =
        IMPORTING
          RETURN        =
      ENDIF.
    ENDFORM.                    " UPDATE_DELIVERY
    Could please help on this.
    Thanks,
    Rohit
    Edited by: Rohit Sharma on Jul 24, 2009 3:25 PM
    Edited by: Rohit Sharma on Jul 24, 2009 3:29 PM

    Hi Joao,
    I have the same problem. I tried to find the FM SD_OUTB_DELIVERY_CHANGE  but couldn't find it. Have you by any change specified the incorrect FM name here? If yes, can you please communicate the correct FM name?
    Regards,
    Divyaman

  • Error in ERM: Function module does not exist

    Hi all,
    Lately, we are experiencing a frequent error in ERM (5.3 SP 15.0) that we had not had before. We are unsure what caused the error. The message displayed to the user is "Unhandled error". The log error message is "Message Code is 651 Messsage Details Function module  does not exist Message Type is E" (see full logs below).
    The error occurs for example, when users are trying to generate derived roles after saving the org values for the derived role during the methodology process, or when administrators are trying to update the impacted derived roles after for org value mappings.
    Has anyone experienced this or someting similar before? Any ideas what could be the reason here?
    Thanks!
    Patrick
    Edited by: Patrick Weyers on Sep 15, 2011 9:36 AM

    Log extract:
    2011-09-15 09:05:15,103 [SAPEngine_Application_Thread[impl:3]_18] ERROR Message Code is 651 Messsage Details Function module  does not exist Message Type is E
    java.lang.Throwable: Message Code is 651 Messsage Details Function module  does not exist Message Type is E
         at com.virsa.re.service.sap.dao.ManageAuthDataDAO.getAuthorizationData(ManageAuthDataDAO.java:1064)
         at com.virsa.re.bo.impl.AuthorizationDataBO.getNewTransactionObjects(AuthorizationDataBO.java:821)
         at com.virsa.re.role.actions.AuthAuthorizationDataAction.addObjsForNewTxns(AuthAuthorizationDataAction.java:3527)
         at com.virsa.re.role.actions.AuthAuthorizationDataAction.reloadTransactions(AuthAuthorizationDataAction.java:4128)
         at com.virsa.re.role.actions.AuthAuthorizationDataAction.execute(AuthAuthorizationDataAction.java:157)
         at com.virsa.framework.NavigationEngine.execute(NavigationEngine.java:273)
         at com.virsa.framework.servlet.VFrameworkServlet.service(VFrameworkServlet.java:230)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.runtime.RequestDispatcherImpl.doWork(RequestDispatcherImpl.java:321)
         at com.sap.engine.services.servlets_jsp.server.runtime.RequestDispatcherImpl.forward(RequestDispatcherImpl.java:377)
         at com.virsa.framework.servlet.VFrameworkServlet.service(VFrameworkServlet.java:286)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.runtime.FilterChainImpl.runServlet(FilterChainImpl.java:117)
         at com.sap.engine.services.servlets_jsp.server.runtime.FilterChainImpl.doFilter(FilterChainImpl.java:62)
         at com.virsa.comp.history.filter.HistoryFilter.doFilter(HistoryFilter.java:43)
         at com.sap.engine.services.servlets_jsp.server.runtime.FilterChainImpl.doFilter(FilterChainImpl.java:58)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:384)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:386)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:364)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:1039)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:265)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:175)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(AccessController.java:219)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:104)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:176)
    2011-09-15 09:05:15,105 [SAPEngine_Application_Thread[impl:3]_18] ERROR com.virsa.re.role.actions.AuthAuthorizationDataAction
    java.lang.Throwable: java.lang.NullPointerException
         at com.virsa.re.service.sap.dao.ManageAuthDataDAO.getAuthorizationData(ManageAuthDataDAO.java:1084)
         at com.virsa.re.bo.impl.AuthorizationDataBO.getNewTransactionObjects(AuthorizationDataBO.java:821)
         at com.virsa.re.role.actions.AuthAuthorizationDataAction.addObjsForNewTxns(AuthAuthorizationDataAction.java:3527)
         at com.virsa.re.role.actions.AuthAuthorizationDataAction.reloadTransactions(AuthAuthorizationDataAction.java:4128)
         at com.virsa.re.role.actions.AuthAuthorizationDataAction.execute(AuthAuthorizationDataAction.java:157)
         at com.virsa.framework.NavigationEngine.execute(NavigationEngine.java:273)
         at com.virsa.framework.servlet.VFrameworkServlet.service(VFrameworkServlet.java:230)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.runtime.RequestDispatcherImpl.doWork(RequestDispatcherImpl.java:321)
         at com.sap.engine.services.servlets_jsp.server.runtime.RequestDispatcherImpl.forward(RequestDispatcherImpl.java:377)
         at com.virsa.framework.servlet.VFrameworkServlet.service(VFrameworkServlet.java:286)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.runtime.FilterChainImpl.runServlet(FilterChainImpl.java:117)
         at com.sap.engine.services.servlets_jsp.server.runtime.FilterChainImpl.doFilter(FilterChainImpl.java:62)
         at com.virsa.comp.history.filter.HistoryFilter.doFilter(HistoryFilter.java:43)
         at com.sap.engine.services.servlets_jsp.server.runtime.FilterChainImpl.doFilter(FilterChainImpl.java:58)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:384)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:386)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:364)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:1039)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:265)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:175)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(AccessController.java:219)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:104)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:176)

  • Application Compatibility does not update the database.

    Hi,
     I am using application compatibility manager 6.1, and SQL server 2012 as database. ACT run ok and it create the XML file but it does not update the database at "C:\Program Files\Microsoft SQL Server\MSSQL11.SQLEXPRESS\MSSQL\DATA" location.
    I can see the valid XML file but somehow the MDF file of database is not updated so my ACT windows does not showing anything on it.
    Any Help would be appreciated.
    Thanks
    Rakesh Patel
    rakesh patel

    Hi Rakesh,
    I am not sure if you have resloved your issue.
    But for helping others to know what to do if they meet the same issue as yours, I consider to mark the post as answered.
    If you would like further assistance, please post back and we will be always here to help you.
    Any concern about this mark behavior, you can just unmark it.
    Thanks for your understanding.
    Regards,
    Kelvin hsu
    TechNet Community Support

  • XI datasources function modules does not exist after BW upgrade to 7.3

    We have recently upgraded our dev BI system to 7.3
    During our testing phase we found that we are unable to load data coming from XI system.
    When we checked the functional modules of the XI(web services)
    datasources we found that the function modules does not exist in the system.
    Eg : For our GECARS datasource we have 2 funcitonal modules
    1. /BIO/QI6AZXH_ZIFIGECARS
    2. /BIO/QI6AZXH_ZIFIGECARS_RFC (delta function module)
    we have activated resp datasource and found that code for
    /BIO/QI6AZXH_ZIFIGECARS exist now but we are facing issues with RFC
    funciton modules (/BIO/QI6AZXH_ZIFIGECARS_RFC )
    To put it in simple terms we are facing issues with Dev BI since upgradeto 7.3 with respect to RFC and non-availability of function modules.
    Kindly help us in resolving this.
    Thanks,
    Kiran

    Hello Kiran,
    Have you found the reason for the non existence of the FM in the system after the upgrade?
    Have you found any alternative? I hope you would have created an OSS message, if so whats the response have you got?
    Kindly let me know as I am experiencing similar issue where one of the FM (RSDRC_MULTIPROV_GET_MAPPING) does not exist in BI system after the upgrade.
    Regards,
    Vinoth V

  • My Iphone5 does not show the picture location after upgrading to ios 7.0.4 - why?

    my Iphone5 does not show the picture location after upgrading to ios 7.0.4 - why?

    I change Settings>Privacy>Location Services>Camera to OFF and then ON and the locations start to appear !!!!.
    It seems to be Apple bug.
    Thanks for you efforts

  • Batch Split in OBD & billed for the entire Quantity .RG1  register does not update the excise values

    Hi All,
    I am new here . We have batch split in Delivery and 601 happens for the individual batches and billing we bill for the entire quantity . Hence the RG1 does not update the excise values for the batches and it is showing as zero (upon extraction in J2I6). Upon research through the program the latest note which i presume is patched
    The latest note is N158234 which does not show in the program but seems have been patched considering we are using the Latest version of SAP .
    As you see above in the billing we have billed for the whole quantity but RG1 does not update for the since the batches are zero .
    My programmer says because of some note related to cancellation where it says about values H & J in vbfa table and due to which program does not go through the Note for the batch split .
    Now i have checked few other projects in my company and they all seems to be following the program . So i am wondering whether my process or some customization is missing .
    Sales order (no batch determination)  , in delivery the batches are picked through wm to and batch split happens in the delivery . Then billling for the whole quantity . We have automatic excise invoice creation enabled so no J1IIN .
    Can somebody help me .
    Thank you

    My programmer says because of some note related to cancellation where it says about values H & J in vbfa table and due to which program does not go through the Note for the batch split
    Which field (H & J) they were referring in VBFA ?
    i have checked few other projects in my company and they all seems to be following the program
    How about the other projects' values in VBFA where your techinical team is guessing some issue.  Have you compared this?
    Since you have already the note 158234 implemented in your system, ideally, you should not face any issue.
    G. Lakshmipathi

  • Function module does not exist in ECC 6.0

    Hi All,
    These two below function module does not exist in ECC 6.0 but exist in 4.6.Could you please let me know replacement of these two's.
    FI_DOCUMENT_ARCH_READ_SINGLE
    CHECK_IBAN_ACTIVE
    Thanks
    Mohit

    Hi,
    Thanks for your reply.Could you please give me example that how to use it.
    Thanks
    Mohit

  • Approval Workflow does not update the Content Approval status if started automatically

    Hi,
    I’m using a simple Approval Workflow associated with
    Content Approval on site pages. It works fine when I set it to be started manually (by using
    Allow this workflow to be manually started by an authenticated user with Edit Item permissions
     option) and on the completion of the workflow the
    Content Approval status is updated accordingly. But when I set it to be started automatically (by using
    Start this workflow when a new item is created
     / Start this workflow when an item is changed
    options), it does not updates the Content Approval status. Note that I’ve set the
    Update the approval status after the workflow is completed (use this workflow to control content approval)
    option to true.
    Regards

    Hello,
    It is recommended to select "Start this workflow to approve publishing a major version of an item" when you want to use the workflow to manage content approval for
    a library.
    According to the Notes for “Enable Content Approval” option in
    this reference:
    If you are using this Approval workflow to manage content approval (moderation) for a library, and you selected the Start this workflow to approve publishing a major version
    of an item check box on the Add a Workflow page..
    If you did not select the Start this workflow to approve publishing a major version of an item check box on the Add a Workflow page because you do not want this workflow to
    be the default content approval workflow for a library, you can select the Update the approval status (use this workflow to control content approval) check box to make this workflow a secondary content approval workflow that specific users can
    start manually.
    That means having an approval workflow start automatically when a document is changed or created is not a good practice when you want to use the workflow to manage
    content approval for a library. You should either select "Start this workflow to approve publishing a major version of an item" or give users the option to start the workflow manually at the time they want to submit for an approval.
    Thanks & Regards.
    Lily Wu

  • Hi.  I iMac, Mac OS X 10.6.8  Lately it does not update the program.  Writes the following: "Unable to install the update iTunes. An unexpected error occurred." What you need to do that right, that programs can be updated again?

    I iMac, Mac OS X 10.6.8  Lately it does not update the program.  Writes the following: "Unable to install the update iTunes. An unexpected error occurred." What you need to do that right, that programs can be updated again?

    you will have the most up to date itunes available for your os 10.6.8. to get a newer version you will have to upgrade to a newer os.

  • Updateing CustomXML scheema from sharepoint 2010 in VBA does not update the DIP (Document information panel)

    I need to update a schema from Sharepoint with namespace
    http://schenas.microsoft.com/office/2006/metada/contentType when i am opening a Word document. I am using VBA to do so. When i have made the Changes it does not update the DIP, not until i save the document.
    Is there a way to update the dip using VBA.
    /Ola
    olha

    Hi,
    This is the forum to discuss questions and feedback for Microsoft Office client. For any VBA related issues, I would suggest you to post in related MSDN forum -
    Microsoft Office for Developers, to get better support experience:
    https://social.msdn.microsoft.com/Forums/office/en-US/home?category=officedev
    The reason why we recommend posting appropriately is you will get the most qualified pool of respondents, and other partners who read the forums regularly can either share their knowledge or learn from your interaction with us. Thank you for your understanding.
    Regards,
    Ethan Hua
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Delivery is to be done at the end user location not at the storage location

    Hai Gurus.
       I have a problem
    I am working for a construction industry.. I had a storage location at say" X":. And in case of emergency for the material to the end user at different locations, delivery is to be done at the end user location not at the storage location.. Where to give the end user location address .As delivery address in PO item details will be plant address. pl help
    regards
    chandrasekhar

    As i underdstand from your  description of issue .You dont want to recive the material in the storage location of your  main plant but you want to recive the goods directly to the end user from the vendor.This is typical scenario of Third party PO ..so kindly traise third part PO to vendor ..by changing the item category ...and so the delivery addfres popolutaed in ur PO will be directly from the ship to address from your sales order.rathewr than the storgae location you wd have specified in ur material master

  • Reschedule does not update the schedule line

    Dear All expert,
    After upgrade to ECC6.0, the reschedule does update the schedule lines eventhough it list all the required to be update in the list.
    As I checked , it update the ekpo successfully but does not update the eket.
    Is there any suggestion ?

    Hi,
    On the initial screen of V_V2
    Remove tickmark of SIMULATION, Then it will update schedule lines in sales document
    Kapil

Maybe you are looking for

  • IPhone 4 battery still draining fast after ios 5.0.1 update

    5.0.1 update did not help, my battery still drains just as fast as it did on 5.0. My phone used to last 2 days no problem, now it lasts about 6 hours, I could go to bed at 5% and wake up with 3%, now if I got to bed with 25% it's dead by morning. I h

  • How to change budget year in PO

    Hi How to change budget year in PO Thanks Ajit

  • Blackberry Traffic for Blackberry 10 OS

    I live in Los Angeles.  When using the freeway system here, many times there are three, even four, different freeways to take to get to one location.  Many times one freeway is jammed, and alternate routes are a must.  Blackberry Traffic would let yo

  • Shadows on a green screen

    Hello Recently i saw a clip where the main character was dancing against a white background (i.e. green screen ) curiously there was a black silhouette of the same character kind of mimicking her- like shadow but not in sync. How do you achieve this

  • MX02 Mini Questions (2)

    First off, this is really for people who already own a Matrox MXO2 Mini or are familiar with it. I just purchased one, and am using it with FCP 6 and a consumer 32" 1080p 120Hz LCD set from Samsung (and yes, I do know that the 120Hz is the actual ref