In T.Code PA30 under infotype 2011 field editing is required

Hi All,
In t.code <b>PA30</b> <b>under infotype 2011</b> when <b>in create mode</b> i need to have the field (Customer-Specific Field) in edit mode.
Please advice me can i have the edit mode for the field P2011-PDC_USRUP.
Regards
Badari

Hi badari,
1. This is done thru customization SPRO
   by functional consultant.
2. There there is the option
   of making this field (for this infotype 2011,
   module pool name MP200000)
   visible/obligatory,optional etc.
regards,
amit m.

Similar Messages

  • Can any body tell me how to upload data for infotype 2011

    hi gurus,
    please tell me hw to create the bdc for infotype 2011.

    Go to SHDB and record the Tcode PA30 with Infotype 2011.
    ~BiSu

  • How to make Birth date field (GBDAT) under IT0002 Personal data editable

    Hello Consultants,
    We had initially  Birth date field (GBDAT) under IT0002 Personal data editable ...But after upgrade is made non editable...
    We want to make it editable again..
    Kindly suggest how we can proceed abt this....

    Hi Anju,
    1. Go to PA30 >> Infotype 0002 >> On Date of Birth Field >> Enter F1 and find the Technical Parameter and idenfity which Screen is being Used... say for Eg: MP000200 / 2010
    2. Go to Feature P0002 in PE03 and then identify the Return code for the Molga and Co. Code.
    This Return feature is nothing but the Variable Key. Say for Example: 10
    3. Now Go to SM30 >> T588M.....
    3. Idenfity the Screen that you found in the  step 1 and Variable Key you found in Step 2.
    i.e. MP000200 / 2010 / 10
    5. Double Click on that record and Find the Screen Field P0002-GBDAT... this has been set to Output Field... change it to Standard and it will work.
    Hope this helps !!!
    Kumarpal Jain.

  • How to Add data in HR infotype 2011 through ABAP

    Hi All,
    Can any one please give me an idea about how to insert time record in Infotype 2011 through ABAP. I cannot use the front end recording (SHDB) as it locks the person's master data. I need to Add the record through ABAP Query. I have inserted record in Table TEven and it works fine but then there is a conflict of sequence number field and system does not allow to change the data in infotype 2011 and gives error message.
    Thanks

    Hi amit
           even i have same requirement i tried with the same code but i'm getting error No data stored for infotype 2011 in the period.
    code:
       CALL FUNCTION 'BAPI_EMPLOYEE_ENQUEUE'
            EXPORTING
              number        = wa_modify-pernr
           IMPORTING
             RETURN        = return
          clear return.
          CALL FUNCTION 'HR_INFOTYPE_OPERATION'
            EXPORTING
              infty                  = p_infty
              number                 = wa_modify-pernr
    *         SUBTYPE                =
    *         OBJECTID               =
    *         LOCKINDICATOR          =
    *         VALIDITYEND            = wa_modify-ldate
    *         VALIDITYBEGIN          =
    *         RECORDNUMBER           =
              record                 = wa_modify
              operation              = 'MOD'
             TCLAS                   = 'A'
             DIALOG_MODE             = '0'
    *         NOCOMMIT               =
    *         VIEW_IDENTIFIER        =
    *         SECONDARY_RECORD       =
           IMPORTING
             RETURN                 = return
    *         KEY                    =
          CALL FUNCTION 'HR_EMPLOYEE_DEQUEUE'
            EXPORTING
              number        = wa_modify-pernr
    *       IMPORTING
    *         RETURN        =

  • Pull the tax code automatically in the column field ??

    Could you please guide me how to pull the tax code automatically in the column field in the Sale Order form? I don't refer to the tax determination.

    Hi,
    In the Demo database, please create a new Business Partner and assign a tax code under the Business Partner Master Data > Accounting tab > tax tab. Make sure that the Business Partner is tax liable.
    Then try to create a SO for that BP Code and see whether the tax code is populated in the tax code field.
    Also, check that the Item taken into the SO is tax liable and under the Sales Tab what tax code is selected.
    Please update the results from the testing.
    Kind Regards,
    Jitin
    SAP Business One Forum Team
    Edited by: Jitin Chawla on Aug 11, 2011 5:55 PM

  • Infotype 2011 - Load complete

    Hello people,
    I have a question about infotype  2011.
    I made a follow code:
    INFOTYPE: 2011
    PROVIDE .... P2011 BETWEEN PN-BEGDA AND PN-ENDDA
    On screen parameter I put 21.06 until 20.07 in Other period , and same period in P.SelcPeriod.
    But the table p2011 is load all period with current person. All data the current person the infotype p2011 is loaded! My report be slowly...
    what's solution for this?  I need only the period 21.06 until 20.07 in table p2011.
    thanks in advance,
    André

    Hi,
    Thanks for help-me.
    I used TEVEN table with SELECT .
    but still don't understand , Why get pernr, load all data in INFOTYPE 2011.
    My report is very speed now
    Thanks again!
    André

  • Function for deleting and modifying Infotype 2011 : HR_TMW_DB_UPDATE_TEVENT

    Hello experts,
    we have and requirement where we have to insert/delete or modify specific clock in/out posts from infotype 2011. Looking trough this forum I was not able to find how to delete or modify specific events from SAP correctly.
    We are able to insert new record via FM : HR_INFOTYPE_OPERATION with ease, but can not use the same function module to either delete or modify the same record.
    I was able to find FM: HR_TMW_DB_UPDATE_TEVENT and tried it in combination with HR_TMW_DB_READ_TEVENT, with out any succes.
    My question is: in what way must the tables be filled for deletion or modification, for FM HR_TMW_DB_UPDATE_TEVENT to work?
    With testing deleting a record, function explicitly demands taht all four tables are set
             del_teven      = t_teven_del
             ins_teven      = t_teven_ind
             del_teven_more = t_teven_more_del
             ins_teven_more = t_teven_more_ins 
    , but still the record is not deleted form table TEVEN.
    Thank you in advance for any given anwsers,
    Matevž

    Hello Rajesh,
    the code goes:
    * get original data:
        CALL FUNCTION 'HR_TMW_DB_READ_TEVENT'
          EXPORTING
            pernr    = iv_pernr
            fromdate = iv_begda
            todate   = iv_endda
          IMPORTING
            result   = result_tmw.
    * get next seq. nr.:
    CALL FUNCTION 'NUMBER_GET_NEXT'
      EXPORTING
        nr_range_nr                   = lv_ragne
        object                        = lv_object
    IMPORTING
       NUMBER                        = lv_number
    EXCEPTIONS
       INTERVAL_NOT_FOUND            = 1
       NUMBER_RANGE_NOT_INTERN       = 2
       OBJECT_NOT_FOUND              = 3
       QUANTITY_IS_0                 = 4
       QUANTITY_IS_NOT_1             = 5
       INTERVAL_OVERFLOW             = 6
       BUFFER_OVERFLOW               = 7
       OTHERS                        = 8.
          LOOP AT result_tmw INTO s_result_tmw.
            s_teven = s_result_tmw-teven.
            IF s_teven-ldate = iv_ldate AND s_teven-ltime = iv_ltime AND s_teven-satza = iv_satza.
              "set TEVEN_DEL tables for reading
              APPEND s_teven TO t_teven_del.
              APPEND s_teven_more TO t_teven_more_del.
              "set status for change to TEVEN_INS tables
              s_teven-pdsnr = lv_number.
              s_teven-ldate = iv_ldate.
              s_teven-ltime = iv_ltime.    
              s_teven-satza = iv_satza.
              APPEND s_teven TO t_teven_ins.
              MOVE-CORRESPONDING s_teven TO s_teven_more.
              APPEND s_teven_more TO t_teven_more_ins.
              EXIT.
            ENDIF.
          ENDLOOP.
    * execute deletion of current record:
          CALL FUNCTION 'HR_TMW_DB_UPDATE_TEVENT'
            TABLES
              del_teven      = t_teven_del
              ins_teven      = t_teven_ins
              del_teven_more = t_teven_more_del
              ins_teven_more = t_teven_more_ins
            EXCEPTIONS
              insert_failed  = 1
              update_failed  = 2
              OTHERS         = 3.
          COMMIT WORK.
    Now I am using the following code, that is working:
    * get original data:
        CALL FUNCTION 'HR_TMW_DB_READ_TEVENT'
          EXPORTING
            pernr    = iv_pernr
            fromdate = iv_begda
            todate   = iv_endda
          IMPORTING
            result   = result_tmw.
    ********************************************************************** modification
    * CODE :                            MODIFY CLOCK IN/OUT
        IF iv_operation = 'MOD'.
          LOOP AT result_tmw INTO s_result_tmw.
            s_teven = s_result_tmw-teven.
            IF s_teven-ldate = iv_ldate AND s_teven-ltime = iv_ltime AND s_teven-satza = iv_satza.
              "set TEVEN_DEL tables for reading
              APPEND s_teven TO t_teven_del.
              APPEND s_teven_more TO t_teven_more_del.
              "set status for change to TEVEN_INS tables
              APPEND s_teven TO t_teven_ins.
              MOVE-CORRESPONDING s_teven TO s_teven_more.
              APPEND s_teven_more TO t_teven_more_ins.
              EXIT.
            ENDIF.
          ENDLOOP.
    * execute deletion of current record:
          CALL FUNCTION 'HR_TMW_DB_UPDATE_TEVENT'
            TABLES
              del_teven      = t_teven_del
              ins_teven      = t_teven_ins
              del_teven_more = t_teven_more_del
              ins_teven_more = t_teven_more_ins
            EXCEPTIONS
              insert_failed  = 1
              update_failed  = 2
              OTHERS         = 3.
          COMMIT WORK.
    * insert new (updated) record of clock registration:
          s_p2011-pernr = iv_pernr.
          s_p2011-infty = '2011'.
          s_p2011-ldate = iv_ldate_new.
          s_p2011-ltime = iv_ltime_new.
          s_p2011-erdat = sy-datum.
          s_p2011-ertim = sy-uzeit.
          s_p2011-satza = iv_satza_new.
          s_p2011-origf = 'E'.
          s_p2011-begda = iv_ldate.
          s_p2011-endda = iv_ldate.
          CALL FUNCTION 'HR_INFOTYPE_OPERATION'
            EXPORTING
              infty            = '2011'
              number           = iv_pernr
    *         SUBTYPE          =
    *         OBJECTID         =
    *         LOCKINDICATOR    =
              validityend      = iv_begda
              validitybegin    = iv_endda
              recordnumber     = f_recordnumber
              record           = s_p2011
              operation        = 'INS'                       
              tclas            = 'A'
              dialog_mode      = '0'
    *         NOCOMMIT         =
    *         VIEW_IDENTIFIER  =
    *         SECONDARY_RECORD =
            IMPORTING
              return           = fm_return
              key              = personaldatakey.
          COMMIT WORK.
    ENDIF.
    Kind regards,
    Matevž

  • Mass upload to infotype 2011

    i m new one of sap i need to do the  mass upload to infotype 2011 please help me..

    Hi Vijayan,
    Generally the time events (2011) are uploaded thru some Z program which is created by the ABAPers...  but the SAP has provided a report to upload the time events in bulk and they are
    RPTEUP00
    RPTEUP10
    run these report in the T.code se38.,  get the help of ur ABAPer to change the report for your requirement..
    hope this will help u..   if its helpful provide me the points
    Regards
    Gopinath.BKrish

  • Infotype 2011 data is missing

    how to check the data is getting stored in infotype2011 , i cannot c any recored in infotype2011,please advice me to trouble shoot.

    dear sujit
    thanx a lot for your answer, can u plz advice me as i have check the table in that data is getting store, but when i select form pa30 infotype  2011  for any employ it gives an error  like no data is store for any period like monthly ,weekly and yearly for any employ but when i check the data in TEVEN  TABLE It is there .kindly advice me help.if u can.

  • Infotype 2011

    Hi Gurus,
    I am working on BDC which updates 2011 infotyeps.
    by mistake i have tried to generate infotype 2011 from PM01 Transaction code.
    when i am executing my BDC program infotype 2011 is not updated.
    Also it is telling module pool program Mxxxx doesnot exist.
    can i replace the old infotype ?
    or how i can generate the standard infotype 2011 once gain?
    Whai i need to do for the updation of records in infotype 2011?
    Please suggest me..
    Regards,
    Imran

    2011 is a time infotype, this one is not a true Infotype, the actual database table is TEVEN and not PA2011. Transaction to maintain is PA61 for time Infotype.
    Check SAP reports RPTEUP00 and RPTEUP10 (or FM HR_CC1_TIMEEVENT_INSERT and HR_CC1_TIMEEVENT_POST)
    Regards,
    Raymond

  • Infotype 2011 TEVEN table

    Dear All,
                 TEVEN is a time event table of infotype 2011. satza is a field which has P10 value as clock-in time of an employee. I want to select first P10(Clock-In time) of an employee on a distinct date. How can i do that.
    there is a field of pdsnr which is a unique number, but in which table i have to join it to get a first P10 record of an employee on a particular date.
    Thanks.
    Sohail

    Dear Muhammed,
    First please close all the threads which were answered,also please give points to the answers which helped you.Its a motivation factor for us.
    I have seen all the threads posted by you. None of them have been closed or given points.
    We are here to help you.
    Regards,
    Pankaj

  • Unable to Determine the Change Date and Time for records in infotype 2011

    Hi Everyone,
    We need to know on when the clock-in and clock-out records were interfaced to SAP in infotype 2011.
    The change date/time field in infotype 2011 is blank/not populated. Hence, we're unable to determine on when the clock-in records were updated in infotype 2011.
    It is not possible to get the audit logs for infotype 2011 as it is switched off.
    We found this table TEVEN and just the same thing, the field "change on" is blank.
    Kindly help us on how we can determine the change date and time for records in infotype 2011.

    Hi Prasad,
    Here's the scenario.
    On June 3, it was reported that staff's clock-in record on june 1, 7:00AM is missing in infotype 2011.
    However, when I checked infotype 2011, the record is there.
    So, they are now asking me on when this record was updated in infotype 2011 as they are thinking that there might be some delays in sending of the data to SAP.
    The created on and created at in table TEVEN shows the same, june 1, 7:00AM which seems to be not true as on june 3, it was reported to be missing.
    Can you help further on this?

  • Customer message for  Standard Infotype 0050 field Standard overtime

    Hi Guyz,
    For the Infotype 0050 field Standard Overtime(ZMGEN) , I need to restict with values Y or N. Otherwise Error 'Invalid Code entered' should be displayed.
    How do I approach ?
    Thanks and Regards,
    Venkat.O

    The best option might be to create a field exit. Use report RSMODPRF to create field exit for Data Element DZMGEN. The report has a good help document, but it's pretty easy to set up the field exit.

  • How to add the Match code object for the requisitioner field in TCODE ME51N

    Hi,
    How to add the search help (Match code object) for the requisitioner field in transaction ME51N.
    Please  do the needful to me.
    Regards
    Rajesh

    don't you think that posting your question to a microsoft developer site would be more efficient?
    regards,
    anton

  • How to update Tr code FB02   and update the field reference key1 (bseg-xref

    Can any body
    help me how to update   Tr code   fb02
    and  update the field  reference  key1 (bseg-xref1)  with the interest amount
    calculated.
    Below i have  written My  program  flow logic
    The program should read the open items i.e debit items in the customer account,
    Based on the  invoice date and customer payment terms  calculate the due date and then the  interest should be  calculated on that item based on the due date.
    Use the  transaction  fb02  and update the field  reference  key 1 (BSEG-xref1)
    with the interest amount calculated
    Only  consider  customers whose  interest indicator  knb1-vzskz = 'vk'.
    Interest is to be  calculated for every  30  days
    at the rate of  1% .please see example below.
    Document date is 01.01.2007
    for amount  1000SGD   payment  term  7  days
    It becomes  due  on  08.01.2007
    until  06.02.2007 you should not  consider  for calculation of interest
    SGD  on   7.02.2007 run you can consider this  item for interest calculation

    Hi Robert,
    Thanks for answering.
    I am looking at Ref 2 should flow automatically to clearing document from the accounitng document for billing.
    Ex: Billing document is created and accounted. Ref 2 is AB
    Now when receipt is accounted for this biling document this AB should flow automatically to Ref 2 field.
    Thanks
    NNS.

Maybe you are looking for

  • Do the Templates and Themes for iBooks Author include the flip page animation?

    Well, this question is concern about something similar asked by romondodavis on 28-mar-2012  (https://discussions.apple.com/message/17981772#17981772) and also answered by K T. So my question refers to know if when buying the Templates and Themes for

  • Design View disappeared in FB 4.5 (not 4.7)

    I know that Flash Builder 4.7 does not have a design view.  However in Flash Builder 4.5 the option to switch to the Design View is grayed out and the button for design view has disappeared from my interface.  I need this design view to follow a spec

  • "restart computer now" message

    sometimes, my g4 stops whatever it's doing, the screen goes dim, and a box appears with a graphic that looks like an enlarged version of the on button, which tells me to restart my computer. does anyone know why this might happen?

  • Strange symbol appeared...

    I switched my iTouch on this morning and found a new symbol in the status bar next to the battery symbol. It is a white rectangle with a plus sign followed by 2 circles 'cut out' of the rectangle. I have a photo but don't know how to upload it, if so

  • Regarding an exception

    While doing delete operation I am getting exception in testing instance and i am not able to see the error. If I am enabling the diagnostics option then the error is not coming and code is working fine. I am providing the controller code and metod to