RE: Auto-close all OPEN/Partially open Purchase Order

Hi,
Is there a standard program that will perform auto-closing of all open or partially open PO whcih does not have GR for the past 3 months?
if no, if I need to customize an ABAP to close it off, which are the tables needed to be changed?
EKKO, EKPO, EKET and what other tables?
Thanks
bye

Hi,
i think there is a exit to close POs by defined criterias.
Manually u could use transaction mass (bus2012) and set the delivered mark in the ekpo table.
regards, Paul.

Similar Messages

  • My device some times untel i update to ios7 when i open the device donot open untile i close all device and open agein and when i make call  i recive massege and the device donot close by itselfe

    My device some times untel i update to ios7 when i open the device donot open untile i close all device and open agein and when i make call  i recive massege and the device donot close by itselfe

    LadySarah
    You cannot upgrade from v6 to v7 without purchasing iLife 08.
    Can you give more details about your crashing issue. Make of camera etc.,
    You can start with the troubleshooting basics:
    1. Repair Permissions using Disk Utility
    2. Delete the com.apple.iPhoto.plist file from the home / library / preferences folder. You'll need to reset your User options afterwards.
    3. Create a new account (systempreferences -> accounts), create an iPhoto library there and see if the problem is repeated. If it is, then a re-install of the app might be indicated. If it's not, then it's likely the app is okay and the problem is something in the main account.
    Regards
    TD
    Regards
    TD

  • Cancel all items in the purchase order

    we need a program to cancel all items in the purchase order   .
    exists any BAPI or funcion or metod to do this ?
    becuase if we to do this for the TC ME22N we need to do this item by item.   
    our programmer  suggest us an update of the table EKPO

    Here is an example program using the BAPI to set the deletion indicator on all line items of a PO. 
    report zrich_0001.
    data:   return type table of bapiret2 with header line,
            poheader type bapimepoheader,
            poheaderx type bapimepoheaderx,
            poitem type table of  bapimepoitem with header line,
            poitemx type table of  bapimepoitemx with header line.
    data: iekpo type table of ekpo with header line.
    parameters: p_ebeln type ekpo-ebeln.
    start-of-selection.
      poheader-po_number = p_ebeln.
    clear iekpo.  refresh iekpo.
      select * into table iekpo from ekpo
                     where ebeln = p_ebeln.
      loop at iekpo.
        poitem-po_item = iekpo-ebelp.
        poitem-delete_ind = 'X'.
        append poitem.
        poitemx-po_item = iekpo-ebelp.
        poitemx-po_itemx   = 'X'.
        poitemx-delete_ind = 'X'.
        append poitemx.
      endloop.
      call function 'BAPI_PO_CHANGE'
           exporting
                purchaseorder = p_ebeln
                poheader      = poheader
                poheaderx     = poheaderx
           tables
                return        = return
                poitem        = poitem
                poitemx       = poitemx.
      commit work.
      loop at return.
        write:/ return.
      endloop.
    Regards,
    RIch Heilman

  • Once I close all windows and try to open another I get a message saying"Firefox is still running, you must close all browers before opening a new window. Why is this happening? I have the 3.5.10 Version

    I close all Firefox windows. When I try to open another window later I get a message telling me that Firefox is still running and that I need to close all windows or restart my computer. I have this about 3 times a day this past week but prior to that it was maybe every one or 2 weeks. I had the 3.5.10 Version of Firefox, but have just updated to see if this stops this from happening. But what do I do if it doesn't stop it?

    There are a few possible causes for that error, for details see [[Firefox is already running but is not responding]]

  • Distinguishing Open and Closed Purchase Orders

    We have a BI query which shows all Purchase Orders split by line item.
    We would like to be able to determine which of those Purchase Order line items is closed within the core SRM system and which are still open.
    Is anybody aware of an InfoObject that would allow us to do that?
    Any help would be much appreciated.
    Thanks,
    Positive Parrot

    You need to ask your functional team or business how they close Purchase Orders.  Most companies I have been at never close the orders or line items.
    At one company, I had an Open Order report requirement and it was messy.  I had to identify which line items still had an open quantity and then load those line items only into a cube.
    I wrote a ton of code to do this and had a few ODS objects to help out.  This wasn't an easy task.
    Hopefully for your sake, your company uses the 0COMPL_DEL (Delivery Completion) characteristic or 0FINAL_INV (Final Invoice Recieved indicator) characteristic and you can base your decision on the values in those fields. 
    I am assuming you are looking at the 2LIS_02_SCL extractor for Purchasing Schedule Lines....
    Good luck,
    Brian

  • Open items for purchase order its very urgent

    hi
    my requirement is to write extract program for purchase order(me21) to extract only open items.
    please provide sample code its very urgent.
    thanks in advance.
    points will be rewarded.
    thanks
    hari prasad reddy

    check the below report :
    REPORT ZMM_OPEN_PO_REPORT no standard page heading
                              line-size 255
                              message-id zwave.
    ======================================================================
    Program Name : ZMM_OPEN_PO_REPORT                                    *
    Description  : This report displays all Open PO Items and output     *
                   would be PO Number,Material number and so on          *
    Author       : Seshu                                                 *
    Date         : 01/24/2007                                            *
    MODIFICATION HISTORY                                                 *
    DATE    | AUTHOR   | CHANGE #   | DESCRIPTION OF MODIFICATION        *
    --|||--
    01/24/07| Seshu    | DEVK921979 | Initial                            *
    D A T A  D E C L A R A T I O N   P A R T                         ***
    type-pools
    type-pools : slis.
    Tables
    tables : ekko, " Purchase order Header
             ekpo, " Purchase order Item
             marc. " Material with Plant data
    Internal table for output.
    data : begin of i_output occurs 0,
           ebeln like ekko-ebeln,
           matnr like ekpo-matnr,
           end of i_output.
    ALV Data declaration.
    data : v_repid like sy-repid.
      ALV Function Module Variables
    DATA: gs_layout type slis_layout_alv,
          g_exit_caused_by_caller,
          gs_exit_caused_by_user type slis_exit_by_user.
    DATA: gt_fieldcat    type slis_t_fieldcat_alv,
          gs_print       type slis_print_alv,
          gt_events      type slis_t_event,
          gt_list_top_of_page type slis_t_listheader,
          g_status_set   type slis_formname value 'PF_STATUS_SET',
          g_user_command type slis_formname value 'USER_COMMAND',
          g_top_of_page  type slis_formname value 'TOP_OF_PAGE',
          g_top_of_list  type slis_formname value 'TOP_OF_LIST',
          g_end_of_list  type slis_formname value 'END_OF_LIST',
          g_variant LIKE disvariant,
          g_save(1) TYPE c,
          g_tabname_header TYPE slis_tabname,
          g_tabname_item   TYPE slis_tabname,
          g_exit(1) TYPE c,
          gx_variant LIKE disvariant.
    data : gr_layout_bck type slis_layout_alv.
    Ranges
    ranges r_eindt for eket-eindt.
    initialization.
    v_repid = sy-repid.
    start-of-selection.
    Get the data from EKKO ,EKPO and MARC Table
    perform get_data_tables.
    end-of-selection.
    display the data in the form of ALV
    perform display_data.
    *&      Form  get_data_tables
          Get the data from EKKO,EKPO and MARC Table
    FORM get_data_tables.
    clear : i_output.
    refresh : i_output.
    fill the dates in ranges
    r_eindt-low = sy-datum - 7.
    r_eindt-high = sy-datum + 14.
    r_eindt-option = 'BT'.
    r_eindt-sign = 'I'.
    append r_eindt.
    Get the data from EKKO,EKPO and EKET Tables
    select aebeln bmatnr into table i_output
                           from ekko as a inner join
                                ekpo as b on aebeln = bebeln
                                inner join marc as c on cmatnr = bmatnr
                                inner join mara as d on dmatnr = bmatnr
                                inner join eket as e on eebeln = aebeln
                                               and   eebelp = bebelp
                                where c~beskz = 'E'
                                and   c~werks = '1000'
                                and   d~mtart = 'FERT'
                                and   b~loekz = space
                                and   b~elikz = space
                                and   e~eindt in r_eindt.
    if sy-subrc ne 0.
    message e000(zwave) with 'No open purchase order found'.
    endif.
    ENDFORM.                    " get_data_tables
    *&      Form  display_data
          text
    FORM display_data.
    Fill the Fiedlcat
      PERFORM fieldcat_init  using gt_fieldcat[].
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
       EXPORTING
       I_INTERFACE_CHECK                 = ' '
       I_BYPASSING_BUFFER                =
       I_BUFFER_ACTIVE                   = ' '
         I_CALLBACK_PROGRAM                = v_repid
       I_CALLBACK_PF_STATUS_SET          = ' '
        I_CALLBACK_USER_COMMAND           = g_user_command
       I_CALLBACK_TOP_OF_PAGE            = ' '
       I_CALLBACK_HTML_TOP_OF_PAGE       = ' '
       I_CALLBACK_HTML_END_OF_LIST       = ' '
       I_STRUCTURE_NAME                  =
       I_BACKGROUND_ID                   = ' '
       I_GRID_TITLE                      =
       I_GRID_SETTINGS                   =
       IS_LAYOUT                         = gr_layout_bck
          IT_FIELDCAT                       = gt_fieldcat[]
       IT_EXCLUDING                      =
       IT_SPECIAL_GROUPS                 =
       IT_SORT                           =
       IT_FILTER                         =
       IS_SEL_HIDE                       =
       I_DEFAULT                         = 'X'
        I_SAVE                            = g_save
        IS_VARIANT                        =
       IT_EVENTS                         =
       IT_EVENT_EXIT                     =
       IS_PRINT                          =
       IS_REPREP_ID                      =
       I_SCREEN_START_COLUMN             = 0
       I_SCREEN_START_LINE               = 0
       I_SCREEN_END_COLUMN               = 0
       I_SCREEN_END_LINE                 = 0
       IT_ALV_GRAPHICS                   =
       IT_ADD_FIELDCAT                   =
       IT_HYPERLINK                      =
       I_HTML_HEIGHT_TOP                 =
       I_HTML_HEIGHT_END                 =
       IT_EXCEPT_QINFO                   =
    IMPORTING
       E_EXIT_CAUSED_BY_CALLER           =
       ES_EXIT_CAUSED_BY_USER            =
        TABLES
          T_OUTTAB                          = i_output
       EXCEPTIONS
         PROGRAM_ERROR                     = 1
         OTHERS                            = 2
      IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    ENDFORM.                    " display_data
    *&      Form  fieldcat_init
          text
         -->P_GT_FIELDCAT[]  text
    FORM fieldcat_init USING  e01_lt_fieldcat type slis_t_fieldcat_alv.
      DATA: LS_FIELDCAT TYPE SLIS_FIELDCAT_ALV.
    Purchase order number
      CLEAR LS_FIELDCAT.
      LS_FIELDCAT-FIELDNAME    = 'EBELN'.
      LS_FIELDCAT-ref_fieldname = 'EBELN'.
      LS_FIELDCAT-ref_tabname = 'EKKO'.
      LS_FIELDCAT-TABNAME    = 'I_OUTPUT'.
      ls_fieldcat-seltext_L = 'Purchase Order'.
      ls_fieldcat-seltext_M = 'Purchase Order'.
      ls_fieldcat-seltext_S = 'Purchase Order'.
      APPEND LS_FIELDCAT TO E01_LT_FIELDCAT.
    Material #
      CLEAR LS_FIELDCAT.
      LS_FIELDCAT-FIELDNAME    = 'MATNR'.
      LS_FIELDCAT-ref_fieldname = 'MATNR'.
      LS_FIELDCAT-ref_tabname = 'EKPO'.
      LS_FIELDCAT-TABNAME    = 'I_OUTPUT'.
      ls_fieldcat-seltext_L = 'Material'.
      ls_fieldcat-seltext_M = 'Material'.
      ls_fieldcat-seltext_S = 'Material'.
      APPEND LS_FIELDCAT TO E01_LT_FIELDCAT.
    ENDFORM.                    " fieldcat_init

  • Open list of purchase orders?

    Hi all, any idea if there is a standard report I can use to pull out all purchase orders which still have a quantity/vanue left to deliver? Effectively open purchase orders? If so does anyone know which one it is?

    Hi,
    By using Delivery completed indicator, we can list out all open purchase orders.
    ELIKZ - Delivery completed indicator
    In the EKPO table, maintain ELIKZ net equal to 'X' and give other parameters like plant code, material group etc.
    Then you will get all open PO's for that given combination.
    Thanks & regards
    Ravi kumar

  • How to create partially received Purchase Order using PDOI?

    Hello All,
    We are using 12.1.3
    We have requirement to create PO with partially received quantity. Can it be possible through Purchase Order Import Interface program? I can not see any column there in po_line_location_interface table for quantity that has been received or shipped. So can anybody tried this scenario. If please revert back with the answer this is very urgent.
    Thanks in Advance...!!!
    Amol

    Thanks Sandeep,
    But PDOI allows us to enter quantity_billed on the PO. Have you ever faced such scenarios. Because I am doing conversion and I got stuck at the partial receiving.
    Also I have to do a drop ship POs conversion, do you have any code snippet for drop shipment. If yes please share it or else any metalink doc id.
    Thanks In Advance......!!!

  • Partial delievery - Purchase Order

    Hi gurus,
    Anybody please provide document to make Purchase order with partial delivery.
    I want to order 40000m quantity of pipe, agreed with vendor for accepting partial deliveries i.e(4 slots). So while issuing PO need to mention partial delivery to make invoice at that time of goods receival.
    Searched in SDN, mentioned set partial del. indicator in PO, but i dont find that. please guide.
    Thanks in advance,
    Raksh,

    Hi,
    Kindly check the over delivery tolerance field in the delivery tab of the po line item.The partial delivery/item field will only be shown for your stock transfer order. please refer the link below.hope it helps.
    http://help.sap.com/saphelp_crm40/helpdata/en/dd/5607f4545a11d1a7020000e829fd11/content.htm
    http://help.sap.com/saphelp_45b/helpdata/en/a5/63343943a211d189410000e829fbbd/frameset.htm

  • Requirement of validation on reseting(opening)  of released purchase order

    hi all,
                I have 1 issue regarding reseting of released po for amendment purpose .
    Scenario is as given below :
    we have configured  2 level release streategy for PO. In which we have set release indicator "1" . After 2nd release of po , user is not able to change PO. whenever they want to change po , po have been reseted by release authority , then only user can change po. Now I want to authorise HOD (Another user)  to reset po only in case of any amendment   & remove reseting  of PO authorisation from  release authority. Pl. let me know how can I configure  this scenario ?. Is there any objet for po reset, so that I will remove this object from release authority .
    raj rathi

    Hi Raj,
    If i am understanding your problem,it is just change of the Roles from the the release authority to the HOD you want
    See just the role that contains the Release code and the release group.for the authority and attach it to this HOD.
    we can add to both users ,if  you want to authorize both user ,or else remove from one user to the other.
    so tell your basis team ,to change the roles from the authority to the HOD.
    hope so it helps
    reagrds
    Anjanna.

  • Want to close open/partial delivered order

    I want to close all open/partial delivered sales order from the sytem without either changing their quantity or defining reason for rejection in the order.
    Is there any other way than that pls suggest.
    reg
    Deepak

    Dear deepak rana,
    If this is your requirement , then got delivery user exit and write your logic ( probably , you may use date ), means , order date less than the cut over date should not be processed , it can come out with an error message.
    User exit MV50AFZ1.
    saravanan

  • Close all open windows

    Is there any way to close all open windows at once? I cannot find any way to do so. Any keyboard shortcut?

    Thanks, Tom.
    Your response led me to the answer I was looking for. However, I found it worked better to press command and option , then click the red close button on the top line of the top window. This closed all open windows within the application of the open window. I had to do the same thing for each application. In my test case, I opened about 10 word processor windows and 10 email windows, all at the same time. I had to do the command-option - click red button twice, once for my email application, and once for the word processor application. It took me about 2 seconds to close all of the open windows.
    Thanks a lot for your instructions.

  • Lion closes all previously open desktop windows on startup

    I cannot figure out why Lion closes all of my open desktop windowas on shoutdown/restart, or how to prevent it.  Can anyone help?

    Right.  It works as advertised. 
    What I am talking about are my open desktop windows.  The finder is closing all open (folder) windows each time I restart or shut down my machines. 

  • Purchase Requisition Auto Close

    When a Standard Purchase Requisition get auto closed. although we have created Purchase Order from Requisition and Delivered items to locations but still it is in Open Status.
    Edited by: Abdul Wasi on May 24, 2012 12:02 AM

    Abdul Wasi wrote:
    Hi Mahendra,
    As Items are Already places on PO and the Purcahse Order is fully Received and also Invoicing is done. now the PO status is finally close. Same as like PO why the Requisition is not getting Finally Close status.
    Thanks. As far as i know..This is the what provided functionality is..
    If you think requisitions should also be closed...
    Please Log SR or Enhancement request with Oracle :)
    Thanks
    Mahendra

  • Every time i close firefox, to re-open it i have to either log out and log back in, or i have to go through the task manager and end the proccess, otherwise it just says fire fox if already running and it wont open, how do i fix this proble??

    Everytime i am finished using Firefox, if i want to go back onto the internet, i now have to either log off and then log back on. or i have to use the task manager and close the firefox process, it is extrlmely annoying as i have to do it everytime, if i try and open firefor before i do either of what i have explained it just comes up with, firefox is allready running please close all windows to open a new one, or end the process...how do i stop this message from popping up every single time i use firefox????

    https://support.mozilla.com/en-US/kb/Firefox+hangs#Hang_at_exit

