Network header gets status Confirmation automatically

Hello Friends,
I have  one network, and three activities.
When i release / Procure/ GI and then try to Confirm the acitivity,then immedialty the Netw Head gets the Status "Conf" Auto.
Then for the other 2 activities i am unbale to do confirmation,what needs to be done such that network header should not confirm auto
RamananPV

Hi Ramanan,
This is happening bcause for your network activities, confirmation is not mandatory. You look for the settings in the control key of your activity - Transaction :OPSU.
Please check the entry against "confirmation". In all likelihood it will be blank - means, confirmation is optional. So when you confirm any one activity, the system really doesn't know whether any more confirmations are due, and hence confirm the whole network. By opting for "confirmation "requied" in this field , this problem can be overcome. This is not an error, but standard behaviour of the system.
SAP Note:148654 gives a thorough explanation of this. I quote the relevant portions of the note below:
Quote begins:
"Symptom
Although open activities, that is, not yet confirmed activities exist in the network, the system sets the status of the network header to 'Finally confirmed' after the first final confirmation.
Other terms
CN25, confirmation, status
Reason and Prerequisites
Definition:
The status of the network header is always set to 'Finally confirmed' if all activities requiring confirmation are finally confirmed.
If indicator 'Confirmation' is valuated with BLANK in Customizing for the control key of an activity, this means that a confirmation is indeed possible but not required.
If all activities of the network are set like this, then the system sets the status of the network header after the first final confirmation to 'Finally confirmed', since the system cannot decide whether additional confirmations are entered or not (since the confirmation is not required).
Nevertheless, additional confirmations can be entered (despite of 'Final confirmation' in the network header) if the confirmation parameters are changed correspondingly (see block 'Selection' in the parameter screen - Confirmed ops).
If you require a different system response, you must change the control key correspondingly (for example, to confirmation is obligatory). In this case, the status of the network header is only set to 'Finally confirmed' when all activities requiring confirmation are finally confirmed"
Quote ends.
Hope this addresses the problem and resolve the issue. If so, kindly acknowledge the same.
Muraleedharan.R
091 9880028904

