How to valiadate on the basis of employee id selected...

Hi All,
My requirement is to use the validation on the basis of the employee id selected.
My CO
if (pageContext.getParameter("submitButton")!=null)
OAViewObject vo = (OAViewObject)am.findViewObject("EmployeeEOVO1");
if (vo != null)
System.out.println("Inside");
// vo.reset(); //New line added
// vo.next(); //new line added
OARow row = (OARow)vo.getCurrentRow();
String email = row.getAttribute("EmailAddress")+"";
if ((email!=null) && !("null".equals(email)))
System.out.println("Attribute1 "+ email);
int i = email.indexOf("@exlservice.com");
System.out.println("Init i is "+ i);
int j = email.indexOf("@");
if(i != -1 || j == -1)
System.out.println("In the if condition of Email");
throw new OAException("Invalid Email Entered", OAException.ERROR) ;
OAViewObject vo1 = (OAViewObject)am.findViewObject("EmployeeEOVO1");
if (vo1 != null)
System.out.println("Inside");
// vo1.reset(); //New line added
// vo1.next(); //new line added
OARow row1 = (OARow)vo1.getCurrentRow();
// by sombit to add pune
// String empid = null;
// int empid =pageContext.getEmployeeId();
// System.out.println("The value of employee_id"+empid);
String Item = row1.getAttribute("PlBalance")+"";
if ((Item!=null) && !("null".equals(Item)))
System.out.println("PL Balance is "+Item);
Serializable[] params = {Item};
am.invokeMethod("validatePL", params);
/* //by sombit to add pune
String empid = null;
xxpune = (String)pageContext.getEmployeeId();
System.out.println("The value"+empid);*/
My AM
public void validatePL(String Item)
boolean check;
check = validateFormat(Item);
System.out.println("Check IS "+check);
if(check==true)
//throw new OAException("Wrong PL Balance Entered. It should not be greater than 15 OR less than 0", OAException.ERROR) ;
throw new OAException("EXL", "EXL_HR_EEXIT_WRONG_PL");
}

Hi Anil,
I tried your code but this is my My Error Stack
oracle.apps.fnd.framework.OAException: java.lang.NullPointerException
     at oracle.apps.fnd.framework.OAException.wrapperException(OAException.java:891)
     at oracle.apps.fnd.framework.webui.OAPageErrorHandler.prepareException(OAPageErrorHandler.java:1145)
     at oracle.apps.fnd.framework.webui.OAPageErrorHandler.processErrors(OAPageErrorHandler.java:1408)
     at oracle.apps.fnd.framework.webui.OAPageBean.processFormRequest(OAPageBean.java:2636)
     at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1658)
     at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:501)
     at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:422)
     at OA.jspService(OA.jsp:40)
     at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
     at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:317)
     at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:465)
     at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:379)
     at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
     at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:727)
     at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:306)
     at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:767)
     at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:259)
     at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:106)
     at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:803)
     at java.lang.Thread.run(Thread.java:534)
## Detail 0 ##
java.lang.NullPointerException
     at exl.oracle.apps.per.eexit.webui.EmployeeCO.processFormRequest(EmployeeCO.java:648)
     at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:804)
     at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java:363)
     at oracle.apps.fnd.framework.webui.OAPageLayoutHelper.processFormRequest(OAPageLayoutHelper.java:1157)
     at oracle.apps.fnd.framework.webui.beans.layout.OAPageLayoutBean.processFormRequest(OAPageLayoutBean.java:1579)
     at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:1000)
     at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:966)
     at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:821)
     at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java:363)
     at oracle.apps.fnd.framework.webui.beans.form.OAFormBean.processFormRequest(OAFormBean.java:395)
     at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:1000)
     at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:966)
     at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:821)
     at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java:363)
     at oracle.apps.fnd.framework.webui.beans.OABodyBean.processFormRequest(OABodyBean.java:363)
     at oracle.apps.fnd.framework.webui.OAPageBean.processFormRequest(OAPageBean.java:2632)
     at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1658)
     at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:501)
     at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:422)
     at OA.jspService(OA.jsp:40)
     at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
     at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:317)
     at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:465)
     at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:379)
     at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
     at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:727)
     at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:306)
     at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:767)
     at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:259)
     at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:106)
     at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:803)
     at java.lang.Thread.run(Thread.java:534)
