Dump DYNPRO_MSG_IN_HELP in Delivery Enhancement

I have implemented the BADI  LE_SHP_DELIVERY_PROC available in for delivery enhancement.
If user deletes the delivery I have to give the error message depending on some checks but it is
getting into dump.
I read note 415716 for the delivery enhancement there it is written we cannot use 'E' or 'W' message type
here. Please help me with any other alternative solution which will behave same as of error message.
Thanx...

Hi Mingo,
As u can see in the description of the dump u cannot give the error message in AT EXIT command module. so there are 2 options to solve this dump
1) U can  implement the method CHECK_ITEM_DELETION of this BADI. This method will be called as no of items in the delivery..
so u can make the CF_ITEM_NOT_DELETABLE = 'X' for the corresponding materail u dont want to delete and give the message
in CT_LOG table either by passing msgclass and msgid or by passing the error message to the MSGV1, MSGV2 variables..
2) U can have one function module and design one pop up screen and then give ur message in the pop screen and handle the
user commands here...like u can have OK and CANCEL button..
I implemented 2nd method as it was required by concrened person..
This thing was done at item deletion level....if u have to do at the entire delivery level u can explore the method
DELIVERY_DELETION of this badi or in DELIVERY_FINAL_CHECK method implement the 2nd solution...
on cancel button on this pop to be in same transaction use following code..
leave to current transaction and skip first screen.
thanx..
Edited by: PawanG on Jun 14, 2010 6:33 AM

