Key-up and down triggers not firing

I have a multi-record block and want to go to the previous and next records in it when the user presses the up and down arrow keys. I thought this was default behavior, but the keys didn't do anything so I tried putting key-up and key-down triggers on the block. They don't fire at all when I press the up and down arrow keys. The debug messages confirm that nothing happens at all when these keys are pressed. I tried putting form-level triggers on, and they don't fire from that block either, although they do fire from another single-record block.
I'm thinking maybe it is just some block property that I have not set correctly, but I can't see anything obvious when looking through the properties. I have the Navigation Style set to Change Record, but have tried the other options and nothing changed. The records do cycle through using the <Tab> key.
Any help is appreciated.
Thanks,
Ben
null

I'm not running web. I went ahead and tried setting num lock off anyway, but it didn't make any difference. Thanks for the suggestion.
Ben
<BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by vijay kumar ([email protected]):
Are u running ur application in web?
Try the numeric arrow keys (set num lock off)
<HR></BLOCKQUOTE>
null

Similar Messages

  • My ipod 3 generation,Keys of volume up and down are not working..What can i do?

    My ipod 3 generation,Keys of volume up and down are not working..What can i do?

    Try this.
    Reboot the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider if it appears on the screen - let go of the buttons. Let the iPad start up.

  • Key board and track pad not working

    Ok, My situation is similar to some of the other things posted but not quite.
    I tried to wake my computer up from sleep the other day and it wouldn't "wake up" so I did a hard shut down and restart. When it restarted the key board and track pad did not work. The caps lock light wouldn't come on or anything. I tried connecting a usb apple keyboard and mouse and those didn't work either.
    When switching to windows in bootcamp, everything works. So... I guess that means it's a software thing.
    I called Apple support and we did all the possible key combinations and restarts possible and it came down to this: I need to archive install tiger again, then install all of the updates, then install leopard back on (I don't have leopard disk because it was a family pack and im at college). My roomate's macbook (White, bought in aug 2008) install disks which are 10.5.2 do not work with my computer.
    My question is: Is this really the correct solution to my problem? Will archiving and installing tiger then leopard affect my files? I haven't backed up using time machine in a month, so is there a way to backup through osx with my keyboard and trackpad not working or can I do a good back up through my windows partition in bootcamp? Any more tips? Thanks, this has never happened before and I guess I'm a little clueless.

    Do you have access to another Mac? If so, possibly you could use Firewire Target Disk Mode to access your drive and do a current Time Machine backup:
    http://support.apple.com/kb/HT1661
    Since you have a family pack of Leopard at home, possibly you could have someone burn a safety copy of it and send it to you so that you can reinstall Leopard. Once you have the OS installed and brought up to date, you could even restore from Time Machine if you had to.
    Since we don't know all the steps you took, it's hard for any of us to say if this is the right solution. Evidently the Apple tech came to the conclusion that your software had become corrupted, and this could well be the case, since everything works on the Windows partition. Hence the suggestion to reinstall the OS.
    I think you need to get a copy of the Leopard disc so that you can bring your OS completely up to date. I'm not sure of the logistics of doing an Archive and Install with both Tiger and Leopard, especially if much of your work has been done on Leopard. I'm not even sure if it's necessary to reinstall Tiger--it might be better to just reinstall Leopard using Archive and Install.
    It's always a good idea to have a good up to date backup like Time Machine before attempting an Archive and Install, because things can go wrong. If they do, you may end up having to do an erase and install. If that happens, you can restore from your Time Machine backup.
    I think what you should do is to get a copy of your Leopard disc, and then boot from it and try to do the Archive and Install. Navigate to Disk Utility first and verify both permissions and the disk and repair if necessary. Then proceed with the Archive and Install. Once you're done, run all the updates. Then go to Disk Utility and repair permissions.
    Good luck!

  • Partial triggers not Fired on partial submit when invalidate component

    Can somebody tell me why Partial triggers are not Fired on partial submit when invalidate component in the validator. Neither error message next to the component is displayed.
    Does somebody has an idea how can i solve this?
    Thank you very much in advance

    Hi, that is a test case which i have promised you:
    The .jspx page contains two fields , one of which has autosubmit = true; You will see, that when invalidate test field 2 partial triigers on field 1 are not fired neither faces message next
    to the field 2 appears.
    If you add programatically Field 1 and Field 2 partial trigerrs this solve the problem.
    I'm waiting for your response.
    Regards,
    Krasi
    <?xml version='1.0' encoding='windows-1251'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.0"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:af="http://xmlns.oracle.com/adf/faces"
    xmlns:afh="http://xmlns.oracle.com/adf/faces/html">
    <jsp:output omit-xml-declaration="true" doctype-root-element="HTML"
    doctype-system="http://www.w3.org/TR/html4/loose.dtd"
    doctype-public="-//W3C//DTD HTML 4.01 Transitional//EN"/>
    <jsp:directive.page contentType="text/html;charset=windows-1251"/>
    <f:view>
    <afh:html>
    <afh:head>
    <meta http-equiv="Content-Type"
    content="text/html; charset=windows-1251"/>
    <title>pprTest</title>
    </afh:head>
    <afh:body>
    <af:form>
    <af:panelLabelAndMessage label="Test Field 1">
    <af:outputText binding="#{testBean.testField1Comp}"
    partialTriggers="testField2"/>
    </af:panelLabelAndMessage>
    <af:inputText label="Test Field 2"
    id="testField2"
    autoSubmit="true"
    binding="#{testBean.testField2Comp}"
    partialTriggers="testField2"
    validator="#{testBean.testField2_validator}" />
    </af:form>
    </afh:body>
    </afh:html>
    </f:view>
    </jsp:root>
    import javax.faces.application.FacesMessage;
    import javax.faces.component.UIComponent;
    import javax.faces.context.FacesContext;
    import oracle.adf.view.faces.component.UIXInput;
    import oracle.adf.view.faces.component.core.input.CoreInputText;
    import oracle.adf.view.faces.component.core.output.CoreOutputText;
    import javax.faces.application.FacesMessage.Severity;
    public class TestBean {
    private CoreOutputText testField1Comp;
    private CoreInputText testField2Comp;
    public TestBean() {
    public void testField2_validator(FacesContext facesContext,
    UIComponent uiComponent, Object value) {
    // If input equals "invalidate" set value of the
    // testField1Comp on "Component is invalid"
    // Invalidate input and add an error message
    if (((String)value).equals("invalidate")) {
    testField1Comp.setValue("Component is invalid");
    invalidateInput( (UIXInput)uiComponent,"TestField2","Test Field 2 is invalid!");
    // If input not equals "invalidate" set value of the
    // the testField1Comp on "Component is valid"
    else{
    testField1Comp.setValue("Component is valid");
    //Dynamic adding of the partial targets , solves the problem
    // with losing of partial triggers
    //AdfFacesContext.getCurrentInstance().addPartialTarget(testField1Comp);
    //AdfFacesContext.getCurrentInstance().addPartialTarget(uiComponent);
    public void setTestField1Comp(CoreOutputText testField1Comp) {
    this.testField1Comp = testField1Comp;
    public CoreOutputText getTestField1Comp() {
    return testField1Comp;
    public void setTestField2Comp(CoreInputText testField2Comp) {
    this.testField2Comp = testField2Comp;
    public CoreInputText getTestField2Comp() {
    return testField2Comp;
    public static void invalidateInput(UIComponent uiComp,String compName, String message) {
    showErrorMessage(uiComp , message);
    if (uiComp instanceof UIXInput){
    ((UIXInput) uiComp).setValid(false);
    public static void showErrorMessage(UIComponent component, String message) {
    showMessage(component, message, FacesMessage.SEVERITY_ERROR);
    private static void showMessage(UIComponent component, String message, Severity severity) {
    String compId = component.getId();
    FacesContext ctx = JSFUtils.getFacesContext();
    FacesMessage facesMessage = new FacesMessage(
    severity, component.getId() , message);
    ctx.addMessage(compId,facesMessage );
    }

  • Key pad and Touch pad not working.

    I can really use some help.  I was working on my laptop last Friday when I received a Blue Screen of DEATH.  Now the Key pad and Touch pad are not working.  I rebooted the system... ,nothing.   Updated the drivers again...NADA.  I even re-formatted and re-installed The OS.  All to no Avail.  Is there hope or bury it?
    Thanks in advance.

    Sometimes electrical components needs to have all power sources removed and reintroduced to work properly.  Try performing a hard reset first, if it doesn't work then we'll move to the next step.
    To Perform A Hard Reset
    Shut down the computer by going to the Start menu and selecting shut down. (If you have no display, hold the power button down for  5 seconds); (if the computer doesn't power on, move to the next step)
    Disconnect the AC Adapter from the notebook.
    Remove the battery from the bottom of the notebook.  There will be a switch/button to eject the battery.
    Wait at least 1 minute with all power sources disconnected.
    Re-insert the battery and reconnect the AC Adapter and then attempt to power on the notebook.

  • Brightness Keys (F9 and F10) Do Not Function

    For the life of me, I can not adjust the screen brightness using either the F9 or F10 keys. I have to go into System Preference>Displays and then use the brightness slider to adjust it higher or lower. The "Automatically adjust brightness" button is unchecked.
    Not having functional F9/F10 Keys is very annoying.
    Only had this Intel-based MacBook Pro for 3 days and already a problem.

    Welcome to the Forums!
    Not the MBP's problem, actually, just that there's more than one kind of brightness to control - we say "it's not a bug, it's a feature"
    The F9 and F10 +do not+ control screen brightness, they control the brightness of the keyboard backlighting (the lights under the keys). The F1 and F2 keys control screen brightness.
    You do need to have the box for "Use function keys to control software functions" unchecked as the previous poster indicated, or if you need those keys for software functions, you can use Option + F-key to control hardware.
    Now, when you press F9 and F10 and see the prohibitory sign, that is because the keyboard backlight only operartes in dim light. So, go into a dark room, your keys will light up, and F9 and F10 will control that brightness.
    Hope this helps...
    EDIT - Ps. Saw your post in another thread as well. If, in fact, the F1 and F2 are not changing screen brightness, post back.

  • Arrow keys up and down no longer working NOT caret browsing.

    I'm running the Nightly 64-bit build on Windows 7. Two or three nights ago one of the updates came down the pipes and my arrow keys stopped working correctly. When typing in either a url or search if you try to scroll through it will only hit the top and bottom (and hitting down responds like I've hit the up) I've checked caret browsing and disabled all addons to test and still no luck. In the search area I've noticed it only hits 1/3 of the suggestions. Why is this happening? I've had to resort to typing out the full url and search or using the mouse which is sometimes annoying given I used to just hit one down arrow and press enter no need to move my right hand from the keyboard at all.

    Since you are Testing the unstable Nightly channel builds, you may be better off getting help in http://forums.mozillazine.org/viewforum.php?f=23 where many Testers hang out as almost everybody here uses Releases and maybe Betas.

  • Keys x and c will not respond - any ideas?

    My 5 year old iMac just suddenly stopped allowing me to use the x and c keys (I am typing this on a pc). I do not have an external keyboard to use to test it - anyone else ever had this happen? Ideas?

    The first thing to try is a SMC reset (may need 2-3 attempts) , if that doesn't work use the PC's keyboard and test. If the problem persists then obviously it's software on the computer. If the PC keyboard works then you know you need a new keyboard.
    SMC RESET
    Shut down the computer.
    Unplug the computer's power cord and all peripherals.
    Press and hold the power button for 5 seconds.
    Release the power button.
    Attach the computers power cable.
    Press the power button to turn on the computer.

  • Scrollup and down icons not working in ALV. Please help!

    Hi Experts,
           I have a ALV webdynpro ABAP report. I have to show only fixed no of rows.
           But the scrollup and scroll down icons in the ALV (^) not working when I use subtotal (aggregation).
           Interestingly scrolling works perfectly if I remove my subtotal code.  
           My subtotal code is like this:
    *...Sort PRODUCT and group it for subtotal
    *lr_field_settings ?= l_value.
    *lr_field = lr_field_settings->get_field( 'PRODUCT' ).
    *lr_field->if_salv_wd_sort~set_group_aggregation_allowed( ABAP_TRUE ).
    *lr_field->if_salv_wd_sort~create_sort_rule( ).
    *l_sortrule = lr_field->if_salv_wd_sort~GET_SORT_RULE(  ).
    *l_sortrule->set_sort_order( if_salv_wd_c_sort=>sort_order_ascending ).
    *l_sortrule->set_group_aggregation( ABAP_TRUE ).
    **...Aggregate Field QTY
    *lr_field = lr_field_settings->get_field( 'QTY' ).
    *lr_field->if_salv_wd_aggr~create_aggr_rule( ).
    *lr_aggr_rule = lr_field->if_salv_wd_aggr~get_aggr_rule(  ).
    *lr_aggr_rule->set_aggregation_type( if_salv_wd_c_aggregation=>aggrtype_total ).
    **lr_field_settings ?= l_value.
    **lr_field_settings->set_group_aggr_displayed( abap_true ).
           One more thing, In addition to subtotal it also shows grand total in the end. Is this the normal feature or my code for subtotal is wrong?
           So what could be the problem?
           Any sample code will be really helpfull. Please help!
    Thanks
    Gopal
    Message was edited by:
            gopalkrishna baliga

    Hi Gopal,
    Please try to build the effect you commented out in the settings of the ALV. You can save it as a special layout. If scrolling works then, you should check which part of your coding leads to the problem and possibly correct it.
    If this is not possible, just create an OSS message.
    Ciao, Regina

  • ADF 11.1.1.2 Partical Triggers not firing

    We are working with JDeveloper 11.1.1.2 using ADF BC with ADF Rich Faces and have found that the <af:commandMenuItem> and <af:commandToolbarButton> do not appear to be firing off the partialTriggers. Both have been replaced with <af:commandButton> and the partialTriggers fire off just fine. We have recreated the issue in 3 different applications with the same results. Checked IE 7/8 and FF 3.6.x and all have the same behavior. All code, bindings, etc. are created via the drag drop methods.
    Development Environment:
    <li>ADF Business Components     11.1.1.55.36
    <li>Java(TM) Platform     1.6.0_14
    <li>Oracle IDE     11.1.1.2.36.55.36
    <li>Versioning Support     11.1.1.2.36.55.36
    In the sample below, if you click on either the commandMenuItem or the commandToolbarButton the createInsert binding is fired of, but the table is not refreshed. However, if you then refresh the page the new row appears. (i.e. the binding worked).
    Sample JSPX using HR schema:
    <?xml version='1.0' encoding='UTF-8'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
              xmlns:f="http://java.sun.com/jsf/core"
              xmlns:h="http://java.sun.com/jsf/html"
              xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
      <jsp:directive.page contentType="text/html;charset=UTF-8"/>
      <f:view>
        <af:document id="d1">
          <af:messages id="m1"/>
          <af:form id="f1">
            <af:panelCollection id="pc1">
              <f:facet name="menus">
                <af:menu text="menu 1" id="m2">
                  <af:commandMenuItem actionListener="#{bindings.CreateInsert.execute}"
                                      text="CreateInsert"
                                      disabled="#{!bindings.CreateInsert.enabled}"
                                      id="cmi1" partialTriggers="t1"/>
                </af:menu>
              </f:facet>
              <f:facet name="toolbar">
                <af:toolbar id="t2">
                  <af:commandToolbarButton actionListener="#{bindings.CreateInsert.execute}"
                                           text="cmdTBbutton CreateInsert"
                                           disabled="#{!bindings.CreateInsert.enabled}"
                                           id="ctb1" partialTriggers="t1"/>
                  <af:commandButton actionListener="#{bindings.CreateInsert.execute}"
                                    text="cmdButton CreateInsert"
                                    disabled="#{!bindings.CreateInsert.enabled}"
                                    id="cb1" partialTriggers="t1"/>
                </af:toolbar>
              </f:facet>
              <f:facet name="statusbar"/>
              <af:table value="#{bindings.CountriesView1.collectionModel}" var="row"
                        rows="#{bindings.CountriesView1.rangeSize}"
                        emptyText="#{bindings.CountriesView1.viewable ? 'No data to display.' : 'Access Denied.'}"
                        fetchSize="#{bindings.CountriesView1.rangeSize}"
                        rowBandingInterval="0"
                        filterModel="#{bindings.CountriesView1Query.queryDescriptor}"
                        queryListener="#{bindings.CountriesView1Query.processQuery}"
                        filterVisible="true" varStatus="vs"
                        selectedRowKeys="#{bindings.CountriesView1.collectionModel.selectedRow}"
                        selectionListener="#{bindings.CountriesView1.collectionModel.makeCurrent}"
                        rowSelection="single" id="t1">
                <af:column sortProperty="CountryId" filterable="true"
                           sortable="true"
                           headerText="#{bindings.CountriesView1.hints.CountryId.label}"
                           id="c3">
                  <af:inputText value="#{row.bindings.CountryId.inputValue}"
                                label="#{bindings.CountriesView1.hints.CountryId.label}"
                                required="#{bindings.CountriesView1.hints.CountryId.mandatory}"
                                columns="#{bindings.CountriesView1.hints.CountryId.displayWidth}"
                                maximumLength="#{bindings.CountriesView1.hints.CountryId.precision}"
                                shortDesc="#{bindings.CountriesView1.hints.CountryId.tooltip}"
                                id="it2">
                    <f:validator binding="#{row.bindings.CountryId.validator}"/>
                  </af:inputText>
                </af:column>
                <af:column sortProperty="CountryName" filterable="true"
                           sortable="true"
                           headerText="#{bindings.CountriesView1.hints.CountryName.label}"
                           id="c2">
                  <af:inputText value="#{row.bindings.CountryName.inputValue}"
                                label="#{bindings.CountriesView1.hints.CountryName.label}"
                                required="#{bindings.CountriesView1.hints.CountryName.mandatory}"
                                columns="#{bindings.CountriesView1.hints.CountryName.displayWidth}"
                                maximumLength="#{bindings.CountriesView1.hints.CountryName.precision}"
                                shortDesc="#{bindings.CountriesView1.hints.CountryName.tooltip}"
                                id="it1">
                    <f:validator binding="#{row.bindings.CountryName.validator}"/>
                  </af:inputText>
                </af:column>
                <af:column sortProperty="RegionId" filterable="true" sortable="true"
                           headerText="#{bindings.CountriesView1.hints.RegionId.label}"
                           id="c1">
                  <af:inputText value="#{row.bindings.RegionId.inputValue}"
                                label="#{bindings.CountriesView1.hints.RegionId.label}"
                                required="#{bindings.CountriesView1.hints.RegionId.mandatory}"
                                columns="#{bindings.CountriesView1.hints.RegionId.displayWidth}"
                                maximumLength="#{bindings.CountriesView1.hints.RegionId.precision}"
                                shortDesc="#{bindings.CountriesView1.hints.RegionId.tooltip}"
                                id="it3">
                    <f:validator binding="#{row.bindings.RegionId.validator}"/>
                    <af:convertNumber groupingUsed="false"
                                      pattern="#{bindings.CountriesView1.hints.RegionId.format}"/>
                  </af:inputText>
                </af:column>
              </af:table>
            </af:panelCollection>
          </af:form>
        </af:document>
      </f:view>
    </jsp:root>Anyone have any workarounds or know of an existing SR? Are we making some basic mistake?
    Thanks in advance,
    Steve

    I guess you did it wrong. You have to put the partial trigger on the table (pointing to the id of the button) and not the other way around. In the partial trigger field in the IDE you name the id of an other component you like to listen to to update.
    Timo

  • Control key copy and paste, etc., not working

    I have just purchased a T440S Thinkpad. I am alarmed that Ctl + C and Ctl + V do not work.  Also, I cannot use the Control key in combination with + and -  to zoom in and zoom out.  The Control key in combination with the letter i does not italicize a blocked word.  Does anyone have a solution to this problem?  Will Lenovo technicians be able to provide a fix for this serious problem?   David

    Is this the case for both CTRL keys (you have a CTRL key on each side of the space key) or is one of them working?
    If the right CTRL key is working and the left CTRL key isn't, are you sure you didn't swap the Fn and CTRL key in BIOS?
    -gan

  • T3i and Novatron strobes not firing

    Okay, so my previous posts as well as my user account was deleted, so I'm starting again, 
    I have a new T3i that I'm trying to use with two Novatron 150 strobes. I am using a pc converter in my hot shoe to wire the strobes to my camera. The strobes work, the pc cord is fine, the hot shoe works, I've tried two different pc converters, and yet the strobes won't fire when I take a photo. I've tried it on Manual, Auto, Program, all with the live vid disabled. Under flash options, I've tried both with the camera's flash enabled and disabled. There's gotta be a setting or something that I've not got right. HELP! I'm totally frustrated.

    What have you done so far to diagnose?   For example... you mention that you have the PC converter and sync cord and that they're both working, but you don't mention how you know that.
    Do you have other flashes that DO work when connected (i.e. is it just these particular flashes)?  Have you tested a speedlight directly in the hot-shoe?  
    You could test the camera's hot-shoe itself if you own a multi-meter that can measure resistance (ohms).  Firing a flash manually is trivial.  The main pin is that large center contact you see in the hot shoe.  The metal ground rails themselves are actually the other pin.  To fire a flash manually, the camera just needs to short the connection (to complete the circuit) between those two pins.   If you happen to own a multi-meter / ohm-meter (mine has a mode that beeps when the connection is completed which makes it really easy to tell if it happended) you can connect the leads to those two contacts and activate the shutter button to see if the connection closes (it should... it'll be very brief, but it should happen.  As I said... my meter "beeps" so I can audibly hear that it happened without looking.)  You could also use the ohm-meter to test your PC-sync cord adapter and the cord itself.
    Tim Campbell
    5D II, 5D III, 60Da

  • Setting filterFunction on ArrayCollection acting as provider for DDL--and change handler not firing?

    Hi All,
    I've got a Spark DropDownList (I'm on Flex SDK 4.0, Flash Builder 4).
    That DropDownList has an ArrayCollection as its dataProvider property, and in response to user gestures, I change the filterFunction on the ArrayCollection (and call ArrayCollection.refresh()) to update the list of items in the DropDownList.  This works fine.
    However, what I wasn't expecting was that neither my change event handler, nor my valueCommit event handler gets called when the selected item in the DropDownList changes due to the filterFunction filtering out items from the ArrayCollection.
    In other words, let's say I have items A, B, and C in ArrayCollection (and thus, also as items in my DropDownList).  Item A is currently selected, but I then set the ArrayCollection.filterFunction to something, and call ArrayCollection.refresh().  Items A and B are filtered out by the filterFunction, and it disappears from the DropDownList, causing item C (the next available item after A and B) to be selected.  But, even though the selected item has changed, neither my change handler nor my valueCommit handler get called.
    I know the handlers are working, because the change handler gets called when the user selects a new item from the DropDownList, and the valueCommit handler gets called when the selectedIndex is changed programmatically in code, as expected.
    Is this a known issue?  Is there an event I can listen to so I can know when the selected item has changed in this circumstance?
      -Josh

    I'm not on a beta.  I'll try post a short test case as soon as I am able, but I'm in the final week before a major project deadline and as a result I've got to stay pretty focused on that :-)

  • DB Triggers not firing from folders

    Hi All,
    I have a custom DB trigger on the ap_invoice_lines_all table which fires correctly as expected when I update some fields in the lines region.
    However, it does not fire when updating via a folder.
    Any ideas why it may not do so ?
    Thanks

    However, it does not fire when updating via a folder.Please elaborate.
    You can confirm whether there is any update sql on ap_invoice_lines_all got fired using SQL trace.
    By
    Vamsi

  • Windows key + left and right arrows not working with RemoteApp windows

    My office is deploying RemoteApps to replace certain locally installed applications.  I, and many of my coworkers, have 2-3 monitors and the Windows
    + left and right "snap" function has been an extremely convenient way to juggle multiple windows across multiple monitors.  Unfortunately, it doesn't seem to work with RemoteApp windows.  Does anyone know a way to get this working?

    Hi,
    Based on my test,  I agree with Keith Langmead, it seems Windows key + left or right key cannot work with remoteapp.
    Alex Zhao
    TechNet Community Support

Maybe you are looking for

  • Having trouble setting up home network for home sharing

    Hi there, I'm new the idea of home sharing. What i want to do is watch the movies that i have on my iMac on my iPad. So sort of like wireless streaming. I see that Home sharing on iTunes allows you to view videos stored on your iMac on another device

  • How to display no data found in RTF template ? XML Publisher

    Hi    I have xml file, how to display no data found in RTF template ? XML Publisher ? This is the XML File <?xml version="1.0" encoding="UTF-8"?> <INVALIDSERIALPRODUCT> <P_ORG_CODE></P_ORG_CODE><P_DATE_RANGE_FROM></P_DATE_RANGE_FROM><P_DATE_RANGE_TO>

  • HOW TO Change behaviour of attendance type

    Hi guys, I have a question for you: - I have an attendance "9500 Extra Time", for overtime, introduced through IT 2002, which belongs to attendance type "O" (Overtime). When time schema is executed, attendances of this type are added to table TIP (6t

  • Will this hard drive fit in my Macbook pro?

    Looking to upgrade the hard drive in my 2010 Macbook Pro. Stats are below.   Model Name:          MacBook Pro   Model Identifier:          MacBookPro6,2   Processor Name:          Intel Core i7   Processor Speed:          2.66 GHz   Number Of Process

  • Error during EDI integration

    Hello, Trying to integrate an EDI message (DELINS) I am getting a number 51 error:  "Scheduling agreements were found with differing sales units". If I check the EDI message the sales units are PCE (ARD line) and in our Schedule agreement (VA33), the