java.lang.NullPointerException
     at exl.oracle.apps.per.eexit.webui.EmployeeCO.processFormRequest(EmployeeCO.java:648)
     at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:804)
     at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java:363)
     at oracle.apps.fnd.framework.webui.OAPageLayoutHelper.processFormRequest(OAPageLayoutHelper.java:1157)
     at oracle.apps.fnd.framework.webui.beans.layout.OAPageLayoutBean.processFormRequest(OAPageLayoutBean.java:1579)
     at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:1000)
     at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:966)
     at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:821)
     at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java:363)
     at oracle.apps.fnd.framework.webui.beans.form.OAFormBean.processFormRequest(OAFormBean.java:395)
     at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:1000)
     at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:966)
     at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:821)
     at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java:363)
     at oracle.apps.fnd.framework.webui.beans.OABodyBean.processFormRequest(OABodyBean.java:363)
     at oracle.apps.fnd.framework.webui.OAPageBean.processFormRequest(OAPageBean.java:2632)
     at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1658)
     at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:501)
     at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:422)
     at OA.jspService(OA.jsp:40)
     at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
     at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:317)
     at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:465)
     at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:379)
     at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
     at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:727)
     at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:306)
     at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:767)
     at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:259)
     at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:106)
     at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:803)
     at java.lang.Thread.run(Thread.java:534)

