Can some Explain me abt Hr_api_transactions Table.

Hi Friends,
Can some one Explain me about the hr_api_transaction table..
in that table i can see there is one column 'Status' .. can some plese briefly describe me about that column.

Please see these Oracle Support articles:
What is the Meaning of Statuses in HR_API_TRANSACTIONS Table? [ID 438346.1]
What is the Meaning of Different Status Codes in Hr_api_transactions for iRecruitment? [ID 734420.1]
I hope that answers your question!

Similar Messages

  • Can anyone explain me abt Defining Celleditor /cell exceptions?

    hi all,
    Can anyone send me some screen shots abt cell editor / cell exceptions ? what is it significance to my email id [email protected] can anyone explain me with an example.
    regds
    hari

    Hi Hari,
    We use <b>Cell Editor</b> when we have Complex query with two structure used to avoid the results getting collapsed,
    It is very useful to resolve complex scenarios. For example, using it in aging analysis report which supports three different periods (aging by key date, aging as of last month and aging as of last year). For each row, the calculation is different based on key date, last month and last year.
    How to document on Cell Editor(E.g),
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/ce496e17-0301-0010-e0b4-b8ca8b4588ac
    URL for <b>Defining Exception Cells,</b>
    http://help.sap.com/saphelp_nw04/helpdata/en/cb/89fa3a0376a51fe10000000a114084/frameset.htm
    Regards,
    Mani
    Message was edited by:
            Manikandan  A

  • Can anyone explain me abt Cash inflow and outflow

    Hi all,
    Can anyone explain me the cummulative cash inflow and out flow available while creating an info object. with an example in realtime scenario.
    thanxs in advance
    hari

    Hi,
    Mainly inflow and outflow is using in inventory only. So take the inventory live scenario and understand the logic. Pay some passion to read the below doc. Coz it will explain the complete design of the inventory.
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/f83be790-0201-0010-4fb0-98bd7c01e328
    Regards,
    Vivek V

  • Can some explain this to me

    Here is the code.
    import java.net.*;
    import java.util.*;
    import java.awt.*;
    import java.applet.AppletContext;
    import javax.swing.*;
    import javax.swing.event.*;
    import java.lang.String.*;
    import java.text.DateFormat;
    public class Headlines3 extends JApplet implements Runnable{
       private HashMap sites;    // site names and URLs
       private Vector siteNames;   // site names
       private int appletWidth, appletHeight;
       private int yPosition;
       private int xPosition;
       boolean hasTextDisplayed;
       Thread runner;
       static int x;
       CustomPanel panel;
       private JTextField timeField;
       Object object;
       String output = "";
       int newsLength;
       Calendar cal= new GregorianCalendar();     // this make a Calendar with current Date - Time.
       Date today;
       String dateOut;
       DateFormat dateFormatter;
       Locale loc= new Locale("EN", "en");
       // read HTML parameters and set up GUI
       public void init()
              hasTextDisplayed = false;
              appletHeight  = yPosition = getSize().height;
              appletWidth =  getSize().width;
              Container container = getContentPane();
              //container.setLayout(new FlowLayout());
              //add date to ticker
            cal.setTime(new java.util.Date());
            dateFormatter = DateFormat.getDateInstance(DateFormat.DEFAULT,
                                loc);
            today = new Date();
            dateOut = dateFormatter.format(today);
              timeField = new JTextField(dateOut + " ", 20);
            //timeLabel.setVerticalTextPosition( SwingConstants.BOTTOM );
              //container.add( timeField);
              if (runner == null) {
            runner = new Thread(this);
            runner.start();
          // create HashMap and Vector
          sites = new HashMap();
          siteNames = new Vector();
          newsLength = output.length();
           panel = new CustomPanel();
          container.add(timeField);
           container.add(panel);
           //getContentPane().add(timeField);
          //getContentPane().add(panel);
          panel.setBackground(Color.white);
          // obtain parameters from HTML document
          getSitesFromHTMLParameters();}
          // create GUI components and layout interface
           class CustomPanel extends JPanel {
           Headlines3 app = new Headlines3();
            public void update(Graphics g)
              //overwrote this method to avoid repainting of background before all text displays
              if (hasTextDisplayed == true)
                   //repaint the background
                   g.setColor(Color.black);
                   g.fillRect(x+800, 0, appletWidth - (x + 800),
                                appletHeight);
                   g.setColor(Color.white);
              paint(g);
           public void paintComponent(Graphics g) {
           super.paintComponent(g);
              g.setColor(Color.blue);
              int space = 50;
              for (int i =0; i <= 3; i ++ ){
              space = space + 300;
              object = siteNames.get(i);
              //output = "sitename: " + object + "\n";
              URL newDocument = ( URL ) sites.get( object );
              g.setColor(Color.blue);
             g.drawString(""+ object ,space +app.x,20);
              g.setColor(Color.red);
              g.drawString(""+ newDocument ,space +app.x,50);
             g.drawString("",space + app.x,50);
           public void run() {
           Thread thisThread = Thread.currentThread();
           while (runner == thisThread) {
           repaint();
          if ( x <= - 1000 ){
           x = appletWidth;
           hasTextDisplayed = true;
           else x--;
           try {
           thisThread.sleep(10);
          }catch (InterruptedException e) {}
       // obtain parameters from HTML document
       private void getSitesFromHTMLParameters()
          // look for applet parameters in HTML document and add to HashMap
          String title, location;
          URL url;
          int counter = 0;
           int storycount = 0;
           char order;
          title = getParameter( "title" + counter ); // get first site title
           ++storycount;
           order = (char)storycount;
          // loop until no more parameters in HTML document
          while ( title != null ) {
             // obtain site location
             location = getParameter( "location" + counter );
             // place title/URL in HashMap and title in Vector
             try {
                url = new URL( location );// convert location to URL
                sites.put(title, url );   // put title/URL in HashMap
                siteNames.add(title );    // put title in Vector
             // process invalid URL format
             catch ( MalformedURLException urlException ) {
                urlException.printStackTrace();
             ++counter;
             title = getParameter( "title" + counter ); // get next site title
          } // end while
       } // end method getSitesFromHTMLParameters
    } // end class SiteSelectorhtml bit..
    <html>
    <title>produceHeadline</title>
    <body>
    <applet code = "Headlines3.class" width = "300" height = "75">
    <param name = "title0" value = "UK unemployment at 20-year low">
    <param name = "location0" value = "http://news.bbc.co.uk/1/hi/business/3631417.stm">
    <param name = "title1" value = "Innocent people dubbed criminals">
    <param name = "location1" value = "http://news.bbc.co.uk/1/hi/uk/3630971.stm">
    <param name = "title2" value = "Government U-turn on Europe poll">
    <param name = "location2" value = "http://news.bbc.co.uk/1/hi/uk_politics/3635943.stm">
    <param name = "title3" value = "Soldiers caught in roadside bomb">
    <param name = "location3" value = "http://news.bbc.co.uk/1/hi/england/kent/3638297.stm">
    </applet>
    </body>
    </html>
    Its going to be a news ticker. Ok i have these problems
    1)I am new to java GUI, i have a textfield with the date and another with the ticker. I cannot seem to get them to both appear on the applet, the curent code shows just the ticker. Can someone explain how i can get both to show up, sample code would be helpful
    2) Also any suggestions how to make the scrolling text never stop.so when it comes to the last item the first is directly behind it again.

    >
    1)I am new to java GUI, i have a textfield with the
    date and another with the ticker. I cannot seem to get
    them to both appear on the applet, the curent code
    shows just the ticker. Can someone explain how i can
    get both to show up, sample code would be helpful- You can use a GridLayout to evenly distribute every component.
    or
    - You can use your FlowLayout and set the prefferedSize,minimumSize, and maximumSize properties.
    or
    - A constructor of the JTextField accepts an int value that specifies tha width of the component in characters. (May not work well with GridLayout. Personally, I think it's the best solution.)
    2) Also any suggestions how to make the scrolling text
    never stop.so when it comes to the last item the first
    is directly behind it again.Please explain what your applet does before talking about "the scrolling text", we all have valuable time and most of us don't feel like taking our time to decipher somebody else's code just to see if we can help him/her with their problem.

  • I know this has been addressed before can some explain in layman terms ...

    error -2048
    There have been multiple topics on this subject but not really an answer that a non-audio techi type person.
    I concerns creating a MP4 project in excess of 2gigs.
    The main answers I have seen are do not use Fat 32 below are my specs:
    AMD 64x2 6000+
    500g Maxtor USata HD
    NTSF file system
    Windows XP Pro
    2g Ram
    8800 GTX video Card
    Qtime v7.1.6
    Qtime player v 7.1.6
    Itunes v7.1.1.5
    If someone can PLEASE explain why this error happens in files over 2gigs and if it is a hardware issue or QT issue.
    I have tried to create in mpeg4 (640x480) and I have tried to create the project in H.264 Itunes or Quick time will not recognize the format and neither will VLC. If I try to create the project at a lower resolution (non-640x480) it is recognizable.
    Any help again is GREATLY APPRECIATED. I am just looking for an answer that a layman can understand.
    Thanks,
    B

    QuickTime Player has only one file size limit and that is 4GB's for MPEG-2 files. No limit on other file extensions (in theory). I've made projects up to 100GB's (slow to open but work just fine).
    Your NTFS file system is best for large file sizes.
    FAT 16 has a 2GB limit. FAT 32 has a 4GB file size limit.
    Something else is causing your -2048 error message. Check your file name for illegal characters and the drive itself for errors or damage.

  • Can some explain 1080i and 1080p which is better for a pal project in HD

    I am new with these type of codec, plus which one is better for a pal projects not NTSC. Also I want to know if there would be any problems when I take a project that is done in Pal and move it to NTSC would there be some frame problems.
    thanks

    I like the p footage better because it looks more like film, plays better on the computer, and looks better in web streams... as far as going to NTSC in the end, Compressor's "advanced format conversions" or Graeme Nattress' Standards converter does a fine job of PAL to NTSC... Edit in the native format you've shot though, then in the end do the standards conversion. You needn't worry about anything special here...
    Jerry

  • Can some explain how to change the format on the modern resume template in pages. There is a large spacing on the second page that i will like to change

    Can somone please help me --- Im trying to reconfigure the spacing on the second page on the Modern Resume Template on pages -- The first page is fine, the second page has a huge spacing before the text begins!!!!!! PLEASE HELP!!!
    FIGURED IT OUT!!!!!

    Only a guess since you do not tell us teh version - for iPhoto '11 click on the change theme button in the upper right - for different versions it is in different places
    http://support.apple.com/kb/HT1850?viewlocale=en_US&locale=en_US
    LN

  • Can some explain vpc peer-link vlan issues for me?

                       I remove vlan from vpn peer-link , the vpc is gonna down.
                      I know this is design ,but why.
    thank you!
    Tom

    Thanks Chad!
    Kept racking my brain on that one, and the only time it would make any sense (ie, I was trying to fit a square peg in a round hole), is if you have IGP peering to each 7K from an orphan port (ex, FW), the IGP ECMP hashes a packet to the far-end 7K, and then the traffic sent to the directly attached 7K must be sent across the vpc-peerlink -- and in theory shouldn't be dropped. This is, of course, until you add peer-gateway command, which confuses matters a bit -- especially from an IGP control-plane perspective, but also in this loop-prevention rule, since the local 7K will handle the packets destined to the other's 7K MAC.
    To complicate matters worse, the latest 5K release notes say to exclude-vlan for peer-gateway for your backup router vlan... still have to dive into that one.

  • Can someone explain the tables tab under function parameter declaration ?

    Hello,
    when declaring a function, part of its parameter interface is the tables tab. So if in FUNCTION1 i  declare a table: tdraw like draw  (optional)
    what does that mean ? does this mean that tdraw will be a table of type draw and at the same time it will be filled up with the same contents as draw has ?
    then how can other function (func2) use FUNCTION1 and its table ?
    so if inside func2  i also have an internal table AA like draw :
    so inside func2 i say:
    call function1
    tables:tdraw = AA
    does this mean that it will assign the result tdraw table of function1 to AA ?
    can someone explain details of internal tables and passing them as parameters ?
    and which table is assigned to which ?
    thank you

    Hi hassan,
    If you are talking about the tables parameter in SE37, when you declare a table tdraw like draw it only means you are declaring an internal table of type draw but the contents are not filled into it.
    In the source code of the program you have to write the code to fetch the data to tdraw and do the manipulations accordingly.
    Also, the tables you are declaring can be like the input table or can be used for output table.
    suppose u have 2 tables tab1 and tab2, tab1 you are going to input the values to it and the calculated values have to be in another table, you can use tab2 as the result table.
    hope it helps.
    award points if it helps.

  • How come extend is the physical structure ? Can some one explain.

    How come extend is the physical structure ? Can some one explain.
    thanks
    siva

    "Tablespaces physically group schema objects for administration convenience. They bridge physical structures, such as datafiles or extents, and logical structures, such as tables and indexes. Tablespaces can store zero or more segments. Segments are schema objects that require storage outside the data dictionary. Tables and indexes are examples of segments. Constraints and sequences are examples of schema objects that do not store data outside the data dictionary and are therefore not segments." - Study Guide.
    Read above, it reads "physical structures, such as datafiles or extents", this is where I got confused ?
    thanks
    siva

  • Hi frnds...im new 2 BI can some one explain me basics in BI...

    HI frnds..
      I jst started BW/Bi training..can someone explain me basics in BW.. like
    what are dimesion id's n surrogate id's??
    what is extended schema???
    what is master data??
    how master data is stored??
    what is datasource,infosource,infopackage,application component,transfer rules,update rules....have much confusion..
    please can some one clear it...

    First of all this is not the correct forum for your questions. This forum handles questions regarding the BusinessObjects on Demand offering.
    Secondly it is not realistic to expect an answer to ALL those questions in a forum. I would suggest either to buy book about SAP Netweaver/BW (Beginner's level) or search for the keywords you are refering to either in SDN or in the Internet. There are some SAP BW tutorilas available out there.
    eg.
    Step By Step BW Exercise
    http://searchsap.techtarget.com/tutorial/SAP-NetWeaver-BI-training-tutorial
    Regards,
    Stratos

  • Can anyone explain to me why some of my photos are landing in events and others are appearing only in photo stream?

    I want to delete photos from camera roll on my iPhone to clear space to install ios7 but after importing photos to iPhoto on my macbook pro only 4 out of 339 photos taken in September landed in events, though all 339 are in Sept photo stream. It seems like on previous uploads all photos "fell" into events according to the day they were taken, as well as into photostream. I want to make sure these photos stick around permanently and do not exist only in photo stream where I imagine they will eventually be bumped from my computer (photostream). Can anyone explain why some of my photos are landing in events and others are appearing only in photo stream?

    You have uploaded two different things - pHotos are in one and only one event - if you have the same photo in two different events then you have imported it twice
    Please explain what you want - your initial question and yoru current comments are 180 degrees apart
    You say they are not all in events
    Can anyone explain to me why some of my photos are landing in events and others are appearing only in photo stream?
    Now you say they are
    All 15 pics appear in  Sept 2013 PS
    It sound to me like you have no problem except you imported some photos twice adn you may not understand how the automatic import form PS works - but that is not clear
    you can choose to have all of your My Photo Stream photos automatically downloaded. In iPhoto or Aperture preferences on your Mac, to select Photo Stream > My Photo Stream > Automatic Import. All of your photo stream photos will be imported into your Events, Projects, Photos, Faces, and Places folders in iPhoto or Aperture.
    The event they are imported into is MMMM YYYY PS
    If you import via iTunes sync or by connecting your IOS device via USB then they are importeed into the regular event structrue as defined in your iphoto preferences - and if you imoport via two or more different methods you will ahe duplicates
    LN

  • I have downloaded ios 5.1.1 and the wifi has stop working or it would stay on for less then 20min its only 9 months old can someone explain what is happening and if some know how to fix it

    I have downloaded ios 5.1.1 and the wifi has stop working or it would stay on for less then 20min its only 9 months old can someone explain what is happening and if some know how to fix it

    I have taken it back to the Apple store genius bar, but they say they don't see anything wrong. Well unless you use it all day and experience the problems when they happen, you wont see anything wrong. But there are lots wrong with it. But this would be the same store as I purchased the phone. And they backed up my old Iphone 4, but were not able to get anything to load back onto my new phone. So, I lost pretty much everything. But over time, some of my contacts have started showing up, although i am still missing over 800 of them.

  • Can anyone explain why some of my mail goes straight into Archive and doesn't show up in my Mail Inbox?

    I don't understand the Archive folder.  My Mail Inbox receives mail for my Mac, Gmail & AOL accounts - but sometimes after I've read an email I then can't find it when I check back for it later.  And then I discover it's in the Archive folder, though I haven't done anything to make it move to Archive.  So it must be happening automatically, and seemingly at random.  Can anyone explain how this could be and how I can prevent it continuing to happen?  Thanks.

    Andy, thanks for your reply. I was just going to post that I seem to have solved the problem.
    What I ended up doing was to first back up the mail folder. Then I created some Saved Mail folders and did a search to find the e-mails that weren't displaying and put them into a saved mail folder. Then I went in and deleted the e-mail account that wasn't displaying mail. (It would show the number of new messages in the red circle, but didn't show any messages being in the inbox when you clicked on the account.) Anyway, after trying to backup everything and deleting the problem e-mail account, I rebuilt the inbox and then re-entered the information for that account to set it back up. After I did this, messages come into the account just fine and show up just like they should.
    The file structure looked to be the same as what your finder image shows. When I did the search which let me find the messages, all I noted was that it would say they were either in the Inbox, Sent Mail, Trash, etc. But, once I had them showing in the search window, I could copy them to a saved mail folder and view them without a problem.
    Since this wasn't my computer, I'm not sure if anyone tried to change account settings, but not as far as I know. They just said it happened about 2-3 weeks ago.
    Thank you for your help. I guess it's going to be one of those computer things that you don't know why it happened, but at least I know what I did that seems to have fixed it.

  • Can anyone explain me how to create a transparent table(z table) dynamicall

    Can anyone explain me how to create a transparent table(z table) dynamically in the program.

    Hi,
    Look at the below link
    http://www.sap-img.com/ab030.htm
    Regards
    Sudheer

Maybe you are looking for