Function to read wagetypes from infotype 589

Dear Experts,
             Is there any function to get all wagetypes along with respective amounts from infotype 0589.
             Right now am using function 'HR_READ_INFOTYPE'
and read statement to get wagetypes.because it is stored various fields like lga01,lga02..
and bet01,bet02..
           plz let me is there any alternative..
        Thanks in advance.
        Regards
       siva

Hi,
Through Transaction SE16 you can download records of IT0589
Table is PA0589
Regards,
Devojit

Similar Messages

  • To move the wagetypes from infotype pa0008 subtype 11 to subtype 0.

    Hi all,
    I have a requirement wherin i have a need to copy the wagetypes from infotype pa0008 subtype 11 to pa0008 subtype 0 based on the begin date i.e., if if the begda of subtype 11 is greater than begda of subtype 0 it has to be copied. This has to be run on a monthly process. Can anyone provide me a sample code or tips about how to do this without using dynamic actions.
    Regards,
    Shiji

    Hi
    Usually the entire set of content management scenario like wf's , metadata , expiration etc are created on UCM Server . On the URM side all the life cycles like Retention , Disposition , Records actions etc are created .
    So when you checkin a content and if it is attached to a category / record folders then it will be searchable from URM side as well .
    As for moving the contents you can schedule the Synchronization on a manual basis from UCM side where in the contents will then be searchable from URM side .
    All the contents , metadata and such details will be on UCM itself but they will be attached to the URM life cycles .
    Apart from this if you want then the same ucm server can be turned into a standalone RM server as well by selecting Standalone Option while enabling RM components .
    Or else use the Adapter configuration to have UCM server with RM communicate with a full blown URM server .
    Thanks
    Srinath

  • How to get wagetypes from infotype 0589

    Dear Experts,
    Is there any function to get all wagetypes along with respective amounts from infotype 0589.
    Right now am using function 'HR_READ_INFOTYPE'
    and read statement to get wagetypes.because it is stored various fields like lga01,lga02..
    and bet01,bet02..
    i want to club all those wagetypes and amounts under lgart and betrg.
    plz let me is there any alternative..
    Thanks in advance.
    Regards
    siva

    assign PNP ldb in your programe attributes and code like following
    tables : pernr,
    infotypes : 0000, 0001,0002,0004 .
    start-of-selection.
    get pernr.
    provide * from p000 between pn-begda and pn-endda
    from p0001
    put your condition like where <.........>
    endprovide.
    or you also can get data if you dont want to use LDB.
    every info type will be associated with table
    ex if infotype is 0001 table name is p0001.
    so you can also write select statement .
    Thanks

  • Reading Texts from Infotype

    Hi,
    How can we read texts from the Infotype. There is this function module HR_ECM_READ_TEXT_INFOTYPE, but we need the Employee Number, Begin date and End Date as inputs.
    I just want to check if a field with a particular value exists or not.
    just like this works to check whether the field DAT35 with value 99991231 exits or not.
    SELECT PERNR FROM PA0035 INTO V_PERNR WHERE DAT35 = '99991231'.
    IF SY-SUBRC = 0.
    ENDIF.
    the same way for a text, but this text actually gets stored in a structure thats why we cannot use a select for infotype
    Thanks in advance.

    Hi,
    What i am getting from ur explanation is that u are having a probelm in accessing a text field from the infotype, i.e: the value field in included in the infotype table (PA0035) but its text is in another table.
    If this is the problem, u should first use select statement on PA0035 to get the required infotype record. Then use F1 help on the required text field on the infotype screen to get the table and field name. Then u can use select statement on that table by specifying the relavant value field from the previous select in the where clause.
    Hope this hepls

  • Reading dates from infotype 41

    I need to obtaint a subtype of date from infotype 41 but the problem is that infotype 41 has many fields like
    dar01 - dat01, dar02 - dat02, darN - datN the subtype that I need is the '01' but I don't know how to get it becuase sometimes is in the dar01, or in the dar02, or darN, is there any function module that can help me?
    Thanx in advance

    Hi ,
    This exactly what you are trying to do
    *--Decleare internal table
    TYPES : BEGIN OF ty_pa0041,
               pernr TYPE pa0041-pernr,
               dar01 TYPE pa0041-dar01,
               dat01 TYPE pa0041-dat01,
               dar02 TYPE pa0041-dar02,
               dat02 TYPE pa0041-dat02,
               dar03 TYPE pa0041-dar03,
               dat03 TYPE pa0041-dat03,
               dar04 TYPE pa0041-dar04,
               dat04 TYPE pa0041-dat04,
              END OF ty_pa0041.
    DATA : lt_pa0041 TYPE STANDARD TABLE OF ty_pa0041,
                ls_pa0041 TYPE ty_pa0041.
    *--Read Secondment end date ( For my case it's RG)
    SELECT pernr
            dar01 dat01 dar02 dat02 dar03 dat03 dar04 dat04
       INTO TABLE lt_pa0041
       FROM pa0041
       WHERE pernr = gs_final-pernr AND
                    endda = '99991231'.
    *--Find out corrosponding date according to 'RG'
    LOOP AT lt_pa0041 INTO ls_pa0041.
       IF ls_pa0041-dar01 = 'RG'.
         lv_date1 = ls_pa0041-dat01.
       ELSEIF ls_pa0041-dar02 = 'RG'.
         lv_date1 = ls_pa0041-dat02.
       ELSEIF ls_pa0041-dar03 = 'RG'.
         lv_date1 = ls_pa0041-dat03.
       ELSEIF ls_pa0041-dar04 = 'RG'.
         lv_date1 = ls_pa0041-dat04.
        ENDIF.
    ENDLOOP.
    I hope it fits your requirement

  • How do you use the windows User32.dll Library functions to read variables from other applications that are running

    I am trying to read a text box from a programme running at the same time as my Labview application using calls to the Windows
    User32.dll. I believe I need to find the window handle for the 'form' containing this text string and use this together with
    various other defined input variables to access the sting.
    I have no experience of using this 'Call Library Function Node', but have an understanding of the 'C' programming language. Does anyone have
    example Labview code showing how this might be done.
    Thanks

    If you're trying to access information that's being displayed in the window of another application and that application has no ActiveX interface, then yes, Windows calls can be used. There's a very good example on calling DLLs that ship with LabVIEW. Open the Example Finder (Help->Find Examples) and switch to the Search tab. Enter "Call" in the search box and open the VI "Call DLL". Run the VI, select any of the examples, and click the "Open Example VI..." button. That shows you how to call a DLL.
    Now, given that you have no experience in calling DLLs, have only an "understanding" of C (which to me means you have never written something like a DLL), and don't seem to know that much about what Windows functions you may need, you're going to find this route pretty difficult, especially since you have to deal with Windows API calls, which are not always that easy to do from LabVIEW.
    Let me propose an alternate solution. Go over to http://www.autoitscript.com/autoit3/ and download AutoIt. This is an automation tool that allows you to automate just about anything you want. It has an ActiveX interface that you can call from LabVIEW. I've attached an example VI that shows you how to use it to get the value of a text box from one of the tabs in the computer "System Properties" control panel applet.
    Attachments:
    AutoIt Example (v7).vi ‏25 KB

  • Function to read constants from class

    Hi all,
    i'd like to ask you if anybody konws a FM to read constants and their values form class?
    Thank you
    J

    Hi,
    i don't kown waht this FM does but it for sure doesn't import any constants from class.
    Thank you
    J

  • Reading Several Employees Infotypes

    Hi everyone,
    I was wondering if anyone knows a function to read several employees infotypes.
    Something equivalent to "RHOM_READ_INFTY_BUFFERED", that allows to read all entries of HRP's infotypes from one or more objects.
    Thanks a lot, I regard with points!!!!!!
    Regards,
    Fifo Chávez
    Apparentely there's no answer
    Edited by: Fiorella Chavez Valdivia on Sep 21, 2009 3:57 PM

    Can't recall much but did you try defining INFOTYPES in your program, as below, and using GET statement?:
    *& infotype declaration
    INFOTYPES: 0000,                       " Actions
               0001,                       " Organizational assignments
               0002,                       " Personnel Data
               0007,                       " Planned working Time
               0008,                       " Basic Pay
               2001 MODE n,                " Absences
               2002 MODE n,                " Attendance
               2003 MODE n,                " Substitution
               2004 MODE n,                " On-Call Duty
               2005 MODE n.                " Overtime
    DATA: report_begda LIKE pn-begda.
    *& start of selection
    START-OF-SELECTION.
    * selection-begda might change
      report_begda = pn-begda.
    GET pernr.
    regards,
    Aabhas
    I noticed I have replied to a failry old post
    Edited by: Aabhas K Vishnoi on Sep 22, 2009 1:35 PM

  • How to retrive data from infotype 0008 &0021 and dispaly as alv output

    hi all,
    i have to read data from infotype 0008 and infotype 0021 and display as alv grid..
    can any one help me..
    <removed by moderator>
    regards,
    viswanath
    Moderator message: please search for information and try yourself before posting here.
    Edited by: Thomas Zloch on Jan 12, 2012

    Hello Sourabh,
    If I am not wrong, there are two parts two your query...
    a) Data or Content Retrieval
    b) Displaying Retrieved content
    Here is my feedback
    a) The Content can be Retrieved using the FM ARCHIV_GET_TABLE.
    Pass the Archive Object, SAP Object and the SAP Object ID and based on the Connection table entries (TOA*), the underlying Content Repository (T-code OAC0) is determined and a request for synchronous retrieval is made to the Content Server.
    b) Display of Retrieved content is normally done through dedicated viewers (Ex: Livelink Viewer) or front-end applications (Excel, Word) based on the Protocol (OAA3/OAA4) specified in the Content Reository Configuration. Hence, to my knowledge, you cannot display the content directly in the Smartform.
    With Regards
    Vijay Gajavalli

  • ABAP Function to read long texts in HR Infotypes

    Is there any standard ABAP function to read long texts in HR infotypes like ABAP function to read comments entered in infotype 19

    HI ,
    try this code
    tables pcl1.
    include rpc1tx00.  " This include is explained on web page above
    start-of-selection. 
    perform fill_key.  perform get_data.end-of-selection.
    form fill_key. 
      tx-key-pernr = p_pernr.
      tx-key-infty = p_infty.
      tx-key-subty = p_subty.
      tx-key-objps = p_objps. 
      tx-key-sprps = p_sprps.
      tx-key-endda = p_endda. 
    tx-key-begda = p_begda.
    tx-key-seqnr = p_seqnr.
    "OR
      SELECT * INTO CORRESPONDING FIELDS OF wa_p0219
       FROM pa0219
       WHERE pernr = p_pernr
         AND subty =  p_subtyp
         AND endda = '99991231'.
      ENDSELECT.
    MOVE-CORRESPONDING gs_p0219 TO tx-key.
        MOVE '0219' TO tx-key-infty.
         IF wa_p0219-itxex = 'X'.
           MOVE-CORRESPONDING wa_p0219 TO tx-key.
         endif.
    endif
    endform.                    " fill_key
    form get_data. 
          import ptext from database pcl1(tx) id tx-key.
           loop at ptext.            "ptext is defined in above include  
                   write: / ptext-line. 
          endloop.
    endform.  " get_data
    Prabhudas

  • Reading Data From a Different Planning Package in a Exit Function

    Hi,
    Is it possible to read data from a planning level / package other than the package that the exit function was executed with?  I want to read data into an internal table from another package and use that data in combination with the data in the current package to create new records.  If this is possible sample code for how to read data from a different package would be appreciated.
    Thanks!
    Mel Waldner

    Hi,
    As an example lets say you have restricted 0calmonth in your package to 6.2007. In the planning layout to fetch values for 5.2007 (read only), you can take 0calmonth in data columns, and for this column restrict it as 5.2007.
    Similarly in Planning functions, you can mark 0calmonth as field to be changed and fetch data for 5.2007.
    Hope this helps.

  • Reading data from a text file but can't use the data outside of the function.

    I am trying to load a variable from data in a text file.
    I can read the text file fine but the variable data seems
    only to be available with in the function that reads it.
    I need to use the variable data outside of the function.
    Does anyone have any suggestions to work around this issue?
    This is the actionscript code i'm using.
    var pathVars= new LoadVars();
    pathVars.onLoad=function(ok) {
    if(ok)
    trace("Loading");
    path_var=pathVars.path;
    trace("This is within the function "+path_var);
    pathVar0="This is within the function... "+path_var;
    Yet the path_var is available here fine.
    pathVars.load("mypath.txt");
    This is where the path_var becomes undefined
    trace("This is outside the function... "+path_var);
    pathVar1="This is outside the function... "+path_var;
    This
    is a download link for the FLA zip file
    This
    is a demo of the script loading the text file

    The external traces are being executed before the file is
    loaded.

  • Function module to read data from a SPO

    Hi guys,
    Inside a transformation a have a rule, ABAP routine type, in wich I need to read data from a SPO (semantically partitioned object). Is there an ABAP function module or Class that allows to read data from a SPO?
    The SPO from wich I need to read the data is DSO based.
    Thanks in advance.
    David.

    Hi David,
    The normal procedure is using Function Module RSDRI_INFOPROV_READ. However, according to the documentation it only works for DSOs, InfoCubes and MultiProviders.
    Could you access as a work-around a MultiProvider? Or use any logic to first determine which PartProvider of the SPO-based DSO or InfoCube is required and then use the Function Module to read the data?
    Best regards,
    Sander

  • Any standard function module to read data from a cube

    Hi,
    I want to read data from a cube say XYZ, into an internal table. Is there any standard function module to do this? If so can anyone plz tell me what change should i make in the function module for my requirement.
    Regards
    BW Fresher.

    Hi R,
    Try function module 'RSDRI_INFOPROV_READ'
    ABAP Report RSDRI_INFOPROV_READ_DEMO contains an example of how the function module can be used.
    Udo

  • Can I use LabVIEW to load data directly into system memory? The serial card I'm using isn't supported by NI nor does VISA recognize it. I'm using a Win32 function to read the data from the card and now I want it to go directly to system memory.

    Can I use LabVIEW to load data directly into system memory from a VI? The serial card I'm using isn't supported by NI nor does VISA recognize it. I'm using a Call Library function to read the data from the card and now I want it to go directly to system memory.
    The data is being received at 1Mbps.
    Thanks

    Two questions:
    One, if it's a serial card, then presumably it gives you more serial ports, like COM3, COM4, etc. If so, VISA would see the COM ports, and not the card directly. The drivers for the card should make it so that you see the extra serial ports from the OS. If you don't see the extra COM ports from VISA, then it sounds like the drivers for the card are not installed properly. Do the extra COM ports show up in Device Manager?
    Two, you said that you're using a Call Library function to get the data and you want to put it into system memory. Errr.... you just read the data and you have it in memory by definition. Are you saying you need a way to parse the data so it shows up on a graph or something?

Maybe you are looking for

  • Unable to update my ipod

    hi, i hope someone can help everytime i try to update my ipod i keep getting a message that says Songs on the Ipod "Owner's Ipod" cannot be updated because all of the playlists selected for syncing no longer exists ive already tried to uninstall and

  • 13 x 19 Photoshop Printing Problem

    I am using a new iMac, 10.8.2, and CS6. I got an epson WF-7510 all-in-one large format printer. In photoshop and acrobat, when I try to print 13 x 19 (Super B/A3), it will only print out a 8.5x11 area on my 13 x 19 paper. In Mac preview and Illustrat

  • High virtual circuit wait event

    Hi, in my 11g Enterprise Edition Database I have a problem with some sessions that are almost always in virtual circuit wait event. What is this wait event and how can I troubleshoot it? IMPORTANT: I'm not using XDB or APEX Edited by: Insaponata on J

  • Filtered-x-LMS function for ANC

    Hello everybody, after some more researches for my diploma thesis I found out that I have to use the filtered-x-LMS-algorithm for my feedback system. To learn how to program this algorithm in LabView I used the example-VI "Active Noise Control (Simul

  • HT1338 java doesn't work and there is no update (via apple) available.

    Now running mountain lion. Unfortunately java doesn't work and there is no update (via apple) available. What do I do?