System status TECO only on parent level.

Hi,
Following is my scenario.
This is how my project structure looks.
Level1 WBS1
Level2  WBS1.1
Level3   WBS1.1.1
Level3   WBS1.1.2
Now I had to make the system status TECO on level 1 i.e WBS1 but not on the child level.What I mean to say that I had to only make the System status TECO on parent level not on the child level.
Is there any function module where I had to make any enhancement or is there any configuration.I don't want to use User ststus here.
Regards,
Gagan

Mr.Mehra wrote:
make the System status TECO on parent level not on the child level.
I do not think it is possible, as TECO system status is a standard functionality. If you are looking for some business requirements then either use user status or some validation to achieve this.

Similar Messages

  • Why not all fields dimmed or show in display mode after system status TECO and CLSD for Project

    Dear All,
    When Sets the system status TECO or even CLSD all fields for WBS Elements are not goes to Display mode. User can still edit them or change then.
    The fields are:
    1. WBS Element Description, technical name: PRPS-POST1
    2. Person responsible number, technical name: PRPS-VERNR
    Other Progress and Customer enhancement tab pages for WBS Element all fields there also editable in TECO and CLSD system status.
    The client do not want to set LOCK system status for master data option.
    Is there any enhancement or standard way of doing that?
    Regards
    Saqib Usman

    Dear Saqib,
    Its a standard behavior of the system. In CLSD status, transactional data like Procurement gets restricted along with WBSE no and its scheduling details. But it allows to you change like WBSE desc./Responsible person.
    Also go thru the below link for clarification of WBSE system status:
    http://help.sap.com/saphelp_470/helpdata/en/ee/41f82246ee11d189470000e829fbbd/content.htm
    For locking all master data, as above experts suggest, you should use MDLK/LKD.
    Regards
    Shishir

  • System status TECO is active (ORD 1001020)

    Dear All,
        System status TECO is active (ORD 1001020).
            Thanks
             parag

    Parag,
    I don't seem to be able to find a question in your post.
    You can set/unset TECO status in transaction CO02.  Ignore any warning message concerning change.  Then, Functions>Restrict Processing>'Technically complete' or 'revoke technical completion'.  Save
    Rgds,
    DB49

  • Goods movements while system status TECO

    Hello
    I have an issue here.
    In standrd system we can make GI & GR when the orders  system status is TECO.
    I want system should not accept any goods movements ( GI & GR) when the order system status is TECO.
    I tried in BS22 to make goods movements forbidden.
    I could  make it successfully.
    what could be other consequences of this action.
    whether  any body has experience of such situation.
    Pl. respond.
    REgards
    YMREDDY

    Hi,
    I have tried with BS22 in my previous project. i had issues for Goods Movement after Teco.
    Finally i got written code on User Exit, and i given the solution.
    I prefer using userexit for this functionality
    Regards,
    Nag

  • System Status TECO should update automatically in Maintenance Order

    Hi,
    Our Client has a requirement in the Maintenance Order.
    Whenever we confirm the Last Open Operation in the Order, the system status should automatically update to TECO.
    Any Inputs, please let me know.
    Thanks in advance!!

    Hi again,
    Fairly old thread now but... (Wanted to share some info here for anyone interested)
    Correct and accurate, using any of these FM:
    STATUS_CHANGE_INTERN
    STATUS_CHANGE_EXTERN
    or IBAPI_ALM_ORDER_TECO_SET
    This will definitely work as I have used them and this did work then.
    What I would do is this:
    - Check in chosen User-Exit if all needed prerequisites are meet for the operations first of course
    - If this is possible during the saving process then just use say FM STATUS_CHANGE_INTERN for the update. Commit will then not be needed as we are in "IW32"-transaction mode already.
    - If the above is not possible then I would create a FM that is called in "in update task" from the very same User-Exit with the Order number as importing parameter. What will happen is that the Order will first be saved and then the FM will be running afterwards.
    Process now:
    - Call the FM from the User-Exit "in update task"  with the Order number as importing parameter
    - Wait for Order to be saved (first try to lock, if locked: wait x secs, try to lock again etc, when OK to lock -> unlock again)
    - Read sufficient Order data to determine if prerequisites are met
    - Use say FM STATUS_CHANGE_INTERN for the update (here OBJNR can be read from table AUFK for the Order number)
    - Remember to do a COMMIT"
    Done.
    BR, Johan

  • Don't post hrs or cost after TECO System Status in Internal Order

    Dear All,
    We want to don't post cost and hrs after System Status - TECO in Tools - capitalised as Assets.so pls tell me where we can restrict posting in System Status - TECO.
    Abhinay Sachan

    Hi
    It would not be possible to enter any cost with status TECO. TECO itself mean Technical Complete.
    You need to remove the status TECO in order to enter any cost to the Internal Order.
    Regards,
    Suraj

  • How can we reset the   active system status  when we are trying to change

    Hello SAP,
    I am using the transaction  code 'CJ20N' .
    For this transaction code, I need to put one validation when user is trying to change the system status to 'TECO'.
    Once, user changed the system status  and trying to save , we need to put the previous system status.
    For e.g. : system status is 'REL'. Now user set to 'TECO' and CLICK on save button, system status  need to change 'REL'.
    Could you please explain me that how can we delete the buffer system status 'TECO' and reset to active status 'TECO '.
    Thanks and Regards
    Srini

    You can't delete an account, you can only stop using it.  If you're getting that error message you won't be able to create a new account on your device.  Your only options are to re-use one of the accounts previously created, or create a new account on a different iOS device or Mac (running OS X Lion or higher), if you have one.

  • Update system status in JEST table

    Hi Experts,
    I need to update the system status TECO as inactive in table JEST based on some condition from program manually. It might not be suggested to directly modify the database table. I got one BAPI function module BAPI_ALM_ORDER_MAINTAIN, but could not find how to use it.
    Can you please let me know whether there are any BADIs or BAPIs to update the system status in JEST table.
    Thanks in advance for you help.
    regards,
    Lakshmi.

    Hi ,,
    Thank you for your suggestion. but I got a FM which exactly updates the system status in JEST and JCDS tables.
    The function module STATUS_CHANGE_INTERN and can be used as follows. We always need to follow one condition that, when the system status TECO is changing to inactive the REL status should be made Active.
        DATA: i_stat TYPE STANDARD TABLE OF jstat.
        DATA: wa_stat TYPE jstat.
        wa_stat-stat = 'I0045'.
        wa_stat-inact = 'X'.
        APPEND wa_stat TO i_stat.
        wa_stat-stat = 'I0002'.
        wa_stat-inact = ' '.
        APPEND wa_stat TO i_stat.
        CALL FUNCTION 'STATUS_CHANGE_INTERN'
          EXPORTING
            client              = sy-mandt
            objnr               = lv_objnr
          TABLES
            status              = i_stat
          EXCEPTIONS
            object_not_found    = 1
            status_inconsistent = 2
            status_not_allowed  = 3
            OTHERS              = 4.
    COMMIT WORK.

  • FM for getting the SYSTEM STATUS in pp order.

    hi,
    i wnat to know what is the FM used to get the SYSTEM STATUS in pp order.
    and the parametes needed t be passed.

    HI,
    1. go to tcode BS22 (Maintain: System Status) 
    2. look for the system status TECO. 
    3. Double click the field "TECO". 
    4. in the transaction control tab look for the business transaction "RMWA" or goods movement (you can type it in the lower left corner buttom box). 
    5. select the radio button from "Allowed" to Disallowed". 
    6. save your changes. 
    Here are the function moduels:
    SYSTEM_STATUS
    UPGI22_GET_SYSTEM_STATUS
    UPG_GET_SYSTEM_STATUS
    TMS_CFG_GET_SYSTEM_STATE
    Regards
    Sudheer

  • Updating system status of CS order when rejecting quotation

    Hello,
    this is the issue I have.
    I am using RRB process to make quotation for CS orders (SM02) trough DP80. All is ok if I have only one quotation, but my intention is to document negotiation process by rejecting quotation that customer didn’t accept and make new quotation based on changed pricing. Standard SAP does not allow this because while CS order has system status QUCR - Quotation created, it is not possible to make new quotation, even if the quotation is fully rejected.
    The object type ORI that controls system status has only two statuses that refer to quotation QUCR and QUAC (accepted). The status QUCR can only be removed if quotation is accepted or if quotation is deleted.
    It seams illogical not to have the opportunity to reject quotation and make a new one. But I can not see the way...if some one knows how it can be done, please give me the answer.
    BR,
    Milan

    hi
    iam also having same requirement
    can u please let me know whether your problem is resolved.
    regards
    swetha

  • Allowed Transaction by system status in Process Orders

    Hi all:
    I have a problem manging the process orders, related to the system status and allowed transaction. The question is: How could I prevent the use of certains transaction (i.e. RFBU FI:Postings) when system status = TECO in one process order where status profile is not assgined (that is t003O-STSMA not filled)?.
    At this moment I have a lot of process orders in that status and I want to avoid the posting from FI just if the system status = TECO
    I will thank you very much for any help
    Best Regards

    As a standard setting, you will not be able to restrict the financial postings when an order is TECO'ed but you may do it through by enhancing user exit/ BADI in the respective transaction...

  • System status as per our requirement

    Dear Experts ,
                      Is there option in SAP to use system status as per our requirement.
    For Ex : system should not allow to do CNF after TECO etc etc
    Please anybody put a light on this matter
    Regards
    Keerthan Kumar

    Keerthan Kumar,
    It’s not recommended to change standard system status set up as this can have influence on different SAP modules…
    But coming back to your original question your request could be realized by calling t-code BS22
    Where for system status I0045 – TECO you set business transaction RMVR – ‘Confirm transaction’ as forbidden.  Please see attached print screen.
    Then when making time confirmation system will display following error message: System status TECO is active, Message no. BS013
    Regards,
    Grzegorz

  • System Status authorisation to be restricted

    Hi
    Anybody know how i can restrict the authorisation on system status. I know the way by creating the user status and assigning a authorisation key. But i want to know if any way to assign direct control on system status. The exact requirement is that authorisation has to be restricted from assigning system status TECO.
    Regards
    Ashish

    Hi,
    In sap you can control system statuses by using of user statuses. Where you can control various business transaction.
    SAP does not provide an authorization check for setting system statuses for this refer below link
    http://help.sap.com/saphelp_erp60_sp/helpdata/en/ee/41f79346ee11d189470000e829fbbd/content.htm
    Regards,
    Sandeep
    Edited by: Sandeep Theurkar on May 26, 2009 12:22 PM

  • System Status at WBS level

    Hi friends.
             I have an issue in my report, my requirement is I have to fetch all the WBS Elements which are having System status as TECO . But in the selection screen i have given date range. Now i have to fetch all the WBS  having TECO as system status with in this date range . I have used JEST table also for checking this status .I have used  prps table for wbs elements.
    when i give the date range i am not getting all the wbs with in tht range.
    how can i validate date in this case.
    Is there any table which gives system status based on date .
    i want table with system status and date.
    please have a look over this .

    Hi,
       Try the fm STATUS_TEXT_EDIT.
    Regards
    Kiran Sure

  • SET PM WOrk Order System Status to TECO

    Good Afternoon SAP PLM Forum users,
    Will you please tell me the best method to Technically complete (set system status to TECO) 85,000 PM orders that have system status REL and CNF or PCNF.
    Thanking you in advance
    Leslie

    Hi,
    You could use IW38 to select and generate a list of orders. Then from the output screen highlite a group of orders and choose the complete function.
    Also BAPI_ALM_ORDER_MAINTAIN method TECHNICALCOMPLETE could be used with later releases.
    -Paul
    Thread moved to EAM forum

Maybe you are looking for

  • Security question - restricting access to a specific application

    Hello, Looking for suggestions on how I could limit connections to a database to a specific application. Here is the scenario. I have an application running from a desktop that has oracle accounts for each user. The user has a read only role by defau

  • Bold on specific first words each line?

    I'm wondering if there is a way to fully automate this. I'm styling an extensive interview-format body of text, and I would only like the first word of each paragraph to be bolded ONLY if they're one of three names. I currently have a nested style bo

  • CSS Mill for Portlet Border Customizations

    Can someone let me know if this is a bug: I created a new template in <PT_HOME>\ptimages\imageserver\plumtree\common\public\css. All I did was copy and rename one that was already there. I tried using platPortletBorder to set the portlet borders = 0.

  • Video won't play in DVD Studio Pro, works in QT

    I cannot get a m2v file to work in DVD studio pro. I compressed to Best Quality 120 min from FCP and opened up the DVD studio file and inserted both the m2v and ac3 files from Compression when it was finished. I can hear the audio but the video is ju

  • Formatting CVs in InDesign

    I am formatting a friend's CV in InDesign but not quite sure how to do it so he can later on update and change the content if he doesn't have access to the program. Would it make sense to create an interactive PDF so he can just fill in the text fiel