CM23 - looking for BAPI/FM

hi there,
I have to implement a change in a operation of a production order (date-changes).
Someone told me that it is possible to change such a operation via transaction CM23 where I have the possibility to enter new dates via manual planning.
Now I'm looking for a Function Module or a BAPI which brings me this functionality to be used in a report. BDC seems also not possible because the trasnaction is too dynamic.
Can you give me perhaps some hints? Thanks!!
Kind regards
Markus

No that doesn't help
That brings me only the data (GETDETAIL), but no possibility to change
Kind regards
Markus

Similar Messages

  • Looking for bapi's to create records from custom software

    I'm looking for bapi to create
    1. InfoType 15 SubType 3001 (Additional Payments/Days Number)
    2. InfoType 15 SubType 3208 (Additional Payments/Overtime)
    I'm tried alot to find in standard bapi's but couldn't find related bapi to create these records.
    Kindly help me to use find out a standard bapi.

    hi
    if you want to create it using some extrernal software , you will have to define your own bapi or RFC which will call the HR infotype operation function module.
    Regards
    Sameer

  • We look for BAPI/Function to As-Built for Serialized Material (tran.COIB)

    Hello ,
    We look for BAPI/Function to As-Built for Serialized Material (transaction COIB).
    We check transaction COIB in order to create insatlled base for production orders(bill of equipments)
    We look for BAPI/ Function in order to run that process automatically in background base of some rules we will decide. Do you know if there is BAPI/ Function  refer to it?

    Sorry but I found the function group IBPP with the function modules:
    IBPP_CHANGE_IBASE
    IBPP_CREATE_IBASE
    IBPP_GET_IBASE_DOWN_ALL
    For our requirements these fmodules are sufficient.
    Regards

  • Looking for BAPI which can post condition records.

    Hi ,
    I am looking for a bapi which can post the condition records. I need to post Maximum Condition Base Value KONP-MXKBAS along with other fields. I found already one bapi BAPI_PRICES_CONDITIONS which has this field but if I execute
    the bapi with BAPI_TRANSACTION_COMMIT it is not posting any data at all. So could any one please help me out of this or if any other alternate BAPI* or any other solution is possible here. But one thing to mention here that LSMW,BDC is not possible to use.
    Thanks in advance.
    Best Regs
    Somnath

    Hi!
    In most common, standard BAPIs are working correctly.
    Here are a the following cases if they aren't:
    - standard fault, mostly has a correction note at OSS (very rare case)
    - the BAPI is not finishing succesfully. In this case, you always have to check the return table of the BAPI (BAPIRET2, or RETURN, etc...). In this table there is the error. Mostly it occurs due to incorrect customizing settings.
    Please check the return table of your BAPI, and you'll find out the problem.
    Regards
    Tamá

  • Looking For BAPI

    hai ...
    help me any one this is very very required plese help.
    I am Looking for Standarad bapi. the requirement is plant and material and any ...
    requiry fields is
    Fullyqualifiedname
    Type name
    created on
    modified on
    description
    icon index source
    min
    max
    this is one of the product in
    incuity....
    plese help any body
    regards
    Satish.....

    hai ...
    help me any one this is very very required plese help.
    I am Looking for Standarad bapi. the requirement is plant and material and any ...
    requiry fields is
    Fullyqualifiedname
    Type name
    created on
    modified on
    description
    icon index source
    min
    max
    this is one of the product in
    incuity....
    plese help any body
    regards
    Satish.....

  • Looking for BAPI- Material change in workorders

    Hi Gurus,
    I have scenario Where I need BAPI , which used by legacy system to pull the data.
    Requirment is : In an PM work order , Component tab we add serilized materials. some time we can remove the added serialized material  based on the requirment during the service.
    Solution iam looking what ever user add/remove the serilized material from the component list , i need to see this changes in BAPI additionally the serilized material , I need to pull the serial nos(equipment id) for the added or removed materials.
    Please suggest me the BAPI , if two BAPI to do these functions i will wrap and make the customized one.
    appreciate your suggestions
    regards
    Krish

    Hi Pete,
    User will enter only the material number which has serilization.(created Material serilzation  in IQ01 ) so both material serial number is same as equipment number.
    What Iam looking is When user add some components and delete some components in repair order  want to view what parts removed and what  added,  i think componet change we get using  BAPI_ALM_COMPONENT_GET_DETAIL.
    Again after getting these components details  i need to pull the serial number ( which is equalent to Equipment id).
    So to complete two steps i.e
    1. Pull the components changes in the order which bapi i need to use
    2. also to see the serial number for those components which BAPI  i need to use..
    after getting these two BAPI  can i link them to get desired out has serial number
    apppreciate your response
    regards
    krish

  • Looking for BAPI/FM for LT10

    Hi All-
    Can anyone please provide me if there is any BAPI or FM is available to create Stock Transfer using LT10...
    Please provide me the suggestions...I will give you reward points for helpfull answers...
    Thanks,
    Sony...

    Hi,
    The following FM are used in the program LT10.
    check these..
    L_TO_CREATE_SINGLE
    L_TO_CREATE_MULTIPLE
    Thanks,
    Naren

  • Looking for BAPI/FM for LB12 and  LT12

    Hi All-
    I am trying to find-out either BAPI's or FM to create Trasfer Orders(LB12) and Confirm Transfer Order(LT12)...
    Please help me out....

    I used "L_TO_CREATE_MULTIPLE",this can create a transfer order with two or more items,
    just like:
    REPORT  Z_L_TO_CREATE_SINGLE.
    data begin of i_ltap_cr occurs 0.
         include structure LTAP_CREAT.
    data end of i_ltap_cr.
    data : w_tanum TYPE ltak-tanum.
    i_ltap_cr-matnr = '000000000064802100'.
    i_ltap_cr-werks = '7960'.
    i_ltap_cr-lgort = '9820'.
    i_ltap_cr-CHARG = '711A001002'.
    i_ltap_cr-altme = 'KG'.
    i_ltap_cr-ANFME = '3103.776'.
    *i_ltap_cr-squit = 'X'."This means automatically confirm APPEND i_ltap_cr.
    Now the Stillage must be added.
    APPEND i_ltap_cr.
    i_ltap_cr-matnr = '000000000064900001'.
    i_ltap_cr-werks = '7960'.
    i_ltap_cr-lgort = '9820'.
    i_ltap_cr-CHARG = '727A01A004'.
    i_ltap_cr-altme = 'KG'.
    i_ltap_cr-ANFME = '5630'.
    *i_ltap_cr-squit = 'X'."This means automatically confirm APPEND i_ltap_cr.
    APPEND i_ltap_cr.
    CALL FUNCTION 'L_TO_CREATE_MULTIPLE'
      EXPORTING
        i_lgnum                      = '832'
        i_bwlvs                      = '201'
       I_BENUM                      = '8086021402'
       I_BNAME                      = SY-UNAME
    IMPORTING
      e_tanum = w_tanum
      tables
        t_ltap_creat                 =  i_ltap_cr
    IF sy-subrc <> 0.
    ENDIF.

  • Looking for a particular BAPI for VB01

    Hi everyone,
    I'm looking for a BAPI i could use VB01 to tie finish goods to customer.
    I have got 5000 materials for my conversion, and each customer can tie to many materials, any ideas on this?

    Hai bernard,
    try this BAPI.
    BAPI_CUST_SAREAS_MATERIALS_GET -
    Create List of Materials for the Sales Areas of a Customer.
    REGARDS,
    PRABA.

  • Looking for some BAPIs to do some simple things

    Hello I am looking for someone to help me identify some BAPI function modules that will get me what I need.  Here is the information that I need, if you are able to identify a function module I can use, please let me know:
    Identify if a quotation number exists in the system which a specific sales organization.
    Determine the sale price of a material for a specific customer
    A simplier way to identify the plant specific status of a material without using the MATERIALGETALL
    Identify if a specific customer used a supplied purchase order before
    Identify if a customer has been placed on credit hold
    Thanks,
    Kent

    hello Maxwell ,
    hhave a look at tcode BAPI , under MM application area.... u will get all BAPIs related to MM modules.
    Identify if a quotation number exists in the system which a specific sales organization.
    Determine the sale price of a material for a specific customer-->u need to ask your functional consultant , may be he is creating info record for that one?
    A simplier way to identify the plant specific status of a material without using the MATERIALGETALL-->use table MARC
    Identify if a specific customer used a supplied purchase order before.
    Identify if a customer has been placed on credit hold-->i think u can make use of tcode vkm4 or custome master data will have all these info.
    regards
    Prabhu

  • Looking for Standard BAPI's

    Hi All,
    1. If I give Sold-to,should return Payer, Bill-to and Ship-to Party...Can anyone please let me know is there any standard BAPI ?
    2.If I give Sold-to, Should return the Shipping Instruction text and so-on (Go to Sales Area data tab for a customer Trax VD03. Extras / Text. Function)...Is there any BAPI to retrieve the Text?
    Thanks in Advance...I will assgin reward points if anyone gives me the answer
    Thanks,
    Sai

    Thanks for your efforts. This approach will not wotk out for us becasue it gives us n number of records.
    We are looking for another BAPI which will pull-up INCO1 and INCO2(International Shipping Terms), if we pass sold-to, I know that we can retrieve these records from KNVV table but I am looking for standard BAPI.
    If any one can provide me standard Bapi's for any one of my questions, that would be greatful. I will assgin you the reward points.
    Thanks,
    Sai

  • Looking for two BAPIs which will provide me specific BI information

    Hello,
    I am developing something from the Java side and I am looking for two BAPIs which will provide me the following information regarding our BI:
    1. a BAPI that by giving it a userid will provide me a list of the ODSs the users has access to.
    2. a BAPI that by giving it an infoArea will provide me the list of ODSs inside this infoArea. Here, all I could find was BAPI_ODSO_GETLIST which gives me all the ODSs in our Business Wearhouse in all infoAreas.
    Thank you in advance,
    Roy

    hello Maxwell ,
    hhave a look at tcode BAPI , under MM application area.... u will get all BAPIs related to MM modules.
    Identify if a quotation number exists in the system which a specific sales organization.
    Determine the sale price of a material for a specific customer-->u need to ask your functional consultant , may be he is creating info record for that one?
    A simplier way to identify the plant specific status of a material without using the MATERIALGETALL-->use table MARC
    Identify if a specific customer used a supplied purchase order before.
    Identify if a customer has been placed on credit hold-->i think u can make use of tcode vkm4 or custome master data will have all these info.
    regards
    Prabhu

  • Problem Please help me.....Let me know the area to look for it I am a DBA..

    Problem Please help me.....Let me know the area to look for it I am a DBA..Thanks in advance to let me know the cause and the area to look and fix it...
    Server Error in '/' Application.
    Problem with SAP/BAPI. SAP.Connector.RfcCommunicationException: Connect to message server failed Connect_PM MSHOST=prddb01.lamrc.com, R3NAME=PRD, GROUP=Prod HR PRD LOCATION CPIC (TCP/IP) on local host ERROR service 'sapmsPRD' unknown TIME Wed May 04 08:59:06 2005 RELEASE 620 COMPONENT NI (network interface) VERSION 36 RC -3 MODULE ninti.c LINE 428 DETAIL NiPServToNo SYSTEM CALL getservbyname COUNTER 1 at SAP.Connector.SAPConnection.ThrowRfcException(RFC_ERROR_INFO_EX rfcerrInfo, Encoding encoding, String languangeCode) at SAP.Connector.SAPConnection.Open() at SAP.Connector.SAPClient.RfcInvoke(String method, Object[] methodParamsIn) at SAP.Connector.SAPClient.SAPInvoke(String method, Object[] methodParamsIn) at SoftwareKeySAPG.SAPProxy1.Z_Bapi_Load_Kpi_Region(ZSOFT_KPI_REGIONS_MTable&amp; Kpi_Regions, ZSOFT_PROD_TYPETable&amp; Prod_Type) at SoftwareKeySAPG.SAPGSK.LoadKPIRegion(DataSet dsProduct)
    Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
    Exception Details: System.Web.Services.Protocols.SoapException: Problem with SAP/BAPI. SAP.Connector.RfcCommunicationException: Connect to message server failed Connect_PM MSHOST=prddb01.lamrc.com, R3NAME=PRD, GROUP=Prod HR PRD LOCATION CPIC (TCP/IP) on local host ERROR service 'sapmsPRD' unknown TIME Wed May 04 08:59:06 2005 RELEASE 620 COMPONENT NI (network interface) VERSION 36 RC -3 MODULE ninti.c LINE 428 DETAIL NiPServToNo SYSTEM CALL getservbyname COUNTER 1 at SAP.Connector.SAPConnection.ThrowRfcException(RFC_ERROR_INFO_EX rfcerrInfo, Encoding encoding, String languangeCode) at SAP.Connector.SAPConnection.Open() at SAP.Connector.SAPClient.RfcInvoke(String method, Object[] methodParamsIn) at SAP.Connector.SAPClient.SAPInvoke(String method, Object[] methodParamsIn) at SoftwareKeySAPG.SAPProxy1.Z_Bapi_Load_Kpi_Region(ZSOFT_KPI_REGIONS_MTable&amp; Kpi_Regions, ZSOFT_PROD_TYPETable&amp; Prod_Type) at SoftwareKeySAPG.SAPGSK.LoadKPIRegion(DataSet dsProduct)
    Source Error:
    An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below. 
    Stack Trace:
    [SoapException: Problem with SAP/BAPI.
    SAP.Connector.RfcCommunicationException: Connect to message server failed
    Connect_PM  MSHOST=prddb01.lamrc.com, R3NAME=PRD, GROUP=Prod HR PRD
    LOCATION    CPIC (TCP/IP) on local host
    ERROR       service 'sapmsPRD' unknown
    TIME        Wed May 04 08:59:06 2005
    RELEASE     620
    COMPONENT   NI (network interface)
    VERSION     36
    RC          -3
    MODULE      ninti.c
    LINE        428
    DETAIL      NiPServToNo
    SYSTEM CALL getservbyname
    COUNTER     1
       at SAP.Connector.SAPConnection.ThrowRfcException(RFC_ERROR_INFO_EX rfcerrInfo, Encoding encoding, String languangeCode)
       at SAP.Connector.SAPConnection.Open()
       at SAP.Connector.SAPClient.RfcInvoke(String method, Object[] methodParamsIn)
       at SAP.Connector.SAPClient.SAPInvoke(String method, Object[] methodParamsIn)
       at SoftwareKeySAPG.SAPProxy1.Z_Bapi_Load_Kpi_Region(ZSOFT_KPI_REGIONS_MTable&amp; Kpi_Regions, ZSOFT_PROD_TYPETable&amp; Prod_Type)
       at SoftwareKeySAPG.SAPGSK.LoadKPIRegion(DataSet dsProduct)]
       System.Web.Services.Protocols.SoapHttpClientProtocol.ReadResponse(SoapClientMessage message, WebResponse response, Stream responseStream, Boolean asyncCall) +1503
       System.Web.Services.Protocols.SoapHttpClientProtocol.Invoke(String methodName, Object[] parameters) +218
       SoftwareKeyUI.InstalledBaseDataWS.InstalledBaseData.LoadKPIRegionMulti(DataSet products)
       SoftwareKeyUI.InstalledBaseDataAccess.LoadKPIRegionMulti(DataSet products)
       SoftwareKeyUI.InstalledBase.GetRegionDetails(Int32 userId, String product, String regionType)
       SoftwareKeyUI.FilteredAccess.GetRegionDetails(Int32 userId, String product, String regionType)
       SoftwareKeyUI.search.LoadRegionDetails()
       SoftwareKeyUI.search.regionType_SelectedIndexChanged(Object sender, EventArgs e)
       System.Web.UI.WebControls.ListControl.OnSelectedIndexChanged(EventArgs e) +108
       System.Web.UI.WebControls.DropDownList.System.Web.UI.IPostBackDataHandler.RaisePostDataChangedEvent() +26
       System.Web.UI.Page.RaiseChangedEvents() +115
       System.Web.UI.Page.ProcessRequestMain() +1099

    The error is a very basic one - the sapmsPRD service is not known. You will have to go to <NT_ROOT>\system32\drivers\etc and add the entry sapmsPRD 3600 to this file.
    This is basically telling the requester at what port to look for the message server.
    C

  • Problem Please help me.....Let me know the area to look for it

    Problem Please help me.....Let me know the area to look for it I am a DBA..Thanks in advance to let me know the cause and the area to look and fix it...
    Server Error in '/' Application.
    Problem with SAP/BAPI. SAP.Connector.RfcCommunicationException: Connect to message server failed Connect_PM MSHOST=prddb01.lamrc.com, R3NAME=PRD, GROUP=Prod HR PRD LOCATION CPIC (TCP/IP) on local host ERROR service 'sapmsPRD' unknown TIME Wed May 04 08:59:06 2005 RELEASE 620 COMPONENT NI (network interface) VERSION 36 RC -3 MODULE ninti.c LINE 428 DETAIL NiPServToNo SYSTEM CALL getservbyname COUNTER 1 at SAP.Connector.SAPConnection.ThrowRfcException(RFC_ERROR_INFO_EX rfcerrInfo, Encoding encoding, String languangeCode) at SAP.Connector.SAPConnection.Open() at SAP.Connector.SAPClient.RfcInvoke(String method, Object[] methodParamsIn) at SAP.Connector.SAPClient.SAPInvoke(String method, Object[] methodParamsIn) at SoftwareKeySAPG.SAPProxy1.Z_Bapi_Load_Kpi_Region(ZSOFT_KPI_REGIONS_MTable&amp; Kpi_Regions, ZSOFT_PROD_TYPETable&amp; Prod_Type) at SoftwareKeySAPG.SAPGSK.LoadKPIRegion(DataSet dsProduct)
    Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
    Exception Details: System.Web.Services.Protocols.SoapException: Problem with SAP/BAPI. SAP.Connector.RfcCommunicationException: Connect to message server failed Connect_PM MSHOST=prddb01.lamrc.com, R3NAME=PRD, GROUP=Prod HR PRD LOCATION CPIC (TCP/IP) on local host ERROR service 'sapmsPRD' unknown TIME Wed May 04 08:59:06 2005 RELEASE 620 COMPONENT NI (network interface) VERSION 36 RC -3 MODULE ninti.c LINE 428 DETAIL NiPServToNo SYSTEM CALL getservbyname COUNTER 1 at SAP.Connector.SAPConnection.ThrowRfcException(RFC_ERROR_INFO_EX rfcerrInfo, Encoding encoding, String languangeCode) at SAP.Connector.SAPConnection.Open() at SAP.Connector.SAPClient.RfcInvoke(String method, Object[] methodParamsIn) at SAP.Connector.SAPClient.SAPInvoke(String method, Object[] methodParamsIn) at SoftwareKeySAPG.SAPProxy1.Z_Bapi_Load_Kpi_Region(ZSOFT_KPI_REGIONS_MTable&amp; Kpi_Regions, ZSOFT_PROD_TYPETable&amp; Prod_Type) at SoftwareKeySAPG.SAPGSK.LoadKPIRegion(DataSet dsProduct)
    Source Error:
    An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.
    Stack Trace:
    [SoapException: Problem with SAP/BAPI.
    SAP.Connector.RfcCommunicationException: Connect to message server failed
    Connect_PM MSHOST=prddb01.lamrc.com, R3NAME=PRD, GROUP=Prod HR PRD
    LOCATION CPIC (TCP/IP) on local host
    ERROR service 'sapmsPRD' unknown
    TIME Wed May 04 08:59:06 2005
    RELEASE 620
    COMPONENT NI (network interface)
    VERSION 36
    RC -3
    MODULE ninti.c
    LINE 428
    DETAIL NiPServToNo
    SYSTEM CALL getservbyname
    COUNTER 1
    at SAP.Connector.SAPConnection.ThrowRfcException(RFC_ERROR_INFO_EX rfcerrInfo, Encoding encoding, String languangeCode)
    at SAP.Connector.SAPConnection.Open()
    at SAP.Connector.SAPClient.RfcInvoke(String method, Object[] methodParamsIn)
    at SAP.Connector.SAPClient.SAPInvoke(String method, Object[] methodParamsIn)
    at SoftwareKeySAPG.SAPProxy1.Z_Bapi_Load_Kpi_Region(ZSOFT_KPI_REGIONS_MTable&amp; Kpi_Regions, ZSOFT_PROD_TYPETable&amp; Prod_Type)
    at SoftwareKeySAPG.SAPGSK.LoadKPIRegion(DataSet dsProduct)]
    System.Web.Services.Protocols.SoapHttpClientProtocol.ReadResponse(SoapClientMessage message, WebResponse response, Stream responseStream, Boolean asyncCall) +1503
    System.Web.Services.Protocols.SoapHttpClientProtocol.Invoke(String methodName, Object[] parameters) +218
    SoftwareKeyUI.InstalledBaseDataWS.InstalledBaseData.LoadKPIRegionMulti(DataSet products)
    SoftwareKeyUI.InstalledBaseDataAccess.LoadKPIRegionMulti(DataSet products)
    SoftwareKeyUI.InstalledBase.GetRegionDetails(Int32 userId, String product, String regionType)
    SoftwareKeyUI.FilteredAccess.GetRegionDetails(Int32 userId, String product, String regionType)
    SoftwareKeyUI.search.LoadRegionDetails()
    SoftwareKeyUI.search.regionType_SelectedIndexChanged(Object sender, EventArgs e)
    System.Web.UI.WebControls.ListControl.OnSelectedIndexChanged(EventArgs e) +108
    System.Web.UI.WebControls.DropDownList.System.Web.UI.IPostBackDataHandler.RaisePostDataChangedEvent() +26
    System.Web.UI.Page.RaiseChangedEvents() +115
    System.Web.UI.Page.ProcessRequestMain() +1099

    Hi
    You should make a mapping for the service sapmsPRD in your /etc/services file (On Windows: C:WINDOWSSYSTEM32DRIVERSETCservices). If your instance number is 00 you will have to add the following entry:
    sapmsPRD      3600/tcp
    Good luck!
    René van Es

  • Looking for ABAP Documents

    I am looking for these Materials if anybody please post the link or upload it on mediafire.
    I will be very thankful. As I am new to ABAP and would like to learn these because nowadays these are the common requirements for the ABAP Developer jobs.
    ABAP Programming (Data Dictionary,Tables,Structures,Views,Selection Screen)+
    *) ABAP Reports ( Interative and Classic)
    *) BDC (Batch Data Communication)
    *) SAP Scripts
    *) Smart Forms
    *) ALV (ABAP List Viewer)
    *) ALE (Application Link Enabling)
    *) Work Flow
    *) User Exits
    *) BADI (Business Add-in)
    *) RFC (Remote Function Call)
    *) ABAP Screen Painter
    *) BAPI (Business Application Programming Interface)
    Edited by: Muhammad  iqbal on Apr 25, 2009 12:57 AM

    Muhammad,
    SDN is excellent forum to search and learn the things. So is SAP Help.
    First do one thing. Go to SAP Help and then try to learn the concepts. Try to write the code.
    If you are stuck, get in to SDN and search the things that you needed.
    If you are again stuck, we are always here to help you out
    Thanks,
    Babu Kilari