Similar Messages

  • Short Dump DYNPRO_MSG_IN_HELP in Conversion Exit

    Hi Gurus,
    I've written the following conversion exit:
    FUNCTION CONVERSION_EXIT_ZBZEI_INPUT.
    *"*"Lokale Schnittstelle:
    *"  IMPORTING
    *"     VALUE(INPUT)
    *"  EXPORTING
    *"     VALUE(OUTPUT)
    *"  EXCEPTIONS
    *"      INPUT_NOT_VALID
      DATA : CPI_OUT(4) type n, CPI_IN(5), cpi_in2(5), cpi_in3(5).
      DATA : CPI_YEAR(4), CPI_PERIOD(3).
      DATA : CPI_NUM2(2) TYPE N.
      DATA : CPI_NUM3(2) TYPE N,
             index(2)    type n,
             index2(2)   type n,
             merker(1).
      DATA : CPI_C8, CPI_C7, CPI_C6, CPI_C5.
      DATA: SONDERZ.                    "nimmt das Trennungszeichen auf
    *-initializations-----------------------------------------------------*
      check not input is initial.
      CPI_IN2 = INPUT.
      CLEAR : cpi_in, cpi_in3, cpi_out, OUTPUT, index, index2, merker,
              cpi_num2, cpi_num3.
      do.
        if cpi_in2+index(1) co '0123456789' and merker ne 'X'.
          cpi_in+index2(1) = cpi_in2+index(1).
          add 1 to index2.
        endif.
        if cpi_in2+index(1) = ':'.
          merker = 'X'.
          clear index2.
        endif.
        if cpi_in2+index(1) co '0123456789' and merker = 'X'.
          cpi_in3+index2(1) = cpi_in2+index(1).
          add 1 to index2.
        endif.
        add 1 to index.
        if index = 5.
          exit.
        endif.
      enddo.
      if cpi_in3 is initial.
        cpi_out = cpi_in.
      else.
        cpi_num2     = cpi_in.
        cpi_num3     = cpi_in3.
        cpi_out(2)   = cpi_num2.
        cpi_out+2(2) = cpi_num3.
      endif.
      if cpi_out(2) > 23.
        message e000 raising input_not_valid.
      endif.
      if cpi_out+2(2) > 59.
        message e001 raising input_not_valid.
      endif.
      output   = cpi_out.
    *  output+2(2) = cpi_in+3(2).
    endfunction.
    The problem is when the user inputs an invalid value and presses directly after this F4 the conversion exit will call and I get the short dump DYNPRO_MSG_IN_HELP  when I trigger the error message.
    Is there any way to know that the program is in value-request? Maybe a system field? Can I catch this error?
    Thanks for help.
    Lars

    Hello Lars,
    refering to OSS 84510 SAP does not allow error messages in this environment. However, to find out if you are in a F4- context you can use the kernel function 'DY_GET_DYNPRO_EVENT'
      data: event(3).
      "check if we are in F4 environment
      call 'DY_GET_DYNPRO_EVENT' id 'EVENT' field event.
      if sy-subrc <> 0 or ( event <> 'PAI'
                        and event <> 'INP' )."PAI also POV
        " not F4 help
        message e000 raising input_not_valid.
      else.
        "F4 help -> only S message
        message s000 display like 'E' raising input_not_valid.
      endif.
    Kind regards, miro

  • Dump 'DYNPRO_MSG_IN_HELP' when '1 BOX PACK' clicked on VL02N, ECC 6 Upgrade

    Hi
    I am getting a short dump "'DYNPRO_MSG_IN_HELP' "when i click '1 box pack' button in VL02N transaction during our upgrade system from 4.6C to ECC 6.0. When i go through the old SAP note - 401823, it says to add entries in VFBS transaction for all T185 entries for this kind of dumps. But i am missing entries for SAPMV50A, I0 and ZVPK combination at support pack level '14'(SAP_APPL) in our system.
    Could anyone let me know the entries to be maintained for all the T185* tables mentioned in VFBS transaction.
    (or) is there any OSS note already created for this issue? please let me know all the details.
    Thank you,
    Anil

    Hi Laxmi,
    We are already in Support pack. (SAPKH60014), and note which you given was SP - SAPKH60007, so this correction was already implemented in our system.
    Is there a note/solution specific to '1 BOX PACK' dump and T185* table entry missing?
    Let me know,
    thank you,
    Anil

  • Outbound delivery enhancement

    Hi to all,
    I have a task to enhance Vl02n for outbound delivery. My requirement is to populate picking quantity using delivery quantity. Normally pick list OUTPUT TYPE EK00 will populate picking quantity. here one of my company's plant
    they are not doing pick list.
    somebody advised me me to use MV50AFZ1 (standard include program).
    But I am new to ABAP please help me to complete this task.
    Any help will be appreciated

    you have to change the kcmeng filed in xlips internal table in  the form user_exit_save_Prepare in the program MV50AFZ1 .
    you need to update the updkz field in xlips to 'U' to reflect the changes in the delivery.
    without updating updkz the delivery quantity will not change.

  • GETWA_NOT_ASSIGNED- Dump while Creating Delivery

    Hi all,
    When I am trying to create Deliver for a Sale Order, then as soon as I save the Delivery, it displayes me message " Return Delivery  XXXXXXX has been saved" but when I go to VL03 to see the delivery, it turns a Dump with heading " GETWA_NOT_ASSIGNED".
    In ST22 Dump is with the heading " Field Symbol not yet assigned"
    Please note that we have just now upgraded from 4.6C to ECC 6.0 and we have come across this issue during functional testing.
    Any Input for this issue are welcome.
    Points assured to each helpful answers.
    Regards,
    Lalit Kabra
    Regards,
    Lalit

    Hi,
    Thanks a lot for the quick response. Please find below the extracts from Dump. May be this will help you to understand my issue.
                                                                                    _________________________________________________       Short text                                                                               
    Field symbol has not yet been assigned.
    What Happened?                                                                               
    Error in the ABAP Application
    Program                                                         
    The current ABAP program "SAPLV50S" had to be terminated because it has                       
        come across a statement that unfortunately cannot be executed.                                
    How to correct the error                                                                               
    If the error occures in a non-modified SAP program, you may be able to    
        find an interim solution in an SAP Note.                                  
        If you have access to SAP Notes, carry out a search with the following    
        keywords:                                                                               
    "GETWA_NOT_ASSIGNED" " "                                                  
        "SAPLV50S" or "/SPE/V50SF07"                                              
        "/SPE/RET_HUS_GET"                                                       .......
    Source Code Extract 
        *...First: Read corresponding item(s) of HU(S) to delivery item            
      LOOP AT verpotab ASSIGNING <fs_verpo_tab> WHERE vbeln = xlips-vbeln AND_
                                                       posnr = xlips-posnr.  
    The above code is at line number 436 in include program /SPE/V50SF07  and this program belongs to program SAPLV50S.
    Hope this clarifies my issue. In case some more details are needed please let me know.
    Also I activated the include but issue still persists.
    Regards,
    Lalit Kabra

  • DYNPRO_SEND_IN_BACKGROUND dump while processing delivery

    Hello,
    We have placed a BDC logic to create Invoice in MV50AFZ1 user exit of delivery. BDC session method is being used to create session for Invoice creation using transaction VF01. This isession is later executed in background job using program RSBDCSUB.
    Although delivery gets processed successfully and Invoice also gets created, but we are getting a dump in ST22 with and error DYNPRO_SEND_IN_BACKGROUND. We are also getting an error in SM58 "Screen output without connection to User".
    Can somene please help how this error can be removed.
    Thanks & Regards,
    Rohit

    Hi,
    This BDC logic has been placed in the Fuction Module. This Function Module is called as saperate unit in background task through MV50AFZ1. In this Function Module, VF01 batch session is created.
    These batch sessions are later executed by a background job program RSBDCSUB. This batch job runs every 5 minutes.
    Kind Regards,

  • Dump during inbound delivery creation with VL34

    Hi,
    when I try to create a inbound delivery for a Purchase order item with account assignment Q (project stock) I get the following dump
    Runtime Errors         SAPSQL_ARRAY_INSERT_DUPREC
    Except.                CX_SY_OPEN_SQL_DB
    Date and Time          28.07.2010 17:37:10
    Short text
         The ABAP/4 Open SQL array insert results in duplicate database records.
    What happened?
         Error in the ABAP Application Program
         The current ABAP program "SAPLV05I" had to be terminated because it has
         come across a statement that unfortunately cannot be executed.
    Error analysis
         An exception occurred that is explained in detail below.
         The exception, which is assigned to class 'CX_SY_OPEN_SQL_DB', was not caught
          in
         procedure "SD_PARTNER_UPDATE" "(FUNCTION)", nor was it propagated by a RAISING
          clause.
         Since the caller of the procedure could not have anticipated that the
         exception would occur, the current program is terminated.
         The reason for the exception is:
         If you use an ABAP/4 Open SQL array insert to insert a record in
         the database and that record already exists with the same key,
         this results in a termination.
         (With an ABAP/4 Open SQL single record insert in the same error
         situation, processing does not terminate, but SY-SUBRC is set to 4.)
    Missing RAISING Clause in Interface
         Program                                 SAPLV05I
         Include                                 LV05IU15
         Row                                     1
         Module type                             (FUNCTION)
         Module Name                             SD_PARTNER_UPDATE
    Trigger Location of Exception
      Program                                 SAPLV05I
        Include                                 LV05IU15
        Row                                     480
        Module type                             (FUNCTION)
        Module Name                             SD_PARTNER_UPDATE
    When I try to create the inbound delivery with VL31N it works fine. I also tried a couple of BAPIs/FMs which gave me the same dump as VL34.
    Thanks in advance!!
    br
    Walter

    I also failed to find any OSS note relevant to this.
    If you are not using any exits / BADI, there's no standard modification, you should contact SAP AG and their responsibility is to correct the error.
    But it may happen that you are using your own logic (via user exit, BADI, standard modification), in this case you have to find out what causes the problem. If the error is becasue of your develoments, then you cannot ask SAP AG to correct the error, if the error is not caused by your developments then it's SAP AG's responsibility.
    Please read OSS note 575667 which says that:
    The most common cause for this runtime error is an incorrect logic in USEREXIT_SAVE_DOCUMENT_PREPARE or USEREXIT_SAVE_DOCUMENT in include MV50AFZ1.
    For this, read also notes 178328 and 415716.
    Edited by: Csaba Szommer on Nov 3, 2010 8:49 AM
    Edited by: Csaba Szommer on Nov 3, 2010 8:50 AM

  • PCUI showing dump errors after EEWB enhancement

    Hi Experts,
    I'm using CRM5.0.
    After adding some fields by EEWB(Easy Enhancement Workbench) the PCUI application showing several dump errors in several places. How to correct this problem, should I regenerate all the layout by CRMC_BLUEPRINT or any other way is there to correct these errors. Please suggest a solution for that.This is very urgent.
    Thanks In Advance
    Rana

    Hi Fred,
    1>
    Whenever I'm clicking  F4 help button beside service prospect,contact person etc the following dump is coming as in opportunity transaction (CRMD_BUS2000111) likewise other transactions also.
    Note
         The following error text was processed in the system CS1 : CRM_BSP_LIBRARY:structureEdit: Act. table parameter gt_layout is empty
         The error occurred on the application server nmpcsssb1_CS1_01 and in the work process 0 .
         The termination type was: ERROR_MESSAGE_STATE
         The ABAP call stack was:
    Method: IF_BSP_ELEMENT~DO_AT_BEGINNING of program CL_CRM_BSP_STRUCTUREEDIT======CP
    What can I do?
         If the termination type was RABAX_STATE, then you can find more information on the cause of the termination in the system CS1 in transaction ST22.
         If the termination type was ABORT_MESSAGE_STATE, then you can find more information on the cause of the termination on the application server nmpcsssb1_CS1_01 in transaction SM21.
         If the termination type was ERROR_MESSAGE_STATE, then you can search for more information in the trace file for the work process 0 in transaction ST11 on the application server nmpcsssb1_CS1_01 . In some situations, you may also need to analyze the trace files of other work processes.
         If you do not yet have a user ID, contact your system administrator.
    Error code: ICF-IE-http -c: 500 -u: ABAP1 -l: E -s: CS1 -i: nmpcsssb1_CS1_01 -w: 0 -d: 20070521 -t: 115438 -v: ERROR_MESSAGE_STATE -e: CRM_BSP_LIBRARY:structureEdit: Act. table parameter gt_layout is empty
    HTTP 500 - Internal Server Error
    Your SAP Internet Communication Framework Team
    second error:
    2>
    Whenever any business partner is selected in partner id of  partner tab ,partner fn(sold-to-party) then it is showing the following dump error.
    SAP Note
         The following error text was processed in the system:
    An exception with the type CX_SY_DYN_CALL_PARAM_NOT_FOUND occurred, but was neither handled locally, nor declared in a RAISING clause
    Exception Class     CX_SY_DYN_CALL_PARAM_NOT_FOUND
    Error Name     
    Program     CL_CRM_BSP_INTLAY_PARTNER=====CP
    Include     CL_CRM_BSP_INTLAY_PARTNER=====CM002
    ABAP Class     CL_CRM_BSP_INTLAY_PARTNER
    Method     PUT_DATA
    Line     1269
    Long text     Call of the function CRM_PARTNER_GET_COM_BY_STRUCT failed: The formal parameter ET_RETURN_VALUES does not exist.
    EEWB used to add a field Account No in Service order transaction.
    which is now reflecting to all the transaction as a customer field.
    Thanks
    Koustav

  • Z fields don't get updated in delivery enhancement

    Hi,
    I have a requirement to create some Z fields into VL02N and VL03N in a new custom tab.
    The tab was created, the 3 new fields are being shown (it's created a new subscreen 9000) and its corresponding fields were created in LIKP.
    However, when the Delivery is saved, the information from the new fields are not being updated in the database.
    I've implemented method IF_EX_LE_SHP_DELIVERY_PROC-SAVE_DOCUMENT_PREPARE from BAdI LE_SHP_DELIVERY_PROC to perform some data manipulation before saving.
    CT_XLIKP gets updated accordingly when we change a standard field. But the Z fields doesn't get updated on that.
    Anyway, I know I should populate the structure CT_XLIKP in order to save into LIKP, but how should I do to retrieve the data from the fields in order to do that?
    Tks.

    Yeah, I think it became a bit strange.
    I needed to create the 3 fields only for display information (even in VL02N) because we have interfaces with legacy systems that creates deliveries through remote BAPI call. So, during the bapi call (BAPI_OUTB_DELIVERY_CREATE_SLS), the EXTENSION_IN is being used and through the bapi documentation, we've to create couple of FM's to upload data to a global access area (BAPI exit) and then download it within the delivery BAdI (method SAVE_DOCUMENT_PREPARE).
    This way, I take the information from global data (which came from EXTENSION_IN) and put it direct to CT_XLIKP).
    Now the question is, I have to open the zfields for edition in VL02N, it was done, but I don't know where or how to take the field's content to put in the CT_XLIKP structure.
    If you could provide me with some example of how to use the get/set to retrieve the information from the field, would be very helpful. Thank you !
    Edited by: rvsilvax on Oct 25, 2011 8:08 PM

  • Dump(DYNPRO_MSG_IN_HELP)  while taking print out in J1IA102.

    Hi All,
    While pressing the Print button in both the transactions its showing the following details:
    ShrtText
    Screen: Illegal message
    What happened?
    The current screen processing was terminated, since a situation
    occurred from which it could not continue processing.
    This is probably due to an error in the current screen of the ABAP
    program.
    Error analysis
    During "Exit Command" processing, the program tried to send a " " message.
    This is not allowed at this point in processing.
    The program had to be terminated.
    Screen name.............. "SAPLJ1IEX"
    Screen number............ 0001
    Trigger Location of Runtime Error
    Program SAPLSZA0
    Include LSZA0F21
    Row 30
    Module type (FORM)
    Module Name CHECK_PARA1_XOR_PARA2
    FORM check_para1_xor_para2
    USING para1
    para2
    check_type.
    CASE check_type.
    WHEN C_A_INDEX_A_NUMBER.
    IF PARA1 = 0 AND PARA2 = SPACE
    OR PARA1 0 AND PARA2 SPACE.
    MESSAGE E052 RAISING PARAMETER_ERROR.
    ENDIF.
    WHEN c_a_handle_a_number.
    IF para1 = space AND para2 = space
    OR para1 space AND para2 space.
    MESSAGE e053 RAISING parameter_error.
    ENDIF.
    >>> WHEN c_p_handle_p_number.
    IF para1 = space AND para2 = space
    OR para1 space AND para2 space.
    MESSAGE e054 RAISING parameter_error.
    ENDIF.
    WHEN OTHERS.
    ENDCASE.
    ENDFORM. "CHECK_PARA1_XOR_PARA2
    PLease help.
    Regards
    VIjju

    Hi ,
    better to check for sap notes.
    regards
    Prabhu

  • Vl02n outbound delivery deletion check

    hi all,
    i need to create a checking when user going to delete a outbound delivery in VL02n, if there is any billing document status NE 'E' then program should issue error message and block the deletion.
    currently i am using badi LE_SHP_DELIVERY_PROC method DELIVERY_DELETION, but i get short dump DYNPRO_MSG_IN_HELP when program issue error message. After some research in this forum, i know that message 'E' or 'W' is not allowed in this badi, but is there any workaround can help me to achieve the requirement?
    If possible please provide me the sample code.
    thanks in advance
    Edited by: Mingo Lau on Jun 14, 2010 5:30 AM

    thanks both,
    i tried both method, both can solve my problem.
    but for SAVE_DOCUMENT_PREPARE, when issue message type E, it will close the transaction and back to /n screen which i am not sure my user will accept or not.
    for CHECK_ITEM_DELETION, use a bit more resources as it loop all delivery item but actually it can be done in once..
    anyway, let see which one is accepted by my user.
    thanks.

  • Short dump when '1 BOX PACK' clicked on VL02N, in ECC 6 system

    Hi
    I am getting a short dump "'DYNPRO_MSG_IN_HELP' "when i click '1 box pack' button in VL02N transaction during our upgrade system from 4.6C to ECC 6.0. When i go through the old SAP note - 401823, it says to add entries in VFBS transaction for all T185 entries for this kind of dumps. But i am missing entries for SAPMV50A, I0 and ZVPK combination at support pack level '14'(SAP_APPL) in our system.
    Could anyone let me know the entries to be maintained for all the T185* tables mentioned in VFBS transaction.
    (or) is there any OSS note already created for this issue? please let me know all the details.
    Thank you,
    Anil

    Hi Laxmi,
    We are already in Support pack. (SAPKH60014), and note which you given was SP - SAPKH60007, so this correction was already implemented in our system.
    Is there a note/solution specific to '1 BOX PACK' dump and T185* table entry missing?
    Let me know,
    thank you,
    Anil

  • Runtime error DYNPRO_MSG_IN_HELP

    Hello Experts,
    I performed the following operation.
    1.I looged in to the SAP CRM system using a userid.
    2.I opened the transaction COMMPR01.
    3. I selected a product and then try to change it. But due to some authorization , i got some error message.  Upto this it is fine.
    4. Now i clicked on the Cancel button(F12). A pop up came and then i clicked on the "No" button of the popup. After that i got  a dump DYNPRO_MSG_IN_HELP .
    After that i went to the ST22.In the Error Analysis i found the  following :
    Error analysis
    The program attempted to issue a " " message during "Exit Command" processing.
    This is an illegal operation.
    The program was terminated.
    The code responsible for this dump is::::::::
    IF sy-subrc <> 0.
            MESSAGE e305(zdum) WITH ls_prod_cat_rel-category_id.
              EXIT.
    Requesting to please suggest some solution for theabove dump , how to correct this dump.
    Thanks and Regards
    Sudhansu

    Hi Venkata Pradeep,
    Can you please proivde more details about an error to understand the issue.
    Regards,
    Pravin

  • "DYNPRO_MSG_IN_HELP"

    Hello!
    I am getting a dump  "DYNPRO_MSG_IN_HELP" while trying to display and error message MESSAGE e834(zv) during the process of deleting a Sales Order. The code is a part of include ZMV45AFZORIG.
    When I checked forums I got one post regarding the same dump but the solution does not match my requirement.
    could someone comment on this.

    The code is a part of include ZMV45AFZORIG
    That's your custom include so we wouldn't know what's in there or where it's embedded in the standard code...Whicj user exit is issuing the message?  Most likely, you've put it in the wrong one, i.e., in the save user exit and not the delete user exit.

  • Runtime error in MIRO while using User/Screen exit

    Hello,
    I have implemented an exit in ABAP for MIRO which when transported to Quality server through runtime error.
    I have used EXIT (SMOD) : LFDCB001 which contains FM -> EXIT_SAPLFDCB_001 and include -> ZXM08U31. In this exit I have written my code to disable Inv. Party field. This field exist in Details Tab in Miro Transaction.
    Location of the field: MIRO -> Details (tab) -> Inv. Party (Field)
    Code written in include ZXM08U31 is:
    LOOP AT SCREEN.
      IF screen-name = 'INVFO-LIFRE'.
        screen-input = 0.
        MODIFY SCREEN.
      ENDIF.
    ENDLOOP.
    This exit is assigned to a project in CMOD and I tested the same in Development system. It is working perfectly.
    Now I transported the TR (Includes program ZXM08U31 and Customer enhancement projects ZMIRO). Now when I run MIRO in quality server it triggers the my logic and then through runtime error.
    Runtime error says:
    Short text
        Dynpro does not exist
    Error analysis
        The system attempted to use dynpro 0400 in program "SAPLXM08".
        This dynpro does not exist.
    I agree that screen 400 does not exists in program for MIRO but it does not exists in development system as well. So if the runtime error is valid in QEC server then why not in DEV server. And when it can run successfully in DEV server why cant it run in QEC server.
    Hope I have explained all the things in detail.
    Please provide me the solution since user can bombard anytime for the MIRO dump everytime in QEC.
    Regards,
    Harjeet Grover

    Hi Harjeet,
    Reason of your Dump is that the enhancement "LFDCB001" which you used contains one Function module exit "EXIT_SAPLFDCB_001" and another one screen exit in calling screen  "SAPLFDCB" number 0150.
    So when you activate your project these above mentioned both components were activated.
    So when you execute transaction SAP looks for called screen "SAPLXM08" No-0400 but as you havn't created and program go for DUMP.
    Solution - Just Create called screen  "SAPLXM08" No-0400 and activate.
    Thanks,
    Vijay

