Existing DB Mapping Error

I'm now trying to map a class with an existing db table. Firstly, here is
my package.jdo
<?xml version="1.0"?>
<jdo>
     <package name="test">
          <class name="Testclass">
               <extension vendor-name="kodo" key="table" value="test_table"/>
               <extension vendor-name="kodo" key="lock-column" value="none"/>
               <extension vendor-name="kodo" key="pk-column" value="test_id"/>
               <extension vendor-name="kodo" key="class-column" value="none"/>
               <field name="testField">
                    <extension vendor-name="kodo" key="data-column" value="test_field"/>
               </field>
          </class>
     </package>
</jdo>
And this is the error that I get.
javax.jdo.JDOUserException: No database mapping was found for type "class
test.Testclass"; all persistent types must be registered in the database;
this is done automatically through the SchemaTool.
     at
com.solarmetric.kodo.impl.jdbc.runtime.JDBCStoreManager.getClassMapping(JDBCStoreManager.java:674)
     at
com.solarmetric.kodo.impl.jdbc.runtime.JDBCExpressionFactory.(JDBCExpressionFactory.java:49)
     at
com.solarmetric.kodo.impl.jdbc.runtime.JDBCQuery.getExpressionFactory(JDBCQuery.java:178)
Ideas?

Hi,
I think we're getting somewhere now:)
It appears to be running the query (unsuccessfully). Here is my data
test_column_a test_column_b test_column_c
1 andrew 12
2 row2 33
This is my query.
public Collection getTests(String sFilter, PersistenceManager aPM) {
          Extent anExtent = aPM.getExtent(Test.class, true);
          Query aQry = aPM.newQuery(Test.class, anExtent, sFilter);
          Collection aTestList = (Collection) aQry.execute();
          System.out.print("The number of test items is: ");
          System.out.println(aTestList.size());
          return aTestList;
I call this via:
Test aTest = new Test();
aTest.getTests("", JDOFactory.getPersistenceManager());
The logging in the getTests() method says the number of items in the
collection returned from the query is 0. (I'm expecting 2).
I've also passed null as the filter when creating the newQuery().
So I'm getting close...
Patrick Linskey wrote:
[email protected] (Andrew) writes:
I'm 99% certain they are iTestColumnA, B and C.
iTestColumnA is the primary key, and my xml file looks exactly like the
first one you've
listed. I initially didn't have the iTestColumnA in my class file (I think
I read in the
documents that it shouldn't be), but I got an error when running the
enhancer so I put
it back in.
Looking at the second xml listing, I've tried the same type of thing
there, and I got an
error with that as well. I will try these things again tomorrow though,
and let you know
the results. Oh, one point I just noticed is that I haven't mentioned an
identity type!
I've looked through the documents and didn't find how this was done, but I
see it now in
your listing, perhaps that will help solve the problems.
All the primary keys are handled by me, so unique generation etc is fine
(we're using
oracle and I dont' know the details, but as long as I know the difference
it will be
handled).
Thanks for your help, I'll let you know how I go tomorrow.
Andrew
BTW, note that my XML for application identity was incorrect. I forgot
to specify an app id oid class. Something like this would probably be
better:
<?xml version="1.0"?>
<jdo>
<package name="test">
<class name="Testclass" identity-type="application"objectid-class="TestKey">
<extension vendor-name="kodo" key="table" value="TEST"/>
<extension vendor-name="kodo" key="lock-column" value="none"/>
Note that we provide a tool to simplify the process of generating
application id keys. Run 'java
com.solarmetric.kodo.tools.appid.ApplicationIDTool' on your .jdo files
to generate template app id classes.
-Patrick>>
Patrick Linskey wrote:
Andrew,
Based on the error that you are seeing and on your class, I bet that the
fields are actually 'iTestA', 'sTestB', and 'iTestC'.
Is 'iTestA' the primary key field? Also, did you specify application
identity or data store identity in your XML metadata?
I'm guessing that your XML should look like one of the two following
examples. The first uses datastore identity; the second application
identity.
In the first case, I have removed the iTestA field. This field
should also be removed from your class file. This is because I'm
guessing that the test_column_a column is the primary key column, and
when using data store identity, you cannot map the pk to a field in your
class.
<?xml version="1.0"?>
<jdo>
<package name="test">
<class name="Testclass" identity-type="datastore">
<extension vendor-name="kodo" key="table" value="TEST"/>
<extension vendor-name="kodo" key="lock-column" value="none"/>
<extension vendor-name="kodo" key="pk-column" value="test_column_a"/>
<extension vendor-name="kodo" key="class-column" value="none"/>
<field name="sTestB">
<extension vendor-name="kodo" key="data-column"
value="test_column_b"/>
</field>
<field name="iTestC">
<extension vendor-name="kodo" key="data-column"value="test_column_c"/>
</field>
</class>
</package>
</jdo>
In the second case, the iTestA field is in both the Java class and the
metadata. It is your responsibility to ensure that this field be given a
unique id, as it is the primary key, and this configuration uses
application-controlled identity.
<?xml version="1.0"?>
<jdo>
<package name="test">
<class name="Testclass" identity-type="application">
<extension vendor-name="kodo" key="table" value="TEST"/>
<extension vendor-name="kodo" key="lock-column" value="none"/>
<extension vendor-name="kodo" key="class-column" value="none"/>
<field name="iTestA" primary-key="true">
<extension vendor-name="kodo" key="data-column"
value="test_column_a"/>
</field>
<field name="sTestB">
<extension vendor-name="kodo" key="data-column"value="test_column_b"/>
</field>
<field name="iTestC">
<extension vendor-name="kodo" key="data-column"value="test_column_c"/>
</field>
</class>
</package>
</jdo>
-Patrick
[email protected] (Andrew) writes:
Hi, Something like this (I'm at home now, but this is pretty close):
public class Test {
public Test() {
super();
// This bit isn't exact, but just imagine it's the tutorial
example,
no
//restrictions.
public Collection getTestList(String sFilter, PersistenceManager
pm) {
// Copied out of the tutorial....
Extent e = pm.getExtent(Test.class, sFilter);
Collection aTestList = aQry.execute();
return aTestList;
private int iTestColumnA = 0;
private String sTestColumnB = null;
private int iTestColumnC = 0;
Patrick Linskey wrote:
[email protected] (Andrew) writes:
I'm just working with a small test table at the moment with 1
primary
key
column and 2 other columns. When the JDO tries to access the
database,
this is an error I get.
javax.jdo.JDODataStoreException: [SQL=SELECT t0.test_column_a,t0.ITESTAX,> > > > > > t0.test_column_c, t0.test_column_b FROM TEST t0 ORA-00904: invalidcolumn
name
Now, I'm not sure where this ITESTAX column is coming from??
Andrew,
What does your test class look like?
-Patrick
Patrick Linskey [email protected]
SolarMetric Inc. http://www.solarmetric.com
Patrick Linskey [email protected]
SolarMetric Inc. http://www.solarmetric.com
Patrick Linskey [email protected]
SolarMetric Inc. http://www.solarmetric.com

Similar Messages

  • Mapping error in PI 7.1

    Hi All,
    When i am trying to create a new mapping or coyping the existing mapping(which is already activated) , i am not able to activate the mapping . I am getting the following error :
    Source text of object Message Mapping: new |
    urn:abc:MessageOut has syntax errors:  Source code has syntax error:
    Source strcuture and everything is perfect as i had created previous mapping using the same source structure.
    Please advice as to what might be the issue here and what is the solution.
    Regards
    Vinay P.

    In each and every mapping which is already avialble in IR  and the new ones that i am trying to create ...i am getting the followin exception throughout if press F7 in the mapping ...as a result u cant actiavte any changes in the existing mapping nor in the new mapping
    Error:
    Source text of object Message Mapping:
    Mapping name| urn:abc:namespace:SI_Interface  has syntax errors: Source code has syntax error:
    Regards
    Vinay P.

  • Mapping Error- In IDoc to File scenario

    Hi Experts,
    Got the Mapping error for one interface (IDoc to file). After comparing with successful message found that the field value (TDLINE) is not availbale in first segment (E1EDT10) in idoc for this failed one.
    Mapping is :
    TDLINE -- Exists --- Creatif --- Receiver field(in the file)
    But here due to the the empty value in first segment the message is failed in XI system, next segment values is not trasmitted to the recever end(maping is the same above). To overcome this issue please suggest the suitable mapping design in IR.
    Regards
    Mahesh

    Hi,
    After your CreateIf, use a "IfWithoutElse" by selecting the properties "Keep SUPPRESS Values". To do that, do a right click on IfWithoutElse, choose "Properties".
    With this option, you will keep the fact that you have nothing in the source, and so the target context will have a "SUPPRESS" line.  I have not THE solution, so do your own test.
    If it's not enough, see also about the "mapWithDefault" (but that depends of your real rule).
    Regards.
    Mickael

  • Retrive message mapping error from java class

    Hi,
    I'm trying to create a scenario that if exist an error in the message mapping step this error will be inserted in a Ztable. I'm thinking in to call to the message mapping from a java class to catch the exception and this java class will be used in the interface mapping.
    Is it possible? If yes, How to call the message mapping from java code?
    Exists other possible solution?
    I need to do it because we want store all mapping errors in a Ztable. (Customer requeriment)
    Thanks, in advance
    Jose Manuel

    you can throw generic exceptions from the message mapping like this - /people/michal.krawczyk2/blog/2007/04/26/xipi-throwing-generic-exceptions-from-any-type-of-mapping
    you can then decide how to handle these exceptions

  • Sales Document Mapping Error

    Tcode SMW01 in SAP CRM
    Bdoc Error
    Bdoc State: E08
    Bdoc Description: Mapping error
    Bdoc Type: BUS_TRANS_MSG
    Bdoc Detail Error Description: Business transaction type ZZZZ does not exist
    The ZZZZ is a quotation transaction type maintained in ECC. But we donu2019t want this replicated in CRM, reason why ZZZZ is not maintained in CRM. The queues in SMQ2 is building-up with these error (R3AD_SALESD* with SYSFAIL status), is there a way to block, filter etc. this transaction type to exclude it from replication? Or other better way to address the problem?
    Thanks in advance!

    Hi Noel
    try setting a filter on object SALESDOCUMENT in Transaction R3AC1.
    Table=VBAK
    Field = AUART( its a guess, can't check it in a system)
    OP = NE> Not Euqal
    Low = ZZZZ
    save it. your filters wil also be updated to R/3
    Hope it helps
    best regards,
    Remko

  • Everything 'exists in filesystem' Errors occurred, no packages were up

    Something like 260 package updates failed to same error.
    Really do not want to use --force
    Any ideas?
    edObject/EmbeddedObject.odt exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/examples/java/EmbedDocument/EmbeddedObject/EmbeddedObject.xcu exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/examples/java/EmbedDocument/EmbeddedObject/Makefile exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/examples/java/EmbedDocument/EmbeddedObject/OwnEmbeddedObject.components exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/examples/java/EmbedDocument/EmbeddedObject/OwnEmbeddedObject.java exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/examples/java/EmbedDocument/EmbeddedObject/OwnEmbeddedObjectFactory.java exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/examples/java/MinimalComponent/BuildMinimalComponent.xml exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/examples/java/MinimalComponent/Makefile exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/examples/java/MinimalComponent/MinimalComponent.components exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/examples/java/MinimalComponent/MinimalComponent.idl exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/examples/java/MinimalComponent/MinimalComponent.java exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/examples/java/MinimalComponent/TestMinimalComponent.java exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/examples/java/PropertySet/Makefile exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/examples/java/PropertySet/PropTest.components exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/examples/java/PropertySet/PropTest.java exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/examples/java/PropertySet/PropertySet.odt exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/examples/java/Spreadsheet/CalcAddins.components exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/examples/java/Spreadsheet/CalcAddins.java exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/examples/java/Spreadsheet/CalcAddins.ods exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/examples/java/Spreadsheet/ChartTypeChange.java exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/examples/java/Spreadsheet/EuroAdaption.java exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/examples/java/Spreadsheet/Makefile exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/examples/java/Spreadsheet/SCalc.java exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/examples/java/Spreadsheet/XCalcAddins.idl exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/examples/java/Text/BookmarkInsertion.java exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/examples/java/Text/GraphicsInserter.java exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/examples/java/Text/HardFormatting.java exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/examples/java/Text/Makefile exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/examples/java/Text/SWriter.java exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/examples/java/Text/StyleCreation.java exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/examples/java/Text/StyleInitialization.java exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/examples/java/Text/TextDocumentStructure.java exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/examples/java/Text/TextReplace.java exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/examples/java/Text/WriterSelector.java exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/examples/java/Text/oo_smiley.gif exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/examples/java/ToDo/Makefile exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/examples/java/ToDo/ToDo.components exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/examples/java/ToDo/ToDo.idl exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/examples/java/ToDo/ToDo.java exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/examples/java/ToDo/ToDo.ods exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/examples/java/ToDo/XToDo.idl exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/examples/python/toolpanel/CalcWindowState.xcu exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/examples/python/toolpanel/Factory.xcu exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/examples/python/toolpanel/META-INF/manifest.xml exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/examples/python/toolpanel/Makefile exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/examples/python/toolpanel/description.xml exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/examples/python/toolpanel/readme exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/examples/python/toolpanel/toolPanelPocBasic/Module1.xba exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/examples/python/toolpanel/toolPanelPocBasic/dialog.xlb exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/examples/python/toolpanel/toolPanelPocBasic/script.xlb exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/examples/python/toolpanel/toolpanel.component exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/examples/python/toolpanel/toolpanel.py exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/examples/python/toolpanel/toolpanels/poc.xdl exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/index.html exists in filesystem
    libreoffice-writer: /usr/lib/libreoffice/program/libhwplo.so exists in filesystem
    libreoffice-writer: /usr/lib/libreoffice/program/liblwpftlo.so exists in filesystem
    libreoffice-writer: /usr/lib/libreoffice/program/libmswordlo.so exists in filesystem
    libreoffice-writer: /usr/lib/libreoffice/program/libmsworkslo.so exists in filesystem
    libreoffice-writer: /usr/lib/libreoffice/program/libswdlo.so exists in filesystem
    libreoffice-writer: /usr/lib/libreoffice/program/libswuilo.so exists in filesystem
    libreoffice-writer: /usr/lib/libreoffice/program/libt602filterlo.so exists in filesystem
    libreoffice-writer: /usr/lib/libreoffice/program/libwpftlo.so exists in filesystem
    libreoffice-writer: /usr/lib/libreoffice/program/libwriterfilterlo.so exists in filesystem
    libreoffice-writer: /usr/lib/libreoffice/share/registry/writer.xcd exists in filesystem
    libxft: /usr/lib/libXft.so.2.3.0 exists in filesystem
    linux-firmware: /lib/firmware/bnx2x/bnx2x-e1-7.2.16.0.fw exists in filesystem
    linux-firmware: /lib/firmware/bnx2x/bnx2x-e1h-7.2.16.0.fw exists in filesystem
    linux-firmware: /lib/firmware/bnx2x/bnx2x-e2-7.2.16.0.fw exists in filesystem
    linux-firmware: /lib/firmware/brcm/brcmfmac43236b.bin exists in filesystem
    linux-firmware: /lib/firmware/brcm/brcmfmac4329.bin exists in filesystem
    linux-firmware: /lib/firmware/brcm/brcmfmac4330.bin exists in filesystem
    linux-firmware: /lib/firmware/cxgb3/t3fw-7.12.0.bin exists in filesystem
    linux-firmware: /lib/firmware/cxgb4/t4fw-1.4.16.0.bin exists in filesystem
    linux-firmware: /lib/firmware/usbdux/usbduxsigma_firmware.asm exists in filesystem
    linux-firmware: /lib/firmware/usbduxsigma_firmware.bin exists in filesystem
    mkinitcpio-busybox: /usr/lib/initcpio/busybox exists in filesystem
    mkinitcpio: /usr/lib/initcpio/functions exists in filesystem
    mkinitcpio: /usr/lib/initcpio/hooks/btrfs exists in filesystem
    mkinitcpio: /usr/lib/initcpio/hooks/consolefont exists in filesystem
    mkinitcpio: /usr/lib/initcpio/hooks/keymap exists in filesystem
    mkinitcpio: /usr/lib/initcpio/hooks/memdisk exists in filesystem
    mkinitcpio: /usr/lib/initcpio/hooks/net exists in filesystem
    mkinitcpio: /usr/lib/initcpio/hooks/resume exists in filesystem
    mkinitcpio: /usr/lib/initcpio/hooks/shutdown exists in filesystem
    mkinitcpio: /usr/lib/initcpio/hooks/sleep exists in filesystem
    mkinitcpio: /usr/lib/initcpio/init exists in filesystem
    mkinitcpio: /usr/lib/initcpio/init_functions exists in filesystem
    mkinitcpio: /usr/lib/initcpio/install/autodetect exists in filesystem
    mkinitcpio: /usr/lib/initcpio/install/base exists in filesystem
    mkinitcpio: /usr/lib/initcpio/install/btrfs exists in filesystem
    mkinitcpio: /usr/lib/initcpio/install/consolefont exists in filesystem
    mkinitcpio: /usr/lib/initcpio/install/filesystems exists in filesystem
    mkinitcpio: /usr/lib/initcpio/install/fsck exists in filesystem
    mkinitcpio: /usr/lib/initcpio/install/fw exists in filesystem
    mkinitcpio: /usr/lib/initcpio/install/ide exists in filesystem
    mkinitcpio: /usr/lib/initcpio/install/keymap exists in filesystem
    mkinitcpio: /usr/lib/initcpio/install/memdisk exists in filesystem
    mkinitcpio: /usr/lib/initcpio/install/net exists in filesystem
    mkinitcpio: /usr/lib/initcpio/install/pata exists in filesystem
    mkinitcpio: /usr/lib/initcpio/install/pcmcia exists in filesystem
    mkinitcpio: /usr/lib/initcpio/install/resume exists in filesystem
    mkinitcpio: /usr/lib/initcpio/install/sata exists in filesystem
    mkinitcpio: /usr/lib/initcpio/install/scsi exists in filesystem
    mkinitcpio: /usr/lib/initcpio/install/shutdown exists in filesystem
    mkinitcpio: /usr/lib/initcpio/install/sleep exists in filesystem
    mkinitcpio: /usr/lib/initcpio/install/usb exists in filesystem
    mkinitcpio: /usr/lib/initcpio/install/usbinput exists in filesystem
    mkinitcpio: /usr/lib/initcpio/install/virtio exists in filesystem
    mkinitcpio: /usr/lib/initcpio/shutdown exists in filesystem
    mkinitcpio: /usr/lib/initcpio/udev/01-memdisk.rules exists in filesystem
    man-db: /usr/lib/man-db/libman-2.6.1.so exists in filesystem
    man-db: /usr/lib/man-db/libmandb-2.6.1.so exists in filesystem
    man-pages: /usr/share/man/man1/getent.1.gz exists in filesystem
    man-pages: /usr/share/man/man2/sendmmsg.2.gz exists in filesystem
    mesa: /usr/include/xa_composite.h exists in filesystem
    mesa: /usr/include/xa_context.h exists in filesystem
    mesa: /usr/include/xa_tracker.h exists in filesystem
    mesa: /usr/lib/libGLU.so.1.3.08000 exists in filesystem
    mesa: /usr/lib/libxatracker.so exists in filesystem
    mesa: /usr/lib/libxatracker.so.1 exists in filesystem
    mesa: /usr/lib/libxatracker.so.1.0.0 exists in filesystem
    mesa: /usr/lib/pkgconfig/xatracker.pc exists in filesystem
    mx: /usr/lib/libmx-1.0.so.2.401.0 exists in filesystem
    poppler-glib: /usr/share/gtk-doc/html/poppler/api-index-0-18.html exists in filesystem
    shared-color-targets: /usr/share/color/targets/wolf_faust/reflective/R110714.it8 exists in filesystem
    shared-color-targets: /usr/share/color/targets/wolf_faust/reflective/R110714WhiteBacking.it8 exists in filesystem
    shared-color-targets: /usr/share/color/targets/wolf_faust/reflective/R110903.it8 exists in filesystem
    shared-color-targets: /usr/share/color/targets/wolf_faust/reflective/R111204.it8 exists in filesystem
    shared-color-targets: /usr/share/color/targets/wolf_faust/reflective/R111204WhiteBacking.it8 exists in filesystem
    shared-color-targets: /usr/share/color/targets/wolf_faust/transmissive/A111011.it8 exists in filesystem
    shared-color-targets: /usr/share/color/targets/wolf_faust/transmissive/A120115.it8 exists in filesystem
    shared-color-targets: /usr/share/color/targets/wolf_faust/transmissive/E111007.it8 exists in filesystem
    shared-color-targets: /usr/share/color/targets/wolf_faust/transmissive/E120104.it8 exists in filesystem
    shared-color-targets: /usr/share/color/targets/wolf_faust/transmissive/F111224.it8 exists in filesystem
    shared-color-targets: /usr/share/color/targets/wolf_faust/transmissive/N111122.it8 exists in filesystem
    shared-color-targets: /usr/share/color/targets/wolf_faust/transmissive/N111125.it8 exists in filesystem
    shared-color-targets: /usr/share/color/targets/wolf_faust/transmissive/N111203.it8 exists in filesystem
    shared-color-targets: /usr/share/color/targets/wolf_faust/transmissive/V111010.it8 exists in filesystem
    shared-color-targets: /usr/share/color/targets/wolf_faust/transmissive/V120101.it8 exists in filesystem
    subversion: /usr/lib/httpd/modules/mod_dontdothat.so exists in filesystem
    thunderbird: /usr/lib/thunderbird/isp/Bogofilter.sfd exists in filesystem
    thunderbird: /usr/lib/thunderbird/isp/DSPAM.sfd exists in filesystem
    thunderbird: /usr/lib/thunderbird/isp/POPFile.sfd exists in filesystem
    libkate: /usr/bin/KateDJ exists in filesystem
    libkate: /usr/bin/katalyzer exists in filesystem
    libkate: /usr/bin/katedec exists in filesystem
    libkate: /usr/bin/kateenc exists in filesystem
    libkate: /usr/include/kate/kate.h exists in filesystem
    libkate: /usr/include/kate/kate_config.h exists in filesystem
    libkate: /usr/include/kate/oggkate.h exists in filesystem
    libkate: /usr/lib/libkate.so exists in filesystem
    libkate: /usr/lib/libkate.so.1 exists in filesystem
    libkate: /usr/lib/libkate.so.1.3.0 exists in filesystem
    libkate: /usr/lib/liboggkate.so exists in filesystem
    libkate: /usr/lib/liboggkate.so.1 exists in filesystem
    libkate: /usr/lib/liboggkate.so.1.2.2 exists in filesystem
    libkate: /usr/lib/pkgconfig/kate.pc exists in filesystem
    libkate: /usr/lib/pkgconfig/oggkate.pc exists in filesystem
    libkate: /usr/lib/python2.7/site-packages/kdj/__init__.py exists in filesystem
    libkate: /usr/lib/python2.7/site-packages/kdj/__init__.pyc exists in filesystem
    libkate: /usr/lib/python2.7/site-packages/kdj/__init__.pyo exists in filesystem
    libkate: /usr/lib/python2.7/site-packages/kdj/constants.py exists in filesystem
    libkate: /usr/lib/python2.7/site-packages/kdj/constants.pyc exists in filesystem
    libkate: /usr/lib/python2.7/site-packages/kdj/constants.pyo exists in filesystem
    libkate: /usr/lib/python2.7/site-packages/kdj/demuxer.py exists in filesystem
    libkate: /usr/lib/python2.7/site-packages/kdj/demuxer.pyc exists in filesystem
    libkate: /usr/lib/python2.7/site-packages/kdj/demuxer.pyo exists in filesystem
    libkate: /usr/lib/python2.7/site-packages/kdj/finder.py exists in filesystem
    libkate: /usr/lib/python2.7/site-packages/kdj/finder.pyc exists in filesystem
    libkate: /usr/lib/python2.7/site-packages/kdj/finder.pyo exists in filesystem
    libkate: /usr/lib/python2.7/site-packages/kdj/muxer.py exists in filesystem
    libkate: /usr/lib/python2.7/site-packages/kdj/muxer.pyc exists in filesystem
    libkate: /usr/lib/python2.7/site-packages/kdj/muxer.pyo exists in filesystem
    libkate: /usr/lib/python2.7/site-packages/kdj/options.py exists in filesystem
    libkate: /usr/lib/python2.7/site-packages/kdj/options.pyc exists in filesystem
    libkate: /usr/lib/python2.7/site-packages/kdj/options.pyo exists in filesystem
    libkate: /usr/lib/python2.7/site-packages/kdj/tester.py exists in filesystem
    libkate: /usr/lib/python2.7/site-packages/kdj/tester.pyc exists in filesystem
    libkate: /usr/lib/python2.7/site-packages/kdj/tester.pyo exists in filesystem
    libkate: /usr/lib/python2.7/site-packages/kdj/tools.py exists in filesystem
    libkate: /usr/lib/python2.7/site-packages/kdj/tools.pyc exists in filesystem
    libkate: /usr/lib/python2.7/site-packages/kdj/tools.pyo exists in filesystem
    libkate: /usr/lib/python2.7/site-packages/kdj/ui_editor.py exists in filesystem
    libkate: /usr/lib/python2.7/site-packages/kdj/ui_editor.pyc exists in filesystem
    libkate: /usr/lib/python2.7/site-packages/kdj/ui_editor.pyo exists in filesystem
    libkate: /usr/lib/python2.7/site-packages/kdj/ui_main.py exists in filesystem
    libkate: /usr/lib/python2.7/site-packages/kdj/ui_main.pyc exists in filesystem
    libkate: /usr/lib/python2.7/site-packages/kdj/ui_main.pyo exists in filesystem
    libkate: /usr/lib/python2.7/site-packages/kdj/ui_options.py exists in filesystem
    libkate: /usr/lib/python2.7/site-packages/kdj/ui_options.pyc exists in filesystem
    libkate: /usr/lib/python2.7/site-packages/kdj/ui_options.pyo exists in filesystem
    libkate: /usr/share/doc/libkate/AUTHORS exists in filesystem
    libkate: /usr/share/doc/libkate/COPYING exists in filesystem
    libkate: /usr/share/doc/libkate/ChangeLog exists in filesystem
    libkate: /usr/share/doc/libkate/README exists in filesystem
    libkate: /usr/share/doc/libkate/THANKS exists in filesystem
    libkate: /usr/share/doc/libkate/html/Format.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/HOWTO.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/Support.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/annotated.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/categories.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/classes.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/config_8h-source.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/config_8h_source.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/decoding_8c-example.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/doxygen.css exists in filesystem
    libkate: /usr/share/doc/libkate/html/doxygen.png exists in filesystem
    libkate: /usr/share/doc/libkate/html/encoding_8c-example.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/errors.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/examples.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/files.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/format_0x00.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/format_0x01.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/format_0x7f.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/format_0x80.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/format_0x81.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/format_0x82.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/format_0x83.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/format_0x84.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/format_0x85.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/format_0x86.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/format_0x87.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/format_0x88.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/format_32v.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/format_bitmap.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/format_color.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/format_curve.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/format_font_range.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/format_fp.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/format_metadata.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/format_motion.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/format_palette.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/format_region.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/format_rle.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/format_style.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/format_warp.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/functions.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/functions_vars.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/globals.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/globals_0x63.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/globals_0x64.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/globals_0x65.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/globals_0x66.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/globals_0x67.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/globals_0x68.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/globals_0x69.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/globals_0x6c.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/globals_0x6d.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/globals_0x6f.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/globals_0x70.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/globals_0x72.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/globals_0x73.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/globals_0x74.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/globals_0x75.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/globals_0x76.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/globals_0x77.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/globals_defs.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/globals_enum.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/globals_eval.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/globals_func.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/granule.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/group__comments.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/group__decoding.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/group__encoding.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/group__font.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/group__granule.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/group__high.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/group__info.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/group__metadata.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/group__misc.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/group__ogg__decode.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/group__ogg__encode.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/group__packet.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/group__text.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/group__tracker.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/group__version.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/high_8c-example.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/index.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/kate_8c_source.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/kate_8h-source.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/kate_8h.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/kate_8h_source.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/kate__bitwise_8c_source.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/kate__bitwise_8h_source.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/kate__comment_8c_source.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/kate__config_8h-source.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/kate__config_8h_source.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/kate__decode_8c_source.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/kate__decode__state_8c_source.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/kate__decode__state_8h_source.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/kate__encode_8c_source.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/kate__encode__state_8c_source.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/kate__encode__state_8h_source.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/kate__event_8c_source.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/kate__font_8c_source.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/kate__fp_8c_source.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/kate__fp_8h_source.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/kate__granule_8c_source.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/kate__high_8c_source.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/kate__info_8c_source.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/kate__internal_8h_source.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/kate__motion_8c_source.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/kate__ogg_8c_source.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/kate__packet_8c_source.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/kate__rle_8c_source.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/kate__rle_8h_source.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/kate__text_8c_source.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/kate__tracker_8c_source.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/modules.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/oggkate_8h-source.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/oggkate_8h.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/oggkate_8h_source.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/pages.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/structkate__active__event.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/structkate__bitmap.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/structkate__color.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/structkate__comment.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/structkate__curve.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/structkate__decode__state.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/structkate__encode__state.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/structkate__event.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/structkate__event__timing.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/structkate__font__mapping.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/structkate__font__range.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/structkate__info.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/structkate__memory__guard.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/structkate__motion.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/structkate__pack__buffer.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/structkate__packet.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/structkate__palette.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/structkate__region.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/structkate__state.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/structkate__style.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/structkate__tracker.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/structkate__tracker__internal.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/tab_b.gif exists in filesystem
    libkate: /usr/share/doc/libkate/html/tab_l.gif exists in filesystem
    libkate: /usr/share/doc/libkate/html/tab_r.gif exists in filesystem
    libkate: /usr/share/doc/libkate/html/tabs.css exists in filesystem
    libkate: /usr/share/licenses/libkate/LICENSE exists in filesystem
    libkate: /usr/share/man/man1/KateDJ.1.gz exists in filesystem
    libkate: /usr/share/man/man1/katalyzer.1.gz exists in filesystem
    libkate: /usr/share/man/man1/katedec.1.gz exists in filesystem
    libkate: /usr/share/man/man1/kateenc.1.gz exists in filesystem
    libtiger: /usr/include/tiger/tiger.h exists in filesystem
    libtiger: /usr/include/tiger/tiger_config.h exists in filesystem
    libtiger: /usr/lib/libtiger.so exists in filesystem
    libtiger: /usr/lib/libtiger.so.5 exists in filesystem
    libtiger: /usr/lib/libtiger.so.5.0.2 exists in filesystem
    libtiger: /usr/lib/pkgconfig/tiger.pc exists in filesystem
    vlc: /usr/bin/svlc exists in filesystem
    vlc: /usr/lib/vlc/plugins/access/libaccess_gnomevfs_plugin.so exists in filesystem
    vlc: /usr/lib/vlc/plugins/access/libvcdx_plugin.so exists in filesystem
    vlc: /usr/lib/vlc/plugins/audio_output/libportaudio_plugin.so exists in filesystem
    vlc: /usr/lib/vlc/plugins/codec/libkate_plugin.so exists in filesystem
    vlc: /usr/lib/vlc/plugins/codec/libtwolame_plugin.so exists in filesystem
    vlc: /usr/lib/vlc/plugins/demux/libgme_plugin.so exists in filesystem
    vlc: /usr/lib/vlc/plugins/gui/libskins2_plugin.so exists in filesystem
    vlc: /usr/lib/vlc/plugins/notify/libnotify_plugin.so exists in filesystem
    vlc: /usr/lib/vlc/plugins/notify/libxosd_plugin.so exists in filesystem
    vlc: /usr/lib/vlc/plugins/text_renderer/libsvg_plugin.so exists in filesystem
    vlc: /usr/lib/vlc/plugins/video_output/libaa_plugin.so exists in filesystem
    vlc: /usr/lib/vlc/plugins/visualization/libgoom_plugin.so exists in filesystem
    vlc: /usr/lib/vlc/plugins/visualization/libprojectm_plugin.so exists in filesystem
    vlc: /usr/share/vlc/skins2/default.vlt exists in filesystem
    vlc: /usr/share/vlc/skins2/fonts/FreeSans.ttf exists in filesystem
    vlc: /usr/share/vlc/skins2/fonts/FreeSansBold.ttf exists in filesystem
    vlc: /usr/share/vlc/skins2/skin.catalog exists in filesystem
    vlc: /usr/share/vlc/skins2/skin.dtd exists in filesystem
    vlc: /usr/share/vlc/skins2/winamp2.xml exists in filesystem
    mtdev: /usr/bin/mtdev-test exists in filesystem
    mtdev: /usr/include/mtdev-mapping.h exists in filesystem
    mtdev: /usr/include/mtdev-plumbing.h exists in filesystem
    mtdev: /usr/include/mtdev.h exists in filesystem
    mtdev: /usr/lib/libmtdev.so exists in filesystem
    mtdev: /usr/lib/libmtdev.so.1 exists in filesystem
    mtdev: /usr/lib/libmtdev.so.1.0.0 exists in filesystem
    mtdev: /usr/lib/pkgconfig/mtdev.pc exists in filesystem
    mtdev: /usr/share/licenses/mtdev/LICENSE exists in filesystem
    Errors occurred, no packages were upgraded.
    Here is the 299 pkg updates
    root@clc ~]# pacman -Syu
    :: Synchronizing package databases...
    core 103.4 KiB 131K/s 00:01 [######################] 100%
    extra 1382.7 KiB 334K/s 00:04 [######################] 100%
    community 1639.9 KiB 328K/s 00:05 [######################] 100%
    :: Starting full system upgrade...
    :: Replace gnupg2 with core/gnupg? [Y/n] y
    resolving dependencies...
    warning: dependency cycle detected:
    warning: udev will be installed before its util-linux dependency
    warning: dependency cycle detected:
    warning: rhino will be installed before its jre7-openjdk-headless dependency
    looking for inter-conflicts...
    Targets (299): akonadi-1.7.1-1 avahi-0.6.31-1 bash-4.2.024-2 binutils-2.22-5
    bluez-4.99-1 boost-libs-1.49.0-1.1 busybox-1.19.4-1
    ca-certificates-java-20120225-1 cifs-utils-5.3-2
    colord-0.1.17-1 coreutils-8.16-2 curl-7.25.0-1
    damageproto-1.2.1-2 device-mapper-2.02.95-1 dhcpcd-5.5.6-1
    dmxproto-2.3.1-2 dnsutils-9.9.0-1 docbook-xml-4.5-5
    e2fsprogs-1.42.1-1 ekiga-3.3.2-3 exempi-2.2.0-1 expat-2.1.0-1
    ffmpeg-20120317-1 fftw-3.3.1-1 file-5.11-1 firefox-11.0-2
    fixesproto-5.0-2 flashplugin-11.2.202.228-1 fluidsynth-1.1.5-2
    fontconfig-2.8.0-2 fontsproto-2.1.2-1 freetype2-2.4.9-2
    gcc-4.7.0-3 gcc-libs-4.7.0-3 gconf-editor-3.0.0-2
    giflib-4.1.6-5 git-1.7.9.6-1 glibc-2.15-10 glproto-1.4.15-1
    gmime-2.6.7-1 gnome-desktop-1:3.2.1-1 gnome-mime-data-2.18.0-6
    gnupg-2.0.19-1 gnupg2-2.0.18-1 [removal] gnutls-3.0.17-1
    gpgme-1.3.1-4 grep-2.11-2 gstreamer0.10-0.10.36-1
    gstreamer0.10-bad-0.10.23-1 gstreamer0.10-base-0.10.36-1
    gstreamer0.10-base-plugins-0.10.36-1
    gstreamer0.10-good-0.10.31-1
    gstreamer0.10-good-plugins-0.10.31-1
    gtk-update-icon-cache-2.24.10-3 gtk2-2.24.10-3 gtk3-3.2.3-3
    guile-1.8.8-2 gvfs-1.10.1-3 gvfs-obexftp-1.10.1-3
    gvim-7.3.475-1 hspell-1.1-2 hsqldb-java-1:1.8.0.10-2
    initscripts-2012.03.2-1 inputproto-2.2-1 intel-dri-8.0.2-1
    iproute2-3.2.0-3 jdk7-openjdk-7.b147_2.1-3
    jre7-openjdk-7.b147_2.1-3 jre7-openjdk-headless-7.b147_2.1-3
    kactivities-4.8.2-1 kbproto-1.0.6-1 kde-l10n-en_gb-4.8.2-1
    kde-wallpapers-4.8.2-1 kdebase-dolphin-4.8.2-1
    kdebase-katepart-4.8.2-1 kdebase-kdepasswd-4.8.2-1
    kdebase-kdialog-4.8.2-1 kdebase-keditbookmarks-4.8.2-1
    kdebase-kfind-4.8.2-1 kdebase-konq-plugins-4.8.2-1
    kdebase-konqueror-4.8.2-1 kdebase-konsole-4.8.2-2
    kdebase-kwrite-4.8.2-1 kdebase-lib-4.8.2-1
    kdebase-plasma-4.8.2-1 kdebase-runtime-4.8.2-1
    kdebase-workspace-4.8.2-2 kdelibs-4.8.2-1
    kdepim-runtime-4.8.2-2 kdepimlibs-4.8.2-1
    khrplatform-devel-8.0.2-1 kmod-7-1 krb5-1.10.1-2
    lame-3.99.5-1 libarchive-3.0.4-1 libbonobo-2.32.1-2
    libcdio-0.83-1 libcroco-0.6.4-1 libdmx-1.1.2-1
    libdrm-2.4.33-1 libedit-20120311_3.0-1 libegl-8.0.2-1
    libevent-2.0.17-1 libexif-0.6.20-2 libfontenc-1.1.1-1
    libgl-8.0.2-1 libglade-2.6.4-3 libglapi-8.0.2-1
    libgles-8.0.2-1 libgnome-2.32.1-3 libgnome-data-2.32.1-3
    libgphoto2-2.4.13-1 libice-1.0.8-1 libiodbc-3.52.8-1
    libkate-0.4.1-3 libldap-2.4.30-1 libltdl-2.4.2-5
    libmtp-1.1.2-1 libmusicbrainz3-3.0.3-2 libmysqlclient-5.5.22-1
    libnl-3.2.7-1 libnotify-0.7.5-1 libpcap-1.2.1-2
    libpciaccess-0.13-1 libpng-1.5.10-1 libpst-0.6.54-1
    libreoffice-base-3.5.1-1 libreoffice-calc-3.5.1-1
    libreoffice-common-3.5.1-1 libreoffice-draw-3.5.1-1
    libreoffice-en-US-3.5.1-1 libreoffice-gnome-3.5.1-1
    libreoffice-impress-3.5.1-1 libreoffice-kde4-3.5.1-1
    libreoffice-math-3.5.1-1 libreoffice-sdk-3.5.1-1
    libreoffice-sdk-doc-3.5.1-1 libreoffice-writer-3.5.1-1
    libsigc++-2.2.10-2 libsm-1.2.1-1 libsocialweb-0.25.20-0
    libspectre-0.2.6-3 libtasn1-2.12-1 libtextcat-2.2-9
    libtiff-4.0.1-1 libtiger-0.3.4-3 libtool-2.4.2-5
    libupnp-1.6.16-1 libwbclient-3.6.3-4 libwpd-0.9.2-2
    libwps-0.2.2-2 libx11-1.4.99.901-1 libxau-1.0.7-1
    libxaw-1.0.10-1 libxcb-1.8.1-1 libxcomposite-0.4.3-2
    libxcursor-1.1.13-1 libxdmcp-1.1.1-1 libxext-1.3.1-1
    libxfixes-5.0-2 libxfont-1.4.5-1 libxft-2.3.0-2 libxi-1.6.0-1
    libxinerama-1.1.2-1 libxkbfile-1.0.8-1 libxklavier-5.1-2
    libxmu-1.1.1-1 libxpm-3.5.10-1 libxrender-0.9.7-1
    libxres-1.0.6-1 libxss-1.2.2-1 libxt-1.1.3-1 libxtst-1.2.1-1
    libxv-1.0.7-1 libxvmc-1.0.7-1 libxxf86dga-1.1.3-1
    libxxf86vm-1.1.2-1 libyaml-0.1.4-2 linux-3.2.13-1
    linux-api-headers-3.3-1 linux-docs-3.2.13-1
    linux-firmware-20120227-1 linux-headers-3.2.13-1
    lm_sensors-3.3.2-1 lpsolve-5.5.2.0-2 lua-5.1.5-1
    lvm2-2.02.95-1 man-db-2.6.1-1 man-pages-3.37-1 mesa-8.0.2-1
    mkinitcpio-0.8.5-1 mkinitcpio-busybox-1.19.4-2 mpfr-3.1.0.p7-1
    mtdev-1.1.2-1 mx-1.4.3-1 mysql-5.5.22-1
    mysql-clients-5.5.22-1 neon-0.29.6-4 net-snmp-5.7.1-2
    networkmanager-0.9.2.0-3 nfs-utils-1.2.5-2
    notification-daemon-0.7.4-1 nouveau-dri-8.0.2-1 nspr-4.9-1
    nss-3.13.3-1 opencore-amr-0.1.3-1 openssh-5.9p1-8
    openssl-1.0.1-2 orbit2-2.14.19-2 oxygen-icons-4.8.2-1
    p11-kit-0.12-1 parted-3.1-1 pcmciautils-018-2
    perl-xml-parser-2.41-2 perl-xml-simple-2.18-4 poppler-0.18.4-1
    poppler-glib-0.18.4-1 ppl-0.12-1 psmisc-22.16-1
    ptlib-2.10.2-2 python-pexpect-2.3-6 qrencode-3.3.0-1
    qt-4.8.1-1 randrproto-1.3.2-2 raptor-2.0.7-1 recode-3.6-7
    recordproto-1.14.2-1 renderproto-0.11.1-2 rhino-1.7R3-2
    ruby-1.9.3_p125-3 sane-1.0.22-7 scrnsaverproto-1.2.2-1
    sdl_ttf-2.0.11-2 shadow-4.1.5-4 shared-color-targets-0.1.1-1
    smbclient-3.6.3-4 soprano-2.7.5-1 sound-juicer-2.32.1-2
    sqlite3-3.7.11-1 subversion-1.7.4-1 sudo-1.8.4.p4-1
    syslog-ng-3.3.4-4 taglib-1.7.1-1 thunderbird-11.0.1-1
    ttf-dejavu-2.33-2 tzdata-2012b-3 udev-181-5 udisks-1.0.4-2
    usbutils-005-1 util-linux-2.21-6 videoproto-2.3.1-2
    vim-runtime-7.3.475-1 vlc-2.0.1-1 whois-5.0.15-1
    wpa_actiond-1.2-1 wpa_supplicant-0.7.3-5 xbitmaps-1.1.1-2
    xcb-proto-1.7.1-1 xextproto-7.2.1-1 xf86-input-evdev-2.7.0-2
    xf86-input-synaptics-1.5.99.902-1 xf86-video-intel-2.18.0-1
    xf86-video-nouveau-0.0.16_git20120210-1
    xf86vidmodeproto-2.3.1-2 xineramaproto-1.2.1-2
    xorg-bdftopcf-1.0.3-2 xorg-font-util-1.3.0-1
    xorg-font-utils-7.6-3 xorg-fonts-encodings-1.0.4-3
    xorg-luit-1.1.1-1 xorg-server-1.12.0.901-1
    xorg-server-common-1.12.0.901-1 xorg-server-utils-7.6-3
    xorg-setxkbmap-1.3.0-1 xorg-utils-7.6-8 xorg-xauth-1.0.7-1
    xorg-xbacklight-1.1.2-3 xorg-xcursorgen-1.0.5-1
    xorg-xdriinfo-1.0.4-3 xorg-xev-1.2.0-1 xorg-xgamma-1.0.5-1
    xorg-xhost-1.0.5-1 xorg-xinput-1.5.99.1-1 xorg-xkbcomp-1.2.4-1
    xorg-xkbevd-1.1.3-1 xorg-xkbutils-1.0.3-3 xorg-xkill-1.0.3-3
    xorg-xlsatoms-1.1.1-1 xorg-xlsclients-1.1.2-2
    xorg-xmodmap-1.0.6-1 xorg-xpr-1.0.4-1 xorg-xrdb-1.0.9-2
    xorg-xrefresh-1.0.4-3 xorg-xsetroot-1.1.0-3
    xorg-xvinfo-1.1.1-3 xorg-xwd-1.0.5-2 xorg-xwud-1.0.4-1
    xproto-7.0.23-1 xz-5.0.3-2
    Total Download Size: 160.85 MiB
    Total Installed Size: 2291.87 MiB
    Net Upgrade Size: 101.97 MiB
    Proceed with installation? [Y/n] y
    Last edited by killnine (2012-04-05 14:17:33)

    karol wrote:
    You can check if the 'files' file has the files that are causing errors, e.g.
    [karol@black ~]$ grep "usr/lib/httpd/modules/mod_dontdothat.so" $(find /var/lib/pacman/local -name "subversion-*")/files
    usr/lib/httpd/modules/mod_dontdothat.so
    but I think there's something else going on.
    I've noticed all of the errors concern files from /usr. Do you have some special setup, like a separate /usr partition?
    [root@clc ~]# fdisk -l
    Disk /dev/sda: 750.2 GB, 750156374016 bytes
    255 heads, 63 sectors/track, 91201 cylinders, total 1465149168 sectors
    Units = sectors of 1 * 512 = 512 bytes
    Sector size (logical/physical): 512 bytes / 4096 bytes
    I/O size (minimum/optimal): 4096 bytes / 4096 bytes
    Disk identifier: 0x07f2837e
    Device Boot Start End Blocks Id System
    /dev/sda1 63 208844 104391 de Dell Utility
    Partition 1 does not start on physical sector boundary.
    /dev/sda2 * 212992 41172991 20480000 7 HPFS/NTFS/exFAT
    /dev/sda3 41172992 1255431919 607129464 7 HPFS/NTFS/exFAT
    /dev/sda4 1255431920 1451440984 98004532+ 5 Extended
    /dev/sda5 1255431983 1287433399 16000708+ 83 Linux
    Partition 5 does not start on physical sector boundary.
    /dev/sda6 1287433463 1303434139 8000338+ 83 Linux
    Partition 6 does not start on physical sector boundary.
    /dev/sda7 1303434203 1451440984 74003391 83 Linux
    Partition 7 does not start on physical sector boundary.
    [root@clc ~]# mount
    /dev/sda5 on / type ext4 (rw,relatime,user_xattr,acl,barrier=1,data=ordered)
    proc on /proc type proc (rw,nosuid,nodev,noexec,relatime)
    sys on /sys type sysfs (rw,nosuid,nodev,noexec,relatime)
    run on /run type tmpfs (rw,nosuid,nodev,relatime,mode=755)
    /dev on /dev type devtmpfs (rw,nosuid,relatime,size=4033576k,nr_inodes=1008394,mode=755)
    devpts on /dev/pts type devpts (rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=000)
    shm on /dev/shm type tmpfs (rw,nosuid,nodev,relatime)
    tmpfs on /tmp type tmpfs (rw,nosuid,nodev,relatime)
    /dev/sda7 on /home type ext4 (rw,relatime,user_xattr,acl,barrier=1,data=ordered)
    /dev/sda6 on /var type ext4 (rw,relatime,user_xattr,acl,barrier=1,data=ordered)
    gvfs-fuse-daemon on /root/.gvfs type fuse.gvfs-fuse-daemon (rw,nosuid,nodev,relatime,user_id=0,group_id=0)
    [root@clc ~]# cat /etc/fstab
    # /etc/fstab: static file system information
    # <file system> <dir> <type> <options> <dump> <pass>
    tmpfs /tmp tmpfs nodev,nosuid 0 0
    LABEL=home /home ext4 defaults 0 1
    LABEL=root / ext4 defaults 0 1
    LABEL=var /var ext4 defaults 0 1

  • Update existing Java Mapping in NWDS

    Hi,
    I need to update the existing Java Mapping. I downloaded the existing mapping from imported archive and modified it in NWDS but it is giving lots of errors regarding missing libraries(JARs).
    I just need to do a small change in code.
    Can anyone suggest how to compile it and creat a JAR and which i can upload back as an imported archive?
    Thanks in Advance.
    Regards,
    Bharat

    Hi,
    Make sure that you have the below jars or else you can find them in your XI server.
    aii_adapter_xi_svc.jar,aii_af_cci.jar,aii_af_cpa.jar,aii_af_mp.jar,aii_af_ms_api.jar,aii_af_ms_spi.jar,aii_af_svc.jar,aii_af_trace.jar,aii_map_api.jar,aii_mt_rt.jar,aii_util_xml.jar,aii_utilxi_misc.jar
    Then import these jars to Project Explorer section --> Properties --> Java Build Path --> Libraries --> Add External Jars  in NWDS.
    Compile the code.
    For making a jar file run this command from the command prompt.Input file are the source code file and the .class file.
    jar cf jar-file input-file(s)
    Regards,
    Ramkiran

  • "Failed to download map" error

    I have a new N810 and was trying to update the Eastern US map.  I got an error message that there wasn't enough memory (can't figure that one out, but that's a different issue), so I deleted the existing one thinking that would free enough room.  Now when I try to download the updated one, I get a "Failed to download map" error.  Any tips?

    I found an answer that worked very well - not sure how I ended up getting to this page, but followed the instructions and it worked like a charm:
    http://www.navicoretech.com/Consumer/Support/Downloads/tablet/en_GB/wfnavigator
    Good Luck!

  • Strange Data Mapping Errors after SEM 6 Upgrade. Please assist.

    Hi All, I encountered these sudden Mapping errors after I tried to do Testing in Post Upgrade Sand Box. Here I am trying to to perform Collected Reported Financial Data under Data Collection Method for a particular Company Code 3040. Kindly help me with some quick responses as this is kind of high priority. The errors and the Diagnosis Notes I am unable to follow as I do not where I shall write those Mapping Rules they are referring to. I do not even know if that need to apply any SAP Notes as such. Once again Highly appreciate your quick response and Many Thanks in Advance.
    Regards, BIP
    Input conversion for field Period Value LC has invalid format Message no. UCT8210 Diagnosis The mapping rule for target field Period Value LC contains a move with a selected Input Conversion indicator. Therefore, the system performs an input conversion prior to creating the target data. However, an error in the input conversion occurred while moving the source key figure to the target key figure Period Value LC. This means that the format used for the input conversion is incompatible with the target data. System Response The system will not perform the move. Procedure Examine the mapping rule for field Period Value LC. Either select the Conversion Exit indicator or deselect the Input Conversion indicator. Execute the method again. -
    3040 is incompatible with input format for field /1FB/COMPANY Message no. UCT8258 Diagnosis During execution, the method derives the source selection for source field /1FB/COMPANY from the mapping rule for the target field. 3040 is one of the values that were derived for the source selection. The system requires that this value is in the correct SAP-internal format because the Conversion Exit indicator has been selected in the move operator for field /1FB/COMPANY. However, the value 3040 is incompatible with the SAP-internal format. System Response The system attempts to interpret value 3040 as an external format and convert it to the internal format. If this fails, the system is unable to restrict the source selection using source field /1FB/COMPANY. In this case, the system may read more source data than was originally intended, which can affect performance. Procedure In the log, choose the Source button to display the source selections that are used to read the source data. When this appears, examine values selected for field /1FB/COMPANY. If the correct values were selected, you can ignore this message. To prevent this message from being issued, you can select the indicator in the mapping rule used by source field /1FB/COMPANY. If incorrect values were selected, make sure that the mapping rule used by source field /1FB/COMPANY has been defined correctly. If the mapping rule is correct and value (3040) derived for the source selection does not affect the overall result, you can ignore this message. If the source selection does not contain the value 3040 for field /1FB/COMPANY and, because of this, source data that is supposed to be read is not being read, make sure that the mapping rule has been defined correctly. If the source selection does not contain any value for field /1FB/COMPANY, make an estimation as to how much excess source data is being read and whether this might affect system performance. If you do not expect any performance problems, you can ignore this message. In any event, you have the following alternatives if the mapping rule is defined correctly, but the source selection on field /1FB/COMPANY is unsatisfactory: You can define a source selection for field /1FB/COMPANY in the Customizing settings for the method on the Selection tab page. Then the method uses this source selection instead of the source selection derived from inverse interpretation of the mapping rule. You can implement the Business Add-In (BAdI) UC_DATATRANSFER and use the method INVERT to determine the source selection on field /1FB/COMPANY. Then the method uses the result of the INVERT method for the source selection instead of the source selection derived from inverse interpretation of the mapping rule. -
    Cannot derive the source selection from target field Version Message no. UCT8252 Diagnosis Field Version has one of the following roles: Consolidation unit Group currency key Fiscal year Posting period Version To delimit the volume of the source data to be read, the system usually derives the source selection from the target selection of such a field. However, the system cannot derive a source selection from field Version. System Response It is possible that a greater volume of source data is being read than is necessary. This can lead to performance issues. Procedure Check whether a mapping rule is defined for field Version. If a mapping rule is defined, you can disregard this warning message. However, if you discover after method execution that the system did not process a large amount of data, and that system performance was not satisfactory, you may want to examine the source selection by choosing the Source button in the log. If the reason for the disregarded data is that too much source data was read because of the unrestricted selection on the source field (which is linked with target field Versionthrough mapping), choose one of the alternatives below: Change the mapping rule for field Version so that the system can derive a delimiting source selection. Implement the Business Add-In (BAdI) UC_DATATRANSFER with the method INVERT to delimit the selection for the source field that is linked via mapping to the target field Version. -
    Cannot derive the source selection from target field Group Currency Message no. UCT8252 Diagnosis Field Group Currency has one of the following roles: Consolidation unit Group currency key Fiscal year Posting period Version To delimit the volume of the source data to be read, the system usually derives the source selection from the target selection of such a field. However, the system cannot derive a source selection from field Group Currency. System Response It is possible that a greater volume of source data is being read than is necessary. This can lead to performance issues. Procedure Check whether a mapping rule is defined for field Group Currency. If a mapping rule is defined, you can disregard this warning message. However, if you discover after method execution that the system did not process a large amount of data, and that system performance was not satisfactory, you may want to examine the source selection by choosing the Source button in the log. If the reason for the disregarded data is that too much source data was read because of the unrestricted selection on the source field (which is linked with target field Group Currency through mapping), choose one of the alternatives below: Change the mapping rule for field Group Currency so that the system can derive a delimiting source selection. Implement the Business Add-In (BAdI) UC_DATATRANSFER with the method INVERT to delimit the selection for the source field that is linked via mapping to the target field Group Currency
    1 is incompatible with input format for field FISCPERIOD Message no. UCT8258 Diagnosis During execution, the method derives the source selection for source field FISCPERIOD from the mapping rule for the target field. 1 is one of the values that were derived for the source selection. The system requires that this value is in the correct SAP-internal format because the Conversion Exit indicator has been selected in the move operator for field FISCPERIOD. However, the value 1 is incompatible with the SAP-internal format. System Response The system attempts to interpret value 1 as an external format and convert it to the internal format. If this fails, the system is unable to restrict the source selection using source field FISCPERIOD. In this case, the system may read more source data than was originally intended, which can affect performance. Procedure In the log, choose the Source button to display the source selections that are used to read the source data. When this appears, examine values selected for field FISCPERIOD. If the correct values were selected, you can ignore this message. To prevent this message from being issued, you can select the indicator in the mapping rule used by source field FISCPERIOD. If incorrect values were selected, make sure that the mapping rule used by source field FISCPERIOD has been defined correctly. If the mapping rule is correct and value (1) derived for the source selection does not affect the overall result, you can ignore this message. If the source selection does not contain the value 1 for field FISCPERIOD and, because of this, source data that is supposed to be read is not being read, make sure that the mapping rule has been defined correctly. If the source selection does not contain any value for field FISCPERIOD, make an estimation as to how much excess source data is being read and whether this might affect system performance. If you do not expect any performance problems, you can ignore this message. In any event, you have the following alternatives if the mapping rule is defined correctly, but the source selection on field FISCPERIOD is unsatisfactory: You can define a source selection for field FISCPERIOD in the Customizing settings for the method on the Selection tab page. Then the method uses this source selection instead of the source selection derived from inverse interpretation of the mapping rule. You can implement the Business Add-In (BAdI) UC_DATATRANSFER and use the method INVERT to determine the source selection on field FISCPERIOD. Then the method uses the result of the INVERT method for the source selection instead of the source selection derived from inverse interpretation of the mapping rule
    Input must be in the format ___,___,__~ Message no. 00088 Diagnosis Your entry does not match the specified input format. System Response The entry in this field was rejected. Procedure The entry must comply with the edit format. The following edit format characters have a special meaning: "_" (underscore) There should be an input character at this point; this should be a number for numeric fields. "." (decimal point) (applies to numeric fields) The decimal point occurs here (setting in the user master record). "," (thousands separator) (applies to numeric fields) This separator occurs (optionally) for more than three figures. Depending on the setting in the user master record, it can be a period or a comma. "V" (applies to numeric fields) The operational sign appears here. If used, it must by at the right margin of the field. The sign is either "-" or " "(space). "~" (tilde) (applies to numeric fields) As of and including this character, leading zeros must also be entered. Otherwise, this character has the same meaning as an underscore. Leading zeros need not be entered on the left of the tilde. They are not output at this position. All other characters have their normal meanings and must be entered in the same position as in the edit format.

    Hi Dan,
    Could you Kiindly advise me where we need to write the Mapping Rules in Consolidation Monitor? All he time the errors refering to Mapping Rules. The only Tab I seen "Mapping" is in Data Basis But as per my Understanding Iwe do not have much to do there as it is system generated Mapping Tab.
    Where we actually go and select/deselct those Input Conversion Indicator/ Conversion exit Indicator.
    Highly appreciate your advise.
    Thanks and Regards,
    BIP

  • Java.util.EmptyStackException Mapping error

    Hi All,
    I am integrating SAP ECC 6.0 system with SAP SNC.
    For these i am using  standard content of SAP SNC
    I am getting following mapping error :
    TransformerConfigurationException occurred when loading XSLT InvoiceRequest_InvoicInvoic01_01.xsl; details: Could not load stylesheet.com.sap.engine.lib.xml.util.NestedException: Error parsing query. -> java.util.EmptyStackException
    Plz help me out
    Regards Milan

    hi,
    check the interaface mapping which is used in your flow
    inside integration repository - is it working over there?
    do you see the XSL file in the external archives in repository?
    Regards,
    Michal Krawczyk
    http://mypigenie.com XI/PI FAQ

  • Multi-Mapping Error after copying into new namespace

    Hi everybody,
    we got a BPM running using a multi-mapping.
    We decided to design new namespaces. After copying every IR object (datatype, message-type, mappings etc.) --> SXMB_MONI shows a mapping-error.
    But when I take the payload and test the mapping, everything is fine?
    Any ideas?
    Regards Mario

    Hi,
      If your payload has Messages tab remove that..and test the payload.
    Payload doesn't have any Messages tab.
    Just i have given example payload..this payload two strucures it will split into twofiles..and compare your payload should be like same
    <?xml version="1.0" encoding="UTF-8"?>
    <STRUCTURE>
    <EMP_DETAILS>
       <EMPNO>123<EMPNO>
       <EMPNAME>XYZ<EMPNAME>
    <EMP_DETAILS>
    <STUDENT_DET>
       <STUO>123<STUNO>
       <STUNAME>XYZ<STUNAME>
    </STUDENT_DET>
    <STRUCTURE>
    Regards,
    Venu.

  • Catch Mapping Error in File to IDoc scenario

    Configured BPM and now learning Error Handling. I know that through BPM we can handle system Errors, but I doubt whether Mapping error is a system error.
    I am interested to know the classification of errors with examples, preferably listing out all types of errors.
    Please provide some weblogs or explain briefly how to handle system and application errors through BPM.
    Thanks,
    Raja

    Hi Raja,
    You will need CCMS if you want to send the Alerts to external system or you want to access the ALerts from the transaction. You can capture your alerts without this also.
    When you go to Alert Configuration in the Runtime Workbench you can see Create Alert Rules. These rules are pertaining to the error generated in your AF,AE or IE.
    Once you have completed the whole config. The error happening in the AE, IE or AF would trigger the alert. you can see this in your Alert Inbox.
    The best would be if you go through the URL I have mentioned below.
    http://help.sap.com/saphelp_nw04/helpdata/en/80/942f3ffed33d67e10000000a114084/content.htm
    You have to use BPM only if you want to do an activity after the alerts are raised. 
    Regards
    Vijaya
    Message was edited by: vijaya kumari

  • Mapping Error in XI Configuration for MM-SUS Scenario

    Dear Experts,
    I am working on MM-SUS Classic Scenario,
    We have done all basic setting in SRM, ECC and SUS.
    Now we are configuring XI Scenario(Working on ESOA Architecture), while configuring XI Scenario, I follow the mention steps :
    I have started from Integration Builder in XI (using T-code SXMB_IFR)
    1.  I have assigned two Business System( for ECC and SUS)  In integration Builder (Creates Communication Channels Automatically) .
    2. Modify IDOC and XI Communication in ERP and SUS Business system respectively.
    3. Now select Tools -> Transer Integration Scenario from Inegration Repository and Create Scenario in it properly
        (Included Assign Services, Configure Connections, Generate etc).
    4. In last, save scenario.
    After configuration XI  I am not getting Scenario Data (Objects and Configuration Overview data) in it.
    When i  click to Check Configurability  under Model Configurator of mine Scenario,  I found following Errors ( I am Mentioning only some errors)  :
    Component View SE_Services_Procurement: Connection from Send Z_CREMAS_SUSMM to Business Partner empfangen has no mapping
    Component View SE_Services_Procurement: Connection from Send_PO_From_MM to Receive_Purchase_Order has no mapping
    Component View SE_Services_Procurement: Connection from ServiceAcknowledgementConfirmationRequest to ServiceAcknowledgementConfirmationCreate has no mapping
    Component View SE_Services_Procurement: Connection from InvoiceRequest senden to Receive INVOIC has no mapping
    Kindly correct me if am missing some, and help me out, what should have been done to remove this mapping errors.
    Thanks in advance,
    Regards,
    Pawan Keshwani

    If you are on >= SP9 you do not need to perform that action at all.
    Go to SU01 transaction assign SAP_XI_DEVELOPER role for the desired users and try it.
    regards
    Shravan

  • Mapping Error in AAE in PI 7.1

    Dear Team,
    If we use message mapping along with AAE concept , What are the objects we need to create in ESR and ID .
    How can we monitor the messages - messages  failed with Mapping Error.Is there any new option available in RWB?
    Thanks&Regards
    Drumi

    Hi,
    ESR Objects are same but in ID we need to create Integrated configuration
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/700058f0-b1a1-2a10-39a8-ab2627b87cfa
    If we are using AAE then we don't get any status in SXMB_MONI.
    Regards,
    Venkata Ramesh

  • Mapping error in PI 7.4 dual stack

    Dear Experts,
        Recently we upgraded our system from PI 7.1 to PI 7.4 dual stack.
    Scenerio is ECC->PI->SOAP(Webservice) synchronous
    Issue in detail:
         We are creating a invoice in ECC system through PI its updating in third party site using SOAP webservice and will get a reference number from that site and then updating in ECC as in synchronous way.
    Invoice data's are reached PI sucessfully from ECC but it not updating in the site and getting below mapping error after upgarded to PI 7.4.
    Your points will be highly appreciable.
    Kindly help to sort out this issue.
    Best Regards,
    Monikandan

    Hi Monikandan,
    It seems you are trying the sign the payload in your java mapping. So, looking at the attached error, there could be 2 possibilities:
    1) Either there is no certificate with alias: *_PRD
    2) This certificate is stored in some "System" type keystore view which is not accessible from you mapping code. Try to move your certificate to some "User" keystore view.
    Thanks & regards,
    Piyush

Maybe you are looking for

  • Word Wrap on all-day events?

    When I create an all-day event, if the event name is too long to fit on one line, it does not wrap to the next line (like it does with a timed event) and the event is truncated. How can I see all of the event name with all-day events? The problem exi

  • Right align all numbers in table of contents

    One of the entries in my table of contents has the page number right beside the entry. The rest of the page numbers are right aligned. When I "Show Invisibles", an arrow is in the single space between the entry and the page number. For the remaining

  • How do i get my music from my phone into my itunes libary

    i lost all my music in my itunes libary, but i still have it on my iphone. how do i get it back into my itunes libary? HELP PLEASE!!!!!

  • IPhoto Events In Browser

    In the iPhoto Browser within Aperture iPhoto Events are organized very differently to the way they are displayed within iPhoto itself. Is there a setting or preference I can change to make Aperture's iPhoto browser present Events as iPhoto itself doe

  • Why can't I sign on to the gannett online forums with firefox but it works with IE?

    When I try to logon to my local newspaper's websites (they are gannett papers) It just hangs at the logon popup and will not allow me access.