Unexpected Uncommitted Data Warning

Build JDEVADF_11.1.1.6.0_GENERIC_111205.1733.6192.1
I have a bounded task flow (The rule TF) wherein I have a table which is backed by a programmatic VO (the rule condition VO). The default page for the rule TF is displayed in the main area of the UI shell template. The rule TF always begins a new transaction and shares data control with the calling task flow.
From within the rule task flow, I can call a bounded task flow to select a set of products (the select target products TF). The select target products TF used shared transaction ("Always use Existing Transaction") and shares data control with calling task flow. Originally, I wanted to run this as a dialog, but there appears to be some bug in the UI shell that prevents this, so now I have run as dialog "False" and Display type "External Window". The default view for this task flow renders into the main area of the UI shell.
When I add rule conditions and then invoke the select target products TF, I get an "Uncommitted data warning" when I press the OK button in that task flow, which returns the selected products to the calling task flow. The warning appears to happen after I get the return value from the select target task flow.
If I don't add any rule conditions and simply invoke the select products TF, I do not see an issue.
According to http://www.oracle.com/technetwork/developer-tools/adf/unsaveddatawarning-100139.html, calling a bounded task flow from a bounded task flow with shared transaction should NOT cause this.
Is this a bug? Is there a workaround for this?
Thanks, -Klaus

<?xml version='1.0' encoding='UTF-8'?>
<jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
xmlns:af="http://xmlns.oracle.com/adf/faces/rich"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:c="http://java.sun.com/jsp/jstl/core">
<c:set var="ResourcesGenBundle"
value="#{adfBundle['oracle.apps.common.acr.resource.ResourcesGenBundle']}"/>
<c:set var="ZspBusinessRulesAttrBundle"
value="#{adfBundle['oracle.apps.spe.businessRules.resource.ZspBusinessRulesAttrBundle']}"/>
<c:set var="ZspBusinessRulesGenBundle"
value="#{adfBundle['oracle.apps.spe.businessRules.resource.ZspBusinessRulesGenBundle']}"/>
<af:pageTemplate viewId="/oracle/apps/fnd/applcore/templates/UIShellMainArea.jspx"
id="pt1">
<f:facet name="localArea">
<af:panelHeader text="#{pageFlowScope.ManageRuleFolder.title}" id="ph1">
<f:facet name="menuBar">
<af:panelFormLayout id="pfl2">
<af:toolbar id="t2" stretchId="s2" flex="1"
inlineStyle="background-color:transparent;">
<af:spacer width="2" height="2" id="s2" clientComponent="true"/>
<af:commandButton text="#{ResourcesGenBundle['Action.OK']}"
id="cb1" action="OK"/>
<af:commandButton text="#{ResourcesGenBundle['Action.Cancel']}"
id="cb2" action="CANCEL"
immediate="true"/>
</af:toolbar>
</af:panelFormLayout>
</f:facet>
<af:panelGroupLayout layout="scroll" id="pgl1">
<af:panelFormLayout id="pfl-d">
<af:selectOneRadio id="sor1"
label="#{ZspBusinessRulesAttrBundle['ColAttr.FolderType.RuleFolderType.RuleFolderEO.RuleTypeName']}"
value="#{pageFlowScope.ManageRuleFolder.ruleTypeName}"
autoSubmit="true" required="true"
disabled="#{pageFlowScope.ManageRuleFolder.ruleFolderId != null}">
<af:selectItem label="#{ZspBusinessRulesGenBundle['OLabel.Prediction.PredictionRuleType']}"
value="#{pageFlowScope.ManageRuleFolder.recommendationRuleType}"
id="si1"/>
<af:selectItem label="#{ZspBusinessRulesGenBundle['OLabel.Eligibility.EligibilityRuleType']}"
value="#{pageFlowScope.ManageRuleFolder.eligibilityRuleType}"
id="si3"/>
</af:selectOneRadio>
<af:spacer width="10" height="10" id="s5"/>
<af:inputText id="id2" columns="50" maximumLength="#{pageFlowScope.ManageRuleFolder.maxNameLength}"
label="#{ZspBusinessRulesAttrBundle['ColAttr.FolderName.NameofRuleFolder.RuleFolderEO.RuleFolderName']}"
value="#{pageFlowScope.ManageRuleFolder.name}"
autoSubmit="true" required="true">
<af:validateLength maximum="#{pageFlowScope.ManageRuleFolder.maxNameLength}" minimum="1"/>
</af:inputText>
<af:spacer width="10" height="10" id="s55"/>
<af:inputText id="id3" columns="50" maximumLength="#{pageFlowScope.ManageRuleFolder.maxDescriptionLength}" rows="5"
wrap="soft"
label="#{ZspBusinessRulesAttrBundle['ColAttr.Description.RuleFolderDescription.RuleFolderEO.Description']}"
value="#{pageFlowScope.ManageRuleFolder.description}"
autoSubmit="true" required="true">
<af:validateLength maximum="#{pageFlowScope.ManageRuleFolder.maxDescriptionLength}" minimum="1"/>
</af:inputText>
<af:spacer width="10" height="10" id="s4"/>
<af:inputDate label="#{ZspBusinessRulesAttrBundle['ColAttr.StartDate.RuleFolderEffectiveStartDate.RuleFolderEO.EffectiveStartDate']}"
id="id1"
value="#{pageFlowScope.ManageRuleFolder.effectiveStartDate}"
autoSubmit="true" required="false">
<af:convertDateTime pattern="#{applCorePrefs.dateFormatPattern}"/>
</af:inputDate>
<af:spacer width="10" height="10" id="s6"/>
<af:inputDate label="#{ZspBusinessRulesAttrBundle['ColAttr.EndDate.RuleFolderEffectiveEndDate.RuleFolderEO.EffectiveEndDate']}"
id="id4"
value="#{pageFlowScope.ManageRuleFolder.effectiveEndDate}"
autoSubmit="true" required="false">
<af:convertDateTime pattern="#{applCorePrefs.dateFormatPattern}"/>
</af:inputDate>
<af:spacer width="10" height="10" id="s8"/>
<af:selectBooleanCheckbox text="#{ZspBusinessRulesAttrBundle['ColAttr.Active.IndicatorofActiveRuleFolder.RuleFolderEO.ActiveFlag']}"
selected="#{pageFlowScope.ManageRuleFolder.activeFlag}"
label="#{null}" id="sbc1" autoSubmit="true"/>
</af:panelFormLayout>
</af:panelGroupLayout>
</af:panelHeader>
</f:facet>
</af:pageTemplate>
</jsp:root>