Maybe you are looking for

  • Changes to phone devices in CUCM admin console not being configured on phone

    I can log in to the CUCM admin page and make changes to phone devices. The changes made are reflected in both the PUB and both SUBs. Devices do not take changes however. Reset and restart commands from admin page on devices do not actually reset or r

  • Business Connector 4.7 SSL configuration

    HI, I am configuring SSL in Business Connector 4.7 (to use HTTPS using digital certificates). I am following the admin guide.  I finished the first step - Configuring the Server to Use SSL. The next step is to import the client certificate and map it

  • Are RHEL packages downloaded in software update from RHN

    We have RHEL 5 in our setup. I have 1 conceptual query with regard to software update from Red Hat Network (RHN), are the missing pages or updated packages downloaded in software update from RHN? Also, is a .repo file need to be created in /etc/yum.r

  • Need Help Working the X-Fi I/O Front Dr

    Hi I need some help I have a Audio source coming from the red and white connector cables and I can't seem to find out how to enable audio through my speakers from this connection could someone point me in the right direction. Thanks Cyphin

  • Time manageru2019s workplace -No possible entries help available for this time

    Hello Experts, I am configuring time manageru2019s workplace. I can insert an employee , I can see his detail, planed schedule of time, but I cant change its TIME ID it is showing there like ?03 ( No possible entries help available for this time data