Maybe you are looking for

  • Blue Screen of Death on a Mac, never thought I'd see it.

    This my first Mac product ever. I was hoping to have both Mac and Windows on one machine for convenience, and attempt to use Boot Camp. Everything went smoothly: the partition and installation of Windows (Vista Ultimate 32bit). Then I installed the d

  • Is it possible to play an animation by clicking and dragging?

    I currently have right and left arrow buttons to control an animation. I was wondering if it's possible to control the animation by dragging the mouse? So if the user clicked and dragged the mouse to the left it would play the animation, then when th

  • No-go SWF, rock-n-roll FLA

    Greetings, I have a very peculiar issue with some files I have received. It is a dynamic page-flip viewer; it will launch 100% success in Flash CS3; yet when the subsequent SWF is launched outside of Flash CS3 in the Flash Player or a Browser it only

  • Where do my patterns go?

    I am working with making my own patterns in illustrator. I can make a pattern and use it in the application I am working on but if I want to use that pattern again I can't find it. The pattern pallette just shows the original patterns it came with. I

  • Adobe Download assist won't let me sign in?

    Ive beem trying to sign in for the past hour but everytime i sign in it says" Error communicating with Adobe.com (error 100) Check your network connection and restart Adobe Download"  My network connections are working perfectly  Ive refreshed the do