Events triggered for the infotypes

Good day everybody,
I would like to know which events are triggered for the following infotypes:
1. PA0105.
2. PA0000.
3. PA0002.
4. PA0001.
5. PA0185.
Or can you please advice as to where to look or how to look for it
Thanks in advance,
Themba

Hi...
1) place a break point in FM "BF_FUNCTIONS_READ".
2) excute your infotypes so that execution stops at this FM and gave the event triggered.
Regards,
Lokeswari.

Similar Messages

  • How to disable the "turn page" event triggered by the scroll/swipe function?

    The problem is as follows.
    The default behaviour of Acrobat Reader (both stand alone and browser plug-in) is to allow scrolling/swiping with the mouse wheel/trackpad. This is useful when the pdf's page length is greater than the screen's own length, because you can read the pdf with no need to distract your attention from the text to the scrollbar button. However, the same scroll/swipe function turns into a usability problem when the pdf is embedded in a html page and the pdf's page length is smaller than the browser's length. In this case, the scroll/swipe turns the page, distracting your attention from the text to the unintended behaviour of the browser. What happens is that you are so used to scrolling/swiping that you did it unintentionally in the pdf's caption area. You really did not want to turn pages in the pdf. Furthermore, if the pdf takes the whole html page, being a website, the scroll/swipe function flips the website pages in ways that neither the reader nor the writer had ever intended. Hence the question. How to disable, in this case, the "turn page" event triggered by the scroll/swipe function? A JavaScript should do, but the SDK documents did not help so far...
    Message was edited by: 41457173
    Message was edited by: 41457173

    ... or release a patch for the API,
    ... or suggest an alternative route to achieve the intended result.

  • Issue with pa30 transaction for the infotype 15

    Hi All,
    I am creating additional payments for the infotype 15 in PA30 transaction.
    i followed following steps: wage type
                                         amount
                                         date of origin
                                         assignment number
    then i clicked Maintain cost assignment button there i entered cost center 1027 . anybody can tell me where this cost center will save i need that table name.
    thanks,
    maheedhar

    Hi Soumya,
    it is saving in ASSOB table that fine. but my question is how to get particular cost center for the personal number.
    thanks,
    maheedhar

  • Warning: "No terminating events defined for the task used"

    Dear all,
    I created a task with ABAP class and method as its object method. This task is a background task. The ABAP class inherits the IF_WORKFLOW interface but doesn't implement any method of the interface.
    When I try to confirm the task settings in transaction SWDD, a message shows up "No terminating events defined for the task used" and I cannot continue the work. Does anybody have any idea what I should do?
    Thanks + Best Regards
    Jerome

    Hi Jerome,
    If you set a background task in your workflow, and if it is asynchronous, then you need some way to tell the template if it is finished and what happened.  In this case you set terminating events - that is events which are published in the system as a result of your method (ie document.posted etc).
    Either use a synchronous method for your task or set appropriate terminating events in your task setup.
    Regards
    Gareth

  • When i am running the RBDMDOC it will not genarated the idoc for the infotype 0105

                   Hi experts,
                            I am run a pa40 action and change the record of 0105 infotype, in bd64 as part of data filtering I am also mentioned 0105 . but when I am run the RBDMIDOC  the idoc is not generated of the infotype 0105 .
    Thanks in Advance .
    Venkateswara Rao.

    Hi Venkat Narayan,
       Thank for giving such a help,
    1.   I am created record for the infotypes  i.e :0,1,2,6,105.
    2    In bd64 I done a data filtering for above infotypes , its fine , but when I am running the bd21   Tcode the idoc is generated for    0,1, 2,6,. it is not generated for p0105.
         please find the following screen shorts.  
    Thanks.
    venkat

  • Event triggered for checkbox in cl_gui_alv_grid

    Hi All ,
    I have a requirement like ,i give PO number on selection-screen.After execution, the items should be displayed on second screen ,which has some options on the top like before GR or after GR .(custom screen designed with cl_gui_alv_grid for display)
    I desgined checkboxes for each row of the line item.user can click on multiple rows and click on EXECUTE button on the screen.After that smartform should trigger and print .
    Now my query is how to capture the checkboxes which the user has entered (thru cl_gui_alv_grid) . Is there any event that gets triggered upon clicking the checkboxes?? I need the data of the corresponding row to process further .User can click on multiple items.
    Please respond
    Thanks

    Hi Hemanth
    You should have a field in your internal table matching the checkbox column in ALV.
    Call method CHECK_CHANGED_DATA of CL_GUI_ALV_GRID on user command for execute button,
    it will set the field  = 'X' for ticked lines in your internal table.
    Then use a loop on your internal table and find selected lines.
    You don't need an event triggered when user clicks.
    Edited by: Bulent Balci on Aug 3, 2010 4:42 PM

  • Batch job scheduling based on Event AND for the job to complete

    I am trying to schedule a background job based on an event AND based on the job finishing itself.
    Example:
    Job name: Send_Message
    After Event: SAP_NEW_PROCESS Message
    Program:  Program xxxx
    I want that the Send_Message job only runs when the Event SAP_NEW_PROCESS message happens AND the Send_Message job is not running.
    Right now, I could only schedule it based on the event SAP_NEW_PROCESS Message which means that everytime this event happens the job runs and I end up having the job "Send_Message" in multilple intances where the others will immediately cancel since the first job is still running and so I end up with a lot of Cancelled job when it is not necessary to run them all when there is already 1 instance of the Job running.
    How do I set it up in SAP?

    Thanks but I am new to SAP having to set up a batch job.
    The Event "SAP_NEW_PROCESS_MESSAGES" is a standard SAP Event.  We used that such that when a new transaction comes in, the batch job will run but we don't want to run the batch job if the same batch job is already running.
    YOu mentioned that I should set up Job_0.  Do I need to create an ABAP prorgram to check if JOB_1 is running?  How do I set up Job_0?  What is the trigger for my Job_0 to run?
    You also said that I set up Job_1 and trigger that based on the outcome of Job_0 AND at the same time be triggered by the event "SAP_NEW_PROCESS_MESSAGES".  How do I set up  this Job_1 so that it can be triggered by both Job_0 and a new transaction coming in(SAP_NEW_PROCESS_MESSAGES).
    if you can provide me the step by step guide as I am new to this and I only know basic.
    The current set up I have is
    Job_1
    Job Start:
          After Event
                Event: SAP_NEW_PROCESS_MESSAGES
          Step 1: program to run RCOCB002
    I was thinking following your suggestion is this:
    Job_0
    Job Start
          After Event
                Event: SAP_NEW_PROCESS_MESSAGES
          Step 1: program to run - What will be my program to run?
    Job_1
    Job_Start
          After Event
                Event: What will be my trigger for Job_1 and how do I set it up?
          Step 1: program to run RCOCB002
    Edited by: Shirley Te on Mar 10, 2010 3:25 PM

  • "Presave" Event triggered when the form is loaded.

    Dear all,
    I created an interactive form with an XML interface and I use it into a Web Dynpro ABAP.
    The version of my Adobe LiveCycle Designer is 8.0.
    My problem is that the "presave" event is triggered when the form is loaded.
    For example, if I place a field in the form and add the script " this.rawValue = "123"; " to the "presave" event of this field, the field will have the value "123" when I launch the Web Dynpro application.
    Then, if the user does not make any input and directly save the form, the "presave" event is not triggered.
    Does anyone know why I get such a behavior?

    Steeven, I was unable to test this scenario as Adobe Credentials are not installed in my system. But something similar from Java Script is referenced here in the below mentioned link.
    Please look if you find it useful:
    http://careerabap.blogspot.ca/2011/02/custom-dialog-box-message-while-saving.html
    Please reward if you find it useful.
    Regards,
    Nitin.

  • Related BAPIs for the Infotypes

    Dear Friends ,
                         I have got an issue to post the following details to external system  Can anyone please provide me the related BAPIs for the following Infotypes.
    Infotype 02 - Personel details
    Infotype 06 - Adress details
    Infotype 09 - Bank details
    Infotype 33 - Statistics
    Infotype 21 - Family details
    Infotype 08 - Basic Pay
    Infotype 28 - Internal Medical Service
    Infotype 22 - Education details
    Regards,
    Gopi.

    Hi,
    System can work even if target system not always online. The IDoc will be created and sendingcontinue  once the system has coneected to other system
    System can work that target system always online and active then only it interacts both system  use bapi. It will be disadvantage of bapi
    The tabe TBDBA stores the relavant message type, IDOC type, OUtbound function module,inbound module that are generated as part of the ALE BAPI interface for a particular Business object method
    Edited by: sekharch on Jan 9, 2011 4:17 PM

  • Subtype ctreation for the Infotype 0185

    Hi,
    I am trying to create a subtype for the standard infotype 0185. I have followed below mentioned steps for that:
    1) I have created an entry using v_t591a in SM31 and saved it.
    2) In PM01, created a Customer Include under Enhancement of Single Screen and added some fields to it. Activated it also.
    3) Even then I was not able to find the subtype in pa30, so have changed the technical attributes related to subtypes.
    Please give me any suggestion regarding this.
    Thanks,
    Sree

    Hi,
    Please check the below thread for the procedure to create a subtype for the standard infotype...
    /message/4304842#4304842 [original link is broken]
    Check the below thread regarding a subtype issue for infotype 0185
    No subtypes for Infotype 0185
    Check this thread for further information if necessary
    Check field Identity Number Infotype 0185 Subtype 02
    Hope this would help you.
    Good luck
    Narin

  • BDC for the Infotype 0585 in HR Module

    Hi ,
    Iam facing problem in Uploading the Data into the Infotype 0585 ( Section 80 Deductions - Proposals ).
    Can i get any BDC to upload the Infotype 0585-Proposals.
    Points will be Surely Rewarded.
    Regards,
    N.L.Narayana

    *& Report  Z_HR_UPLOAD_INFOTYPE_0585
    report  z_hr_upload_infotype_0585.
    tables:pa0585.
    data:begin of it_585 occurs 0 ,
         pernr type rp50g-pernr,   "Personnel no
         begda type pa0585-begda,  "Begin Date
         endda type pa0585-endda,  "End data
         sbs01 type pa0585-sbs01,  "Sub section code
         sbd01 type pa0585-sbd01,  "Sub section division number
         pcn01(12) type c,         "Proposed contribution
         sbs02 type pa0585-sbs02,  "Sub section code
         sbd02 type pa0585-sbd02,  "Sub section division number
         pcn02(12) type c,         "Proposed contribution
         sbs03 type pa0585-sbs03,  "Sub section code
         sbd03 type pa0585-sbd03,  "Sub section division number
         pcn03(12) type c,         "Proposed contribution
         sbs04 type pa0585-sbs04,  "Sub section code
         sbd04 type pa0585-sbd04,  "Sub section division number
         pcn04(12) type c,         "Proposed contribution
         sbs05 type pa0585-sbs05,  "Sub section code
         sbd05 type pa0585-sbd05,  "Sub section division number
         pcn05(12) type c,         "Proposed contribution
         sbs06 type pa0585-sbs06,  "Sub section code
         sbd06 type pa0585-sbd06,  "Sub section division number
         pcn06(12) type c,         "Proposed contribution
         sbs07 type pa0585-sbs07,  "Sub section code
         sbd07 type pa0585-sbd07,  "Sub section division number
         pcn07(12) type c,         "Proposed contribution
         sbs08 type pa0585-sbs08,  "Sub section code
         sbd08 type pa0585-sbd08,  "Sub section division number
         pcn08(12) type c,         "Proposed contribution
         sbs09 type pa0585-sbs09,  "Sub section code
         sbd09 type pa0585-sbd09,  "Sub section division number
         pcn09(12) type c,         "Proposed contribution
         sbs10 type pa0585-sbs10,  "Sub section code
         sbd10 type pa0585-sbd10,  "Sub section division number
         pcn10(12) type c,         "Proposed contribution
         sbs11 type pa0585-sbs11,  "Sub section code
         sbd11 type pa0585-sbd12,  "Sub section division number
         pcn11(12) type c,         "Proposed contribution
         sbs12 type pa0585-sbs12,  "Sub section code
         sbd12 type pa0585-sbd12,  "Sub section division number
         pcn12(12) type c,         "Proposed contribution
         sbs13 type pa0585-sbs13,  "Sub section code
         sbd13 type pa0585-sbd13,  "Sub section division number
         pcn13(12) type c,         "Proposed contribution
         sbs14 type pa0585-sbs14,  "Sub section code
         sbd14 type pa0585-sbd14,  "Sub section division number
         pcn14(12) type c,         "Proposed contribution
         sbs15 type pa0585-sbs15,  "Sub section code
         sbd15 type pa0585-sbd15,  "Sub section division number
         pcn15(12) type c,         "Proposed contribution
         end of it_585.
    data:wa_585a like  it_585.
    *--selection Screen--
    selection-screen: begin of block blk1 with frame title text-000.
    parameters: p_file type  rlgrap-filename  obligatory.
    selection-screen: end of block blk1.
    at selection-screen on value-request for p_file.
    *-to locate file in a directory (on value request)
      call function 'KD_GET_FILENAME_ON_F4'
        exporting
          static        = 'X'
        changing
          file_name     = p_file
        exceptions
          mask_too_long = 1
          others        = 2.
      if sy-subrc <> 0.
        message id sy-msgid type sy-msgty number sy-msgno
                with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      endif.
    START-OF-SELECTION                                                  *
    start-of-selection.
      perform get_data.
      perform emp_invt.
    *&      Form  GET_DATA
          text
    -->  p1        text
    <--  p2        text
    form get_data.
    READ FILE INTO INTERNAL TABLE.
      data: lv_fname type string.
      lv_fname = p_file.
      call function 'GUI_UPLOAD'
        exporting
          filename                = lv_fname
          filetype                = 'ASC'
          has_field_separator     = '#'
        tables
          data_tab                = it_585[]
        exceptions
          file_open_error         = 1
          file_read_error         = 2
          no_batch                = 3
          gui_refuse_filetransfer = 4
          invalid_type            = 5
          no_authority            = 6
          unknown_error           = 7
          bad_data_format         = 8
          header_not_allowed      = 9
          separator_not_allowed   = 10
          header_too_long         = 11
          unknown_dp_error        = 12
          access_denied           = 13
          dp_out_of_memory        = 14
          disk_full               = 15
          dp_timeout              = 16
          others                  = 17.
      if not sy-subrc is initial.
       MESSAGE e000(ZHRMSG) WITH lv_fname.
      endif.
    endform.                    " GET_DATA
    *&      Form  EMP_INVT
          text
    -->  p1        text
    <--  p2        text
    form emp_invt.
      data : wa_0585  type p0585,
             it_return type bapireturn1 occurs 0 with header line,
             it_05851  type p0585 occurs 0,
             it_pa0585 type standard table of pa0585 with header line .
      loop at it_585 into wa_585a.
        move-corresponding wa_585a to wa_0585.
        wa_0585-infty = '0585'.
        append wa_0585 to it_05851.
        clear:wa_0585 ,
              wa_585a.
      endloop.
      sort it_05851 by pernr.
      select * from pa0585 into table it_pa0585
      for all entries in it_05851
      where pernr = it_05851-pernr.
      loop at it_05851 into wa_0585.
    Convert START Date into internal format (ex: 10/06/04 -> 20040610
        call function 'CONVERSION_EXIT_DATEX_INPUT'
          exporting
            input  = wa_0585-begda
          importing
            output = wa_0585-begda.
    Convert END Date into internal format (ex: 10/06/04 -> 20040610 )
        call function 'CONVERSION_EXIT_DATEX_INPUT'
          exporting
            input  = wa_0585-endda
          importing
            output = wa_0585-endda.
    *******Function module to lock personnel no
        call function 'BAPI_EMPLOYEE_ENQUEUE'
          exporting
            number = wa_0585-pernr.
             IMPORTING
               return = WA_RETURN.
        read table it_pa0585 with key pernr = wa_0585-pernr
                                    begda = wa_0585-begda
                                    endda = wa_0585-endda.
        if sy-subrc is initial.
          call function 'HR_INFOTYPE_OPERATION'
            exporting
              infty                  =  '0585'
              number                 =  wa_0585-pernr
      SUBTYPE                =
      OBJECTID               =
      LOCKINDICATOR          =
             validityend            =  wa_0585-endda
             validitybegin          =  wa_0585-begda
      RECORDNUMBER           =
              record                 = wa_0585
              operation              = 'MOD'
              tclas                  =  'A'
             dialog_mode            = '1'
             nocommit               =  ''.
      VIEW_IDENTIFIER        =
      SECONDARY_RECORD       =
    IMPORTING
      RETURN                 =   IT_RETURN[].
      KEY                    =
        else.
          call function 'HR_INFOTYPE_OPERATION'
            exporting
              infty                  =  '0585'
              number                 =  wa_0585-pernr
      SUBTYPE                =
      OBJECTID               =
      LOCKINDICATOR          =
             validityend            =  wa_0585-endda
             validitybegin          =  wa_0585-begda
      RECORDNUMBER           =
              record                 = wa_0585
              operation              = 'INS'
              tclas                  =  'A'
             dialog_mode            = '1'
             nocommit               =  ''.
      VIEW_IDENTIFIER        =
      SECONDARY_RECORD       =
    IMPORTING
      RETURN                 =   IT_RETURN[].
      KEY                    =
        endif.
    Function module to unlock the personnel no
        call function 'BAPI_EMPLOYEE_DEQUEUE'
          exporting
            number = wa_0585-pernr.
        clear wa_0585.
      endloop.
    endform.                    " EMP_INVT

  • After renaming and moving to my desktop an iMovie project, i can not open it. I moved it back to iMovie but still it is not working. I noticed that there is not an Event Folder for the project. Can someone help me?

    I renamed an iMovie project, then I moved it out of iMovie to my desktop. It did not work from there. Finally I managed to move it back to iMovie, but still does not work. I can't edit it, it does not even appear as an option. I found out that the Event Folder for this Project is gone. Is this the problem? Is there a way I can get it back? Can somenone help me?? Obviously after so many mistakes you can tell I am new on this. Any help will be appreciated it!!!!!

    OK Let's take a step back.
    If you imported video clips from a camcorder there would be an Events folder in the Movies/iMovie Events/ folder.
    You have the option as you import from a camcorder to send your Event to an external drive instead. In this case, it would be in the iMovie Events folder at the top level of the external drive.
    If your project has no video clips, but only photos, there may be no events folder, only links to iPhoto.
    Similarly, if your camera imported your video clips to iPhoto, and you used the iPhoto event in iMovie, then your clips are in iPhoto, and there is no separate iMovie event.

  • Event Listner for the console

    I dont know whether this is the right forum for this question. May be this question is stupid. I am using a third part y jar file . I have a small swing application which calls this third party utility with certain arguments. This vendor utility spits out System.out.println statements to the console indicating the progress. I want to use this console print out and then update a progress bar for the swing applicatiion. Is there any way to write a console event listener for this?
    Something gets printed on the console while the java program is running. could this event be trapped?
    Thanks

    I dont know whether this is the right forum for this
    question. May be this question is stupid. I am using
    a third part y jar file . I have a small swing
    application which calls this third party utility
    with certain arguments. This vendor utility spits out
    System.out.println statements to the console
    indicating the progress. I want to use this console
    print out and then update a progress bar for the
    swing applicatiion. Is there any way to write a
    console event listener for this?
    Something gets printed on the console while the java
    program is running. could this event be trapped?
    ThanksYou can redirect stdout to a stream that you has created. Read that stream and update the progress bar.
    Kaj

  • How to fine event (BTE) for the std tcode

    Hello Experts,
    How can i find out event for the particular t-code,
    Plz reply
    thanks,
    Sarang

    Go to the transaction code and take the Program name.
    Now come to se38 initial screen and enter the program name.
    Now go to the menu Utilities-->Find in source code
    One popup will come give the search value as OPEN_FI and search.
    Now you can see the call function 'OPEN_FI_PERFORM_XXXX' where XXXX is the event number.
    Now you can make the use of those event no in FIBF tcode.
    Regards
    Shiba Prasad Dutta

  • Getting the data for the infotype 0006 and Subtype 4 in HR ABAP

    Hi All,
       I need to get the data from the info type 0006 and the subtype 4 , only i need to fetch the data in communications . Could you any one tell me best way to fetch that data.
    Thanks,
    SAP SAR.

    Write a select single on PA0006 for the given pernr begin and end dates and for subtype 4 ...
    select single * from PA0006
               where pernr = p_pernr
               and SUBTY = '0004'
               and ENDDA >= s_date-low
               and BEGDA <= s_date-high.

Maybe you are looking for