Similar Messages

  • Can we delete network header and then use it again under a WBS?

    Hi All,
    I have an issue where user wrongly create network header and activity not under WBS/project. The situation :
    There is a project / WBS called ABCD. User require a network header ID called RSKA005100S1 under the WBS. However, user create the master network header RSKA005100S1 not under WBS. How can we assign network RSKA005100S1 to be assigned in the WBS ABCD, coz when i tried to create the same network, it says order already exist.
    CHeers,
    Nies

    Hil,
    i hope network header is not released and no cost posting done in your case !!
    Select Network Header RSKA005100S1 and goto assignments tab. assign the WBSE ABCD here, then system shifts the network header assignment to ABCD automatically. No need to delete existing one and creating new one under ABCD.
    Hope this helps you !
    Br
    Hari.

  • Different user status profile for network header and activities

    Hi everyone!
    Is there any way to define different user status profile at network header level and at network activity level? As far as I know, it is only possible to enter a user profile at network type level, and both netwok headers and activities use the same statuses. Does it work this way?
    Thanks!
    Regards.
    Edited by: Thalos on Jul 2, 2011 12:27 AM

    Hi Punith, Hi abdul!
    Thanks for the reply!
    I've gone through the OPSC, but the thing is that here you define a user status profile at network plant level. But I need to define it at network activity level.
    The reason why I need this is because we have types of activities. We use network activities for client activities, for internal activities, to identify and follow-up risk management, etc. Each group of activities -since they have different usages- has different user status associated. But as I don't have any way to assign different user status profiles, all the activities have the same statuses, although  they will only use some of them.
    Thanks!
    Regards,
    Thalos.

  • MSPT/MACM status at network header - Missing Parts

    I have a query with regards to how the MSPT(missing parts) status is set/unset at the network header level.
    My question is why is the Missing Part status set to INACTIVE at the Network Header level when several components have the Missing Part indicator set.
    The MACM status is set as ACTIVE instead at the network header level.

    Dear Chandra shekar,
    check for the production order type and plant combination in OPJK for business function 1 - material availability check during order
    creation for the check box - check material availability during order creation and likewise for business function 2 - material
    availability during order release and the setting for release material .
    Kindly make the required setting after discussing with your PP consultant and go ahead.
    Regards
    Mangalraj.S

  • Sales order quantity gets confirmed Automatically

    Dear All,
    I have make to order Scenario. i have done all setting required for MTO.
    however i create sales order my order quantity gets confirmed automatically. same time there is not stock available for material.
    plz suggest how to stop confirm qty. in sales order?
    Thanks & Regards
    Ratish

    Hi Ratish,
    Please check the configuration settings in the IMG for Availability check.
    You check have maintaining availability checking group 01 or 02 in the Material master.
    Have you assigned Checking rule AE -SD order; make-to-order stock for checking group 01 or 02 in the IMG
    Spro>sales and distribution>Basic functions>Availability check and transfer of requirements>Availability check>Availability check with ATP logic/Against planning>Carry out control for availbility check.
    I hope it will help you,
    Regards,
    Murali.

  • What's the name of FM for getting Sales Order Header / Item Status info

    Hello All:
    Do you know what's the name of Function Module for getting Sales Order Header / Item Status Overview ? Any sample code will be very much appreciated.
    Basically, I am trying to create a Webpage where user can enter the Sales Order document number and will return the Sales Order: Status Overview.
    Thanks,
    Dipankar Biswas

    Thanks everybody ! Appreciate for your prompt response. I was also looking for some sample code, and I did find some on. And here is one. I still have to try the code, but here is for all your reference:
    *& Report ZBAPI_SALESORDER_GETSTATUS *
    *& Read and Display the Sales Order Items and Status of the Order *
    REPORT zbapi_salesorder_getstatus NO STANDARD PAGE HEADING LINE-SIZE 200 LINE-COUNT 33(3).
    TABLES: vbap. "Sales Document Item Data.
    DATA: wa_bapireturn TYPE bapireturn,
    wa_bapisdstat TYPE bapisdstat,
    it_bapisdstat LIKE STANDARD TABLE OF wa_bapisdstat.
    TYPES: BEGIN OF ty_mat_name,
    matnr TYPE makt-matnr,
    maktx TYPE makt-maktx,
    END OF ty_mat_name.
    DATA: wa_mat_name TYPE ty_mat_name,
    it_mat_name LIKE TABLE OF wa_mat_name WITH KEY matnr .
    PARAMETERS: p_vbeln LIKE vbap-vbeln DEFAULT 5573.
    START-OF-SELECTION.
    SELECT matnr maktx FROM makt INTO TABLE it_mat_name.
    CALL FUNCTION 'BAPI_SALESORDER_GETSTATUS'
    EXPORTING
    salesdocument = p_vbeln
    IMPORTING
    return = wa_bapireturn
    TABLES
    statusinfo = it_bapisdstat.
    IF wa_bapireturn IS INITIAL. " Successful Execution.
    WRITE: / 'Document No: ' COLOR 1, 20 'PO Number : ', 40 'Status' , 50 'Delv.Stat',60 'Item No', 80 'Material', 90 'Material Description', 130 'Net Price' COLOR 2.
    ULINE.
    LOOP AT it_bapisdstat INTO wa_bapisdstat.
    WRITE: / wa_bapisdstat-doc_number. " Sales Document Number.
    READ TABLE it_mat_name INTO wa_mat_name WITH KEY matnr = wa_bapisdstat-material.
    WRITE: /20 wa_bapisdstat-purch_no, " Customer Purchase Order Number
    40 wa_bapisdstat-prc_stat_h, " Processing Status
    50 wa_bapisdstat-dlv_stat_h, " Delivery Status
    60 wa_bapisdstat-itm_number, " Item Number
    80 wa_bapisdstat-material, " Material
    90 wa_mat_name-maktx, " Material Description
    130(10) wa_bapisdstat-net_price. " Net Price
    CLEAR wa_bapisdstat.
    ENDLOOP.
    REFRESH it_bapisdstat[].
    ELSE.
    WRITE: wa_bapireturn-message.
    ENDIF.

  • LT12 Transfer order getting confirmed automatically

    I want to confirm the TO created,but after giving input and by clicking enter at Tcode LT12.The TO is getting confirmed automatically which I don't want to do.
    SAVE button is disabled for the Tcode.
    Need help.

    Hi Nirsanthi,
    Check Tcode OMLX.Select Movement type.
    Now against your warehouse and movement type remove the chek box for "Confirm Immediately".
    Once remove then  try checking  confirmation of TO.
    Hope this helps.
    Regards
    Utsav

  • Sales Order Header wise status.

    Hy expert,
    i going to make Sales order Status Reports. It run successfully fetch data form header wise, but it display all so, that is already closed or completed.
    i wnt to which Sales order it is pending or partially deliverd.
    Please help me regarding this.
    Report in ALV.
    Please read this code for fetch Data. if u like change pl do.
    Thnks
    Bhavesh Panchal
    baroda
    FORM data_retrieval.
    SELECT VBELN  NETWR KUNNR FROM VBAK INTO (ITAB-VBELN,ITAB-NETWR,ITAB-KUNNR) WHERE VBELN IN VBELN .
    SELECT NAME1 FROM KNA1 INTO (ITAB-NAME1) WHERE KUNNR = ITAB-KUNNR .
    SELECT BSTKD BSTDK FROM VBKD INTO (ITAB-BSTKD,ITAB-BSTDK) WHERE VBELN = ITAB-VBELN.
    SELECT VSNMR_V FROM VBAK INTO (ITAB-VSNMR_V) WHERE VBELN = ITAB-VBELN.
    *SELECT EDATU FROM VBEP INTO (ITAB-EDATU) WHERE VBELN = ITAB-VBELN.
    SELECT LFSTK FROM VBUK INTO (ITAB-LFSTK) WHERE VBELN = ITAB-VBELN and lfstk not like 'C'.
    APPEND ITAB.
    ENDSELECT.

    Hi,
    Try this out.
    SELECT vbeln auart spart audat netwr
          FROM vbak INTO TABLE it_vbak
           WHERE spart IN so_spart
           AND audat IN so_fkdat
           AND auart IN rg_auart
           AND vbeln IN so_vbeln.
    SELECT vbeln posnr spart werks matnr arktx kwmeng kbmeng abgru pstyv netwr matkl
       INTO CORRESPONDING FIELDS OF TABLE it_vbap
        FROM vbap
           FOR ALL ENTRIES IN it_vbak
             WHERE vbeln = it_vbak-vbeln
              AND posnr LIKE '%'
              AND werks IN so_werks
              AND matkl IN so_matkl
              AND matnr IN so_matnr .
    IF it_vbap IS NOT INITIAL.
    "Get all delivery details
    SELECT vbelv posnv vbeln posnn vbtyp_n vbtyp_v rfmng matnr          " vbfa_j for All Delivery details
             FROM vbfa INTO TABLE it_vbfa_j
              FOR ALL ENTRIES IN it_vbap
               WHERE  vbelv = it_vbap-vbeln AND
                posnv = it_vbap-posnr AND
                vbeln LIKE '%' AND
                posnn LIKE '%' AND
                vbtyp_n = 'J'.   
    ENDIF.
    LOOP AT it_vbap INTO wa_vbap WHERE abgru EQ space.  
    "Get cumulative confirmed qty
    wa_final-kbmeng = wa_vbap-kbmeng.
    READ TABLE  it_vbfa_J INTO wa_vbfa_j WITH KEY vbelv = wa_vbpa-vbeln
                                                posnv = wa_vbfa-posnr.
                                              "      BINARY SEARCH.
        IF sy-subrc = 0.
           wa_final-delivery_qty_total = wa_vbfa-rfmng.
        ENDIF.
    IF wa_final-delivery_qty_total NE wa_final-kbmeng .
           wa_final-pending_order = wa_final-kbmeng - wa_final-delivery_qty_total.    "(pending order = Order_qty - total delivery qty)
    ENDIF.
    CLEAR wa_final.
    endloop.
    Hope this will help.
    Thanks,
    Archana

  • PROJECT PROGRESS ANALYSIS FOR NETWORK HEADER

    < MODERATOR:  Message locked.  Please read the [Rules of Engagement|https://www.sdn.sap.com/irj/sdn/wiki?path=/display/home/rulesofEngagement] before posting next time. >
    Dear all,
    We can get the progress analysis data (tcode CNE5) for a network activity and also for WBS element. However data is not cumulated at the network header. Need your urgent help for getting this at the network header level. Is there a workaround like user exit for doing this?
    Also let me know available user exists for PS. Please guide me how to find an user exit for PS in particular.
    Regards,
    Prakash.

    arenk03 wrote:
    > Is there any possibility to assign progress versions to network activitys automatically when creating a new network activity?
    No , it is not possible.
    Please search the forum for further details, as it discussed many times earlier.

  • It seems that the new version of iPhoto will no longer share photos between computers on the same network. Can anyone confirm this?

    It seems that the new version of iPhoto will no longer share photos between computers on the same network. Can anyone confirm this?

    lovinmymac wrote:
    I have "automatically create previews" in the preferences UNCHECKED. Why is Aperture creating previews? For the screen image?
    You might also need to turn Preview generation off for any existing Projects. Select the Project in the Projects pane and use the cog button at the top of the pane to uncheck 'Maintain Previews For Project'.
    Ian

  • How can I get Firefox to automatically open a new search in a new tab please?

    How can I get Firefox to automatically open a new search in a new tab please? [Without me manually opening the tab]

    For searches from the Search Bar, when you use the Enter key.
    Type '''about:config''' in the URL bar and hit Enter. <br />
    ''If you see the warning, you can confirm that you want to access that page.''
    Pref = '''browser.search.openintab''' = double-click to toggle to '''true'''

  • How do I get numbers to automatically add the next date down a column in numbers?

    How do I get numbers to automatically add the next date down a column in numbers?

    Hi Dd,
    If you want the next date automaitcally  filled in when you add a row to the bottom of the table, you can use a formula.
    Here's an example, done in Numbers 2.3 (Numbers '09). The method is basically the same in Numbers 3.
    Formulas in row 3:
    B3: =B2+1
    C3: =C2+7
    D3: =D2+14
    These have been filled down to the last row of the table.
    The same table is shown below after three rows have been added by dragging the Row control handle (below the tab for row 7) down. No changes other than adding thse three rows were made by the user.
    Note that rows 1 and 2 are header rows, and that row 2 contains the starting date for the seraies of date in each column. In the formula, the number at the end tells Numbers how many days to add to the previous date to get the next date.
    Autofill of the formula requires that every non-header cell located above the cell into which the formula is to be filled contains the same formula.
    Regards,
    Barry

  • Ability to change Network Header Number

    Hi
    Can someone please tell me if there is a way to change the network header number (regardless of the status).  I am looking initially for something similar to how you can change the project definition (field is open) or an appropriation request where you follow the menu path in Ima2n (environment > settings > apropn request number modifiable).  
    At present, once you create the NWH, the number field (AUFNR) is greyed out.  There does not appear to be a switch in IMG so I was wondering if there is business txn similar to PSNC ( WBS element number change)  that is available for Network headers.  Or perhaps there is a program that allows this.
    The issue is that we create networks with a manual external number that holds the project number (ie project being A-A12345. we would then create the network number as N-AA12345).  As this is a manual process, user error is becoming an increasing issue.
    Thankyou

    Hi Virendra
    Thankyou for your suggestion. I will try the exit
    PSNC is a business status via txn BS22 (system status).
    As to per your last comment - the explanation is that the business decided that they wanted the NW number to reflect the project number rather than a unrelated number range which we had previously used. 
    Trish

  • Sales order in network header

    Hi,
    I find the SO field in network header assignmnet TAB page, which is not editable.How and for what purpose we use this field.please explain with some buisness scenerio.
    Zinni

    thisfield is populated if you create the network using the assebly processing method - see more in sap help about assebly processing
    since the sales order number gets populated - it is a link between sales order and network which should not be changed

  • Creating PS Network header with one activity

    I need to create to a projekt the network header with one activity. so I want top proceed the following coding:
         CALL FUNCTION 'BAPI_PS_INITIALIZATION'.
          CALL FUNCTION 'BAPI_BUS2002_CREATE'
            EXPORTING
              i_network = gs_network
            TABLES
              et_return = et_return.
          CALL FUNCTION 'BAPI_PS_PRECOMMIT'
          CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
            IMPORTING
              return = es_return.
            CALL FUNCTION 'BAPI_PS_INITIALIZATION'.
            CALL FUNCTION 'BAPI_BUS2002_ACT_CREATE_MULTI'
              EXPORTING
                i_number    = ls_number
              TABLES
                it_activity = gt_activity.
            CALL FUNCTION 'BAPI_PS_PRECOMMIT'
            CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
              IMPORTING
                return = es_return.
    But I get an Runtime Error with "MESSAGE_TYPE_X" because the PRECOMMIT was not successful.
    Has anyone an idea how to handle that ??
    thx a lot
    Edited by: Rob Burbank on Nov 18, 2009 9:42 AM

    DATA: lt_return   TYPE TABLE OF bapiret2,
            l_wa_return TYPE bapiret2.
      CALL FUNCTION 'BAPI_PS_INITIALIZATION'
      CALL FUNCTION 'BAPI_BUS2002_CREATE'
        EXPORTING
          i_network = pi_wa_aufnr
        TABLES
          et_return = lt_return.
      READ TABLE lt_return WITH KEY type = 'S'
                           TRANSPORTING NO FIELDS.
      IF sy-subrc = 0.
        REFRESH lt_return.
        CALL FUNCTION 'BAPI_PS_PRECOMMIT'
          TABLES
            et_return = lt_return.
        READ TABLE lt_return WITH KEY type = 'S'
                           TRANSPORTING NO FIELDS.
        IF sy-subrc = 0.
          READ TABLE lt_return INTO l_wa_return INDEX 3.
          pc_aufnr_new = l_wa_return-message_v2.
        ENDIF.
        CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
          IMPORTING
            return = l_wa_return.
      ENDIF.
    this is the sample code to create network & to get the network number created

Maybe you are looking for