SPAM: Phase CHECK_REQUIREMENTS: Required Note Corrections

Hello,
i have the following problem.
I'am using SPAM Version 37.
I will import a queue SAPKB70013 -> SAPKB70021 with the "Test scenario".
During the Phase CHECK_REQUIREMENTS, there is one required Note (0001256384).
SPAM said that i can skip these Error because i import the queue in the test scenario.
But when i choose skip the error runs in loop. SPAM will not continue.
Is there a way to make the test import without import the note first ?
Thaks for help
Jens

Hello my friend
I don't think you can bypass this error and continue importing since you're importing a long queue of SAP_BASIS packages. Either to cancel the import queue then implement the note, or manually do the correction of this note.
Thanks,
Effan

Similar Messages

  • Good morning friends, I have a problem with my iphone 4s since I get a screen that just light it says "Activation Required" restored it and not corrected, I bought my factory unlocked iphone, how I can fix this, I had installed the version 6.0 as develope

    Good morning friends, I have a problem with my iphone 4s since I get a screen that just light it says "Activation Required" restored it and not corrected, I bought my factory unlocked iphone, how I can fix this, I had installed the version 6.0 as developer to

    If you have a beta copy of iOS6
    1. You are a developer and will know how to transition from beta
        to release version and to use the Develpoer forum
    2. You have a pirate copy of the beta and no-one on this Apple hosted Forum can help you
         try Google

  • SAINT Error in Phase CHECK_REQUIREMENTS

    Hi.Experts,
    In a new SAP component installation with "t-cd:SAINT", an error occurred.
    ERROR MESSAGE
    =============================================
    Phase CHECK_REQUIREMENTS: Explanation of Errors
    Open conversion requests still exist in the ABAP Dictionary for the
    following ABAP Dictionary objects. To avoid inconsistencies and loss of
    data, you must process these conversions first.
    Proceed as follows:
    - Open a new session.
    - Start the Database Utility (transaction SE14).
    - Correct the inconsistencies for the specified objects.
    - Repeat the import phase. If no more inconsistencies are found, the
       import continues.
    =============================================
    I have already checked 4 things of below
    1.SE14-->BSEG
    I can see the message below  on the screen.
    Request:"Adjust" Error in step2 -see object log and analysis
    2.SPAU
    The contents related to BSEG are already modified (Green)
    3.SPDD
    The contents related to BSEG are already modified (Green)
    4.SE10
    There is no modifiable request related BSEG.
    Could someone tell me about how to deal this error?
    Best Regards,
    Naomi

    Hi Naomi
    Could you check this SAP Note about your issue
    1839881 - SPAM/SAINT error during CHECK_REQUIREMENTS regarding open conversion request still existing
    BR
    SS

  • Tomahawk1.1.3 ugrade exception...ExtensionsFilter not correctly configured.

    Hi Experts,
    I new to the world of JSF and im presently playing around with MyFaces Tomhawk implementation.
    I tried the tree example using tomahawk.jar ,myfaces-api and myfaces-impl.
    I was able to get the tree working with these version of jars.
    But now when i upgraded to the latest jars i.e
    myfaces-api 1.1.3
    myfaces-imple1.1.3 and
    tomahawk-1.1.3
    I'm getting the following error...see the stack trace below:
    java.lang.IllegalStateException: ExtensionsFilter not correctly configured. JSF mapping missing. JSF pages not covered. Please see: http://myfaces.apache.org/tomahawk/extensionsFilter.html
    org.apache.myfaces.renderkit.html.util.AddResourceFactory.throwExtensionsFilterMissing(AddResourceFactory.java:371)
    org.apache.myfaces.renderkit.html.util.AddResourceFactory.checkEnvironment(AddResourceFactory.java:333)
    org.apache.myfaces.renderkit.html.util.AddResourceFactory.getInstance(AddResourceFactory.java:288)
    org.apache.myfaces.custom.tree2.HtmlTreeRenderer.encodeJavascript(HtmlTreeRenderer.java:611)
    org.apache.myfaces.custom.tree2.HtmlTreeRenderer.encodeBegin(HtmlTreeRenderer.java:152)
    javax.faces.component.UIComponentBase.encodeBegin(UIComponentBase.java:512)
    I googled for this also did the required changes.
    here are the links i visited.
    1) http://wiki.apache.org/myfaces/Upgrading_to_Tomahawk_1.1.3
    2) http://www.mail-archive.com/[email protected]/msg23110.html
    3) http://www.mail-archive.com/[email protected]/msg23094.html
    Here's my web.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <web-app version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
    http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
    <context-param>
    <param-name>javax.faces.STATE_SAVING_METHOD</param-name>
    <param-value>client</param-value>
    </context-param>
    <context-param>
    <param-name>org.apache.myfaces.ALLOW_JAVASCRIPT</param-name>
    <param-value>true</param-value>
    </context-param>
    <context-param>
    <param-name>org.apache.myfaces.DETECT_JAVASCRIPT</param-name>
    <param-value>false</param-value>
    </context-param>
    <context-param>
    <param-name>org.apache.myfaces.PRETTY_HTML</param-name>
    <param-value>true</param-value>
    </context-param>
    <context-param>
    <param-name>org.apache.myfaces.AUTO_SCROLL</param-name>
    <param-value>true</param-value>
    </context-param>
    <context-param>
    <param-name>javax.faces.CONFIG_FILES</param-name>
    <param-value>/WEB-INF/faces-config.xml</param-value>
    </context-param>
    <!-- The following listener is needed when using the Apache MyFaces
    JSF implementation -->
    <listener>
    <listener-class>org.apache.myfaces.webapp.StartupServletContextListener</listener-class>
    </listener>
    <!-- Extensions Filter -->
    <filter>
    <filter-name>MyFacesExtensionsFilter</filter-name>
    <filter-class>org.apache.myfaces.webapp.filter.ExtensionsFilter</filter-class>
    <init-param>
    <param-name>maxFileSize</param-name>
    <param-value>20m</param-value>
    </init-param>
    </filter>
    <!-- extension mapping for adding <script/>, <link/>, and other resource
    tags to JSF-pages -->
    <filter-mapping>
    <filter-name>MyFacesExtensionsFilter</filter-name>
    <!-- servlet-name must match the name of your javax.faces.webapp.FacesServlet entry -->
    <url-pattern>*.jsp</url-pattern>
    </filter-mapping>
    <!-- extension mapping for serving page-independent resources (javascript,
    stylesheets, images, etc.) -->
    <filter-mapping>
    <filter-name>MyFacesExtensionsFilter</filter-name>
    <url-pattern>/faces/myFacesExtensionResource/*</url-pattern>
    </filter-mapping>
    <!-- Extensions Filter -->
    <servlet>
    <servlet-name>Faces Servlet</servlet-name>
    <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
    <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet-mapping>
    <servlet-name>Faces Servlet</servlet-name>
    <url-pattern>*.faces</url-pattern>
    </servlet-mapping>
    </web-app>
    Please help me out in fixing this exception.....im sure lot of people must have encountered this exception.
    Thanks
    Ved

    Hi,
    I have made some changes and it is now working.But i want it work in a portlet.There it is showing the text box but not the pop up button.It works fine as a stand alone application.How can i resolve this??
    My code is as follows...
    <?xml version="1.0" encoding="UTF-8"?>
    <web-app id="conference-room" version="2.4"
         xmlns="http://java.sun.com/xml/ns/j2ee"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
         <display-name>Conference Room</display-name>
         <context-param>
              <param-name>
                   org.apache.myfaces.CHECK_EXTENSIONS_FILTER
              </param-name>
              <param-value>false</param-value>
         </context-param>
         <context-param>
              <param-name>javax.faces.STATE_SAVING_METHOD</param-name>
              <param-value>server</param-value>
         </context-param>
         <context-param>
              <param-name>javax.faces.application.CONFIG_FILES</param-name>
              <param-value>/WEB-INF/faces-config.xml</param-value>
         </context-param>
         <context-param>
              <description>
                   This parameter tells MyFaces if javascript code should be
                   allowed in the rendered HTML output. If javascript is
                   allowed, command_link anchors will have javascript code that
                   submits the corresponding form. If javascript is not
                   allowed, the state saving info and nested parameters will be
                   added as url parameters. Default: "true"
              </description>
              <param-name>org.apache.myfaces.ALLOW_JAVASCRIPT</param-name>
              <param-value>true</param-value>
         </context-param>
         <context-param>
              <description>
                   This parameter tells MyFaces if javascript code should be
                   allowed in the rendered HTML output. If javascript is
                   allowed, command_link anchors will have javascript code that
                   submits the corresponding form. If javascript is not
                   allowed, the state saving info and nested parameters will be
                   added as url parameters. Default: "false"
                   Setting this param to true should be combined with
                   STATE_SAVING_METHOD "server" for best results.
                   This is an EXPERIMENTAL feature. You also have to enable the
                   detector filter/filter mapping below to get JavaScript
                   detection working.
              </description>
              <param-name>org.apache.myfaces.DETECT_JAVASCRIPT</param-name>
              <param-value>false</param-value>
         </context-param>
         <context-param>
              <description>
                   If true, rendered HTML code will be formatted, so that it is
                   "human readable". i.e. additional line separators and
                   whitespace will be written, that do not influence the HTML
                   code. Default: "true"
              </description>
              <param-name>org.apache.myfaces.PRETTY_HTML</param-name>
              <param-value>true</param-value>
         </context-param>
         <context-param>
              <description>
                   If true, a javascript function will be rendered that is able
                   to restore the former vertical scroll on every request.
                   Convenient feature if you have pages with long lists and you
                   do not want the browser page to always jump to the top if
                   you trigger a link or button action that stays on the same
                   page. Default: "false"
              </description>
              <param-name>org.apache.myfaces.AUTO_SCROLL</param-name>
              <param-value>true</param-value>
         </context-param>
         <!-- Extensions Filter -->
         <filter>
              <filter-name>extensionsFilter</filter-name>
              <filter-class>
                   org.apache.myfaces.component.html.util.ExtensionsFilter
              </filter-class>
              <init-param>
                   <description>
                        Set the size limit for uploaded files. Format: 10 - 10
                        bytes 10k - 10 KB 10m - 10 MB 1g - 1 GB
                   </description>
                   <param-name>uploadMaxFileSize</param-name>
                   <param-value>100m</param-value>
              </init-param>
              <init-param>
                   <description>
                        Set the threshold size - files below this limit are
                        stored in memory, files above this limit are stored on
                        disk.
                        Format: 10 - 10 bytes 10k - 10 KB 10m - 10 MB 1g - 1 GB
                   </description>
                   <param-name>uploadThresholdSize</param-name>
                   <param-value>100k</param-value>
              </init-param>
         </filter>
         <!-- Filter Mappings -->
         <filter-mapping>
              <filter-name>extensionsFilter</filter-name>
              <url-pattern>*.jsf</url-pattern>
         </filter-mapping>
         <filter-mapping>
              <filter-name>extensionsFilter</filter-name>
              <url-pattern>/faces/*</url-pattern>
         </filter-mapping>
         <!-- Listener, that does all the startup work (configuration, init). -->
         <listener>
              <listener-class>
                   org.apache.myfaces.webapp.StartupServletContextListener
              </listener-class>
         </listener>
         <!-- Faces Servlet -->
         <servlet>
              <servlet-name>Faces Servlet</servlet-name>
              <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
              <load-on-startup>1</load-on-startup>
         </servlet>
         <!-- Jetspeed Servlet -->
         <servlet>
              <description>
                   MVC Servlet for Jetspeed Portlet Applications
              </description>
              <display-name>Jetspeed Container</display-name>
              <servlet-name>JetspeedContainer</servlet-name>
              <servlet-class>
                   org.apache.jetspeed.container.JetspeedContainerServlet
              </servlet-class>
              <init-param>
                   <param-name>contextName</param-name>
                   <param-value>conference-room</param-value>
              </init-param>
              <load-on-startup>0</load-on-startup>
         </servlet>
         <!-- servlet mapping -->
         <servlet-mapping>
              <servlet-name>Faces Servlet</servlet-name>
              <url-pattern>*.jsf</url-pattern>
         </servlet-mapping>
         <servlet-mapping>
              <servlet-name>JetspeedContainer</servlet-name>
              <url-pattern>/container/*</url-pattern>
         </servlet-mapping>
         <welcome-file-list>
              <welcome-file>index.html</welcome-file>
              <welcome-file>index.htm</welcome-file>
              <welcome-file>index.jsp</welcome-file>
              <welcome-file>default.html</welcome-file>
              <welcome-file>default.htm</welcome-file>
              <welcome-file>default.jsp</welcome-file>
         </welcome-file-list>
    </web-app>
    Thanks and regards,
    Gaurav Goel.

  • Create the object - not correct data in the file ?

    I have the text file, then I parse and create objects MyDocument (one row = one document). If row is corect then I create object MyDocument. But what I must do when row is not correct. The row can have 3 type of errors:
    1.Not correct length of row
    2.Not filled required fields in row
    3.Field are filled by not correct data
    Is a good to throw exception when I get one of this errors. Do I need to store this errors on separate class (MyObjectErrors extends Exception)?
    So when row is correct I create the object MyDocument. Otherwise I NOT create object MyDocument and throw exception. Is this a good solution?

    One question These 3 error you want together or what let me know i ll do that code n give you

  • "OS requirements not met" when installing CS5.5 on Windows 8

    I am trying to install the trial version of CS5.5 to my Surface Pro, running Windows 8 Professional 64-bit.
    Installation fails completely for all components.
    No Adobe products other than Flash Player and Reader have ever been installed on this computer before.
    I have no security software installed at all.
    Based on google results, I have already tried:
    - installing from safe mode
    - running the windows system file checker to make sure Windows Installer is working (it reported no problems)
    - settting user account control to the lowest setting
    Here is the error log:
    Exit Code: 7
    -------------------------------------- Summary --------------------------------------
    - 0 fatal error(s), 140 error(s), 207 warning(s)
    WARNING: DW066: OS requirements not met for {0D96CFE6-376D-44B8-808A-16F3BEB73263}
    WARNING: DW066: OS requirements not met for {7202D4A7-F7E6-4e7a-B77D-7B1C4E8B5CA6}
    WARNING: DW066: OS requirements not met for {43A1C48E-3E50-410e-951C-E17A66BBF824}
    WARNING: DW066: OS requirements not met for {3450d4c5-a82b-4428-a512-842ee1555a14}
    WARNING: DW066: OS requirements not met for {11C0657F-2BD4-4CBC-87F3-9455DC91886E}
    WARNING: DW066: OS requirements not met for {8F366029-8F3C-4400-BB65-7BFD1A58F200}
    WARNING: DW066: OS requirements not met for {B55FDCCB-8A45-4943-8D90-585C3490A032}
    WARNING: DW066: OS requirements not met for {4603E0C5-6880-4A4F-BCF8-DF1F6AE0E317}
    WARNING: DW066: OS requirements not met for {EB186BF2-0A84-40A2-B794-0326D3DF9973}
    WARNING: DW066: OS requirements not met for {0669F23C-1B69-41B4-A3ED-4F54A5986D66}
    WARNING: DW066: OS requirements not met for {6BC81374-1E33-4495-93E2-DD2B10D358EE}
    WARNING: DW066: OS requirements not met for {067E43CD-3E9C-44BA-89FA-EDE7461BC22B}
    WARNING: DW066: OS requirements not met for {C1302004-7A3C-467A-80AC-4D0C9F6982C1}
    WARNING: DW066: OS requirements not met for {7CAD45EF-24AD-4281-9236-7F8DDB0B9538}
    WARNING: DW066: OS requirements not met for {C2F8BD34-1692-40F9-BA1B-1CFB2B5FED3A}
    WARNING: DW066: OS requirements not met for {00AEBAF2-D950-467B-BD24-449BCA2A4424}
    WARNING: DW066: OS requirements not met for {FF5837B9-6F4D-1014-B2FA-C016F4A584FA}
    WARNING: DW066: OS requirements not met for {F37EA9EC-638F-4E61-BED4-BDB10461D73B}
    WARNING: DW066: OS requirements not met for {7745F18B-FD8A-4011-BE16-588900C503D0}
    WARNING: DW066: OS requirements not met for {32C78855-194D-4E66-9EB5-D6DC1C418D79}
    WARNING: DW066: OS requirements not met for {89823DB1-05CA-1016-BA4A-BE6A29E42461}
    WARNING: DW066: OS requirements not met for {7CF76BDA-73EA-4C46-A59D-FC3142D83E65}
    WARNING: DW066: OS requirements not met for {0A186736-9C62-48B2-B1DF-8A9C5CF7C997}
    WARNING: DW066: OS requirements not met for {4C08199E-0D93-4227-8325-F024E71CA7A1}
    WARNING: DW066: OS requirements not met for {BD3F3C6B-5F98-109B-A0CA-B0FAE4A7D983}
    WARNING: DW066: OS requirements not met for {301D39AF-43B1-445B-88CF-D78584200322}
    WARNING: DW066: OS requirements not met for {CC35904A-0197-4F06-BD70-9CE3DB24DBFD}
    WARNING: DW066: OS requirements not met for {4B51E596-6BB0-4244-9AB9-344AD5FA6726}
    WARNING: DW066: OS requirements not met for {CCB778B5-25B8-4E57-9F20-72B11B443EF9}
    WARNING: DW066: OS requirements not met for {07C64F28-6F4E-1014-A82C-D40EE8D79912}
    WARNING: DW066: OS requirements not met for {260BF844-6F4D-1014-A611-DFCB82217C38}
    WARNING: DW066: OS requirements not met for {47CE893F-A0FF-4094-AA16-5209AEA7C7E0}
    WARNING: DW066: OS requirements not met for {208DE3D5-541C-41B0-8595-7A608A6E4306}
    WARNING: DW066: OS requirements not met for {4A4F91EA-5951-4C5C-B911-027D802817EB}
    WARNING: DW066: OS requirements not met for {4883A813-2805-4FA8-A91C-073BA7B2667A}
    WARNING: DW066: OS requirements not met for {9F16123E-05FC-1016-91BC-C090234C0EE3}
    WARNING: DW066: OS requirements not met for {AC76BA86-1033-F400-7760-000000000005}
    WARNING: DW066: OS requirements not met for {B7091600-995D-44EC-9B67-0E2025FDA600}
    WARNING: DW066: OS requirements not met for {D5B1535A-FDFC-4B40-B2E2-21DA83D9CB57}
    WARNING: DW066: OS requirements not met for {AD60EB24-4CEE-4CA0-A6AA-526EAF41F2DB}
    WARNING: DW066: OS requirements not met for {650C9D09-D5BD-4532-8BEE-01DBC1DF5537}
    WARNING: DW066: OS requirements not met for {D57FC112-312E-4D70-860F-2DB8FB6858F0}
    WARNING: DW066: OS requirements not met for {5D2A85AB-7391-4EAC-AA61-D5D9C09E4F17}
    WARNING: DW066: OS requirements not met for {3D51982E-45C6-4B4B-9362-B356E1610821}
    WARNING: DW066: OS requirements not met for {0215A652-E081-4B09-9333-DC85AAB67FFA}
    WARNING: DW066: OS requirements not met for {35ED8892-98E5-488A-A23C-6DB842A46EA5}
    WARNING: DW066: OS requirements not met for {DD309051-FACF-4A5E-87F1-C57154BB3DE8}
    WARNING: DW066: OS requirements not met for {B32795C5-827C-4184-9A36-FF23AB3CDA30}
    WARNING: DW066: OS requirements not met for {D8CCCF4C-C227-427C-B4BE-736657D2AB7E}
    WARNING: DW066: OS requirements not met for {8DADF070-FE60-4899-8EF0-4242E7702F7D}
    WARNING: DW066: OS requirements not met for {1C9D6B02-8B92-4E40-8B22-37D8C95430F0}
    WARNING: DW066: OS requirements not met for {FB720658-01F4-4002-BB69-49E66CD82E30}
    WARNING: DW066: OS requirements not met for {BF093B6B-F94F-4D77-99C9-4C0F6B2F44B6}
    WARNING: DW066: OS requirements not met for {23767F5D-A80C-4264-B8EA-ED4085FC332A}
    WARNING: DW066: OS requirements not met for {DDBDE7B0-6FC4-40B1-B673-66EEE8CB60CF}
    WARNING: DW066: OS requirements not met for {E82097B9-A3B8-404A-9A92-AC16A8AC9576}
    WARNING: DW066: OS requirements not met for {C61B093E-259E-45D8-B9B6-24630A700398}
    WARNING: DW066: OS requirements not met for {08EF22BC-43B2-4B4E-BA12-52B18F418F38}
    WARNING: DW066: OS requirements not met for {EDE888ED-3BD7-4D8C-AB35-7E4C661A94D9}
    WARNING: DW066: OS requirements not met for {10355145-8A4C-47F3-994B-B9B81B4DABF5}
    WARNING: DW066: OS requirements not met for {F9F276DA-9EC6-492C-AF58-F27C5EC19D66}
    WARNING: DW066: OS requirements not met for {CE45CAE5-0B56-4C52-AE07-98A05027A049}
    WARNING: DW066: OS requirements not met for {FE35B66A-C8F1-4D62-B823-C2EE2C7DA702}
    WARNING: DW066: OS requirements not met for {D97AF04B-B70A-4862-BC25-31E6D9C4A529}
    WARNING: DW066: OS requirements not met for {970C9F3A-39C5-480B-BE51-7C70AB9F84DB}
    WARNING: DW066: OS requirements not met for {E348E466-429A-4FB0-AFCF-8306C16BBFF1}
    WARNING: DW066: OS requirements not met for {2EA9B52E-8613-41A0-9EEF-FF54AD4CC810}
    WARNING: DW066: OS requirements not met for {857CC5F0-040E-1016-A173-D55ADD80C260}
    WARNING: DW066: OS requirements not met for {B98CCEE8-0217-1016-B5BF-F06B878DAC9A}
    WARNING: DW066: OS requirements not met for {50509A36-0291-1016-9CCF-FC05E9E55550}
    ----------- Payload: {08D2E121-7F6A-43EB-97FD-629B44903403} Microsoft_VC90_CRT_x86 1.0.0.0 -----------
    ERROR: Install MSI payload failed with error: 1601 - The Windows Installer Service could not be accessed. This can occur if the Windows Installer is not correctly installed. Contact your support personnel for assistance.
    MSI Error message:
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    ERROR: DW050: The following payload errors were found during install:
    ERROR: DW050:  - Adobe ExtendScript Toolkit CS5.5: Install failed
    ERROR: DW050:  - Adobe Buzzword CS5.5: Install failed
    ERROR: DW050:  - Adobe Dreamweaver CS5.5: Failed due to Language Pack installation failure
    ERROR: DW050:  - Microsoft_VC90_ATL_x86: Install failed
    ERROR: DW050:  - Adobe Linguistics CS5 x64: Install failed
    ERROR: DW050:  - AIR for Apple iOS support (FB): Install failed
    ERROR: DW050:  - Digital Publishing: Failed due to Language Pack installation failure
    ERROR: DW050:  - Microsoft_VC90_CRT_x86: Install failed
    ERROR: DW050:  - Adobe Photoshop CS5.1 Core: Failed due to Language Pack installation failure
    ERROR: DW050:  - Adobe Premiere Pro CS5.5 Support: Install failed
    ERROR: DW050:  - Adobe Media Encoder CS5.5: Install failed
    ERROR: DW050:  - Microsoft_VC80_ATL_x86: Install failed
    ERROR: DW050:  - Adobe Photoshop CS5.1 Core_x64: Failed due to Language Pack installation failure
    ERROR: DW050:  - Recommended Common Fonts Installation x64: Install failed
    ERROR: DW050:  - AdobeColorNA CS5.5: Install failed
    ERROR: DW050:  - Suite Shared Configuration CS5.5: Install failed
    ERROR: DW050:  - AdobePDFL x64 CS5: Install failed
    ERROR: DW050:  - DynamiclinkSupport: Install failed
    ERROR: DW050:  - Adobe Fireworks CS5.1_AdobeFireworks11.1.0en_USLanguagePack: Install failed
    ERROR: DW050:  - Microsoft_VC80_MFCLOC_x86_x64: Install failed
    ERROR: DW050:  - IE Plugin CS5.1: Install failed
    ERROR: DW050:  - Adobe Illustrator CS5.1: Failed due to Language Pack installation failure
    ERROR: DW050:  - Adobe Digital Publishing Application Language Files_AdobeDigitalPublishingAppLang-en_US: Install failed
    ERROR: DW050:  - Adobe Flash CS5.5_AdobeMobileExtension_Flash11.5-en_US: Install failed
    ERROR: DW050:  - Adobe XMP Panels CS5: Install failed
    ERROR: DW050:  - Pixel Bender Toolkit: Install failed
    ERROR: DW050:  - Adobe WinSoft Linguistics Plugin CS5.5: Install failed
    ERROR: DW050:  - Photoshop Camera Raw (64 bit)_6.3_AdobeCameraRaw6.0All-x64: Install failed
    ERROR: DW050:  - Adobe Hunspell Linguistics Plugin CS5.5: Install failed
    ERROR: DW050:  - CSXS Story Extension: Install failed
    ERROR: DW050:  - Adobe Dreamweaver CS5.5_AdobeDreamweaver11.5en_USLanguagePack: Install failed
    ERROR: DW050:  - Photoshop Camera Raw: Install failed
    ERROR: DW050:  - Adobe OnLocation CS5.1_AdobeOnLocation5.1en_USLanguagePack: Install failed
    ERROR: DW050:  - Camera Profiles Installer: Install failed
    ERROR: DW050:  - Adobe Extension Manager CS5.5: Install failed
    ERROR: DW050:  - Adobe XMP Panels CS5_3.1_AdobeXMPPanelsAll: Install failed
    ERROR: DW050:  - Adobe Flash Player 10 Plugin: Install failed
    ERROR: DW050:  - AdobeColorCommonSetRGB: Install failed
    ERROR: DW050:  - Microsoft_VC80_CRT_x86_x64: Install failed
    ERROR: DW050:  - AdobeColorPhotoshop CS5.5: Install failed
    ERROR: DW050:  - Firefox Plugin CS5.1: Install failed
    ERROR: DW050:  - Adobe Linguistics CS5.5: Install failed
    ERROR: DW050:  - Adobe Device Central CS5.5: Failed due to Language Pack installation failure
    ERROR: DW050:  - Office Plugin CS5.1: Install failed
    ERROR: DW050:  - Adobe Mini Bridge CS5.1: Install failed
    ERROR: DW050:  - AdobeMotionPicture CS5.5: Install failed
    ERROR: DW050:  - Adobe SING CS5: Install failed
    ERROR: DW050:  - Adobe InDesign CS5.5 Common Language Files_AdobeInDesign7xCommonLang-en_US: Install failed
    ERROR: DW050:  - AdobeColorCommonSetCMYK: Install failed
    ERROR: DW050:  - Adobe OnLocation CS5.1: Failed due to Language Pack installation failure
    ERROR: DW050:  - Adobe InDesign CS5.5 Application Feature Set Files: Install failed
    ERROR: DW050:  - Photoshop Camera Raw (64 bit): Install failed
    ERROR: DW050:  - Microsoft_VC90_MFC_x86: Install failed
    ERROR: DW050:  - Adobe Flash Builder 4.5: Install failed
    ERROR: DW050:  - Adobe Media Encoder CS5.5 X64: Install failed
    ERROR: DW050:  - AIR for APPLE IOS Support (FP): Install failed
    ERROR: DW050:  - Adobe Linguistics CS5: Install failed
    ERROR: DW050:  - PDF Settings CS5: Install failed
    ERROR: DW050:  - AdobeTypeSupport CS5: Install failed
    ERROR: DW050:  - Adobe CSXS Infrastructure CS5.5: Install failed
    ERROR: DW050:  - Adobe Flash Player 10 ActiveX: Install failed
    ERROR: DW050:  - Adobe InDesign CS5.5 Common Base Files: Install failed
    ERROR: DW050:  - Adobe Flash Fonts1: Install failed
    ERROR: DW050:  - Adobe After Effects CS5.5 Support: Install failed
    ERROR: DW050:  - Adobe OnLocation CS5.1 Third Party Content Wrapper: Install failed
    ERROR: DW050:  - AdobeHelp: Install failed
    ERROR: DW050:  - Required Common Fonts Installation x64: Install failed
    ERROR: DW050:  - Microsoft_VC90_ATL_x86_x64: Install failed
    ERROR: DW050:  - Adobe InDesign CS5.5 Application Base Files: Failed due to Language Pack installation failure
    ERROR: DW050:  - Adobe InDesign CS5.5 Icon Handler: Install failed
    ERROR: DW050:  - Adobe Fireworks CS5.1: Failed due to Language Pack installation failure
    ERROR: DW050:  - Adobe Story: Install failed
    ERROR: DW050:  - Microsoft_VC90_MFCLOC_x86_x64: Install failed
    ERROR: DW050:  - Microsoft_VC80_ATL_x86_x64: Install failed
    ERROR: DW050:  - Microsoft_VC90_CRT_x86_x64: Install failed
    ERROR: DW050:  - Microsoft_VC80_CRT_x86: Install failed
    ERROR: DW050:  - Adobe Device Central CS5.5_DeviceCentral3.5LP-en_US: Install failed
    ERROR: DW050:  - Adobe Flash CS5.5_AdobeFlash11.5-en_USLanguagePack: Install failed
    ERROR: DW050:  - AdobeCMaps x64 CS5: Install failed
    ERROR: DW050:  - AdobeTypeSupport x64 CS5: Install failed
    ERROR: DW050:  - Adobe InDesign CS5.5 Icon Handler x64: Install failed
    ERROR: DW050:  - Camera Profiles Installer_6.3_AdobeCameraRawProfile6.0All: Install failed
    ERROR: DW050:  - Microsoft_VC90_MFC_x86_x64: Install failed
    ERROR: DW050:  - AdobeColorJA CS5.5: Install failed
    ERROR: DW050:  - AdobeOutputModule: Install failed
    ERROR: DW050:  - Acrobat Professional: Install failed
    ERROR: DW050:  - Adobe Audition_AdobeAudition4en_USLanguagePack: Install failed
    ERROR: DW050:  - Adobe WinSoft Linguistics Plugin CS5: Install failed
    ERROR: DW050:  - Adobe Contribute CS5.1_AdobeContribute6.1en_USLanguagePack: Install failed
    ERROR: DW050:  - Adobe WinSoft Linguistics Plugin CS5 x64: Install failed
    ERROR: DW050:  - Microsoft_VC90_MFCLOC_x86: Install failed
    ERROR: DW050:  - AIR for APPLE IOS Support Wrapper: Install failed
    ERROR: DW050:  - Adobe InDesign CS5.5 Application Language Files_AdobeInDesign7xAppLang-en_US: Install failed
    ERROR: DW050:  - AdobePDFL CS5: Install failed
    ERROR: DW050:  - AdobeCMaps CS5: Install failed
    ERROR: DW050:  - Adobe Toolhints CS5.5: Install failed
    ERROR: DW050:  - Adobe CSXS Extensions CS5.5: Install failed
    ERROR: DW050:  - Adobe Encore CS5.1_AdobeEncore5.1en_USLanguagePack: Install failed
    ERROR: DW050:  - Adobe After Effects CS5.5 Presets: Install failed
    ERROR: DW050:  - Adobe After Effects CS5.5 Third Party Content Wrapper: Install failed
    ERROR: DW050:  - Adobe After Effects CS5.5_AdobeAfterEffects10.5en_USLanguagePack: Install failed
    ERROR: DW050:  - Microsoft_VC80_MFC_x86_x64: Install failed
    ERROR: DW050:  - ph: Install failed
    ERROR: DW050:  - Adobe ReviewPanel CS5.5: Install failed
    ERROR: DW050:  - Required Common Fonts Installation: Install failed
    ERROR: DW050:  - AdobeColorVideoProfilesAE CS5.5: Install failed
    ERROR: DW050:  - AmericanEnglishSpeechAnalysisModels: Install failed
    ERROR: DW050:  - Adobe Premiere Pro CS5.5: Failed due to Language Pack installation failure
    ERROR: DW050:  - Adobe Player for Embedding x64 3.1: Install failed
    ERROR: DW050:  - Adobe SwitchBoard 2.0: Install failed
    ERROR: DW050:  - HIL Help Search: Install failed
    ERROR: DW050:  - Microsoft_VC80_MFC_x86: Install failed
    ERROR: DW050:  - Adobe Player for Embedding 3.1: Install failed
    ERROR: DW050:  - CS5.5 Master Collection: Install failed
    ERROR: DW050:  - Adobe Audition: Failed due to Language Pack installation failure
    ERROR: DW050:  - Adobe Flash Catalyst CS5.5: Install failed
    ERROR: DW050:  - Microsoft_VC80_MFCLOC_x86: Install failed
    ERROR: DW050:  - Adobe Flash CS5.5: Failed due to Language Pack installation failure
    ERROR: DW050:  - SiteCatalyst NetAverages CS5.5: Install failed
    ERROR: DW050:  - Adobe Contribute CS5.1: Failed due to Language Pack installation failure
    ERROR: DW050:  - Adobe Illustrator CS5.1_AdobeIllustrator15_1en_USLanguagePack: Install failed
    ERROR: DW050:  - Adobe InDesign CS5.5 Application Base Files2: Install failed
    ERROR: DW050:  - Adobe Flash CS5.5_AdobeMobileExtension_Flash11.5-mul: Install failed
    ERROR: DW050:  - Recommended Common Fonts Installation: Install failed
    ERROR: DW050:  - AdobeJRE: Install failed
    ERROR: DW050:  - Adobe Player for Embedding 3.2: Install failed
    ERROR: DW050:  - Adobe After Effects CS5.5: Failed due to Language Pack installation failure
    ERROR: DW050:  - AdobeColorVideoProfilesCS CS5.5: Install failed
    ERROR: DW050:  - Adobe Photoshop CS5.1 English Language Pack_AdobePhotoshop12-en_US: Install failed
    ERROR: DW050:  - Adobe Bridge CS5.1: Install failed
    ERROR: DW050:  - Adobe Photoshop CS5.1 Support: Install failed
    ERROR: DW050:  - Adobe Dreamweaver Widget Browser: Install failed
    ERROR: DW050:  - Adobe Photoshop CS5.1 English Language Pack_x64_AdobePhotoshop12-en_US_x64: Install failed
    ERROR: DW050:  - Adobe Encore CS5.1: Failed due to Language Pack installation failure
    ERROR: DW050:  - Photoshop Camera Raw_6.3_AdobeCameraRaw6.0All: Install failed
    ERROR: DW050:  - Adobe Premiere Pro CS5.5_AdobePremierePro5.5en_USLanguagePack: Install failed
    ERROR: DW050:  - AdobeColorEU CS5.5: Install failed
    ERROR: DW050:  - Adobe Content Viewer: Install failed

    I am going to post my findings for anyone else experiencing similar issues.
    - The article Ned Murphy linked to above does not contain instructions for Windows 8.  The instructions for Windows 7 recommend running the command "sfc /scannow" on the command line.  However, the sfc /scannow does not work quite as well in Windows 8 as it does in Windows 7.  For me personally, it got to 100% complete within about ten minutes, and then stayed at 100% complete for several hours without actually finishing.  One could be forgiven for thinking that it had finished after sitting at 100% complete for two hours, and closing the command prompt window.  But don't do that.  After about four hours, the command finally finished running, and informed me that it was unable to repair the Windows Installer.
    - There is a different command in Windows 8 that repairs many of the same kind of system errors as sfc /scannnow, but through a different method.  This command is "dism /online /cleanup-image /restorehealth"  In my case it repaired the Windows Installer and allowed sfc /scannow to run correctly afterwards.
    - However, this didn't actually resolve the problem.
    - I finally got on a coworker's Windows XP computer which Photoshop had been successfully installed onto.  I copied and pasted his entire C:/Program Files/Adobe/ folder onto a flash drive, and then got back on my own Windows 8 computer and copied and pasted the entire folder from my flash drive into C:/Program Files (x86)/Adobe/ on my own computer's hard drive.  Just pasted the entire program folder, without installing it.
    - Astonishingly, that seems to have worked, even though the original install was to Windows XP.  I assume it would also work if it had been installed to Windows Vista or Windows 7.
    - The only major problem I have noticed so far is that Photoshop cannot detect my video card settings, and so enabling OpenGL drawing in the Performance tab of the program preferences causes it to crash.  This does not matter to me as I can simply disable OpenGL drawing (and the program does so automatically when it opens and displays a warning).

  • I'm trying to sync my iphone in IPhoto. I get this message "our MobileMe account information is not correct. The provided login or password is not valid." when I click on the "Open MobileMe Preferences" button, it doesn't take me there.  Help please.

    I'm trying to sync my iphone in IPhoto. I get this message "your MobileMe account information is not correct". "The provided login or password is not valid." when I click on the "Open MobileMe Preferences" button, it doesn't take me there.  Help please.

    Mobile me has been discontinued for over a year.  What system  and iPhoto versions are you running?
    How are you trying to sync?  With Photo Stream or thru iTunes?
    Do you have an iCloud preference pane in your System preferences?
    Do you meet the minimum requirements for iCloud and Photo Stream?
    iCloud: System requirements
    iCloud: Photo Stream FAQ
    OT

  • Total Score in Sum Total not correct

    We are using Captivate 4 and the Sum Total LMS.  Our course consists of 2 lessons which are not scored and an assessment which is scored.  The settings for the lessons are Slide Views Only so the lessons have the Topic Status Complete or Incomplete on the Sum Total LMS Learning Activity Progress Detail page, with the Score % blank.  The assessment also has Topic Status Complete or Incomplete, and also a Score % (80% required to pass).  The Topic Status and Score % values are correct for the lessons and the assessment, however the Total Score is not correct.  When the user completes the 2 lessons and the assessment with a score of 100%, the Total Score shows as only 33%.  So it seems that Sum Total is including the lessons in the Total Score, and calculating the Total Score by (100+0=0)/3 = 33%, i.e. assigning 0% to the lessons even though the Score % is blank for the lessons.
    Is there a way to have the Total Score be just for the assessment?  If the user scores 100% on the assessment we would like the Total Score to be 100%. 

    Hi,
          Can you make your question more clear, it is not clear what is you requirement exactly.
    '.Total stock not issued from gate in stock.' : Yuou mean to say GR made with 103 but 105 not done for that
    or  Total stock in store but not issued yet )  : there is no GI with any movemen type ??
    regards,
    zafar

  • BDLS conversion require manual corrections

    Hi, I am currently running BDLS in a system that is copied from BI Quality system. After the copy, I have run BDLS conversion for few source system connections. For the source system conversion from URD030 -> DV2CLNT030, I found that few tables require manual correction and ran BDLS on these tables as below, but still requires manual correction.
    =======================================================================================
    Log for conversion: URD030 -> DV2CLNT030 in system CND900 (initiator CND 900)
    05/23/2008 16:05:32
    < Table T000 was not relevant for conversion
    Table Name Field Name Number of Relevant Entries Number of Converted Entries
    /BIC/SYPRODHIER* LOGSYS 1 0 <<<<
    RSISOSMAP* LOGSYS 1 0 <<<<
    RSOSFIELDMAP* LOGSYS 1 0 <<<<
    Identifies Cross-Client Tables
    <<<< Error in field of table . Manual correction required.
    < SAPoffice No object reference exists -> No conversion
    < SAPoffice Object references that have been converted: 0
    Table buffer in server synchronized after conversion
    =======================================================================================
    SQL Level Updation gives the following errors.
    I tried to update the table manually from database level, but couldn't. Can you give some suggestions.
    =======================================================================================
    SQL> select count(*) from SAPBIW."/BIC/SYPRODHIER" where LOGSYS='URD030';
    COUNT(*)
    4047
    SQL> update SAPBIW."/BIC/SYPRODHIER" set LOGSYS='DV2CLNT030' where LOGSYS='URD030';
    update SAPBIW."/BIC/SYPRODHIER" set LOGSYS='DV2CLNT030' where LOGSYS='URD030'
    ERROR at line 1:
    ORA-00001: unique constraint (SAPBIW./BIC/SYPRODHIER~0) violated
    =======================================================================================
    Can somebody give me some suggestions on this?
    Regards,
    Giridhara Tadikonda

    I am getting a similar error.  Please assit.

  • Reduced confirmation quantity not correct in ME22N/ME23N

    Hi Guys,
    We are working with confirmations for our purchase orders.
    The problem is this:
    After GR (+ corrections like 102 movements), the reduced quantity for the confirmation is correctly updated in the EKES-table.
    Also, the stock & requirements list shows it correctly. Everything looks fine there.
    However, when i look at that confirmation in ME22N or ME23N (confirmation tab), the reduced quanity visible is entirely different than visible in EKES and MD04 (and not correct).
    Any ideas?
    Thanks,
    Paul

    This problem has been solved by implementing OSS Note 1343257

  • CS6 Production Pro W8 install fail "OS requirements not met"

    Hello. Have failed install of CS6 Production Premium.
    Currently have CS-4 Master, LR-3, LR-4 installed on this machine. Because of Adobe nightmare install issues I have had on W8 with CS4 though have SN for CS6-PP have attempted install as trail.
    The install failed, in the majority of cases, because "OS requirements not met", and in others as installer claimed it cannot find files.
    Given my system hardware, and that an running W8 with the latest patches it is inconceivable to me that "requirements are not met".
    Here is relevant system info:
    OS: Windows 8 Professional (x64) (build 9200)
    CPU: 3.60 gigahertz Intel Core i7-3820
    MB: ASUSTeK COMPUTER INC. SABERTOOTH X79
    BIOS: American Megatrends Inc. 3305 12/25/2012
    RAM: 32710 Megabytes Usable Installed Memory
    Hard Drive Capacity: 10321.23 Gigabyte
    Hard Drive Free Space: 5881.41 Gigabytes
    GPU: NVIDIA GeForce GTX 660
    Main Display: DELL U3011 (29.7"vis, s/n XX-0PH5NY-XXXXX-0BA-275L
    I have the error log of the failed install (a few excerpts below). I also have the Belarc system profile summary available.
    Tried to solve this on "Chat". but for the past 20 minutes have been reading "All representatives are actively assisting other customers. Your estimated wait time is 0 minute(s) and 1 second(s) or longer. Thank you for your patience." in the chat window.
    ========= some excerpts from failed install log
    WARNING: DW066: OS requirements not met for {CC006FD6-00EF-46FC-ACA0-7A28EFF44D20} Adobe Media Encoder CS6 6.0.0.0
    WARNING: DW066: OS requirements not met for {C7B1C1B3-368D-4C32-A818-83F1554EB398} AdobeColorCommonSetRGB CS6 4.0.0.0
    WARNING: DW066: OS requirements not met for {0C4E7429-E920-4125-980E-029A87AE0A4D} AdobeColorCommonSetCMYK CS6 4.0.0.0
    WARNING: DW066: OS requirements not met for {51C77DC1-5C75-4491-8645-A17CC33F5A36} AdobeColorEU CS6 4.0.0.0
    WARNING: DW066: OS requirements not met for {26F763C9-076F-473D-9A0E-4050C973737C} AdobeColorJA CS6 4.0.0.0
    WARNING: DF054: Unable to read Adobe file version for file path 'C:\Program Files (x86)\Common Files\Adobe\Color\Profiles\Recommended\USWebCoatedSWOP.ERROR: DF012: Unable to find file(Seq 16)
    ERROR: DF024: Unable to preserve original file at "C:\Program Files (x86)\Common Files\Adobe\Color\Profiles\Recommended\USWebCoatedSWOP.icc" Error ERROR: DW063: Command ARKDeleteFileCommand failed.(Seq 16)
    I think that the below may be a summary of the failed installs
    ERROR: DW050: The following payload errors were found during install:
    ERROR: DW050: - AdobeColorCommonSetCMYK CS6: Install failed
    ERROR: DW050: - AdobeIdeaPluginCS6 x64: Install failed
    ERROR: DW050: - Adobe Illustrator CS6 Core: Failed due to Language Pack installation failure
    ERROR: DW050: - Adobe NPS Panel: Install failed
    ERROR: DW050: - Adobe Illustrator CS6 Core_AdobeIllustrator16en_USLanguagePack: Install failed
    ERROR: DW050: - Adobe Illustrator CS6 Core (64 Bit)_AdobeIllustrator16en_USLanguagePack_x64: Install failed
    ERROR: DW050: - Adobe Illustrator CS6 Core (64 Bit): Failed due to Language Pack installation failure
    ERROR: DW050: - AdobeIdeaPluginCS6: Install failed
    ERROR: DW050: - Adobe Illustrator CS6 Support32: Install failed
    ERROR: DW050: - Adobe Illustrator CS6 Support: Install failed

    Thanks, However, did not have good luck with the Adobe Cleaner Tool with CS4 install last month (am bringing a new computer to life).
    Had the same odd color-profile problems (and others)  with CS4 install. First tried the adobe suggested remove all profiles, then tried the Adobe Support Advisor,  etc etc. Eventually gave up and ran the suggested ACT - this did allow for CS4 install to succeed (except for Flash).
    However, though had chosen only CS4 clean, the ACT wiped out lightroom-3 and in addition screwed with other parts of the registry so that i had to reinstall several programs (for example Launchy) and it also wiped out everything in the create new docs reg key except for Adobe products - fortunately had backed up the reg and so was simply able to export/import to get these back (though without the adobe doc creation context menu entries!)
    I have NEVER had an Adobe "Creative Suite" product install without complication - which is why I went with the trial version, as in the past have had to call Adobe because of "too many" (but all failed) installs. One time ... well no one really wants to hear about how Adobe was moving its support center, and I could not get through, and had a deadline.
    Looking through the log ii see that several failed installs were of 32-bit components. As the installer correctly id'd this as a 64-bit OS (and installed BOTH the 64 & 32-bit versions of PS) perhaps this is not important (so, why then did the installer attempt to install them??)
    What worries me most is the first line of the error file "WARNING: DW066: OS requirements not met for {CC006FD6-00EF-46FC-ACA0-7A28EFF44D20} Adobe Media Encoder CS6 6.0.0.0" as I have had problems with the AME before. Notably, after an update to CS4 (XPP) although the AME would load - it would not actually ENCODE anything for output but just sit there unresponsive. One wonders what "OS requirements" W8 Pro-64 does not meet.
    Really, after all this time, and given how expensive the applications are one would think that Adobe could come up with an installer which works better than this.
    So - again - thank you. Have poked around a bit, and as PS and PP both launch, perhaps they will work. Have not yet had the time to try encoding from CS6 - if I have problems, I will be back.
    Thanks

  • Requirements not fulfilled for EK01

    Hi
    I'm trying to invoice some travel expenses (costs) in DP90 and i'm getting a message 'Requirements are not fulfilled for condition EK01' can anyone help.......
    Thanks
    Sara

    Refer & Check SAP Note 30903 - V1215: Requirements not fulfilled
    If a condition is entered manually and its requirement is not fulfilled, error message V1215 appears: Requirements are not fulfilled for condition Example: Inserting a condition type manually which is not used during automatic pricing due to the requirement not being fulfilled.
    Cause and prerequisites
    Change in function PRICING_CHECK (LV61AU08): * Bedingungen prüfen
    IF KOMT1-KOBED NE 0 AND INCL_KONDITIONEN NE NO.
    BEDINGUNG_PRUEFEN-NR = KOMT1-KOBED.
    PERFORM (BEDINGUNG_PRUEFEN) IN PROGRAM SAPLV61A.
    IF SY-SUBRC NE 0.
    MESSAGE E215 WITH KOMT1-KSCHL RAISING CONDITION.    "<-- Reason
    ENDIF.
    Solution
    Workaround solution: Since it mostly concerns conditions to which an access sequence is assigned but which is still to be entered manually, you should create an identical condition (apart from the name) which is only to be maintained manually and does not have this requirement. The source code should not be modified for reasons of consistency.
    OR
    Refer & Check: SAP Note 102060 - Exclusion when changing conditions manually
    Symptom
    If an exclusion indicator is set for a condition with a condition record and this indicator is called in a requirement assigned to it, the following procedure can cause the condition to exclude itself so that as a result of the error message no further processing is possible: After you manually change the condition affected on the condition screen, you carry out a new pricing and afterwards you change the condition again manually.
    Cause and prerequisites
    Field KOMP-KZNEP is not initialized correctly in function module PRICING_CHECK.
    Solution
    The error is corrected in Release 4.5A, an advance correction is attached.
    OR
    Refer & Check: SAP Note 668362 - Expected customer price /value with IDoc
    Symptom
    When you create a sales order via IDoc, the expected customer price or customer value can be assigned in segment E1J3P01. For this, condition types JED1 or JED2 are used. These condition types are set as dimension-dependent conditions by default (T685A-J_3ASZCO) and are thus created on schedule line level.
    If you change this setting in Customizing, these condition types are created on item level (see Note 191742). Now, if the price or the value have different values within one item in entry segment E1J3P01, it is not possible to create this condition on item level. The system generates error message V1215 'Requirements are not fulfilled for condition JED1/2'.
    Reason and Prerequisites
    The system behaves correctly. In this case, condition JED1 or JED2 would have to be created explicitly for the respective schedule lines because different values are assigned in entry segment E1J3P01. However, as Customizing was changed for these condition types, this cannot occur. Error message V1215 displayed in this case is, however, incorrect.
    Solution
    After the implementation of the advance correction, the system does not display error message /AFS/IDOC021 'Item condition JED1/2 for nnn is not identical in all schedule lines'.
    Hope it will solve your requirement.
    Thanks & Regards
    JP
    Edited by: J Prakash on May 20, 2010 9:23 AM

  • I tried to register to the facetime and  imesseage in the IPAD2 after upgrade to IOS6 but telling me that apple ID is not correct but iam sure that  my Appple ID is correct please help me

    I tried to register to the facetime and  imesseage in the IPAD2 after upgrade to IOS6 but telling me that apple ID is not correct but iam sure that  my Appple ID is correct please help me

    sckofusernames77 wrote:
    but it doesn't ask you if you have one or say that you won't be able to log on without one. 
    Well, it does say on http://www.apple.com/icloud/setup/pc.html in step 1: "To enable iCloud on your Windows PC (Windows 7 or 8 required), first set up iCloud on your other devices, then install the iCloud Control Panel for Windows.
    If you're trying to back up your device to iCloud, that doesn't have anything to do with your computer.  You back up to iCloud over wifi.  All you do is go to Settings>iCloud, sign in with your Apple ID to create your account, scroll down and tap Storage & Backup, then turn on iCloud Backup.  You can then tap Back Up Now at the bottom to start the back up manually, or lock the screen and connect it to your charger and it will back up automatically every day.
    Enabling the iCloud control panel on your PC only allows you to sync your iCloud data with your PC, not to back up your device to iCloud.

  • Aperture will not open library - permissions not correct -- but they are

    How do I get Aperture to open a library when I get an error message saying the permissions are not correct, but the permissions are correct, and other libraries open fine?
    I was using Aperture current version with a library on an external drive connected via airport extreme. I imported about 15 images to an existing project in that library and was editing the images when Aperture closed suddenly. When I try to reopen the same library I get an error message that says Aperture does not have access to that library because the permissions are not correct. But the permissions are set to everyone read write. Aperture opens other libraries on the same drive with the same permission setting.
    1. I ran disk utility repair permissions -- it says it fixed permissions on my laptop internal drive, but disk utility does not recognize the external drive so apparently it did nothing on that drive. Same error message on that library.
    2. I deleted user name >> Library >> Preferences >> com.apple.Aperture.plist and tried opening the library again. Same error message.
    3. I tried rebuilding the library using control command Aperture. Same error message.
    4. I used "show package contents" on that library and moved the project I had been working on when Aperture crashed to another drive and created a new library and imported the project successfully. Works.
    I read through existing topics and found suggestions like 1-4 but none work for me.
    I would be grateful for any help!
    Thanks.

    Please tell me you aren't trying to do this wirelessly!?!
    If you're wired to the Airport Extreme, that's better, but forget about running a remote Aperture library on a wireless connection! Even wireless 802.11n isn't fast enough, though I'm sure someone will argue that.
    Still, the Airport Extreme only has a USB interface, which is painfully slow! Firewire 800 is supported on all the new MacBook Pros and on the 17" "gen1" MacBook Pros. I'd highly recommend a FireWire 800 external hard drive or even a eSATA interface if you're running Aperture libraries remotely!!
    Depending on your total storage needs, just replace your internal MacBook Pro's hard drive. I've replaced a few in the past couple of weeks in some MacBook Pros to the 320GB WD Scorpio drive. Also buy a cheap (~$20) external USB enclosure for your old hard drive to repurpose your old internal drive and aid the restoration of your data. Next install the drives and use Migration Assistant to restore your data to precisely where you were before the hard drive upgrade. Pretty easy except for the actual install of the hard drive in the MacBook Pro, which can be tricky and requires special Torx tools; certainly more complicated than the standard MacBooks. Unless you know what you are doing here, pay someone skilled to do this for you.
    Seriously, I'm sure part of your problem is the lousy transfer speeds for Aperture trying to read data, causing data corruption, especially when you force quit so often.

  • Error in phase: CHECK_REQUIREMENTS?

    Hi,
    I'm trying to loading a   BI_CONT 703 Installation: Meta-Commandfile (Delta Task) ( SAPKIIBH ) in SAINT but the system give me Error in phase: CHECK_REQUIREMENTS
    Reason for error: TP_CANNOT_CONNECT_SYSTEM
    Return code: 0208
    Can some one help me
    Babu

    Hi,
    Are you using latest tp/R3trans version ?
        Please check the TPPARAM file if the sapevtpath and transdir
    variable has been set correctly.
    It would usually be something like :
    <SID>/sapevtpath          = /usr/sap/<SID>/SYS/exe/run/sapevt
    TRANSDIR = /usr/sap/trans
    cheers,
    Vincent

Maybe you are looking for

  • What do I need to open a document ending in " .pub"

    What do I need to open a .pub document?  Thanks, Jane

  • MB Pro 08 power up click at DVD, HD

    Strange situation--Leopard with Firefox 5 all updates. Firefox has continually had issues with a dozen tabs open, where there will be spinning ball and lots of page file (VM) thrashing, up to 4 GB or more in a session. Often Firefox would hang on qui

  • Webforms - data handling and storage

    Hello, I would like to know what is the best recommended practice / best apps methodology for the following scenario : A Custom web form with options to enter data, add attachments and submit. On submission , the workflow gets triggered, followed by

  • How do I reset a sign in for desktop CC app?

    My log in info is correct and the people on a chat are SO FREAKING STUPID.  They said I need to reset my sign in on the adobe cc desktop app but wouldn't explain how to do it. Something with the run command and I could never get the jerk to go any fu

  • Timestamp in Messenger Express Received Column

    Hi, Does anyone know how to change the date/timestamp in the message list in the Messenger Express Received column from 24 hour format to 12 hour format? So instead of      "16:23" , it would say "4:33 pm"... Many thanks...