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 );
}

Similar Messages

  • Partial trigger not woring on the Submit button of the application panel.

    Hi,
    I am facing an issue that I am not sure if it is a framework bug. I used Submit button on the app panel and would like to hide it in some cases. I used a partial trigger for this button. But it doesn't respond to the trigger at all!. I also tried the same trigger on other buttons on the app panel, such as Done, Save, etc.. they all work as expected. Does any one know if this is as designed or a frame work bug?
    Thanks,
    Chunyang

    Hi Frank,
    Thanks for the reply. Good news, I just found out this morning after I refreshed my view that the Submit button refresh issue is resolved. Looks like ADF team was working on that bug.
    I have another question on the app panel buttons.
    My use case for this button is to use this Submit button as a Save and Close drop down, with Save As under it. The object has versions with a version navigation pull down list. When navigate to a Pending version, the buttons are like:
    [Save] [Save and Close |\/] [Cancel]
    |Save As |
    when navigate to a submitted/released version the buttons should be like:
    [Save As] [Done]
    Could you advise how I can achieve this? Currently I make [Save] [Save and Close |\/] [Cancel] invisible and [Done] to be visible for non-pending versions. I also added an additional |Save As | from actionButtonBar facet to be visible in this case, because the original |Save As | is under [Save and Close |\/] , which is not visible in this case. Not sure if it is the right approach. Now the |Save As | is on the left side of the vertical separator, instead of on the right side, since all the buttons under actionButtonBar facet are on the left side of the vertical separator. So you see the buttons like this:
    [Save As] | [Done]
    Thanks,
    Chunyang

  • 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

  • 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

  • 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

  • PivotListener is not firing

    Hi,
    When i selected the data cell in Pivot table PivotListener is not firing.
    Any idea when PivotListener will fire?
    Any other option to show the selection conists of data cell details?
    Thanks
    Shk

    Hi,
    see the tag documentation: http://download.oracle.com/docs/cd/E21764_01/apirefs.1111/e12418/tagdoc/dvt_pivotTable.html
    Frank

  • Will trinidad components partial triggered on partial submit

    Hi All,
    I have a quick question
    is there any issue with with partial submit vs trinidad components?
    i experienced that my components under trinidad layout are not partialtriggred on partial submit
    i am using jdev 11.1.1.5

    Thanks Frank,
    we have pojo datacontrols in my application,database transation is hanlded hibernate and open JPA.
    i have two pages each page has jsff and two diffrent pjojo datacontrols on each jsff.
    now when i update the data from the firstpage, and navigate to the second page(jsff which used the other pojo datacontrol) is refreshing (getting comited records from db) only on when the page is first accssed,supose i navigate back to first page and update some records now i navigate to second page,updated records are not disaplying,if i reopen the url in new browser window then db changes are coming.
    I noticed that pojo datacontrol is refresd only on first access.
    i tried iterator refresh property in pagedef file,but no luck
    can you kindly tell me what needs to be done?

  • When i take a partial screen shot i do not know where it goes, when i take a partial screen shot i do not know where it goes because it dose not go to my desk top and i cant find it in the search thing... but i can hear it being taken

    when i take a partial screen shot i do not know where it goes, when i take a partial screen shot i do not know where it goes because it dose not go to my desk top and i cant find it in the search thing... but i can hear it being taken

    an oh! one more thing, you can change the default folder or create a new one to store all screenshots. Also you can change the file format. Look at the following links
    http://hints.macworld.com/article.php?story=20050824073301844
    http://guides.macrumors.com/Taking_Screenshots_in_Mac_OS_X

  • [svn:osmf:] 17499: Partial fix for FM-990: prevent RTE when attempting smoothing for an image where a policy file was not available

    Revision: 17499
    Revision: 17499
    Author:   [email protected]
    Date:     2010-08-27 11:05:22 -0700 (Fri, 27 Aug 2010)
    Log Message:
    Partial fix for FM-990: prevent RTE when attempting smoothing for an image where a policy file was not available
    Ticket Links:
        http://bugs.adobe.com/jira/browse/FM-990
    Modified Paths:
        osmf/trunk/framework/OSMF/org/osmf/elements/ImageElement.as

    Revision: 17499
    Revision: 17499
    Author:   [email protected]
    Date:     2010-08-27 11:05:22 -0700 (Fri, 27 Aug 2010)
    Log Message:
    Partial fix for FM-990: prevent RTE when attempting smoothing for an image where a policy file was not available
    Ticket Links:
        http://bugs.adobe.com/jira/browse/FM-990
    Modified Paths:
        osmf/trunk/framework/OSMF/org/osmf/elements/ImageElement.as

  • Partial triggers doesnt work with Geo maps

    Hi All,
    Partial triggers are not working with Geo Maps.In dvt:map, PartialTriggers , when i select a table/command button from edit option,Field shows Red Mark, throws "Reference not found".
    What could be the reason ??
    Please help
    Thanks
    Sandeep.G

    Hi Priya ,
    See selectoneradio
    "The rule is that you cannot set at the same level the properties render and partialTriggers."
    Remove the partialTrigger from the inputText field, surround it by a component, f.ex. a panelHorizontal where you put the partialTrigger.
    It should then work.
    Regards,
    Didier.

  • ChangeEventPolicy vs partial triggers - are they mutely exclusive?

    Under section 24.4.3 of the 11.1.2 Fusion Guide, the guide has the following to say about the changeEventPolicy property:
    "When you create a form, setting up PPR to work for all the components in the form can be time consuming and error prone. To alleviate this, you can set the changeEventPolicy attribute to ppr on value bindings. Doing so means that anytime the associated component’s value changes as a result of backend business logic, the component will be automatically rerendered. You can also set an iterator binding’s changeEventPolicy to ppr. When you do this, any action or value binding associated with the iterator will act as though its changeEventPolicy is set to PPR. This allows entire forms to use PPR without your having to configure each component separately."
    Fair enough, this property can save us setting up our own partial triggers.
    What isn't clear to me, is are they mutely exclusive? If changeEventPolicy is set to PPR, can we/should we still use partial triggers on the same page? I ask because I know it's easy to accidentally setup a circular partial triggers scenario which causes the application to break, so presumably with a combination of changeEventPolicy=PPR and partial triggers the same problem can occur.
    Does anyone have any opinions or advice to share please?
    Thanks,
    CM.

    changeEventPolicy=ppr affects only fields that are databound to binding attributes associated with this certain ppr'ed iterator.
    If you have other UI components that are dependant on some databound fields but do not bind to such, they will not be notified of changes unless they point to them using partial triggers. This usecase still requires partial triggers.
    One will also need to use them and change changeEventPolicy to none if he or she has some advanced field dependency where some fields have require update only after certain field is changed or in a specific order.
    Change event policy also alters other behaviours significantly. I am not sure if this is what should happen, bet if you have a form for a record including some af:selectOneChoice components bound to required attributes, ADF will warn user about them after EACH edit of any field that binds to a PPR'ed iterator. Let's say you have 4 af:inputText's and 4 selectOneChoice's. User gets 4 messages 4 times - after each inputText loses focus. And each of the messages will warn about 4 fields (soc'es) that "must have a value". This is certainly annoying to users.
    There are many more cases where changing changeEventPolicy to none solves mysterious problems - dependant LOV's, showPrintablePage or other "operation" behaviours.
    And yes, ppr'ing everything imposes notable impact on performance. Though I can't prove it easily, but it really feels different on weblogic instances running in slow machines (say 4 years old laptop).

  • ADF 11g Partial Triggers Row Column Update By Column in the Same Row

    Hi.
    I have a situation whereby I have a checkbox in a table row, which has an eventchangelistener, which upon activation, trys to update another column in the same row. I can not get this to work through partial triggers, even though I have set up my ids up correctly. The row though can be updated by a command button outside of the table using the same coding techniques, but I need it updated via the checkbox.
    Is there a limitation in updating a column within a row, from another row column's event change listener.
    Thanks.

    Updating the other rows from the checkbox works fine for me. Here is what I did.
    I DnD Emp table with a new column that says if the emp is new hire. If the checkbox is checked, I set Firstname and Lastname for that row as NewHire. I have partial triggers on Firstname and Lastname columns to update whenever checkbox is checked/unchecked and autosubmit on checkbox to true. Hope this helps.
    Try adding column selection property to single and see if it helps.
    Edited by: asatyana on Jan 16, 2012 12:48 AM
    Edited by: asatyana on Jan 16, 2012 12:49 AM

  • Partial Update not running

    Hi All,
    I am trying to build a partial update pipeline for the first time. I tried to follow the steps given in Partial updates guide. But when i tried to run the partial update script, initially it  was throwing an exception "SEVERE: Partial updates not implemented.
    Occurred while executing line 3 of valid BeanShell script". But I modified the "DataIngest" file in C:\Endeca\Apps\Discover\config\script by commenting the exception part.
    Now my partial update script is running but it gives me a following warning message and nothing gets updated or added in my jspref page.
    C:\Endeca\Apps\Discover\control>partial_update.bat
    [04.15.14 17:31:45] INFO: Checking definition from AppConfig.xml against existin
    g EAC provisioning.
    [04.15.14 17:31:45] INFO: Definition has not changed.
    [04.15.14 17:31:45] INFO: Starting partial update script.
    [04.15.14 17:31:45] INFO: Acquired lock 'update_lock'.
    [04.15.14 17:31:45] WARNING: Partial update data extract flag 'partial_extract::
    adds.txt.gz' exists with no associated file in incoming directory 'C:\Endeca\App
    s\Discover\config\script\..\..\.\data\partials\incoming'.
    [04.15.14 17:31:45] WARNING: Partial update data extract flag 'partial_extract::
    deletes.txt.gz' exists with no associated file in incoming directory 'C:\Endeca\
    Apps\Discover\config\script\..\..\.\data\partials\incoming'.
    [04.15.14 17:31:45] WARNING: Partial update data extract flag 'partial_extract::
    updates.txt.gz' exists with no associated file in incoming directory 'C:\Endeca\
    Apps\Discover\config\script\..\..\.\data\partials\incoming'.
    [04.15.14 17:31:45] WARNING: No partial update data ready for processing.
    [04.15.14 17:31:45] INFO: Released lock 'update_lock'.
    [04.15.14 17:31:45] INFO: Partial update script finished.
    Please help
    Thanks in Advance.
    Savi

    You need to set partial update locks on exactly the input files that you reference in your partial_pipeline.epx diagram - at least one and all of the required ones (if you have several and some are optional)
    Out of the box, the load_partial_test_data script sets flags for adds.txt.gz, updates.txt.gz, and deletes.txt.gz.  Edit the load_partial_test_data script to see how it is setting this flag.  Then swap out the files it references to the ones your partial pipeline references.  For example, change to
    "${WORKING_DIR}/set_partial_data_ready_flag.sh" my-test-file.txt
    After you do that, running the partial_update script should work just fine.

  • Partial Confirmation not working through Backorder Processing in GATP

    Dear SAP Folks,
    We are having issue with our Backorder Processing in APO.
    During backorder processing we have seen (in BOP Spool) orders are getting picked for
    processing but despite availability of Allocations and inventory, orders are remaining unconfirmed which could have been partially confirmed. 
    Order which can be partially confirmed, BOP doesnt do partial confirmation. For Example - If SO is for 100 pieces and
    can be confirmed for only 60 pieces, ideally BOP should confirmed 60, but it doesnt.
    But same sales order can be confirmed by doing manual online ATP Check in Sales Order.
    BOP only confirms the orders when it can be fully confirmed, not partial confirmation thru BOP.
    This is very strange, ideally BOP should confirm those orders, but its not doing it.
    Please help.
    Thanks
    Satish

    Dear SAP Experts,
    We tried the suggested solution to OVZJ setting = 'E'. This soulution is not working properly - results are inconsistent. Meaning with these  setting BOP confirmed orders partially, with the rerun of same BOP job on same orders it didnt confirm the orders partially, orders were kept unchanged. We tried this activity multiple times, but results are inconsistent.
    But online ATP check can always confirms those orders partially, without any issues there.
    Also please provide details about impact of this change for OVZJ setting= 'E', to any other processes in ERP system.
    Please help
    Thanks
    Satish
    Edited by: SatishW on Mar 17, 2010 10:05 PM

  • 'Delivery item is not or only partially packed'

    Hi,
    When i creating the delivery, then do picking.....Picking is fine.
    But when i press the button 'Post goods issue'.
    it popups:
    'Delivery item is not or only partially packed'
    What should i do??
    Thanks.

    Hi,
    I just have tried to pack the material...
    But below msg popups...
    'AAABE does not have packaging material type and is therefore not a pack.mat.'
    What does that mean??
    I checked the material type of this material, it is 'Trading Goods' not 'Packaging'.
    Thus i couldnt do the PGI?
    Why have to pack the material ?? 
    Anywhere could let me see that we have to do the pack then could do PGI??
    Thanks!!!

Maybe you are looking for

  • Laserjet 2100 will only print one page at a time.

    I recently acquired a second hand Laserjet 2100 Series. Installation was fine but it will only print one page at a time, I have to keep pressing the 'Go' button, which is very frustrating. The manual tells me that it is in 'Manual' mode but not how t

  • HP solutions center stopped working for photosmart d110a

    After using HP Solution Center (HPSC) for scanning on my D110a via wireless connection to my Win8 laptop (all current win8 updates installed) for many months it just stopped working. The printer is recognized in HPSC  but after selecting the Scan Pic

  • Streaming Netflix from an Ipod Touch to a TV

    I want to stream Netflix from my iPod touch 2G via composite av cable to a TV and it isn't working. I can stream music videos so I know the av cable is good and I tried changing the video settings. Any suggestions? I already have an Apple TV but I wa

  • To find function module to update the field kbetr.

    hello friends  ,                             i have a problem , i want to update kbetr field in konp table and  i am searching for a function module  .  Is there any function module with which we can update kbetr field in konp table.

  • Classic Scenario PO release

    Hi guys, We have clasic scenario where the PO is created only in the ECC, How the PO release is handled?? whether the any customization exist for auto release the PO once it is created in ECC box or we have to do it in some BADI or user-exit??? regar