Similar Messages

  • How to turn off uncommitted data warning?

    I have a bounded task flow that calls a second bounded task flow.
    The second task flow shares transaction and data control scope with calling task flows.
    Both task flows use the main area of the UI shell.
    I make changes in second task flow and when I close the task flow I get a uncommited data warning.
    Is there a way to turn off this uncommitted data warning?

    <AF:document uncommittedDataWarning="off">i hope that this will helps you.
    http://www.oracle.com/technetwork/developer-tools/adf/unsaveddatawarning-100139.html

  • 11.1.1.3 Uncommitted Data Warning not working for fields  AutoSubmit =true

    We are facing an issue in our application where [ Uncommitted Data Warning |http://www.oracle.com/technetwork/testcontent/unsaveddatawarning-096556.html] doesnot seem to work for input fields on which autosubmit is turned to true. Once I unset thye autoSubmit property to false , this works fine.
    The autosubmit is needed in our application for specific needs.
    Can you please throw some light on this weird behaviour ! We have followed the exact steps as mentioned viz -
    1)Turn the Critical to 'true' for the bounded taskflow.
    2)Turned the UncommittedDataWarning to 'on' for the af:document of the container .jspx page
    Thanks
    Sudipto

    I tried this as a small prototype . Can someone please give any pointers ?
    TEST CASE 1 (Using a simple jspx and no taskflows)
    1)Created a new Test1.jspx and put a af:inputText in it bound to an attribute binding coming from a DataControl (using EJB).
    2)Set the autoSubmit property to true for the inputText.
    3)For the af:Document of the above Test1.jspx set the UnCommittedDataWarning to “on”
    4)Register the above page in jazn-data.xml for anonymous and auntenticated-role for login purpose.
    5)Run the page and found that the UncommittedDataWarning (UD Warning henceforth) pops up fine after dirtying the inputText and pressing browser back button.     
    TEST CASE 2 (Using a jsff embedded into a taskflow which in turn is embedded into a jspx
    1)Created a new Test2.jsff and put a af:inputText in it bound to an attribute binding coming from a DataControl.
    2)Set the autoSubmit property to true.
    3)Insert the Test2.jsff into a bounded task flow say Test2TF.xml. Have critical set to “true” for this taskflow.
    4)Embed the Test2.xml into a new jspx say Test2.jspx
    3)For the af:Document of the above Test2.jspx set the UnCommittedDataWarning to “on”
    4)Register the above page , jsff and taskflow in jazn-data.xml for anonymous and auntenticated-role for login purpose
    5)Run the page and find that the UD Warning doesnot pop up after dirtying the inputText and pressing browser back button.
    +(The above is a typical scenario of our application)+
    I also checked the steps and concepts well explained at http://www.oracle.com/technetwork/developer-tools/adf/unsaveddatawarning-100139.html
    ,but couldnot arrive at a solution . The transaction and data control properties seem to be fine since , the UD warning does fire for a couple of fields having autoSubmit=”false” .
    Thanks
    Sudipto

  • Uncommitted Data warning on loading the taskflow

    Hi,
    I want to use the Uncommitted data warning for our application.
    I am getting the Uncommitted data warning while loading the taskflow.
    I am using the JDeveloper 11g 11.1.1.3.0
    I have create Taskflow with Isolated scope and start new transaction every time.
    My Takflow have Following thing:
    1) Execute Action: Which will call as default activity adn load the data.
    2) Router: That will if row exist in view then transfer to jsff page otherwise Call CreateInsert binding action and then redirected to same jsff page.
    3) Jsff Page: jsff page that have panelFormLayout with the fields for add/Update.
    In that scenario if my table don't have any record in database that why CreateInsert binding action will called. Once it will called and control is redirected to jsff page.
    Page is throwing the uncommitted data warning but there is not data on that page only the blank fields are there.
    If I click on OK button of popup that is showing blank screen not even label of the fields.
    Can anybody tell me please how can i resolve this issue?
    How will my page will appear with calling CreateInsert binding Action with UncommitedDatawarnings set as on?
    Thanks in Advance
    Amit

    As per http://www.oracle.com/technetwork/issue-archive/2012/12-mar/o22adf-1518265.html , in 11.1.2.1) or later ->
    Access the tab transaction state. Tabs can be marked as having their content changed, in which case they are referred to as dirty.
    A warning dialog box will appear if users or the application try to close these tabs. A tab’s dirty state can be checked and manipulated with the TabContext API.Looks like this is available out of the box.

  • UI Shell :Uncommitted data warning on closing tab

    H experts,
    My JDeveloper version is 11.1.2.1.0.
    I am using UI Shell template in my application. How can i show uncommitted data warning on closing a tab using the close icon (which come with the tab by default) on the top right side.
    Help me to solve this problem by sending valuable comments, links, advises...
    Thanks in advance
    gtg.

    As per http://www.oracle.com/technetwork/issue-archive/2012/12-mar/o22adf-1518265.html , in 11.1.2.1) or later ->
    Access the tab transaction state. Tabs can be marked as having their content changed, in which case they are referred to as dirty.
    A warning dialog box will appear if users or the application try to close these tabs. A tab’s dirty state can be checked and manipulated with the TabContext API.Looks like this is available out of the box.

  • How to customize the Uncommitted data warning popup message

    Hi,
    As per this link https://cn.forums.oracle.com/forums/thread.jspa?threadID=2381421 we can customize the session time out warning message by adding the below lines of code.
    +<af:document id="d1">+
    +<af:resource type="javascript">+
    function myload(evt)
    +{+
    AdfDhtmlLookAndFeel._TRANSLATIONS['af_document.POST_SESSION_TIMEOUT_MSG']='Time is over...';
    +}+
    +</af:resource>+
    +<af:clientListener method="myload" type="load"/>+
    +...+
    +</af:document>+
    For modifying the uncommitted data warning message which resource string is required instead of 'af_document.POST_SESSION_TIMEOUT_MSG'
    Thanks,
    -Gaurav

    Hi,
    see the red message in http://docs.oracle.com/cd/E28389_01/apirefs.1111/e12046/oracle/adfinternal/view/js/laf/dhtml/rich/AdfDhtmlLookAndFeel.html ? AdfDhtmlLookAndFeel is an internal implementation class that should not be used in custom code.
    Frank

  • Uncommitted data warning behavior

    Hie
    I tried to turn on show uncommitted data warning in an adf app developed in latest version of jdev 11g. What I am noticing is it is firing in case i close the browser. But it does not fire if i close the tab of dynamic shell ui.
    the browser used is IE
    Please advise if this is the expected behavior or some possible issue?

    Hi,
    I am alos facing the same issue . But i have another issue and doubt which i wanted to ask you hoping you would give me a proper solution . scenario goes like this ... I have my application in which i have 2 tabs opened . kept the application idle for 20 min , after that when i try navigating across the tabs , the data in the tab is found lost . For the app module , i have kept the idle instance time out as 600s . Can you please tel me as to how to prevent this losing of data in keeping the app idle for long time whererin time = n ..
    Thanks ,
    Vini

  • Uncommitted data warning popup not working

    Hi ADF Experts,
    JDEV 11.1.1.7.0
    I have a jspx page with af:document uncommettedDataWarning="on".
    Inside jspx I have a region. In the jsff fragment I have inputText with autoSubmit="true",
    The popup does not appear if I try to close the browser or refresh.
    Also I tried to set critical for the taskflow. Which either did not help.
    Please help me on this.
    Thanks,
    Roy

    Hi Frank,
    I filed a bug with customer support but this is what the response.
    "Hello Roy,
    I brought this issue to our Development but did not get any answer as the framework works as expected.
    if a component is set to autosubmit then the data is submitted so no more considered as uncommitted.
    The solution would be to change the design in order to commit the data when received or use a specific commit button."
    Can you please let me know if we cannot have that warning when autoSubmit="true".
    Thanks,
    Roy

  • Tree on Dyanamic region . Uncommited data means warn me

    hi jdev experts,
    am using jdev 11.1.1.5.0 - adfbc - oracle db10g.
    what i did:
    am using af:tree. on that tree leaves holds command links.
    if i hit that links means one dynamic regions(jsff) will opens.
    it's ok all are fine.
    but my need:
    i did some changes one dynamic regions(jsff). and i go to another dynamic regions(jsff)
    means.
    some Uncommited datas please save it or want to lost it.
    One more thing:
    in adf jspx page af:document holds uncommited data warning on or off state. i know about it. it is working properly.
    question1:
    my question if it is jspx that ok. i want the same in jsff also?
    how can i achieve it ?
    edit in late:_
    question 2:
    for eg:
    i had two tabs;
    tab1 - input text1
    tab2 - input text123
    here i did some changes in tab1 inputtext1 not saved
    and switch to another tab means.
    it should warn me please that data or want to last?
    so this my question? how can i do uncommited data in tabs(pane tabbed or show detail item)?

    Can't you check with getDBTransaction().isDirty() on am instance
    Edited by: Ramandeep Nanda on Feb 10, 2012 2:17 PM

  • Prevent navigation on uncommitted data

    hi
    Please consider the example application created using JDeveloper 11.1.2.3.0
    at http://www.consideringred.com/files/oracle/2013/UncommittedDataReviewApp-v0.01.zip
    It contains a page which has an af:document with uncommittedDataWarning="on" [1], and next to a regular af:commandLink also an af:commandLink with immediate="true" combined with an af:checkUncommittedDataBehavior component [2].
    It allows to get warnings like
    "This page contains uncommitted data.
    Would you like to perform navigation?
    Pres OK to continue, or Cancel to abort navigation."
    which allow you to choose if you want to continue the navigation or not.
    See also the screencast at http://screencast.com/t/IBujeLmKE
    question :
    - (q1) What would be the preferred (and future proof) way to prevent navigation on uncommitted data (instead of just a warning)?
    - [1] see http://docs.oracle.com/cd/E35521_01/apirefs.111230/e17491/tagdoc/af_document.html
    - [2] see http://docs.oracle.com/cd/E35521_01/apirefs.111230/e17491/tagdoc/af_checkUncommittedDataBehavior.html
    many thanks
    Jan Vervecken

    Thanks for your reply Frank.
    Frank Nimphius wrote:
    ... So if this works as with how you change the ADFc exception handler, then its by a file with this name in the application META-INF/service folder (the latter doesn't exist by default). ...The documentation section "22.5.3 How to Designate Custom Code as an Exception Handler "
    at http://docs.oracle.com/cd/E35521_01/web.111230/e16182/taskflows_complex.htm#ADFFD22602
    says directory path "application_root\.adf\META-INF\services".
    ... However, the default abstract class is DirtyPageHandler and this is in a public package. ...Sure, but (without documentation) it does not seem trivial to extend it and implement a custom implementation.
    Reviewing some parts of the ADF framework source code suggest this API has some obscure aspects.
    A DirtyPageContext seems to be passed between AdfcDirtyPageHandler and ControlFlowEngine via a request attribute.
    adf_111230_6276_source.zip!\oracle\adfinternal\controller\application\AdfcDirtyPageHandler.java
       public void trackNavigation(DirtyPageHandler.DirtyPageContext dirtyContext)
          if (dirtyContext != null)
             // Store DirtyPageContext on the request for future use
             Map<String, Object> requestMap = JsfInterface.getInstance().getRequestMap();
             requestMap.put(StateParams.DIRTY_PAGE_CONTEXT_KEY, dirtyContext);
       }So, is ControlFlowEngine (also in an "adfinternal" package) intended to be extended/overridden/replaced/customized somehow, or does a custom DirtyPageHandler also have to use this StateParams.DIRTY_PAGE_CONTEXT_KEY request attribute technique?
    adf_111230_6276_source.zip!\oracle\adfinternal\controller\engine\ControlFlowEngine.java
       private boolean cancelNavigationCheck(AdfcContext adfcContext, ActivityId currentActivityId,
                                             ActivityId nextActivityId, Activity activity, String fromAction,
                                             String outcome)
          Object value = requestMap.get(StateParams.DIRTY_PAGE_CONTEXT_KEY);
          DirtyPageHandler.DirtyPageContext dirtyHandler = null;
          if (value instanceof DirtyPageHandler.DirtyPageContext)
             dirtyHandler = (DirtyPageHandler.DirtyPageContext)value;
          else
             return false;
       }Also a framework "adfinternal" RichPhaseListener has a rather explicit dependency on the DirtyPageContextImpl class because it is calling static methods on this implementation class.
    adf_111230_6276_source.zip!\oracle\adfinternal\view\faces\context\RichPhaseListener.java
      public void beforePhase(PhaseEvent event)
        if (phaseId == PhaseId.APPLY_REQUEST_VALUES)
          // Check we we received response from the navigation confirmation dialog
          if (!DirtyPageContextImpl.checkConfirmNavigationResponse())
        else if (phaseId == PhaseId.INVOKE_APPLICATION)
          // Inform DirtyPageHandler that it needs to track navigation (if enabled)
          DirtyPageContextImpl.initDirtyPageContext();
      }This suggests that no alternative implementation for DirtyPageContextImpl is possible.
    But it seems to be the DirtyPageContextImpl class that is responsible for (part of) the "ui interaction", which seems to be what should change to prevent navigation on uncommitted data.
    adf_111230_6276_source.zip!\oracle\adfinternal\view\faces\context\DirtyPageContextImpl.java
      public void confirmNavigation(String confirmationToken)
        script.append("AdfPage.PAGE.confirmNavigation(\"");
          service.addScript(context, script.toString());
      static boolean checkConfirmNavigationResponse()
        String param = external.getRequestParameterMap().get(_CONFIRMATION_RESPONSE_PARAM);
      }So, a rather obscure API.
    ... Maybe worth filing an ER to get a public listener / hook into this instead of dealing with your own implementation. Will file one ...
    ... ER 16663793 ...Sounds like a good idea.
    On My Oracle Support I have been able to find enhancement request 16663793, "PROVIDE HOOK INTO DIRTY PAGE WARNING FOR CUSTOMERS TO HANDLE W. CUSTOM DIALOG" (after requesting it to be published in service request 3-7073188791).
    But, for the current version my question (q1) remains:
    - (q1) What would be the preferred (and future proof) way to prevent navigation on uncommitted data (instead of just a warning)?
    many thanks
    Jan Vervecken

  • Safari unexpectedly quit with warning of Security Issue

    Safari unexpectedly quit with warning of Security Issue.
    A window appeared that said,
    "Safari Alert
    Suspicious Activity Might have been detected
    Major Security Issue
    To Fix it please call Support for Apple 1-800656-8559 (Toll Free) Immediately
    Browser can't connect to the Server"
    I did not believe this message and went to Apple support using Firefox and found the answer by stedman1, under a previous submission by mjbaur.
    I just want to complement stedman1 and make sure he gets some points.

    SCAM
    NEVER follow instructions
    use another browser
    The Safe Mac » Adware Removal Guide
    download and run AdwareMedic
    be safe when visiting SOME websites - in cahoots OR have been hacked
    ÇÇÇ

  • Including uncommited data in extents from current transaction

    Is there a way to tell KODO to include uncommitted data in it's extent query
    results from the current transactions.
    i.e.
    Start Transaction
    find persistent object 1
    if not found run generic add persistent object 1 function
    find persistent object 1
    Make further changes to persistent object
    End Transaction

    Graham-
    Yes: set IgnoreCache to false. Queries and Extents will when pick up and
    new/modified instances in the cache.
    See the caveats in the docs, and control the performance with the
    FlushBeforeQueries configuration parameter.
    In article <bmmff7$mrr$[email protected]>, Graham Cruickshanks wrote:
    Is there a way to tell KODO to include uncommitted data in it's extent query
    results from the current transactions.
    i.e.
    Start Transaction
    find persistent object 1
    if not found run generic add persistent object 1 function
    find persistent object 1
    Make further changes to persistent object
    End Transaction
    Marc Prud'hommeaux [email protected]
    SolarMetric Inc. http://www.solarmetric.com

  • Uncommitted data

    Hello All,
    Because db buffer management, the datafile may contain some uncommitted data.
    DBWR writes these uncommitted data to datafile to make some room in DB buffer.
    Does this uncommitted data is also store in redo log files?
    Thanks.

    Hello Yas,
    Thanks.
    Is it possible that redo logs have some redo entry for uncommitted data , but the same uncommitted data bit be in datafile?
    Thanks.

  • Uncommited data in Datrafile.

    I read in an article that Datafiles can contain uncommitted data? As far as I know,committed data in the online redo will be written into Datafile.
    Is that true?
    ~

    Yes and no.
    YES: uncommitted data is written to datafiles before committing.
    NO: online redo records some necessary information for redoing, not committed data.
    for example: delete hr.employees. all rows in this table will be moved to undo tablespace, and oracle record this SQL to redo log.
    ref: http://download-west.oracle.com/docs/cd/B10501_01/server.920/a96521/onlineredo.htm#4129

  • QBE on uncommitted data in af:table

    Hi,
    I am using Jdev v11.1.1.7.0.
    I have an af:table in which I can insert, delete or save data.
    I also have QBE enabled on this table.
    If I add some rows and save the data before doing some query using QBE it works fine. But if add some rows and without clicking save I do QBE then it behaves erratically i.e. search results get lost when I remove the query criteria.
    But if try to add a row with same primary key (which a lost row had), it gives me error. So it means that row is still there.
    Does anyone has any idea about this? I can explain in more detail if you want. Is this adf default behavior i.e. it doesn't support qbe on uncommitted data?

    Hi,
    as an Oracle employee you can use the internal JDeveloper mailing list and internal forums (especially when you work with internal builds of JDeveloper)
    To answer your question (assuming the VO to query is based on an EO), set the query mode of the VO to also look into the entity cache. If the QBE is based on a custom ViewCriteria, then you can set this on the View Criteria (see the second tab in teh View Criteria editor). If you use the "all queryable attributes" default view criteria, use the following Java code to set the VO query mode
    vo.setQueryMode(ViewObject.QUERY_MODE_SCAN_ENTITY_ROWS | ViewObject.QUERY_MODE_SCAN_DATABASE_TABLES);
    Frank

