NetUI tags and calendar popups

Does anybody have an example of a simple calendar popup that can work with NetUI
tags. I downloaded a couple different solutions from the net and they work fine
when I use simple html form tags, however don't seem to work if I use the netui
tags.
Thanks!
Kunal

use the netui tagID
<netui:form tagId="aForm" >
<netui:textbox datasource="{actionForm.firstname}" tagId="firstName">
then
alert(document.forms[getNetuiTagName("aForm",this)][getNetuiTagName("firstName",this)].value)

Similar Messages

  • Beehive NetUi Tags and Controls in Workshop 10.1!

    Hi,
    I have a question, whenever I tried to create a Beehive netui and controls project on workshop studio, it asks me for the WSL 10.1 runtime, it means Beehive netui tags and controls are dependent on WLS runtime, if I do not have WLS runtime installed in workshop runtimes, I can not use beehive netui and controls in my project. So, it means, it is only weblogic specific implementation in Workshop, I tried with other containers runtime like JBoss and it did not work. Is there any way I can implement beehive netui tags and controls that is an open source using Workshop on other application containers without WLS run time? If someone tested this kind of scenario and developed some applications and had some hands-on experience, please respond to my question. I will greatly appreciate any comment and/or help.
    Thanks,
    -Gary Hassan

    Hi Gary,
    The Beehive tooling features available in Workshop are currently only supported with a WebLogic 9.2 or 10.x Runtime.
    However, regarding your question on using Beehive runtime classes with a non WLS runtime, there is documentation available on the Apache site on building and running against a Tomcat server. In this case, you will need to add the beehive library jar as any other party jar instead of using the beehive facets and library modules.
    http://beehive.apache.org/docs/1.0.2/samples/petstore.html
    cheers
    Raj

  • Netui tags and illegal Javascript names - workaround?

    I'm trying to use the netui tags and tie reference the netui generated names. For example, these look like:
    portlet_2_3{actionForm.customerGroup}
    but this is not a legal Javascript name because of the curly braces. Is there a way around this?

    Hi
    havent tried it, but you wouldnt be adding a netui tag, you would be adding a textbox whose name would be exactly like the generated name if you had the netui tag in the jsp
    i.e. add the textbox with name <portletInstance>{actionForm.fieldName[1]}
    where portletInstance is obtained dynamically. i guess the property would have to be mapped as an array type on the form bean
    regars
    deepak

  • Netui tags and javascript

              Hello Gang, not sure if anyone has run into this issue, but here it goes.
              I got a netui:form with netui:checkboxes that I need to have a specific type of
              functionality.
              The first netui:checkbox when checked calls a javascript function that enables
              the remaining netui:checkboxes so that the user can check them.
              Except the first netui:checkbox, all other netui:checkboxes need to be disabled
              at run time and then enabled once the first check box is checked, below is the
              code I got thus far, can't get the diable/enable part to work for the netui tags.
              (Keep in mind that this works well with regular html checkbox tag and javascript)
              The following code wont generate javascript errors.
              It's not doing anything in terms of enabling/disabling the netui:checkboxes.
              <script language="javascript">
              function checkBoxDisable()
              document[getNetuiTagName("updateForm")][getNetuiTagName("tue")].disabled=true;
              document[getNetuiTagName("updateForm")][getNetuiTagName("wed")].disabled=true;
              document[getNetuiTagName("updateForm")][getNetuiTagName("thu")].disabled=true;
              document[getNetuiTagName("updateForm")][getNetuiTagName("fri")].disabled=true;
              function checkboxEnable()
              if (document[getNetuiTagName("updateForm")][getNetuiTagName("mon")].checked)
              document[getNetuiTagName("updateForm")][getNetuiTagName("tue")].disabled=false;
              document[getNetuiTagName("updateForm")][getNetuiTagName("wed")].disabled=false;
              document[getNetuiTagName("updateForm")][getNetuiTagName("thu")].disabled=false;
              document[getNetuiTagName("updateForm")][getNetuiTagName("fri")].disabled=false;
              else
              document[getNetuiTagName("updateForm")][getNetuiTagName("tue")].disabled="true";
              document[getNetuiTagName("updateForm")][getNetuiTagName("wed")].disabled="true";
              document[getNetuiTagName("updateForm")][getNetuiTagName("thu")].disabled="true";
              document[getNetuiTagName("updateForm")][getNetuiTagName("fri")].disabled="true";
              </script>
              <netui:form action="updateContact" tagId="updateForm">
              <netui:checkBox dataSource="{actionForm.accessDays}" defaultValue="{pageFlow.days[0]}"
              tagId="mon" onClick="checkboxEnable()"/>Monday
              <netui:checkBox dataSource="{actionForm.accessDays}" defaultValue="{pageFlow.days[1]}"
              tagId="tue"/>Tuesday
              <netui:checkBox dataSource="{actionForm.accessDays}" defaultValue="{pageFlow.days[2]}"
              tagId="wed"/>Wednesday
              <netui:checkBox dataSource="{actionForm.accessDays}" defaultValue="{pageFlow.days[3]}"
              tagId="thu"/>Thursday
              <netui:checkBox dataSource="{actionForm.accessDays}" defaultValue="{pageFlow.days[4]}"
              tagId="fri"/>Friday
              </netui:form>
              Any help on this will be appreciated ..
              

              Hello Gang, not sure if anyone has run into this issue, but here it goes.
              I got a netui:form with netui:checkboxes that I need to have a specific type of
              functionality.
              The first netui:checkbox when checked calls a javascript function that enables
              the remaining netui:checkboxes so that the user can check them.
              Except the first netui:checkbox, all other netui:checkboxes need to be disabled
              at run time and then enabled once the first check box is checked, below is the
              code I got thus far, can't get the diable/enable part to work for the netui tags.
              (Keep in mind that this works well with regular html checkbox tag and javascript)
              The following code wont generate javascript errors.
              It's not doing anything in terms of enabling/disabling the netui:checkboxes.
              <script language="javascript">
              function checkBoxDisable()
              document[getNetuiTagName("updateForm")][getNetuiTagName("tue")].disabled=true;
              document[getNetuiTagName("updateForm")][getNetuiTagName("wed")].disabled=true;
              document[getNetuiTagName("updateForm")][getNetuiTagName("thu")].disabled=true;
              document[getNetuiTagName("updateForm")][getNetuiTagName("fri")].disabled=true;
              function checkboxEnable()
              if (document[getNetuiTagName("updateForm")][getNetuiTagName("mon")].checked)
              document[getNetuiTagName("updateForm")][getNetuiTagName("tue")].disabled=false;
              document[getNetuiTagName("updateForm")][getNetuiTagName("wed")].disabled=false;
              document[getNetuiTagName("updateForm")][getNetuiTagName("thu")].disabled=false;
              document[getNetuiTagName("updateForm")][getNetuiTagName("fri")].disabled=false;
              else
              document[getNetuiTagName("updateForm")][getNetuiTagName("tue")].disabled="true";
              document[getNetuiTagName("updateForm")][getNetuiTagName("wed")].disabled="true";
              document[getNetuiTagName("updateForm")][getNetuiTagName("thu")].disabled="true";
              document[getNetuiTagName("updateForm")][getNetuiTagName("fri")].disabled="true";
              </script>
              <netui:form action="updateContact" tagId="updateForm">
              <netui:checkBox dataSource="{actionForm.accessDays}" defaultValue="{pageFlow.days[0]}"
              tagId="mon" onClick="checkboxEnable()"/>Monday
              <netui:checkBox dataSource="{actionForm.accessDays}" defaultValue="{pageFlow.days[1]}"
              tagId="tue"/>Tuesday
              <netui:checkBox dataSource="{actionForm.accessDays}" defaultValue="{pageFlow.days[2]}"
              tagId="wed"/>Wednesday
              <netui:checkBox dataSource="{actionForm.accessDays}" defaultValue="{pageFlow.days[3]}"
              tagId="thu"/>Thursday
              <netui:checkBox dataSource="{actionForm.accessDays}" defaultValue="{pageFlow.days[4]}"
              tagId="fri"/>Friday
              </netui:form>
              Any help on this will be appreciated ..
              

  • Netui tags - ADA Compliance

    I've run into a situation with netui tags that I'm wondering if anyone can shed some light on. Before we release apps here, they're checked for compliance with the Americans with Disabilities Act. The folks that do this checking asked that my app have <label> tags for all my form fields with a "for=" attribute that matches an "id=" attribute in the input tag, like the following:
              <label for="xyz">Select location</label>
              <select name=setting_key id="xyz">
              </select>
              I think having these tags help screen readers to read the screens or something. My problem is that the netui tags don't offer the id attribute. I've ripped out most of my netui tags and replaced them with standard html tags, but for a radio button, I can't get it to work. My netui tags that work look like this:
              <netui-data:repeater dataSource="{pageFlow.addrArray}">
              <netui-data:repeaterItem>
              <netui:radioButtonGroup dataSource="{actionForm.addressid}">
              < netui:radioButtonOption value="{container.item.addressID}" />
              </netui:radioButtonGroup>
              </netui-data:repeaterItem>
              </netui-data:repeater>
              I've tried several varations on something like this:
              <input type="radio" name="{actionForm.addressid}" value="{container.item.addressID}" id="addrid">
              Anyone have any ideas?
              Thanks.

    Use tagId

  • Calendar popups with NetUI tags

    Does anybody have an example of a simple calendar popup that can work with NetUI
    tags. I downloaded a couple different solutions from the net and they work fine
    when I use simple html form tags, however don't seem to work if I use the netui
    tags.
    Thanks!
    Kunal

    Mike,
    Doc of choice tag says
    The <netui-data:choice> tag must be used together with the <netui-data:choiceMethod> tag in order to achieve conditional rendering of the body of a particular <netui-data:choice> tag. A single <netui-data:choiceMethod> and one or more <netui-data:choice> tags should be nested within a <b><netui-data:repeaterItem></b> tag.
    In my case, I don't have any repeaterItem...
    I have a value in pageContext; I want to compare the its value with any value in jsp. I can go for <logic:equal> as in struts. But I dont wnat to use struts. I wnat to use netui's tags. Moreover I dont want to use scriplets..
    Then How?
    Thanks.
    Prakash

  • In the Firefox browser, when i click button in ADF page, then popup  the OAF page in iframe tag,and then when i  click the PPR bean in  OAF page, then Firefox  browser reload to ADF page. This is not the right response,browser should not reload the ADF pa

    In the Firefox browser, when i click button in ADF page, then popup  the OAF page in iframe tag,and then when i  click the PPR bean in  OAF page, then Firefox  browser reload to ADF page. This is not the right response,browser should not reload the ADF page.It should stays in OAF page or goto another OAF page. and in other browser such ad IE,We get the right response.

    hello, normally such issues are caused by a firewall/security software which doesn't recognize & therefore blocks new firefox versions. please remove all program rules for firefox from your firewall and let it detect the new version of the browser again.
    [[Fix problems connecting to websites after updating Firefox]]

  • 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

  • A list of inputs using netui tags

    Hi all,
    we have a family of netui problems which occur quite frequently.
    The main problem is: what to do when we have a list of items (we don't
    now how many), and we want to display them, and get some input from the
    user.
    1. The simplest form, when the user only has to select one, is ok: we
    create a list of netui:anchor -s, with parameters, or we use a
    netui:select (but even in this case we don't know what to do if the name
    and the key of the items are different).
    2. The user should choose more then one item.
    a) We tried to use netui:select multiple=true. It renders fine, but we
    can't get the results properly. If the user selects only one item,
    it's ok, we can get it with a String field in the actionform. But if the
    user selects more items, then we can't catch them.
    We tried with String and List fields, but none of them worked (they
    contained null).
    b)It is more complicated, if we also want to display some attributes of
    the items, like:
    <checkBox> name1 description1 other attribute1
    <checkBox> name2 description2 other attribute1
    <checkBox> name3 description3 other attribute1
    3. The user should enter some text or number for each item
    e.g. (quite similar to 2.b)
    name1 description1 <input type='text'/>
    name2 description2 <input type='text'/>
    name3 description3 <input type='text'/>
    For 2.b) and 3) we have a workaround: we don't use netui:checbox or
    netui:textfield, but manually construct input boxes. The names of the
    boxes are the same that would be created by netui tags (e.g.
    {actionForm.input[1]}), so when the user submits the form the framework
    thinks that they were normal netui stuff and fills the actionForm with
    their data.
    4. The user can create a list on the fly, so he/she can even add more
    elements to the list. We can do it with a submit per new item method,
    but it would be better if could do it on the client side, and the user
    would click on submit only when he finished editing. e.g.:
    we want discounts in a tiered fashion: when the user buys at least 10
    pieces of a product, he gets 10%, more then 100 means 15%, and more then
    1000 means 20%. But it shouldn't be a fixed list, the administrator
    should be able to create as many ranges as he wants. It looks like this:
    Limit Discount
    <input1_L> <input1_D>
    <input2_L> <input2_D>
    <add more button>
    On the client side we can create the input boxes dynamically, with
    proper names, so the system will know which field(s) of the actionform
    we try to set. The problem is that when he submits the form, we get
    IndexOutOfBoundsException, since the field of the actionForm doesn't
    contain enough space for the items. Of course, we can initialize the
    field in the reset() method of the actionform, but at this time we don't
    know how many elements will it store.
    We checked the docs, samples, and the bea newsgroups, but couldn't find
    solutions to these questions (We have seen some similar questions in the
    newsgroups, so it seems other people also have some of these problems).
    I hope I described them clearly and you will be able to find ways to
    solve (at least some of ) them.
    Thanks in advance,
    don

    Hi all,
    we have a family of netui problems which occur quite frequently.
    The main problem is: what to do when we have a list of items (we don't
    now how many), and we want to display them, and get some input from the
    user.
    1. The simplest form, when the user only has to select one, is ok: we
    create a list of netui:anchor -s, with parameters, or we use a
    netui:select (but even in this case we don't know what to do if the name
    and the key of the items are different).
    2. The user should choose more then one item.
    a) We tried to use netui:select multiple=true. It renders fine, but we
    can't get the results properly. If the user selects only one item,
    it's ok, we can get it with a String field in the actionform. But if the
    user selects more items, then we can't catch them.
    We tried with String and List fields, but none of them worked (they
    contained null).
    b)It is more complicated, if we also want to display some attributes of
    the items, like:
    <checkBox> name1 description1 other attribute1
    <checkBox> name2 description2 other attribute1
    <checkBox> name3 description3 other attribute1
    3. The user should enter some text or number for each item
    e.g. (quite similar to 2.b)
    name1 description1 <input type='text'/>
    name2 description2 <input type='text'/>
    name3 description3 <input type='text'/>
    For 2.b) and 3) we have a workaround: we don't use netui:checbox or
    netui:textfield, but manually construct input boxes. The names of the
    boxes are the same that would be created by netui tags (e.g.
    {actionForm.input[1]}), so when the user submits the form the framework
    thinks that they were normal netui stuff and fills the actionForm with
    their data.
    4. The user can create a list on the fly, so he/she can even add more
    elements to the list. We can do it with a submit per new item method,
    but it would be better if could do it on the client side, and the user
    would click on submit only when he finished editing. e.g.:
    we want discounts in a tiered fashion: when the user buys at least 10
    pieces of a product, he gets 10%, more then 100 means 15%, and more then
    1000 means 20%. But it shouldn't be a fixed list, the administrator
    should be able to create as many ranges as he wants. It looks like this:
    Limit Discount
    <input1_L> <input1_D>
    <input2_L> <input2_D>
    <add more button>
    On the client side we can create the input boxes dynamically, with
    proper names, so the system will know which field(s) of the actionform
    we try to set. The problem is that when he submits the form, we get
    IndexOutOfBoundsException, since the field of the actionForm doesn't
    contain enough space for the items. Of course, we can initialize the
    field in the reset() method of the actionform, but at this time we don't
    know how many elements will it store.
    We checked the docs, samples, and the bea newsgroups, but couldn't find
    solutions to these questions (We have seen some similar questions in the
    newsgroups, so it seems other people also have some of these problems).
    I hope I described them clearly and you will be able to find ways to
    solve (at least some of ) them.
    Thanks in advance,
    don

  • Contacts and Calendar

    SO I have royally messed up my outlook and lost all my e-mails, contacts and calendar. I still, however have all of the information synced in my iPhone. Can someone tell me how I can import at the very least my contacts and calendar back into outlook from my iphone.

    Disable auto sync when an ipod/iphone is connected under preferences in itunes, which in windows is under the edit menu. Put one contact in outlook and one event in your calendar application, they can be fake, doesn't matter, but make sure you have one in each. Connect your phone, itunes running, DO NOT SYNC!, right-click the phone in the device pane and select "Reset Warnings". You can now sync, you should get a popup regarding your Contacts & Calendar, asking to merge or replace, select MERGE!
    You should be good to go .

  • Windows 10 Mail and Calendar app will not sync with Office365 account

    I'm playing around with a Windows 10 PC build 10130. I want to try out the mail and calendar app to see if it's good enough for daily use, in lieu of Office.I keep getting the "Make My PC more secure popup box" and clicking enforce these policies does nothing.Opening mail and calendar, I get the "This device doesn't meet the security requirements set by your email administrator" error.I am logged inusing a domain account (but with local admin rights)The machine is using Bitlocker.I used just password, now using PIN too to log-on.Based on another post in Office365 forums I removed the setup account from the machineOur mobile device mailbox policy is pretty standard-Allow mobile devices that don't fully support policies to synchronize.OWA for Devices blocks devices that don't support device encryptionPassword: Required, 4 characters,...
    This topic first appeared in the Spiceworks Community

    I'm playing around with a Windows 10 PC build 10130. I want to try out the mail and calendar app to see if it's good enough for daily use, in lieu of Office.I keep getting the "Make My PC more secure popup box" and clicking enforce these policies does nothing.Opening mail and calendar, I get the "This device doesn't meet the security requirements set by your email administrator" error.I am logged inusing a domain account (but with local admin rights)The machine is using Bitlocker.I used just password, now using PIN too to log-on.Based on another post in Office365 forums I removed the setup account from the machineOur mobile device mailbox policy is pretty standard-Allow mobile devices that don't fully support policies to synchronize.OWA for Devices blocks devices that don't support device encryptionPassword: Required, 4 characters,...
    This topic first appeared in the Spiceworks Community

  • 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

  • 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/

  • 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.

  • 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

  • Using the jprogress bar for file byte array downloads

    I am currently using a byte array to send files back and forth between computers. To show a file is transferring i change the mouse to the hour glass but would like to use the jprogressbar. To send the file i read the file from one computer into a by

  • ITunes/iPhone not yet compatible with key new feature of iLife '08

    I've upgraded to iLife '08 and am using the new Events feature of iPhoto and am loving it... and in the process I'm realizing that I can nix my own "Albums" that are no longer needed! But then I realize that photos are being deleted from my iPhone be

  • System status LKD REL for operation & phases in Process order

    Hi Gurus, We have a process order in which system status for operations & phases is LKD REL due to which user is not able to confirm the process order. The status of process order is REL PRC APNG APRS BASC BCRQ GMPS MACM RESA SETC. One of the user fr

  • Trouble Refreshing Child VO

    I am using Jdevelper 11.1.1.6. In my use case I have a screen that lists a databound table of rows (parent row of a parent/child relationship). Each parent row can have 1 to many children. The table has 4 columns, the first 3 columns come from the Pa

  • Problem using Function Module IDOC_INBOUND_ASYNCHRONOUS

    Hi friends, I have a critical problem load idoc ARTMAS05. I development a program for load the data with idoc but my program call the function module IDOC_INBOUND_ASYNCHRONOUS close my session of the SAP GUI and lose the load. This problem begining t