Af:inputDate not refreshing Calendar popup

HI,
I am facing one strange problem with af:inputDate component. When you click on calendar icon of this field it opens the Calendar popup to choose the date. Now it is allowing changing the date only one time. It allows me only to change year/month once. Now suppose it is displaying "January" month at the start, if i change the month to "May", it refreshes the calendar. But after that if i change year/month, it doesnt refresh the calendar.
I think there is some problem with some scripts.
Did any one come across such problem?
- Sujay.

Do you have your inputDate in a toolbar? I have almost the same problem when I try to use inputDate in a toolbar (in a dvt:schedulingGantt component if that matters), but not if I place it elsewhere on the page. The difference is that for me the calendar is never updated when I change anything. It seems to me that there is something wrong with the javascript part of it. I can pick any month from the drop-down, but only one month right/left with the arrows. In either case nothing happens in the calendar.
This seems like a bug to me.
Anyway, if you haven't solved this yet, try putting the inputDate somewhere else and see if that helps.

Similar Messages

  • Calendar popup is not working properly in af:inputDate

    HI,
    I am using af:inputDate component as,
    <af:inputDate label="Input Date :"/>
    The popup calendar is not working properly in my case. When I click on calendar buttong of the component, it is opening the calendar popup properly with showing proper date.
    Now in this popup I am able to change month or year only once. Means if I am watching January month initialy and now I changed it to May, it reflect the month properly. But before closing the dialog, if I again change the month to some another month, it is not changing the calendar at all. The same case is with year also.
    One more thing i want you to notice is, this component is working properly on a sample page where there is nothing in that page. But when I am adding it in my application with the same tag, it is not working.
    Can any one tell me where I should look for the fix?
    Sujay

    Sujay,
    It's always frustrating when someone says "it is giving me exception" without providing the details. It's akin to going to your automobile mechanic and saying, "a warning light comes on." Wouldn't you think it pertinent to tell the mechanic which warning light came on? If yes, then why wouldn't you provide the exception (and perhaps the pertinent part of the stack trace) here?
    Furthermore, since it works in a "very simple page," the component does at least work part of the time. If your car started at least part of the time, you'd tell your mechanic what you did that causes it not to start (for example, when I leave the headlamps on all night, it doesn't start the following morning). So... what is special about your page that it doesn't work?
    Best,
    John

  • SSRS 2008 R2 Calendar Control not working and report not refreshing on pressing enter in Chrome.

    SSRS 2008 R2 Calendar Control not working and report not refreshing on pressing enter in Chrome.

    SSRS reports are always best viewed in IE and the report result what you see in IE always will not be same and consistent in thirdy party browswers.
    So consider using IE as workaround.
    Also please refer:
    https://social.msdn.microsoft.com/Forums/vstudio/en-US/2188de10-cff9-4e24-b14f-da5121f1c4a4/ssrs-calender-control-not-visible-in-chorme-on-server?forum=sqlreportingservices
    Workaround here:
    http://www.rajbandi.net/Fixing-SSRS-Report-Viewer-control-date-picker-in-Google-chrome/
    -Vaibhav Chaudhari

  • Tables in popups not refreshing

    I'm having difficulty with some table refreshes within a popup. Here's my scenario. I have a window that displays a table. The user clicks edit, and the table is shown in an “edit” popup. At this point, if the user makes changes, clicks ok, then the table on the beginning page is refreshed correctly. To do this, I am using the following method to refresh the page fragement, AdfFacesContext.getCurrentInstance().addPartialTarget(this.getViewTablex());
    Here is the issue,
    The user chooses to edit the main table, and the edit popup appears. So far so good. The user then wants to add a new record, they click “Add” within the edit popup so I then show a new popup form where the user enters the fields for the new row. When they click ok on the "add" popup form, then the edit popup (from which they called the add popup) does not refresh the table with the newly added row. The row they added then appears as the first row in the edit popup.
    What further complicates this is that I have to validate the "edit" popup rows when they click ok, to make sure all the data is valid, so I can not do a commit on the underlying table until after the validation. But, I need the newly added row in the table (or view) in the edit popup as part of my validation.
    So, I have a table that makes use of an edit table popup that in turn makes use of an add form popup. But I cannot commit until I validate the edit popup. The problem is I’m not getting the newly added row that was created in the “add” popup to show up in my edit popup.
    Here is the add popup handler I’m using
    public void onAddxxxPopupFetchAction(PopupFetchEvent pPopupFetchEvent) {
    try {
    OperationBinding lOperationBinding =
    lBindings.getOperationBinding("CreateInsert");
    //If the Insert failed, return a "Severe" message.
    Object result = lOperationBinding.execute();
    if (!lOperationBinding.getErrors().isEmpty()) {
    return;
    } catch (Exception e) {
    public void addxxxDialogOKAction(DialogEvent pDialogEvent) {
    try {
    //refresh the page fragment.
    AdfFacesContext.getCurrentInstance().addPartialTarget(this.getEditPopupTable());
    } catch (Exception e) {
    And here is the popup portions of the page fragment
    <af:popup id="addPopup" contentDelivery="lazyUncached"
    popupFetchListener="#{backingBeanScope.backing_ui_pages_Maintenance. onAddxxxPopupFetchAction }"
    popupCanceledListener="#{backingBeanScope.backing_ui_pages_Maintenance.onAddxxxPopupCancelAction}">
    <af:dialog id="addDialog"
    dialogListener="#{backingBeanScope.backing_ui_pages_Maintenance. addxxxDialogOKAction }"
    closeIconVisible="false">
    and for the edit popup;
    <af:popup binding="#{backingBeanScope.backing_ui_pages_Maintenance.editPopup}"
    id="editPopup">
    <af:dialog binding="#{backingBeanScope.backing_ui_pages_Maintenance.editDialog}"
    id="editDialog" closeIconVisible="false"
    dialogListener="#{backingBeanScope.backing_ui_pages_Maintenance.editxxxDialogOKAction}">
    I am using JDeveloper 11.1.1.6.0.
    Any help would be appreciated.
    thanks!
    Doug

    Seems like a PPR issue. Try have a partialTrigger corresponding to the OK button of add popup on the table in the edit popup.
    Thanks,
    TK

  • Refresh of report hides jQuery calendar popup anchors

    In an attempt to build an interactive tabular form in Oracle Apex 4.0.2.00.07, we have based an interactive report on a query containing:
    SELECT ...
         , apex_item.date_popup2( p_idx              => 11
                                , p_value            => to_char(..., 'DD.MM.YYYY')
                                , p_date_format      => 'DD.MM.YYYY'
                                , p_size             => 12
                                , p_maxlength        => 10
                                , p_attributes       => 'onchange="..."'
                                , p_item_id          => 'f11_' || to_char(deincno)      -- deincno = primary key column
                                , p_show_on          => 'both'
    FROM   ...This renders perfectly. However, any interactive change in the report (filtering, sorting, hiding/showing columns, ...) will hide the calendar popup anchors, reducing the field to a normal text box. Only when the page is reloaded do the calendar popup anchors reappear.
    Any help or advice on how to prevent these anchors from dissapearing would be greatly appreciated.

    You need to rebuild the date pickers after the apexafterrefresh jquery event
    If you look at your page source > scroll to the bottom and you will see some jquery code that builds date-pickers initially on the page load
    (function(){apex.widget.datepicker("#f11_7369", { buttonImage: "/i/asfdcldr.gif", buttonImageOnly: true,"buttonText":"Calendar","showTime":false,"defaultDate":new Date(1980,11,17),"showOn":"button","showOtherMonths":false,"changeMonth":false,"changeYear":false}, "dd.mm.yy", "en-gb");})();You can look into your above code and find some of the contextual/dynamic parameters into the date-picker widget such as date format,image path etc...
    You can use those values to add this code accordingly
    Add this to your page header javascript
    apex.jQuery('#apexir_WORKSHEET_REGION').bind("apexafterrefresh", function () {
         // loop through the actual f11 column
         jQuery.each($('input[name="f11"]'), function () {
              //rebuild the datepickers
              var vid = "#" + $(this).attr('id');
              (function () {
                   apex.widget.datepicker(vid, {
                        buttonImage : "/i/asfdcldr.gif",
                        buttonImageOnly : true,
                        "buttonText" : "Calendar",
                        "showTime" : false,
                        "showOn" : "button",
                        "showOtherMonths" : false,
                        "changeMonth" : false,
                        "changeYear" : false
                   }, "dd.mm.yy", "en-gb");
    OR create a dynamic action with event after refresh and with action execute javascript
    // loop through the actual f11 column
    jQuery.each($('input[name="f11"]'), function () {
              //rebuild the datepickers
              var vid = "#" + $(this).attr('id');
              (function () {
                   apex.widget.datepicker(vid, {
                        buttonImage : "/i/asfdcldr.gif",
                        buttonImageOnly : true,
                        "buttonText" : "Calendar",
                        "showTime" : false,
                        "showOn" : "button",
                        "showOtherMonths" : false,
                        "changeMonth" : false,
                        "changeYear" : false
                   }, "dd.mm.yy", "en-gb");
    });Edited by: VC on Jun 19, 2012 11:01 AM

  • My desktop calendar does not refresh

    My iMac desktop calendar does not refresh - this is since I upgraded to Yosemite.  I get a notice "can't connect to cal.me.com - make sure you are connected to the internet and try later!!!"   It pushes out to my iPad and a shared iMac computer of my husbands  but not my desktop calendar.   Any ideas?

    Please sign out of iCloud in its preference pane, then sign back in.

  • ValueChangeListener not refreshing Popup correctly

    I am using JDeveloper 11.1.1.6
    My use case has a screen with an ADF table. From this table the user clicks a button to add a row to the table. A popup form is presented. The primary key for the new row is a field that is formatted based on certain attributes selected by the user. The user will select a value from a selectOneChoice menu. The intention is for the application to then generate and display the primary key value in the popup. The user will then continue to enter the rest of their entries in the popup and then submit the popup to add the row to the DB. The selectOneChoice field in the form is as follows. Note it does include a value change listener and autosubmit:
    <af:selectOneChoice value="#{bindings.Field1.inputValue}"
    label="#{bindings.Field1.label}"
    required="#{bindings.Field1.hints.mandatory}"
    shortDesc="#{bindings.Field1.hints.tooltip}"
    binding="#{backingBeanScope.backing_ui_pages_MyPage_updateDatabase.soc9}"
    id="soc9" autoSubmit="true"
    valueChangeListener="#{backingBeanScope.backing_ui_pages_MyPage_updateDatabase.onField1Change}"
    valuePassThru="true">
    <f:selectItems value="#{bindings.Field1.items}"
    binding="#{backingBeanScope.backing_ui_pages_MyPage_updateDatabase.si9}"
    id="si9"/>
    </af:selectOneChoice>
    The primary key field is updated via a partial trigger. It is defined in the form as follows:
    <af:inputText value="#{bindings.PrimaryKeyField.inputValue}"
    label="#{bindings.PrimaryKeyField.hints.label}"
    required="#{bindings.PrimaryKeyField.hints.mandatory}"
    columns="#{bindings.PrimaryKeyField.hints.displayWidth}"
    maximumLength="#{bindings.PrimaryKeyField.hints.precision}"
    shortDesc="#{bindings.PrimaryKeyField.hints.tooltip}"
    binding="#{backingBeanScope.backing_ui_pages_MyPage_updateDatabase.it4}"
    id="it4" partialTriggers="soc9" readOnly="true">
    <f:validator binding="#{bindings.PrimaryKeyField.validator}"/>
    </af:inputText>
    The code in my backing bean for the value change listener is as follows:
    public void onField1Change(ValueChangeEvent valueChangeEvent) {
    BindingContainer bindings = getBindings();
    DCIteratorBinding dciter =
    (DCIteratorBinding)bindings.get("Container1Iterator");
    ContainerVORowImpl containerDispatchRow =
    (ContainerVORowImpl)dciter.getCurrentRow();
    Integer number =
    (Integer) valueChangeEvent.getNewValue();
    Number field1Number =
    new Number(number.intValue());*/
    String primaryKey1Number = computed value from another method
    containerDispatchRow.setPrimaryKeyField(primaryKey1Number);
    System.out.println("onField1Change() -- Reservation number: " +
    containerDispatchRow.getPrimaryKeyField());
    I am having 2 problems with the above mentioned components.
    First of all the "valueChangeEvent.getNewValue()" is returning the index number of the record selected in the selectOneChoice as opposed to the actual Number value of the row. The selectOneChoice contains a drop down of numbers (which may or may not start at 1).
    The second issue I am having is the primaryKeyField is not correctly displaying when refreshing the popup . My method computes the correct value and the System.out.println correctly displays my value. For some reason when the popup is refreshed instead of displaying my newly computed primaryKeyField, it is displaying the primaryKeyField associated with the first record in the Interator Binding (dciter)

    I use this code to get hte real data in a valueChangeListener
        public void StatusChangedListener(ValueChangeEvent valueChangeEvent)
            BindingContext lBindingContext = BindingContext.getCurrent();
            BindingContainer lBindingContainer = lBindingContext.getCurrentBindingsEntry();
            JUCtrlListBinding list = (JUCtrlListBinding) lBindingContainer.get("Status");
            int newindex = (Integer) valueChangeEvent.getNewValue();
            Object row = list.getDisplayData();  // load the data
            Row lFromList = (Row)list.getValueFromList(newindex);
            Object lAttribute = lFromList.getAttribute("Value");
            String newVal = (String) lAttribute;
            // Work with the value here
        }Next you should add a ppr from inside your valueChangeListener to the PK field as the one from the UI might already be worked on.
    // PPR refresh a jsf component
    AdfFacesContext.getCurrentInstance().addPartialTarget(UIComponent);Timo

  • Could not Refresh  Popup  Iterators located in region by using TP3

    Hi i have the following problem which appears when i switched to TP3:
    I have a create form, which i included as a region in a page.
    I create a new row in a caller page by using createInsert operation.
    The problem is that when i open the popup, create form is not refreshed with a newly created row as it expected. The form is positioned on the last selected row (before execute create) in a caller page
    As it seems region iterator is not refreshed and the newly created row is not inserted inside the iterator.
    Is it necessary programmatically to do region iterators refresh and how ?
    If not programmatic iterators refresh is needed as i mean it should be , where is the problem?
    In TP2 that was working.
    Regards,
    Krasimir
    Message was edited by:
    K.Penev

    HI Frank , actually the problem is more general:
    It consists of inability of synchronizing different regions iterators.
    For example , if i have a search form placed in a region, and an edit or summary form for example, placed in another region (which points to the same view object),
    <f:view>
    <af:document>
    <af:form>
    <af:region value="#{bindings.staffSearchDR.regionModel}"
    id="staffSearchDR"/>
    <af:region value="#{bindings.staffSummaryDR.regionModel}"
    id="staffSummaryDR" partialTriggers="staffSearchDR"/>
    </af:form>
    </af:document>
    </f:view>
    the iterators in different regions are not getting synchronized (That was working in TP2). I tried to synchronize the iterators on the following way:
    BindingContainer bc = ADFFacesUtils.findBindingContainer(pageDefName);
    DCIteratorBinding iter = (DCIteratorBinding)bc.get(iteratorName);
    iter.setCurrentRowWithKey(rowKey);
    And that is working , but i cannot refresh JSF Components, even by using partialTriggers or AdfFacesContext.addPartialTarget() method
    Can you help me with this?
    Krasimir

  • Calendar popup for a date field in ITS service

    Hi
    I am working with SRM EBP module we want to add date help(with calendar function) to existing date fields in Shopping cart and PO screens . I found some HTML and scripts in SYSTEM and BBPGLOBAL(assuming in regular ITS this service might be GLOBAL) services but not sure which ones to use if anyone used date functionality or even have access to Standard SAP ITS screens that already have date field with calendar functionality can you help???????????????
    Scenario what we are trying to do
    1) On the shopping cart details there is a require on field
    2) we are trying to add a f4 icon(which we did successfully)
    3) when a click happens on the icon a calendar popup should appear(for this we are trying to identify what standard SAP function we can use if not i got a JavaScript on the web trying to see how to integrate that script)
    Thanks in Advance

    Hi
    I browsed thru other services i found PZLE_06 and there is a date field with popup but difference between ESS and SRM is ESS i saw uses webgui concept and SRM has different approach if you can point me to the html template in one of the service where the calendar function is called that will be helpful i tried no luck i got the funciton issue is integrating it with existing code in HTML i mean calling the javascript from HTML i am not able to .
    Thank You
    Vineela

  • "iTunes could not sync calendars to the iPhone "name" because the sync server failed to sync the iPhone".

    I get the message "iTunes could not sync calendars to the iPhone "name" because the sync server failed to sync the iPhone" every time I sync the iPhone 3GS with iTunes by USB.  Can anyone help? Please !!!!

    I posted the following to "iTunes could not sync calendars to the iPhone "xx" because the sync server failed to sync the iPhone. What does this mean??" at https://discussions.apple.com/message/15820680#15820680
    I haven't seen it mentioned but the secret is to
    Sync only selected calendars
    Select "Remove Calendars" from the popup window
    (This is ambigous: from where are the calendars removed?  From the device being synced to)
    Click apply.
    Oops!  My memory is already gone stale.  I think I left no calendars selected, then clicked apply.  Then I selected the calendars that I wanted, then clicked apply.
    In any case, I had a blank calendar on my iPad and then I had all the updated events that I wanted on my iPad.
    Thanks to all who provided some of the essential clues to resolving this problem.

  • Help in Calendar popup please

    Hi
    i have a problem in calendar popup that is iam putting the calendar inside a Group Panel at the bottom of page and when i click on popup the page will be taller so please do any one know how to make popup visible above calendar component i tried to modify the theme by editing Calendar.js file but iam having an error in sun i can't run any page any more i need to reinstall IDE may be iam not putting the defaulteheme.jar in correct folder
    any one help please
    HEN

    Hi
    i have a problem in calendar popup that is iam
    putting the calendar inside a Group Panel at the
    bottom of page and when i click on popup the page
    will be taller so please do any one know how to make
    popup visible above calendar component i tried to
    modify the theme by editing Calendar.js file but iam
    having an error in sun i can't run any page any more
    i need to reinstall IDE may be iam not putting the
    defaulteheme.jar in correct folder
    any one help please I'm not quite sure what you're asking for but I have a prototype sample calendar that might work better. See http://blogs.sun.com/roller/page/edwingo?entry=component_authoring_for_creator.
    -Edwin
    Creator team
    http://blogs.sun.com/edwingo/

  • Attribute binding value not refreshed after transaction rollback

    Hi,
    Using ADF Faces/Trinidad + ADF Data Bindings + ADF Business Components.
    I was experimenting with task flows vs transaction control vs form validation and met the following problem.
    First, here's a little intro to my application design. A page template defines the layout. There's only one page in the application using a dynamic region to show a dynamic task flow. The template defines a menu containing navigation items; each item action changes the current dynamic task flow id.
    One of the flow starts with a data bound table listing users. Each row has an edit button to navigate to an edit form. The edit form is in a separate task flow as I want the automatic rollback triggered when a flow is abandoned.
    The problem occurs when I quit the form clicking a menu item AFTER a validation error occurred. Transaction is rollbacked as expected, however when I go back to the form (whatever row I choose), the invalid value that failed the previous validation is shown.
    It seems the attribute binding is not refreshed. To validate this hypothesis, I added a button that explicitly calls refreshControl on the attribute binding as shown below. When the button is clicked, the form shows the correct value.
        // In a managed bean
        public void refreshFirstName(ActionEvent evt)
            getBindingContainer().findCtrlBinding("FirstName").refreshControl();
        }I working on a possible workaround, but I've not succeeded yet. I'm looking into using the finalizer of the task flow (or possibly the initializer) to force a refresh of the control bindings.
    Any ideas?
    Thanx!
    Olivier

    Hi,
    I am experiencing similar strange behaviour, it sounds like it could be related, i am not using task flows though.
    I have a read only table, and when a user double-clicks on a row an af:popup is displayed which displays an edit form (contentDelivery is set to "lazyUncached" in the popup). Pressing the cancel button on the edit form executes a rollback and hides the popup. However, after this has occurred, whenever another row (or the same row) is selected in the read only table, the edit form will display data from the old record that was rolled back. I've noticed that the old data is only displayed in editable fields, while the correct data is displayed in read-only fields. I'm pretty sure the rollback works properly, and the iterator is on the correct row, just it is displaying incorrect data in the editable text fields. I've tried implementing cancel functionality with both a rollback action and refreshing the row using REFRESH_WITH_DB_FORGET_CHANGES, but the same issue exists regardless of which method is used. I've also noticed that the application starts behaving correctly again if the commit button is pressed.
    Has anyone come up with a workaround for this issue?
    By the way, is there any way we can keep track of the bug numbers that are mentioned in this forum?
    Thanks,
    Michael.

  • Master page is not refreshing

    Hi,
    We are using JDeveloper/JHeadStart - 10.1.3.5.0/10.1.3.3.88
    On master page, we have the following - Text input fields and one drop-down list.
    On LOV page, we have the following Search values - Two text input fields and one drop-down list.
    We have used ADF LOV in our project. We have used the Advance Search method to find.
    As per the requirement, we have to disable the master page till user didn't find the value on LOV page.
    To achieve above, we have set the value in SessionScope on Find Button of LOV page and checking the value on master page.
    When we are opening the LOV from master page and after Find if we are clicking the Add New button(custom button) on LOV, it is not refreshing the master page and master page remains in the read-only mode due to this we are not able to update the value. After refreshing the master page it is coming in editable-mode.
    Expected result - The master page should come in editable-mode after clicking the Add New button(custom button) on LOV page.
    Actual result - The master page is coming in read-only mode after clicking the Add New button(custom button) on LOV page.
    Thanks for your support.

    Hi,
    Thanks for your reply.
    Master page means the page from which the LOV page is opening. Master page means the parent page from which we are opening the LOV(popup) page.
    On LOV(popup) page, we have a command button(FIND), on which we have set the setActionListener tag.
    Eg. <af:setActionListener from="#{'Y'}" to="#{sessionScope.find}"/>
    Depending on this value, on parent page we are enabling/disabling the fields.
    On LOV page, when we are pressing the "Add New" button(custom button), it is closing the LOV page but on parent page it is not updating the fields(i.e. editable mode). If we refresh the page, then the parent page appears in editale mode.

  • Calendar popup in WAD - Urgent

    In web application designer - I need to incorporte date function which should have a calendar popup.  I need to select date from the calendar.
    This is happening in bex - query level, but when use the same query in WAD , it is not showing the popup.
    Give me your valuble suggestion to incorporate in our real time scenario.
    regards,
    Giri

    hi kiran,
    thx for your spontaneous reply,
    reg. my scenario i already enabled the force variable option, but still i am not getting a calenar like popup.
    for example, the user wants to enter your date of birth, u will be displayed with the calendar month popup, u can select the date from the popup.
    kindly forward your suggestion, i will asssign points if its useful
    regards
    giri

  • Display Hijri Calendar in Calendar Popup

    Hi All,
    We have a requirement of showing Hijri Calendar instead of Gregorian Calendar in the Calendar popup. we have a custom calendar.
    We would like to know the javascript function fired on click of calendar icon.
    For example in OA Framework the function
    "function _ldp{}" in Common2_2_24_1.js is fired. Similary is there any method in ADF.
    So that i can display the hijri date to the user.
    I am using JDeveloper 10.1.3.3, ADF, EJB3.0 and Toplink.
    Thanks & Regards
    Vimalan Balan

    Hi Frank,
    The below is the generated code from the html. There i found out the method which we click on the image icon of select input date.
    onclick="_ldp('eGovPO','eGovPO:poRequestedDateH');
    The javascript file in the generated html is /EGovPortal/adf/jsLibs/Common10_1_3_3_0.js but i am not able to locate this file in the JDeveloper.
    Since, i want to call my custom application from the standard function _ldp(). Otherwise i have to create calendar icon for each textfield to invoke my hijiri calendar.
    But i don't want to do this.
    <table id="eGovPO:poRequestedDateH__xc_" cellpadding="0" cellspacing="0" border="0" summary=""><tr><td class="xx" nowrap width="37%"><span class="xc"><span title="&#1605;&#1591;&#1604;&#1608;&#1576;" class="xi">*</span> <label for="eGovPO:poRequestedDateH">PO Date</label></span></td><td width="12"><script>t(12)</script></td><td valign="top" nowrap width="63%"><script>var _locale='ar';var _tLocale='ar';</script><script src="/EGovPortal/adf/jsLibs/resources/LocaleElements_ar10_1_3_3_0.js;jsessionid=c0a801d423218ce20d54d4c144c38f2e9e0117db66d5"></script><script>var _df2DYS=1950;</script><input id="eGovPO:poRequestedDateH" name="eGovPO:poRequestedDateH" onblur="_dfb(this)" class="x8" size="10" type="text"><script>t(8,1)</script><script>var _jspDir='/EGovPortal/faces/__ADFv__?_afPfm=1';</script><script>var _uixLocaleTZ=180;</script><a href="#" onclick="_ldp('eGovPO','eGovPO:poRequestedDateH'); return false"><img src="/EGovPortal/adf/images/oracle/dprtl.gif;jsessionid=c0a801d423218ce20d54d4c144c38f2e9e0117db66d5" width="19" height="24" border="0" alt="&#1581;&#1583;&#1583; &#1607;&#1584;&#1575; &#1575;&#1604;&#1582;&#1610;&#1575;&#1585; &#1604;&#1604;&#1608;&#1589;&#1608;&#1604; &#1573;&#1604;&#1609; &#1605;&#1606;&#1578;&#1602;&#1610; &#1575;&#1604;&#1578;&#1575;&#1585;&#1610;&#1582;" align="middle"></a></td></tr></table>
    Thanks & Regards
    Vimalan Balan

Maybe you are looking for