Maybe you are looking for

  • Format external drive for use with both Leopard & XP, & maybe Win7

    I want to repurpose one of my old small Firewire drives to use with both Leopard and XP via Boot Camp on my MacBook. It is is 60GB and is currently formatted with MacOS Extended Journaled, and Apple Partition Map. I don't think I will have any need a

  • Windows 8 Issues

    So, I have purchased 'Windows 8 Pro' and am working to get it stable on my W520. Specs: - Lenovo W520 4270-CTO - i7 2720qm - Quadro 2000m - 16gb G-Skill DDR3 - 120gb Intel 320 SSD Usage: - Systems Engineer using various development suites, virtualiza

  • How do i clear the qRFC queue in a R/3 sandbox

    Hi All,     I just built a R/3 4.7B sandbox and we are going to perform an upgrade on it. But before we do that we need to clear the qRFC queue. Can anyone please let me know as to how i go about in clearing the qRFC queue. Thanks Anil

  • Customized Message for No result On all Reports

    Hi all, I need to change the custom message that we get for No Result.Instead "the specified criteria dint result in any data"..i have put in my different message for all the reports.Any Idea how I get it done.???Any setting ??? Regards

  • Related to Inspection Characteristics load issue

    Hi All, I am trying to load inspection charatceristics - please see my requirement below Can we use the standard SAP program for Equipment Task lists to load the Inspection Characteristics associated with the Operations? Transaction (IA01) The progra