Maybe you are looking for

  • Good Image Browser

    Hi all, Can anyone recommend an Image Browser for OS 9.x that works as well as ACDSee for the PC? Unfortunately, the version of ACDSee available for Mac is old and very limited. I'd like to be able to quickly flip through all the images in a folder a

  • JMS Sender Communication  Channel problem

    Hi XI gurus!! I have a JMS Sender Communication Channel that cannot get information from JMS TIBCO queue. In defaultTrace.XX.trc I see the following information and errors: #1.#00144F249F1500C70000087D00002D8300044A22A193A198#1207412506993#com.sap.ai

  • Document atatchment to PO/PR/RFQ

    Can any body please suggest on can we attach a document to PR or PO or RFQ ?? Buyer prefer attaching a pdf file to quotation if possible, if not at least in PR/PO, If yes please suggest how?

  • Where can I download Windows PS CS5 extended?

    Hi. I have PS5.1 extended on my computer but am living overseas at the moment and want to transfer the license to a new computer. Though I have my legal serial number I do not have my disks and I can't find the free trial download for 5.1 anywhere. I

  • Iphoto wont recognize photos on iphone

    Iphone 5 iOS 7.1.1 Macbook iOS 10.5.8 iPhoto on macbook 7.1.5 While wanting to import photos from iphone to iphoto, iphoto will recognize my iphone but says there are no items. There is clearly photos on my phone. What could be happening?