Similar Messages

  • How do I change the base color  in the recolor Artwork settings?

    How do I change the base color  in the recolor Artwork settings? I know this seems like a silly thing but I really need to figure this out and I have read and gone through the manual and the help forum to no avail. Please help.

    If I have understood you correctly, you want to exclude a certain color from getting affected. You can click on a color row and it becomes highlighted with a border around it - in your artwork, let's say you want the orange color not to get affected. Right-click on it and choose 'Exclude Colors'. When you do that, you will see that the orange color moves to the bottom of the list and there is no arrow in front of it. Like this:

  • TS3376 How do I find the menue where I can select the list of previous phones I have had and my new one ? at the moment it is still set to an old one so everytime I try to set it up it tells me it it's the wrong one - gggrrrrr help please

    How do I find the menue where I can select the list of previous phones I have had and my new one ? at the moment it is still set to an old one so everytime I try to set it up it tells me it it's the wrong one - gggrrrrr help please

    iPods (except for iPod touch) are not linked to any iTunes "account."  They are associated with your iTunes library. The account in iTunes is your Apple ID, and that is used to buy and download content from the iTunes Store.  It is not required to use an iPod.
    The 1st (and 2nd) gen shuffle can only be used with one iTunes library at a time.  When you connect it, iTunes should prompt you to start using it with your iTunes library, and warn that the shuffle's existing content will be erased.  Have iTunes erase the shuffle, and it will be associated with your iTunes library going forward.  You can then add content to your shuffle.
    The need for the previous owner's Apple ID and password should only come up if you are trying to transfer existing content from the shuffle to your iTunes library, AND the previous owner had content purchased from the iTunes Store.  Just cancel out of that step, if iTunes asks.

  • How can i find the base UOM?

    Hi ,
    I have created an rfc function module in our BW system.  I have to call this RFC from SAP R/3 . To call this RFC I have to pass MATERIAL NUMBER , Quantity Required and  UOM. Every thing is working good.
    As per the Spec , "if UOM is not there on requested call , Assume base UOM"
    I Didn’t understand this point .How can find the base UOM of the quantity required?
    Could you please give me the idea?
    Thanks,
    Suresh

    Hi ,
    Thanks for your responce.
    Do you mean: When I call the RFC function module , if  i wont give any UOM,
    It will take the base UOM automatically  or i should include any logic to pass the base uom.
    Please clarify this.
    Thanks.
    Suresh.

  • How can we get the top 5 employees list ................

    How can we get the list of top 5 employees who are drawing highest salaries from a table

    SQL> select * from
      2  (select ename,sal from emp order by sal desc)
      3  where rownum < 6;
    ENAME             SAL
    KING             5000
    SCOTT            3000
    FORD             3000
    JONES            2975
    BLAKE            2850
    SQL>

  • How can I change the base station my airport express connects to?

    I just added a new AirportExpress to my wireless network and am using it to extend the range of the network and for AirPlay. When setting it up I selected the main base station that provides the wireless network when asked to select a device for it to connect to. However, now when I view it in Airport Utility, it's the only device on the network that has only Good signal strength rather than Excellent. There is another AirportExpress conencted which has Excellent signal strength that is the closest access point to this new AirportExpress.
    How can I change the setup using Airport Utility so that that's the device that it's using to connect to the network?

    With a Mac using the Airport Utility.
    With a PC using the Airport Utility you can install on your PC with the install disc included.

  • How do I locate the base addresses of the 2 PC-DIO-24pnp boards I've installed?

    I've tried using CVI/LabWindows to ask for the base address, but it gives me an extremely long hex number. When I define it as my base address in my program, I can't toggle my output port.The code is pretty straight forward. I think I'm not using the proper address. I can toggle the ports when I use the DAQ software that came with the boards.

    If you make a call to the Get_DAQ_Device_Info function querying for the ND_BASE_ADDRESS infoType, you should be able to derive the base address of a board by device number (specified in MAX). Further documentation and use of this function can be found in the NI-DAQ help file.

  • How to dynamically form the base URL for a region?

    For Application Express 2.2.1, I've created a URL region for a static html page:
    e.g.
    http://xxxx-dev.website.com/html/page1.html
    The problem is that when I promote this application to production (using export/import), this URL still refers to the development website.
    I need Application Express to use the base URL of its current URL path rather than http://xxxx-dev.website.com
    Can this be done?
    Thanks

    Hello,
    If you omit the http:// part from your static URL, the APEX engine will automatically attached the local server prefix to it.
    Regards,
    Arie.

  • How to disable a field on the basis radio button value selected.

    hello to all,
    i am facing one problem.I have declared two selection screen blocks.
    In one i hvae declared two radio button r1 -Fiscal year and r2--Datewise.
    And in another selection screen block all i/p fields. like plant. date.year etc.
    Now if user select r1-Fiscal year  then i/p field - date of second block should be disable.
    And if user select r2-Datewise  then i/p field - year of second block should be disable.
    SELECTION-SCREEN BEGIN OF BLOCK BLK WITH FRAME
              TITLE TEXT-002.
           PARAMETERS: R1 RADIOBUTTON GROUP RA1 user-command ucomm,
                       R2 RADIOBUTTON GROUP RA1 DEFAULT 'X'.
       SELECTION-SCREEN END OF BLOCK  BLK.
    selection-screen begin of block b1 with
      frame title text-001.
    parameters : gjahr like ZSA_DETAIL-gjahr  MODIF ID YAR,
                 aedat like ZSA_DETAIL-aedat  MODIF ID DAT,
                 werks like ZSA_DETAIL-werks .
    selection-screen end of block b1.
    AT SELECTION-SCREEN on RADIOBUTTON GROUP RA1.
       BREAK-POINT.
        IF R1 = 'X'. "fiscal
         LOOP AT SCREEN.
            IF screen-group1 = 'DAT'.
             screen-active = 0.
             screen-invisible = 1.
             MODIFY SCREEN.
             ENDIF.
            endloop.
       ELSEIF R2 = 'X'.
         LOOP AT SCREEN.
         IF screen-group1 = 'YAR'.
           screen-active = 0.
          MODIFY SCREEN.
         ENDIF.
         ENDLOOP.
        ENDIF.

    Hi Shikha,
    Regarding your query, when you select a particular radio-button then the fields pertaining to that radio-button should get activated or get displayed, otherwise it should be hidden.
    This can be done adding the addition to the Radiobutton 'USER-COMMAND' this will automatically enable-up
    the functionality of the fields related to that radiobutton, while disabling the others.
    If USER-COMMAND isn't given, then ENTER key serves the purpose.
    DATA:
    w_carrid LIKE sflight-carrid,
    w_connid LIKE sflight-connid.
    PARAMETERS:
    p_carrid RADIOBUTTON GROUP airl USER-COMMAND airline,
    p_connid RADIOBUTTON GROUP airl.
    SELECT-OPTIONS:
    s_carrid FOR w_carrid,
    s_connid FOR w_connid.
    INITIALIZATION.
    p_carrid = 'X'.
    Now enabling desired fields and disabling the others, can be done by the following snippet.
    AT SELECTION-SCREEN OUTPUT.
    LOOP AT SCREEN.
    IF p_carrid EQ 'X'.
    IF screen-name CS 'S_CONNID'.
    screen-active = 0. " Disable the field S_CONNID
    MODIFY SCREEN.
    ELSEIF screen-name CS 'S_CARRID'.
    screen-active = 1. " Enable the field S_CARRID
    MODIFY SCREEN.
    ENDIF.
    ELSEIF p_connid EQ 'X'.
    IF screen-name CS 'S_CARRID'.
    screen-active = 0.
    MODIFY SCREEN.
    ELSEIF screen-name CS 'S_CONNID'.
    screen-active = 1.
    MODIFY SCREEN.
    ENDIF.
    ENDIF.
    ENDLOOP.
    Hope, this would help you solve your problem.
    Thankyou,
    Zahack.

  • PhotoShop Automation PlugIn: How do I get the coordinates of a polygonal selection?

    Hi.
    I try to get the coordinates out of a selection, but I can't find out how to do that.
    I tried to convert the selection into a path and get the coordinates from the path. That doesn't work either.
    Can somebody give me a list of parameters inside the action descriptor of keyPathContent in classPath? I assume that the point infos are located there...
    Thanx in advance,
    Christian

    found the answer myself. It might be helpfull to others.
    btn.addMouseListener(new MouseAdapter(){
    public void mouseClicked(MouseEvent e) {
    Rectangle ret = btn.getBounds();
    double y = ret.y + ret.getHeight();
    pop.show((Component) e.getSource(), ret.x, (int)y);
    }

  • How do i change the default hand tool to select tool when a document opens?  also how do i get it to open in a single page view instead of 2 pages side by side

         how do i change the default hand tool to the select tool when i open a document.
    how do i change the view from 2 pages to a single page?

    Try setting the check boxes in Edit>Preferences>General for the following:
    - Make Hand tool select text & images
    - Make Hand tool read articles
    - Make Hand tool use mouse-wheel zooming
    Adjust these as needed but does it make any difference?

  • How can I delete the area which I have selected with Pen Tool?

    Hi,
    I have selected the particular area of my background image, which is just complicated. Now, I would like to delete the selection so that I will copy something else in that blank area. How can I delete the selected area?
    Thanks.

    Hobotor wrote:
      Uhm you mean "rightclick---> make selection---> delete "?
    Hi,
    But I can't see such option. Please look below the snapshot:
    I want to remove the existing image (Girl's Image) and insert some other image. Please help.
    Thanks.

  • How can I locate the drop down menu to select thumbnails for viewing my photos?

    I am using Microsoft Windows Vista. I select Files> Get photos and Videos> From Files and Folders.  I select my photos and In my views I have a choice of different size icons, list, details and tiles.  The icons are a flower image. When I select an image to view it only appears as an extra large icon on the middle right side of the moniter.  I would like to view the thumbnail of the photo bfore I bring to my organizer.  The drop down menu doesn't have a choice for thumbnail.  

    Perhaps I need to supply more details.  I am using PSE9.  I haven't any problem importing the images into the Organizer as I just select the Icons and select "Get Media" or "Open" and they transfer over to the Organizer.  I would like to see the image as a thumbnail not an icon when when making the selection.  If I right click them, the Icon, and select open they will open in "Windows Live Photo Gallery".
    The icons are now listed on the left  side of the monitor about the right middle it states "Select A File To Preview".  When I select a file (icon) a large file (icon) appears in that area and it should be a thumbnail of the image. Somehow I can't locate the drop down menu taht permits me to make that selection.  I think it has something to do with my files being able to open in Windows Live Photo Gallery when right clicking and select Open.  Is the drop down menu only available in Windows 7?

  • What is the basis for Employee Group & Employee Sub Group?

    Dear Consultants,
    1) How to finalize the Employee Group and Employee Sub Group?
    2) What points should be taken into consideration before finalizing Employee Group and Employee Sub Group?
    3) In which places we can use Employee Group?
    4) In which place we can use Employee Sub Group?
    5) What items/sub-modules in SAP-HR largely depends on Employee Group and Employee Sub Group?
    6) What kind of problem could arise with wrong Employee Group and Employee Sub Group?
    Let's have the answer for this question, which could help all the members.

    An organizational unit for which personnel provisions can be specified.
    Example
    Employee groups:
    Active employees
    Employees who have left the company
    Company pensioners
    Employee subgroups within the "active employee" group:
    Industrial workers
    Commercial employees
    Technical employees
    Employee subgroup
    An organizational unit within an employee group for which personnel provisions have been defined.
    ESG groupings
    Grouping of employee subroups in Payroll for the following purposes:
    Work schedule
    Personnel calculation rules
    Primary wage types
    Collective agreement rules
    Time quota types
    Account determination

  • How to lock down the ipad for employee use

    I would like to know if they is any app or something that I can use to lock the ipad down for small business use.
    The last thing I want is my employees checking their facebook on my ipads.

    What's the need for a business plan thousands of people buyt touch pads and computers every day and don't know how to use them. More or less they end up being paper weights. Beside the restrictions are instented to stop misuse. And who said he didn't have a business plan. the ipads replace pen and paper and so employee enter information directly into the server. This lets the employee be mobile and still do their work. It's being done in places all around the world.  Ipad is an computer for the most part.
    U going to tell me he should not use computers next?  Maybe he should enter track important information at all?
    it's funny how one question of how do I restrict access on an ipad turns into an inquisition.
    Name any major corporation that let's their employee do whatever they want on their computers?  Name a College?
    That's why these companies build in this security stuff any way. You are protecting your investment by taking the proper steps to make sure that the equiptment is not misused. Where do you work where your Boss let's you do whatever you want on his or her computer. Play games? Get viruses?
    You seem to making some kind of special assumptions because it's a ipad.
    Same this goes for printers, copying machines, and coffee machines. You never give people unlimited access to any thing unless you wan to call the service man 20 times a week.

