BOM "valid from date" in transaction CSKB

The business process is like this -
1. We create sales order ( VA01)
2. In sales order, we enter configurable materials as items.
3. Then we freeze/change the BOM for sales order and line item through t-code CSKB.
The problem is in CSKB, "Valid from date" of order BOM components is defaulted using the "required delivery date" in Sales Order. We want to default current date (system date) as the "valid from date". Please suggest how it can be done.
Regards,
Bijay

Shailesh,
While creating the BOM have you used the change number ...? if yes then display that change number and check wheather do you have any alternative date mention in it.
check validity date of change number as well as BOM validity.
another reason can be you need to apply SAP note 1278790.
https://websmp130.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/sapnotes/index2.htm?numm=0001231930
check it out and revert back for further discussion.
Hope it helps you.
Regards
Ritesh

Similar Messages

  • Help reqd on Changing the Valid from "date"  for both BOM & Routing

    Hi all...
    Pls advise me how to do the changing of Valid from "date"....
    Is there any process in CC01 or ECM???....
    pls reply me in detail step format (step by step analysis)....
    I wrongly created in CS01 and CA01 as 05.10.2007 as my valid from date instead of 01.10.2007.....
    How to change to my actual one......
    I dont know how to change it exactly.....as im beginner in SAP...pls take this into consideration...and post ur replies imm.
    Pls reply me in detail....will be rewarded at the end while closing this issue.
    thanks & regards
    sankar

    Dear Sankarbabu,
    IF there's no setting for Date Check in OS54 - Engineering Change Management
    Control Data,then you can create a change number with past dates,and also to
    use the same one for changing BOM.
    Tell me one thing you are saying you want to use ECM.Was the earlier one
    created without BOM was created without an ECN?
    See already if you have created your BOM with an ECN,then remove the date
    check setting which I have mentioned in OS54.
    Now goto T code CC02 ,enter the Change number and give the valid from date as
    01.10.2007.
    After that check in CS03 whether this date(01.10.2007)is getting reflected or not.
    I'm sure this will solve your problem.
    Regards
    Mangal

  • Valid from date in ECM and BOM.

    Hi All,
    I create a Change master with release key and assign a material as an object whose BOM will be changed. I save the Change number.
    I go to change BOM main screen of the same material and enter the change number created, by default the valid from date comes as todays date. But when i hit enter to go inside the change BOM screen then the date dissapears from the field and i get an error as "please enter valid from date" even if the date of ECN is valid and that of BOM is also valid.
    Can somebody help in this?
    Thanks
    Shailesh.

    Shailesh,
    While creating the BOM have you used the change number ...? if yes then display that change number and check wheather do you have any alternative date mention in it.
    check validity date of change number as well as BOM validity.
    another reason can be you need to apply SAP note 1278790.
    https://websmp130.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/sapnotes/index2.htm?numm=0001231930
    check it out and revert back for further discussion.
    Hope it helps you.
    Regards
    Ritesh

  • Wants to change the validity from date in BOM

    Hi,
    We have created BOM by mentioning valid from date 21.08.2018.
    Now we need to change that valid from date 21.08.2018 to 21.08.2008.
    How can we do that?
    thanks/regards
    vish

    Hello,
    If you are creating the BOM wr.to change number & if the change number date is lying in future. System allows you to change the effective from date for the ECN, which in turn BOM effective date also get change automatiocally. T code CC 02 for changing the date through ECN
    Maruti

  • How to change the valid from date of the bom header?

    ECM is active in the system.
    I want to change the valid from date of the BOM header with the help of a change number.
    How can I change it?

    Hello
    Lets assume that, we are going to change Management for controlling Valid From date
    Steps to be followed for creation of Change No
    Tcode CC01 for Change No
    Click on Change Master
    Once you enter into Change master, maintain the description
    In the Valid from Date, maintain the date from which you BOM should be current
    Maintain the Status (01)
    Click on Ojbect Type, maintain for which Object types is the Change no needs to be active i.e. for BOM, Rtg, etc
    save the Change No
    After the change no is created
    Enter the Change No during the creation mode of BOM
    THe system copies the Valid from date from Change No

  • Table to find BOM valid-till-date

    Hi Friends,
      I have to check the vality of BOM components,  through transaction CS03 i could able to see the Valid-till-date and i need to check the same in my code.
    Looked into following tables, thre is a field valid-from-date(DATUV) but i'm not getting field Valied-to-date(DATUB).
    MAST Material to BOM Link
    EQST Equipment to BOM Link
    STAS BOMs header
    STKO BOM header
    STPN BOM follow-Up control
    STPO BOM item
    STPU BOM sub-item
    STST Standard BOM link
    STVB Bills of material - Serialisation of posting
    STZU Permanent BOM data
    Can any one please help me.
    Thanks in advance.
    /Kiran

    Hi kiran,
    I think the Valid-to-date is in table AEEF-DATE_HI which can be linked with the BOM Header table STKO by field AENNR. Try this.
    Otherwise you can also get the Date using the FM CS_BOM_EXPLOSION....
    Use it as follows;
    CALL FUNCTION 'CS_BOM_EXPLOSION'
    EXPORTING
    AUMNG = 0
    CAPID = ' '
    DATUV = DATVAL "valid-from date
    EHNDL = '1'
    MKTLS = 'X'
    MEHRS = 'X'
    MMORY = '1'
    MTNRV = MATNR
    STLAL = LAL "like mast-stlal default '1'
    STLAN = LAN "like mast-stlan default '2'
    SVWVO = 'X'
    VRSVO = 'X'
    WERKS = WERKS
    mmaps = 'X'
    IMPORTING
    TOPMAT = STARTMAT "includes structure CSTMAT
    TABLES
    STBD = TBD "includes structure CSXDOC
    STBE = TBE "includes structure CSXEQUI
    STBK = TBK "includes structure CSXKLA
    STBM = TBM "includes structure CSXMAT
    STBP = TBP "includes structure CSXGEN
    STBT = TBT "includes structure CSXTDL
    EXCEPTIONS
    ALT_NOT_FOUND = 1
    CALL_INVALID = 2
    MISSING_AUTHORIZATION = 3
    NO_BOM_FOUND = 4
    NO_PLANT_DATA = 5
    NO_SUITABLE_BOM_FOUND = 6
    OBJECT_NOT_FOUND = 7
    CONVERSION_ERROR = 8
    OTHERS = 9.
    After the function call you will get the Valid to Date(DATEUB) from table STBP.
    Hope this Helps you...
    Regards
    Karthik D

  • Dump in user exist CC01 to set default value to valid from date

    Dear friends,
    Task is to set default value to valid from date field in Transaction "CC01".
    In INCLUDE ZXCCAU01 of Function 'EXIT_SAPMC29C_001' in Enhancement 'PCCD0001' I written the code like this
    DATA var LIKE sy-datum.
    var = var + 1.
    which is not related to program by creating project and activated the project.
    When I run cc01 it is giving dump.
    Error is :
    Program "SAPLXCCA" tried to use screen 1000.
    The screen does not exist.
    Can some one guide me What is the problem and How to resolve this.
    If not, Is there any other method this can be done.
    Regards,
    Venkat

    Hi venkat,
    DATA var LIKE sy-datum.
    var = var + 1.
    the code u written i guess not ok.The code used by kishan is correct. i.e
    DATA var LIKE sy-datum.
    sy-datum = sy-datum + 1.
    var =  sy-datum.
    write var.
    use the above code.
    SAPLXCCA is a functionpool not a program.please check the same.
    regards,
    Nagaraj

  • IDOC BOMMAT: Wrong validity-from dates for components

    Hi all,
    I am currently loading BOMs via IDOC BOMMAT for a data migration project. Unfortunately I am having problems to load the BOMs with the correct validity-from date for components. The data is correct when I check in LSMW, but after the load of the IDOCs the validity-from date of each component is the same as the validity date of the BOM header!
    System Version is SAP 4.7.
    Thanks for your help and Best Regards
    H.

    Has anybody any ideas?
    Thanks a lot!

  • Business partner change Valid From Date field

    How can I change the Valid From Date field in tables:
    BUT000
    BUT020
    BUT0BK
    BUT100
    Currently the of date of creation of the business partner is in this tables' Valid From field.
    In transaction BP the Address of the Business Partner is  valid from 01.01.1990 but still I get a warning that the business partner is not valid for date 01.11.2011.

    Sounds like the problem is the valid to date.  What is that date set to?

  • Updating Cube in the End Routine based on the incoming Valid From Date

    Hello Experts
    Here is my scenario.
    We are using BW 7.x.  There is DSO and from DSO it goes to the Cube, the promotions information.  These data targets will have Material (Article), Plant (Site), Promotions Number, Valid from and Valid to dates.  The Valid To date will come in as 12/31/9999 all the time.
    If I receive a new record from ECC with same Material, Plat and Promotion combination again, I need to get the Valid From Date from the new record and Update the existing record' Valid To date in DSO/Cube as Valid From of the new record - 1.
    So Valid To date of the existing record = New Record's Valid From date minus - 1.
    I would like to do the update in "End Routine" of the Cube.
    Would you please suggest if this can be done and if so would you please provide the sample code.
    THANK YOU in Advance.
    Nag.

    yes, you can do this...
    just use a RESULT_PACKAGE in end routine.
    and using RESULT_PACKAGE fatch the existing records from DSO and append that into RESULT_PACKAGE after your desired changes,
    just try to create a code using this l;ogic. if you can't then i will provide you a code.
    Regards,
    Ashish

  • X-distr.chain status in combination with valid from date

    Hello I am using MM02 X-distr.chain status in combination with valid from date, to give materials a certain status in the sales order depending on the delivery date of the orderline.
    How can I enter multiple statuses with future validation dates?
    example following status with validation dates where entered in MM02 for a material
    - material should have status A valid from January
    - material should have status B valid form April
    - material should have status C valid from July
    - material should have status D valid from September
    When I enter a sales order with delivery date in January system replies with status C.
    When I enter a sales order with delivery date in April system replies with status C .
    When I enter a sales order with delivery date in July system replies with status C .
    When I enter a sales order with delivery date in September system replies with status D.
    So only the current  ( or previous status when current is not valid yet) is retained by the system.
    How could multiple statuses be used?
    Thanks in advance
    Joos

    Hello Jalo,
    Thanks for your reply,
    My customer sell season relevant materials so they want to control order entry and delivery creation based on predefined dates.
    Status A  = material is blocked for order entry and delivery creation
    Status B  = material is allowed for order entry, delivery creation is blocked
    Status C  = material is allowed for order entry and delivery creation.
    Status D  = material is blocked for order entry, delivery creation is allowed.
    I had hoped to use standard functionality with this status field, it meets most of my customers requirements but at this moment the only alternative is to create a new table where this data can defined and create some abap logic in the user exit to set the status base on the table information.
    Regards
    Joos

  • VALID FROM DATE IN EQUIPMENT CREATION

    Hi PM experts
    Im new to PM ,While creating Equipment which date should we use in VALID FROM and what is use of this date.
    Regards
    ek

    ek s
    Valid from date is the date on which the Equipment was installed at the location.
    Keeping this date as installation date ensures that all the activities executed on machine are recorded in the system from that date.
    One of the use of this date is, we can maintain the history as to when the machine was installed at the location (In Equipment Usage).
    Secondly, the valid from date is used to restrict the creation of Maintenance order for that particular Equipment. For ex: If you have mentioned Equipment Valid from date as 01.03.2015, and you try to create Maintenance order of this Equipment with date as 01.02.2015, it will give an error that Equipment is not valid (or active) for that particular period.
    Hope this reply helps.
    Chin2.

  • Valid From Date in CT04

    Hi,
    We are on ECC 6.0. When I try to create a Characteristics in CT04, the Valid From date defaults to the System Date. If I change this date to any other date in the past, it saves the system date only.
    How do I make the Valid From date to something else?
    Regards,

    Dear Shameek,
    why do you want to create the characteristics for a past date?
    This is possible by creating a change number in CC01 with the valid from date as say 01.07.2011 and include the check box for
    characteristics in the object type(active) and use the change number in CT04 and check the results.
    But the drawback in this procedure is the system always expects a change number during the next change for that
    characteristics.
    Check and revert back.
    Regards
    Mangalraj.S

  • Change of valid from date in routing

    Dear All,
    How can i change the routing "valid from date".
    When i am creating a prod coder in co01 its throwing a message that routing is not found so when i wwent to co02 it is showing that valid from 09.01.2012 but i need production order from 01.01.2012.
    Plz help.
    Thanks.

    Hi,
    There is a work around to change the validity of routing without using ECM in this particular situation
    1) While creating routing in CA01 you can change the key date to some past date say 01.01.2012.
    2) If already routing exists (one GC available) for same material and group number you can create another GC with past date and use the new GC for Production order by changing the old GC status to 1
    Be sure of implications of creating master data in past and may not be a standard practice.
    you can try and hope useful.
    Regards,
    Brahmaji D

  • Start up date and valid from date in equipment

    Hi,
    If we put start up date before valid from date in the equipment master record,will there be any significance?

    Hi,
    Start up Date => Date from which the Equipment is used for operation or in any activities. This will be used for MTTR / MTBR analysis, as Thyagarajan told.
    Valid from date => Date from which that equipment is valid for the existing structure. In case, if Superior FL / Equipment has been changed for the equipment, valid from date will get changed according to that.
    Regards,
    Maheswaran.

Maybe you are looking for

  • Windows live error code:8501004

    I am using Nokia lumia 710 phone. The software is Windows 7.8. From past few dates there is the problem in synchronising of the windows live account. The error displayed is: "Windows live Error There is a problem with the way m.hotmail.com is setup,

  • Do I need an ethernet switch or new router for IP camera setup with old Airport Express

    Hello, I am trying to setup a third party Foscam IP camera to my network so that I can ultimately use it as a baby monitor, and am having some difficulty.  I currently still have an old Airport Express (with one ethernet port only).  This is preventi

  • At the time of reindex what should we take care ?

    Hi All, 1. When we reindex the table, what precausion to be take care. If the table having partition, triggers - Should we take a backup of these ? 2. How to compress/defragment the table ? Regards, Rajan B

  • How to return "HTTP/1.0 401 Authorization Required" from OSB's Message Flow

    How can I return "HTTP/1.0 401 Authorization Required" header from OSB's Message Flow? Using of "HTTP Transport -> Authentification" is not possible, because I need flow condition. Transports Headers activity from design palette doesn't allow to send

  • N97 contact list number display

    Can Nokia include the option to able to see Phone number when scrolling down Contact list... Pls... for N97 in the next firmware or anyone have any idea to view it without going into the edit option? thanks