Completion date for manually created maintenance notification

Hi All,
When closing maintenance notification created manually by t-code- IW21,there is no field to enter completion date & time. System is proposing the current  date as completion  date by default. However , as I have flagged u201Ccompletion datau201D  in maintenance plan category for notification ,system is asking/proposing completion date/time during NOCO of preventive maintenance.
Where I can do settings in configuration so that system  will ask/propose to enter completion date/time during NOCO of manually created notification by t-code IW21?
rgds
rajib

In notification type views you have option to set Reference date & time- if you set it to A- Malfunction start date & time will
be proposed, if  you set it to B- Notification receipt date & time will be proposed, if you set it to C- Malfunction end time will
be proposed, & in case of D - current date & time of completion of notification will be proposed while completing notification.
Better set it to B & make the field malfunction start date & time mandatory  so that your history will be with reference to malfunction start. Or you can set it to A, C or D as per your requirement
Shakti
Edited by: SHAKTI BEHERA on Aug 14, 2010 10:09 AM

Similar Messages

  • Completion date for notification, IW22

    when i tried to set the completion date for a notification through IW22 am not able to view the completion date and completion time inputs in the popup screen, only reference date and reference time is showing
    can this be due any status set to that notification

    since am a technical person am not that much aware of the entire process.since i dont have internet in our office i cant send u the screen shots also
    the process i try to do is
    1.when i go to iw22 try to set the complete status by clickin on the flag for some cases it is showin the completion date and for some case it is not, we are asked to check for it
    can you jst explain the process of the maintenance plan like as you said there might be the process of auto generating notification liket that

  • Complete data for tcode DB02

    let me know the name of table that stores the complete data for tcode DB02

    Hello Arun,
    Please check tables DBCHK and TBATG.
    Thank you,
    Shyam

  • Completion Date for SLA

    Hi All,
    Iam working on SLA. I have configured the SLA to my knowledge.
    The problem now it the comopletion date is not getting calculated for the tickets that is created.
    Where exactly is the configuration that i have to for the compeltion date and time calculation.
    It will be useful if any documentation is available for SLA configuration other than additional information.
    Kindly forward any documents related to SLA or where can do the configuration for the completion date calculation.
    Regards,
    Subhashini.

    Hi,
    I am mentioning the points reg SLA or individual steps needed to use and monitor SLAs:
    · If necessary, define a new availability schema and reaction schema (Menu: Master data
      Product   Edit availability and reaction schema (transaction: COMMPR01 u2013 Edit
    Products).
    · Product "Supportu201C may contain default values for availability schema and reaction
    schema (however, this is not mandatory.)
    · Contract determination for the transaction type of the Support Desk notification (SLFN)
    must be allowed. (SAP-Customizing CRM   Transactions   Basic settings   Define
    transaction type)
    · Depending on the item type for the product Support (SOL4), assign the action profile
    SERVICE_ORDER_ITEM_SLA (SAP Customizing CRM   Transactions   Basic
    settings   Define item type).
    · Use the Action Monitor (CRMC_ACTION_JOB) to create variant (SMSD0001 is shipped
    with the Support Desk).
    · Create a background job (transaction SM36) using program RSPPFPROCESS and
    variant SMSD0001, and schedule it.
    · Create a contract and release it using transaction CRMD_ORDER.
    · Create and process Support notifications (the contract must be determined correctly).
    · If the times in the Support Desk notification are exceeded, actions in the action profile
    will be triggered by the background job, and appropriate users will be notified by e-mail.
    Also check my replies in this thread,
    hope it wil clarifies ur doubt
    Regards
    Prakhar

  • Problems in creating maintenance notification BAPI_ALM_NOTIF_CREATE

    Hi,
    I am not able to create a maint. notification of  type M3 using BAPI_ALM_NOTIF_CREATE using JCO block. I am getting notification number as %000000000001 in responce. I feel the notification is getting created in transit but as i have no way to save it (i do not know the notification number), when i disconnect, the R/3 system kills it. I am not passing anyother parameter asa nothing else seems mandatory. Tried passing Short Text as well but same answer
    Is there something i am missing or there is another BAPI by which i can create the maint. notification.
    Is some conf required on the R/3 sysetm as well?
    Thanks,
    Piyush..

    After creating the Notification one has to save it as well. Use BAPI_ALM_NOTIF_SAVE to complete the process.
    If you are making use of the SAP JCO Interface actions in the Logic Editor then the correct steps would be
    1. Open a JCO session
    2. Call Notif Create
    3. Call Notif Save (Pass the Notif number created in 2)
    4. Commit JCO Session
    5. End JCO Session.
    Infact you will have to make use of these new actions (rather than the stand alone SAP JCO Interface action) to create PM Notifications.

  • RFC WHICH CAN USE DYNAMIC SQL AS INPUT AND SHOW COMPLETE DATA FOR TABLE

    Hi Expert,
    I am trying to create a FM like RFC_READ_TABLE. In this table we put table name and the field name for which we write a query and option for query we get the out put only for that field in this case.
    My requirement is very similar to this. But here i want to enter any table name and in option i want to write dynamic sql query for any filed of table then i want data based on this so that it will display the entire table entries.
    Like TABNAMELIKE     EKKO
    OTHERCON     bukrs_k = 3000.
    Based on this selection it has to show the entire table fields.
    To make this easy to understand i made a custom FM which are getting data from table or view and i select any field and put query it will show the result.
    FUNCTION ZDYNSQL_EKKO_EKPO.
    ""Local Interface:
    *"  IMPORTING
    *"     VALUE(ERNAMLIKE) TYPE  CHAR15 OPTIONAL
    *"     VALUE(OTHERCON) TYPE  CHAR50 OPTIONAL
    *"  TABLES
    *"      VALUE STRUCTURE  V_EKKO_EKPO
    *TABLES : V_EKKO_EKPO, EKKO, EKPO.
    DATA: STR_WHERE TYPE TABLE OF EDPLINE.
    DATA: STR_LINE TYPE EDPLINE.
    *CONCATENATE 'EBELN LIKE''' EBELNLIKE '%''' INTO STR_LINE.
            CONCATENATE 'ERNAM LIKE ''' ERNAMLIKE '%''' INTO STR_LINE.
            IF OTHERCON <> '            '.
            CONCATENATE STR_LINE 'AND' OTHERCON '            ' INTO STR_LINE SEPARATED BY SPACE.
            ENDIF.
          APPEND STR_LINE TO STR_WHERE.
          SELECT * FROM  V_EKKO_EKPO INTO CORRESPONDING FIELDS OF TABLE VALUE WHERE (STR_WHERE).
    ENDFUNCTION.
    Now here is sample code of exact requirement.
    FUNCTION ZDYNSQL_TABLE_READ.
    ""Local Interface:
    *"  IMPORTING
    *"     VALUE(TABNAMELIKE) TYPE  DD02L-TABNAME
    *"     VALUE(OTHERCON) TYPE  CHAR80 OPTIONAL
    *"  TABLES
    *"      VALUE STRUCTURE  DD02L
    DATA: STR_WHERE TYPE TABLE OF EDPLINE.
    DATA: STR_LINE TYPE STRING.
            CONCATENATE 'TABNAME LIKE ''' TABNAMELIKE '%' 'DD02L' 'TABNAME' INTO STR_LINE.
            IF OTHERCON <> '            '.
            CONCATENATE STR_LINE 'AND' OTHERCON '            ' INTO STR_LINE SEPARATED BY SPACE.
            ENDIF.
          APPEND STR_LINE TO STR_WHERE.
          SELECT * FROM DD02L INTO CORRESPONDING FIELDS OF TABLE VALUE WHERE (STR_WHERE).
    ENDFUNCTION.
    In this i put table name as EKKO and put sql query as bukrs_k = 3000 it provide a short dump.
    How can i solve this problem. Please provide some input or modification
    Thanks And Regards
    Ranjeet Singh

    Hi Kris,
    I tried to make sample using that link you provide to me. How can i declare Global Interface in FM and in import parameter references like "REFERENCE(I_INTERFACE_CHECK) DEFAULT SPACE".
    Also it uses a function-pool.
    Let me tell you about my exact requirement about FM.
    I want in import parameter input as any SAP Table name like
    TABNAME TYPE EKKO
    OPTIONS TYPE CHAR80
    I want my output to be stored in TABLES attributes as per the table name entered in import parameter. In import parameter Table name can be any one of SAP tables and Option based on that particular table. Like if i go with table EKKO and put OPTIONS as
    ebelp = 4 then TABLES attributes Tab  contains all the relevant data for input.
    Is there any way with the help of that i can put my data into internal tables. I tried to put in TABLES as VALUE LIKE ANY but it shows that generic are not allowed. Can you provide some sample on this.
    I also getting exceptions like CX_SY_DYNAMIC_OSQL_SEMANTICS, SAPSQL_INVALID_FIELDNAME.
    Waiting for your valuable reply.
    Thanks And Regards
    Ranjeet Singh

  • Delete chackbox for manually create report region

    Hi guys,
    First of all I want to say you're providing excellent support. I did research the topic but didn't come accross anything that worked (not to say I couldn't have missed something either). My challenge for the moment is that I've manually created a couple of multi-row report regions which appear on the same page & need to flag records for deletion. As I'm sure you know - I used the htmldb_item package to accomplish this - but the htmldb_item package doesn't support chekboxes. Is there a workaround?
    Kind Regards,
    Sabrina

    Okay - here is one example of something I tried. You're right it's not necessarily a "bug", but as this note is made from the following how-to link "not supported".
    http://www.oracle.com/technology/products/database/htmldb/howtos/tabular_form.html
    Note: Checkbox, popup calendar, and popup key LOV
    are not supported under updateable column attributes in report attributes section.
    Example:
    Select
    x.address_line1,
    x.address_line2,
    x.town,
    x.postal_code,
    x.cntry_code
    from
    (Select
    htmldb_item.text(1,address_line1,10) address_line1,
    htmldb_item.text(2,address_line2,10) address_line2,
    htmldb_item.text(3,town,10) town,
    htmldb_item.text(4,postal_code,10)postal_code,
    htmldb_item.text(4,cntry_code,10) cntry_code,
    htmldb_item.checkbox(5,del_flag,decode( del_flag, 'Y', 'CHECKED', NULL )) del_flag
    from addresses
    where a_pid = :P7_PID
    union all
    Select
    htmldb_item.text(1,null,10) address_line1,
    htmldb_item.text(2,null,10) address_line2,
    htmldb_item.text(3,null,10) town,
    htmldb_item.text(4,null,10) postal_code,
    htmldb_item.text(4,null,10) cntry_code,
    htmldb_item.checkbox(5,null) del_flag
    from all_objects where rownum < nvl(:P7_ROWS,2)) x

  • Fixed due date for billing created in a period

    Hi
    We want the new payment tem that should work in the following way
    Billing date from 01.01.2008 to 31.03.2008 due date should be 20.04.2008
    Billing date from 01.04.2008 to 30.06.2008 due date should be 20.07.2008
    Please note that the billing period is for three month for which we want a fixed due date.
    We required the expert's comment on the above scenario
    Regards
    DILIP PARAB

    Hi Dilip
    This can be configured in the payment terms (OBB8).  Here under baseline date calculation
    Fixed Day should be 20 (in your case)
    Additional Months       3
    then select posting date as default for baseline date.
    This will take for every month invoice 3 months.
    But in your case as you stated 1.1.2008 to 31.3.2008 it should be standard 20.4.2008 u have to create 3 payment terms as above with a difference of additional months, one for 3 (for the first month billing), second one as 2 (for second month billing) and 3 rd one as 1 (for 3 rd month billing).  You can attach the respective payment terms at the time of your sale order creation.
    Any additional help revert back.
    Regards
    Brahma

  • Bill key date for manual billing

    When a manual billing document is invoiced, the bill key date field in table ERDK remains empty even though it has been correctly filled in ERCH. Any idea why this is so and how it can be corrected?

    Hi,
    To update the Bill Key date in ERDK,we implemented the BADI ISU_DEF_BILL_PERIOD and inside it,under method SET_BILLING_PERIOD_INV we made the code changes to update the billing key date.
    Thanks,
    Shreeraj

  • On Work Order using Object lists for equip u can manually create Notifi

    On a maintenance Work Order using Object lists for equipment you can manually create a notification for each line item.
    We want to automate this process to do this when we save the document.
    Any ideau2019s on how to do this?
    Does a user exit exist for this?

    Hi:
    Check with Tcode: IBIP - Plant maintenace batch input utility tool.
    Hope, it may help!
    Thanks,
    Murali.

  • Technically Completion Date in Future

    Hi All,
    Any idea why SAP has provided an option to enter/allow the technically completion date for maintenance orders and notifications in future.
    How to restict this?
    Thanks in advance.
    Best Regards
    Kalyan

    Hi Kalyan,
    After replying as above, I spent some time to search for solutions, to convey to you.
    Without detailing much I'll convey my observations so far.
    System message in this area (IM)  I could not have a control. (Configuration)
    Even I tried via User-Exit too, here also things could not work, with several other observations.
    So i thought I should update you. In case any outcome I'll update.
    Secondly, I'll give how my system has it presently.
    In Notification I am unable to Save in future date (24hrs after current time) throwing IM464 error.
    But in Order it is successfully TECOed.
    Strange thing is both field names (Reference Date) are same (RIW01-BEZDT).
    So at present I consider this area is not properly lined-up.
    Few SAP notes are also available on message no. IM464.
    Best of Luck
    Jogeswara Rao K

  • Default Call Completion Date

    When we TECO a PM work order created from a maintenance plan we specify the TECO date for the order and the call completion date for the plan.  We've configured the default order TECO date to be the basic finish date on the order.  The call completion date is defaulted to the plan date for that call.  We'd like to specify a default call completion date other than the plan date but we're not sure the default call completion date is configurable and if it is, where to change it?
    Thanks for the help!
    David Macindoe

    David,
    No its not configurable.
    If you are using ECC6, then you may be able to use the Enhancement Framework options to develop a solution - ask your ABAP team.
    PeteA

  • Activation of SPL address check for manual SPL list

    Hi All,
    I have added the new SPL address data manually twith the combination of legal regulation, existing list type,data provider and generated the comparision index for this address.But while i created the sales order with this address it has not hit for SPL block where as if i enter the SPL address data updated based on XML files it has hit for SPL block.Could you please let me know how to hit SPL block for manually created SPL addresses.
    Regards,
    Hari Challa.

    You can follow the below steps to lead-up to the cause.
    1. Just regenerate  the comparison terms of the SPL record and BP appearing on the order .
    2. Check if you partner is not already on the positive list of partners
    3. Carry out "Simulation of Business Partner" to see what result is yielded out there..
    Let me know the results of the above 3 steps and I can guide you ahead on the resolution.
    Regards,
    Jasmit

  • Maintenance Notifications BAPI

    Hello everyone,
    I need a bapi to create Maintenance Notifications using .NET Connector. The closest bapi I have found is  Bapi_Servicenotificat_Create, but only works for Service Notifications, so I need to create a custom bapi that creates Maintenance Notifications and then use it in my application,  is there a way to do this not from scratch? Can I use some internal SAP function for creating Maintenance Notifications as a model to build my own bapi? Or does anyone have another suggestion to do this?
    Best regards,
    Rafael Poggi

    SAP 4.7 and higher includes the BAPI MaintNotificBAPIs.  For SAP 4.6 we are using the RFC included in the Mobile Asset Management to access maintenance notifications. The RFC are called ALM_PM_NOTIFICATION_CREATE, ALM_PM_NOTIFICATION_MODIFY, etc.
    Stefan

  • Revision in Maintenance notification

    Dear Experts,
    I have face a problem regarding Revision "VIQMEL-REVNR" field showing in Start dates screen field in maintenance notification in developement client. Checked OIAL, it is found that tick on "Input" and not on "Hide".
    But in quality client, OIAL condition is same as above tick on "Input" and not on "Hide", but in maintenance notification it is hidden.
    Kindly help on this issue. Is there any other settings for the revision?
    Regards,
    Tushar

    Hi,
    Note [794920|https://service.sap.com/sap/support/notes/794920] removes the unwanted display of this revision field on notification. Check and apply this if not contained in your patch level. The revision field should not appear on notification.
    -Paul

Maybe you are looking for

  • Problem in running the query on ODS

    Hi All, I have been trying to run the query which consists of only 25 fields and doen't contain much calculations and routines and trying to restrict even 7000 records. That too result in system failure reporting on storage parameters somtimes giving

  • There is a problem with Adobe Acrobat/Reader (103:103)

      Since upgrading to Reader X I am unable to browse .pdf files in IE 8.  OS is XP SP 3, website is run on Server 2008 IIS 7.5, .pdf is product of Active Server page.   I have tried selecting and deselecting Display PDF in Browser, I've tried checking

  • Confusion about backing beans and multiple pages

    Hello: I'm new to JSF and am confused by several high level and/or design issues surrounding backing beans. The application I am working on (not unlike many apps out there, I suspect), is comprised of several forms which collect various query paramet

  • CSS Runs in Design, But Not Live

    I added a CSS definition to "repeat-x" a 1px background image in DW CS4. I uploaded the page to my site and everything worked fine. After making a few additional changes (none to the CSS that I remember), the page stills displays correctly in design

  • Trying to migrate Ultiboard user database from Ver 11 to 12

    I updated my software to Ver 12, and noticed that my user database did not migrate. I then copied my ver 11 user db to the Ver 12 location and restarted Ultiboard. Upon invoking Ultiboard, I received a diagnostic stating that my user database was the