Maybe you are looking for

  • Quark 6.5 Freezes after Security Update 2009-003

    Hi There, New to the forum. This has happened me before - couple of years back, something to do with Stuffit Preference Pane, doesn't seem to be the same solution. any help would be greatly appreciated. G

  • Maintaining internal links on Word files placed into Indesign

    I want to bring a word file into Indesign, which has a very large number of internal links. When I place the file in Indesign, the external  hyperlinks transfer as well as bookmarks, but the internal links do not., The blue colour and the underlining

  • Call Dialog from another dialog

    hi everyone can anybody tell me how can we call one dialog from another dialog.. Is it possible...??? if it is, how we can we do ...please tell me with example thanks in advance

  • Camera raw 7 slow zoom in/out ,but fast process 2003 or 2010

    Hi i did notice that zoom in or out in camera raw is slow , even in middle pc , i'm not talking about hi end pc but i did find it's amazing fast if use process 2003 or 2010 may i use like default the 2003 or 2010 ? how can i do it? thanks cheers

  • OTL timecard deposit returns error

    Hi, I am using the HXC_TIMESTORE_DEPOSIT.EXECUTE_DEPOSIT_PROCESS api to deposit the Timecards, But it is returning errors like Error Message : HXT_39294_ERN_RUL_NF Upto Attribute creation it is working fine, but the Deposit was erroring out and whole