Mass maintenance of internal order groups

Hello everyone,
I need to create an internal order group with a large number of subgroups, each with a few internal orders assigned to it, and I am looking for ways to automatize this procedure. I am equally concerned about any changes to the hierarchical structure that may be required in the future as I am about creating it in the first place. LSMW's batch input recording does not seem to work with KOH1 or KOH2.
Any ideas?
Thanks.

Hi,
1: check T-code KOK4, define a selection variant and tick "create order group" by entering a group key and a group name (for groups with large number of order master records).
2: For creation of group hierarchies, see SAPNET note 51141 and the reports listed there (RGSIMPH1, RGSIMPH2) and/or the BAPIc listed there for object BUS1117.
BR Christian

Similar Messages

  • Mass maintenance of  Internal Order

    Hi all,
    We have to maintain "User responsible" & "Responsible cost center" in all Internal Orders of a given co code.
    Do we have a better way to maintain these in  a mass rather than opening each internal order one by one through Ko02 & maintaining these details?
    Thanks in advance.

    You can look to:
    KOK2 - Manually Collective Processing
    KOK4 - Automatically Collective Processing
    But I think a LSMW is going faster

  • Internal Order Group & Internal order wise report

    Hi All
    Any Standard reports are available to display the internal order group name and internal order.
    Any Standard Function module or standard table are available to retrieve the order group and internal order details.
    Please confirm.
    Regards
    K.Gunasekar

    Hi,
    There is a lot of standard reports (e.g. S_ALR_87012993 - Orders: Actual/Plan/Variance); just go to Information systems of the Internal orders in the standard menu.
    Tables: AUFK - orders master data. SETNODE and SETLEAF - groups.
    Regards,
    Eli

  • RESPAREA? - authorisations on Internal Order groups?

    Hi together,
    is it possible to restrict on Internal Order Groups in authorisation Object RESPAREA?
    I know its possible for Profitcenter groups etc.. with PH / HI / KN..
    But what about Internal Order groups?
    SIngle Internal Orders I can restrict via OR
    Thank you

    Hi Nicola,
    In your internal order group you might have created so many lower level groups. but any how in any of the group through  EDIT- order- insert order option you have insert the order number...
    If you assign the order numbers in lower level option ... system will give error message...
    If helpful assign points
    Cheers
    PK

  • Table name for Internal order group and Profit center group

    Hello Friends,
    Could any one provide me the table for Internal order group and Profit center group.
    We are developing new customized report and user requested internal order group and Profit center group in the selection criteria.
    I have checked for this tables but found only these fields in structures.
    Thanks in advance,
    Ravi Kiran.

    Or use FM [G_SET_TREE_IMPORT|http://www.sdn.sap.com/irj/scn/advancedsearch?query=g_set_tree_import] to read the hierarchy/Group. (Read FM and FG documentation, you can also add break-point and call some S_ALRxxx transaction which use this FM for the objects you need).
    Regards,
    Raymond

  • Internal Order Group

    In which Table Internal Order Group (AUFGR) is stored and how it is related to Internal Order (AUFNR)

    hi,
    The Internal order group details are found in the table SETHEADER & SETLEAF, SETHEADER-SETNAME would be the internal order group for the setclass for the order group set class '0103',
    to get all internal orders for an ordergroup.
    You can use fm K_HIERARCHY_TABLES_READ.
    or
    HRGPBS_ORDERGROUP_GETDETAIL
    rgds
    anver
    if hlped mark points

  • Create Internal Order Group massively

    Hi Gurus,
    I need to create massively internal order group.
    Can someone help me?
    Thanks in advance.
    Angela

    Has anyone found the answer to this query yet?
    I tried using an LSMW:
    Business Object: BUS1117
    Method: CREATE
    Message Type: INTERNALORDERGROUP_CREATE
    Basic Type: INTERNALORDERGROUP_CREATE01
    However, it is only creating the top node via idoc
    The other idocs fail with "Inconsistent set hierarchy"
    My issue is I am not sure how to setup the source structures and source file (file upload).
    This is how I setup the file:
    TOPNODEONLY  GROUPNAME     HIERLEVEL     VALCOUNT     DESCRIPT                              VALFROM                      VALTO
                92CAPITAL     0                   0         92 RPC Domestic Capital          
                92NONDAIRY      1     0     92 Non Dairy Capital          
                92ARLIN             2     0     92 Arlington plant capital          
                92AR_CRFRD      3     0     92 Previous Year - Arlington          
    Any help would be greatly appreciated!

  • GET THE INTERNAL ORDER NUMBER BY INTERNAL ORDER GROUP

    Hi everyone! I want to know if there's existing functional module whereas I can get a list of internal order number (AUFNR) based from the internal order group name (AUFGR)? Thanks a lot! Your response will be greatly appreciated!

    Hi,
       First take a look at K_ORDER_SET_CREATE fm..
       The following code may help you in getting the orders based on order group..
      DATA: t_setvalues LIKE SETVALUES
            OCCURS 0 WITH HEADER LINE,
            t_hierarchy LIKE SETHIER OCCURS 0
            WITH HEADER LINE,
            l_date_from LIKE sy-datum,
            l_date_to LIKE sy-datum,
            l_subrc LIKE sy-subrc,
            l_setid LIKE SETHIER-SETID,
            BEGIN OF t_aufnr OCCURS 0,
              aufnr TYPE aufnr,
            END OF t_aufnr.
      CALL FUNCTION 'G_SET_ENCRYPT_SETID'
           EXPORTING
                SETCLASS        =  '0103'
                SHORTNAME       =  l_aufgr   <Your Aufgr here>
           IMPORTING
                SETID           =  l_setid.
      CALL FUNCTION 'G_SET_AVAILABLE'
           EXPORTING
                SETNAME = l_setid
                TABLE   = 'CCSS'
           IMPORTING
                SUBRC   = l_subrc.
      CALL FUNCTION 'G_SET_TREE_IMPORT'
           EXPORTING
                CLIENT                  = sy-mandt
                SETID                   = l_setid
                TABNAME                 = 'CCSS'
                fieldname               = 'AUFNR'      
                NO_DESCRIPTIONS         = space
                NO_RW_INFO              = space
                date_from               = l_date_from 
                date_to                 = l_date_to    
           TABLES
                SET_HIERARCHY           = t_hierarchy
                SET_VALUES              = t_setvalues
           EXCEPTIONS
                SET_NOT_FOUND           = 1
                OTHERS                  = 3.
       LOOP AT t_setvalues.
         t_aufnr-aufnr = t_setvalues-from.
         COLLECT t_aufnr.
         t_aufnr-aufnr = t_setvalues-to.
         COLLECT t_aufnr.
       ENDLOOP.
    Sri
    Message was edited by: Srikanth Pinnamaneni

  • Migration internal order group

    Hi all,
    I am doing the migration program for internal order group creation.(KOH1)
    I have used the FM for BAPI_INTERNALORDRGRP_CREATE and BAPI_INTERNALORDRGRP_ADDNODE                     
    for creating internal order group. using those FM in my program , the internal order group created successfully,
    But, i check these data's in transaction code KOH3.
    the internal order description is not come, that means internal order group has more internal orders, that internal orders already created one. so when displaying that internal order in my internal order group, the description is not display.
    Expected: already created internla order it displayed, but the internal order description from table it doesn't show.
    Anyone clear my doubts.
    Thanks,
    Amudha.

    Hi,
      You can get the ordergroup as SETNAME in SETHEADER table for the SETCLASS '0103', the order details are found in SETLEAF for the setname obtained from SETHEADER,
    Hope this helps,
    Rgds,

  • Mass maintenance of Sales orders,or/and items

    Hi friends
    Need some help.
    Is there a transaction in SAP by which we can reject large numbers of sales orders, or/and items in sales orders in a mass maintenance way.
    We dont want to use MASS or VA05.

    HI
    Being an SD consultant if u know about how to record transactions in LSMW or BDC
    it will be very useful
    for exampl like if u want to create condition records for 12000 maaterials if u create lsmw and do recording u rwork will be easy
    if u dont know about LSMW or BDC
    just sit with u r abapper and ask him to do LSMW also u try to learn
    it is not mandatory but having an idea about LSMW and BDC or SCAT will be more useful
    regards

  • Mass creation of Internal Orders.

    Hi all,
    How to create the internal orders in mass ( say example 500 internal orders) instead of creating them one by one?
    and how to i ensure the settlement rule for all those Internal orders created in Mass?
    Thanks,
    Swetha

    Hi Suraj,
    Please explain manual or Automatic Collective processing? (KOK2/KOK4)
    if you explain from start to end, it will be helpful for me.
    Thanks,
    Swetha

  • Mass maintenance in sales order

    hi Gurus!!!
    i create sales order that time material production was not there so there is no confirmation of material for that sales order
    now before  delivery i have to delete that schedule line and again enter material quantity then material get confirm these activity can i do in mass maintenance. IS IT POSSIBLE ???
    IF YES  HOW CAN I DO
    the data was in huge so i need to save time and headache
      please help
    thanks in advance

    hi friend !!!
    i did this thing thr BDC only that time material is not available (production was not available )
    when i understand we have to reconfirm schedule line so i stop to upoald sales order
    and
    when mateial produce then again i starst
    BUT ....
    here i want to reconfirm that previous order
    so is it possible thr MASS MAINTENANCE

  • Mass change to internal orders

    Hi Experts,
    How can we lock internal orders in mass. Please let me know
    Thanks,
    Zubair
    Moderator: That's obviously point-gaming. Users involved will be deleted

    Dear,
    Use t-code kok4
    Select function selection
    check mark LOCK option and execute it
    Hope it will solve the issue
    Regards,
    Mir

  • Mass Maintenance of PM orders?

    Hi,
    Can anybody will tell siutable t-code for mass processing of PM orders other than IW38 as it does not have the option of locking, deletion flag features.
    Thanks & regards,

    Hi,
    ther was a recent discussion on this , search the forum
    you can use BADI ,via SE18 ,BADI_EAM_RIAUFK20_FCODE_CUS1 to make development in IW38 for your requirement..
    regards
    pushpa

  • 0OPA_C11_Q0005 - Internal Orders (Group): Budget/Actual/Commitments

    What is the difference between the two key figures, "Budget in current fiscal year" and "Budget throughout the reporting time frame", as the query doesn't have the input variable period?

    What is the difference between the two key figures, "Budget in current fiscal year" and "Budget throughout the reporting time frame", as the query doesn't have the input variable period?
    This report provides the budget, actual and committed costs for internal orders that could span across multiple Fiscal Years. The "Budget in Current Fiscal" Key Figure displays only the budget amounts, as the name suggests, for only the current Fiscal Year, whereas the "Budget Throughout the Reporting Time Frame" displays the budget amounts for all Fiscal Years associated to the internal order.

Maybe you are looking for