Error in hashtable mapping

hi all,
in the following code, I get an error in the "find()" method in
this statement
comparedURL = (Document)ht.get(findElement);
It gives me a null ptr exception..
any ideas...?
Here is the code
static void compareDocuments ( Hashtable ht )
Enumeration keys = ht.keys();
Document doc = null;
String findElement = "";
try
while ( keys.hasMoreElements())
doc = (Document ) ht.get(keys.nextEleme());
for(int h=0;h<doc.getOutgoingLinks().size();h++)
findElement = (String)doc.getOutgoingLinks.elementAt(h));
find ( ht,doc,findElement);
catch ( .... )
static void find ( Hashtable ht, Document d, String findElement)
Enumeration keys = ht.keys();
Document comparedURL = null;
double incomingWeight = 0.0;
System.out.println(findElement);
try
comparedURL = (Document)ht.get(findElement);
comparedURL.incomingWeight = d.getOutgoingCount();
comparedURL.rank+= (d.rank/comparedURL.incomingWeight);
catch ( NullPointerException npe )
npe.printStackTrace();

Well, could you show us that output? And please show
one of the keys that you are passing to the get method
as well.This is what the hashtable contains
http://www.bnet.att.com:80/leadstories/96-10-16/recentletters.htm,1.0
http://www.brabys.co.za:80/caversham/botswana/Tati.htm,1.0
http://www.brazzil.com:80/aug93.htm,1.0
http://www.brabys.co.za:80/caversham/botswana/first.htm,1.0
http://www.bnet.att.com:80/leadstories/96-10-17/recentletters.htm,1.0
http://www.bnet.att.com:80/leadstories/96-10-17/bookmark.htm,1.0
http://www.brazzil.com:80/oct93.htm,1.0
http://www.brazzil.com:80/sep93.htm,1.0
http://www.atr.org:80/townhall/FRC/net/st96e5.html,1.0
http://www.brabys.co.za:80/caversham/wcape/Tourism.htm,1.0
the hash function is
doc = new Document(
docNo,header,incomingVector,ogVector, incomingCount,outgoingCount,incomingWeight,
outgoingWeight,rank);
hash function
ht.put(header,doc)

Similar Messages

  • Import Manager 'Error 5611520 - Error Saving Key Mapping'

    I am using CREDITOR_EXTRACT in R/3 to send Vendor IDoc to XI and use CREMDM04 type.  XI generates an XML file that I load into MDM using a client that is set up for Inbound/Outbound.  The key mappings have been turned on for the Vendor repository.
    In IM, I use the standard map CREMDM04 and the system maps the incoming XML file to the vendor main table.  There are few values that I have to map manually - fine.  Next, when I click Import, I get a error pop-up message 'Error Saving Key Mapping - Errno 5611520'.
    Has anybody experienced this when using all standard content (schemas and maps) for Vendor?
    Thanks in advance.

    Subbu,
    Found another system that has the same versions as you do.  This particular error did not appear, but we got some internal IM error.  Also, the SAP training demos are on the same versions as mine.
    I am using MDC R/3 as the client and the CREMDM04 schema map.  Not using MDM inbound ports for now.  Just loading XML file generated by XI based on CREMDM04. Do you think that I need to define a Qualified Range for this client in the Console or can it be left blank?
    Thanks.

  • Data source cannot be created : MAPVIEWER-00011: Error creating a map data

    Hi everyone,
    i am getting an error meaasge while creating datasource
    " Data source cannot be created : MAPVIEWER-00011: Error creating a map data source."
    pls help

    You should assign only one value to jdbc_sid. Try with this
    <map_data_source name="mvdemo"
    jdbc_host="localhost"
    jdbc_sid="orcl"
    jdbc_port="1521"
    jdbc_user="mvdemo"
    jdbc_password="!mvdemo"
    jdbc_mode="thin"
    number_of_mappers="3"
    allow_jdbc_theme_based_foi="false"
    />
    Make sure that oracle sid is 'ORCL'
    Sujnan

  • The error is " The Mapping to Node has not been completed

    Hi All,
    I am getting a strange type of error and need help immediately.
    The error is " The Mapping to Node COMPONENTCONTROLLER.1.PLANNING_ENTITY Has Not Been Completed" for the node that exists in the Parent component and is being used in all the child nodes thru reverse mapping.
    I have done mapping in all the child nodes but still the message is coming.
    Could anybody tell me the reason .
    Regards,
    Arti.

    Basically somewhere you have defined a context node 'PLANNING_ENTITY'  to be an Input-Element. At the same time you did not define (through a component usage at design time) where the input to that node is coming from. This means the mapping path to the node is not complete, and the node does not know where it is mapped to.
    Either:
    - You untick the checkbox 'Input-Element (ext.)' inside the controller context, or
    - You find the component that uses the component with the node 'PLANNING_ENTITY' and select Component_Usage->'Name of Usage'->'Add controller usage'. Inside the controller menu you see then, you can now provide a mapping to the context node.
    I realise this now sounds a little confusing, but I'm happy to provide more details should you need them.
    Cheers,
    Robin

  • Getting Error in java mapping: Parsing empty source. Root element expected!

    Hi Experts,
       I am using java mapping for schema validation of input message. I have followed all the standard procedures and implemented the java class in the interface mapping.
    My interface mapping is like this:
    OrderData --->Java Class ---SchemaValidate
                         Mesg Map ---OrderData_to_BAP --->BAPI Msg
    So first I want to validate the schema of the input message. If the input message is invalid then XI should throw an exception. Then I use the actual message mapping to map the input order data to the BAPI input parameters.
    In the java code I am using xerces parser.
    The java code works fine when I run it as a standalone application.
    The interface mapping also works fine if I don't include the java mapping. Ofcourse schema validation does not happen.
    But when I test the interface mapping by including the java mapping then I am getting the error:
    Call method execute of the application Java mapping SchemaValidate
    Java mapping SchemaValidate completed. (execute() of SchemaValidate
    com.sap.aii.utilxi.misc.api.BaseRuntimeException: Parsing an empty source. Root element expected!
    What am I doing wrong? Why it is not getting the root element?
    My Java code is as follows:
    import com.sap.aii.mapping.api.StreamTransformation;
    import com.sap.aii.mapping.api.StreamTransformationConstants;
    import com.sap.aii.mapping.api.StreamTransformationException;
    import java.io.*;
    import java.util.Map;
    import javax.xml.parsers.*;
    import org.xml.sax.helpers.*;
    import org.xml.sax.*;
    import org.apache.xerces.jaxp.*;
    Sample mapper for SAP-XI
    @author Gopal
    public class SchemaValidate implements StreamTransformation {
        //Constants when using XML Schema for SAX parsing.
         static final String JAXP_SCHEMA_LANGUAGE =
         "http://java.sun.com/xml/jaxp/properties/schemaLanguage";
         static final String W3C_XML_SCHEMA =
         "http://www.w3.org/2001/XMLSchema";
         static final String JAXP_SCHEMA_SOURCE =
         "http://java.sun.com/xml/jaxp/properties/schemaSource";
    Injection of mapping parameters
    from integration engine
    @param map Map with configuration data
        public void setParameter(Map map) {
    Mapping implementation
    @param inputStream Input data from integration engine
    @param outputStream Output data to integration engine
        public void execute(InputStream inputStream,
                            OutputStream outputStream)
          throws StreamTransformationException {
            try {
                  // obtain an object of class javax.xml.parsers.SAXParser,
                  SAXParserFactory spf = SAXParserFactoryImpl.newInstance();
                  spf.setNamespaceAware(true);
                  spf.setValidating(true);
                  SAXParser sp = spf.newSAXParser();
                  // setup the schema file
                  sp.setProperty(JAXP_SCHEMA_LANGUAGE, W3C_XML_SCHEMA);
                  sp.setProperty(JAXP_SCHEMA_SOURCE, new File("IOReqMsgSchema.xsd"));
                  //parse the input xml using the given schema
                  sp.parse(inputStream, new ParseErrorHandler());
            catch(SAXException se) {
              se.printStackTrace();
            catch ( Exception e ) {
              throw new StreamTransformationException( e.getMessage() );
    My input message is :
    <?xml version="1.0" encoding="UTF-8"?>
    <ns0:OrderCreate_request xmlns:ns0="mynamespace">
       <ORDER>HTEST1234567</ORDER>
       <ORDER_TYPE>z001</ORDER_TYPE>
       <ORDER_NAME>Test Order</ORDER_NAME>
       <CO_AREA>INTC</CO_AREA>
       <CCTR_POSTED>1234567890888888888</CCTR_POSTED>
       <CURRENCY>USD</CURRENCY>
       <PERSON_RESP>12345679</PERSON_RESP>
    </ns0:OrderCreate_request>
    Kindly help! please this is urgent!!!!!!
    Thanks
    Gopal
    Edited by: gopalkrishna baliga on Feb 28, 2008 9:34 AM

    Hi Stefan,
       I did the code changes to return output stream and the java code works perfectly in standalone mode in my PC.
       But when I use the same in the Java mapping with XI then It throws an error "Getting Error in java mapping: Parsing empty source. Root element expected!".
    My XI J2EE server has JDK1.4.3.11.
    Is there any limitation of using SAX parser in XI? If Yes, then which parser should be used for schema validation in XI?
    I have included the XSD file for schema validation along with class files in the .jar file. This jar file is then imported in XI repository. Is the XI engine not able to read the XSD file?
    Do I have to handle reading XSD file differently? Any suggession how?
    Is this parser error due to some security access?
    Kindly help me! I have been struggling with this problem since 2 weeks. I will be greatfull to you if you can help me.
    Thanks
    Gopal

  • How to use error table in mapping level?

    Hi all
    Any one please tell me how to use error table in mapping level or how to handle the errors in mapping.
    I am creating one error table in oracle but i dont know how to use it in mapping.
    Thanks in advance.
    Kumar

    Hi Kumar,
    You need to use Error Table along with the Data Rule .
    Error tables are used with Logical error handlers (Data Rules). Detailed description on using data rules is explained in the following document
    http://www.oracle.com/technology/products/warehouse/pdf/OWB10gR2_ETLandBusinessRules.pdf
    In a nut shell usage of error tables is as follows.
    1. Create a data rule associate it with a table (Target table or table in which you load data).
    2. Use the table in a mapping as target table.
    3. Deploy the table and mapping.
    Now in the target schema one more table will be created with the name <target table name>_ERR. When a mapping is executed the data which violates the data rule gets into this error table.
    The following has to be done to have error table name of customers choice.
    1. Right click on the table and click configure.
    2. Give the table name in "shadow table name" section.
    3. Deploy the table.
    4. Use this table in a mapping. Now in the mapping on this table properties in "Error Table Name" section the name of the table specified in "shadow table name" will be populated.
    Thanks,
    Sutirtha

  • Error in codepage mapping for source system

    Hi Experts,
    I am getting the following error while loading data from ECC only for Account COPA datasource.
    Error in codepage mapping for source system. Error text:
    Message no. RSDS_ACCESS013
    Regards,
    Sandeep Sharma

    Hi Sandeep,
    This is a issue related to idocsRFC connections from teh sourcesystem....
    U can contact ur BASIS team to solve this...
    From their end they have to chk the unprocessed/errored idocs in BD87...
    They have to run a report:RBDAGAIN to process the errored idoc's in the source which are in STATUS:'02'.
    This is a solution for temporarilrly basis...
    If this occurs regularly they have to change the settings in SM59 which is so important...
    Refer exact note for this: 784381
    The SAP note 613389 may also be relevant for the error message "Could not find code page for receiving system", please check the information given in the note and see if you can use it to resolve the problem.
    Regards,
    Marasa.

  • Error in codepage mapping for source system. Error

    Hi BW Experts,
    I am facing following error:
    Error message: Error in codepage mapping for source system. Error text:
    Details: Inbound Processing ( 1000  Records ) : Errors occurred
                Error in codepage mapping for source system. Error text:
                Update PSA ( 0 Records posted ) : Missing messages
    I repeated the delta working and everything fine.
    Does anybody know why this error occurs?

    Run rsa13 (for bi 7.0) find your source system which one you are using for data transfer and double  click on it and find special options there select  the optioned i mentioned already.
    Please search SDN you can fin threads related to this thread
    if not let me know.
    Regards.

  • Error in codepage mapping for source system. Error text:

    guyz,
    im facing the below issue in prod.
    Error in codepage mapping for source system. Error text:
    Message no. RSDS_ACCESS013
    Collection in source system ended
    Error message during processing in BI
    Diagnosis
    An error occurred in BI while processing the data. The error is documented in an error message.
    System Response
    A caller 01, 02 or equal to or greater than 20 contains an error meesage.
    Further analysis:
    The error message(s) was (were) sent by:
    Inbound Processing
    Procedure
    Check the error message (pushbutton below the text).
    Select the message in the message dialog box, and look at the long text for further information.
    Follow the instructions in the message.
    need your guidance,
    cheerz,
    raps.
    Edited by: raps on Mar 1, 2012 9:39 AM

    Hi ,
    Kindly go throught the following threads for your issue resolution::
    Error in code page mapping for Source System
    Erroe in source system
    Regards,
    Arpit

  • IPhone 6 Plus 16GB blue screen crashes: Read, error type:Address map hole or size mis-match

    Hi folks,
    Some time ago I had a 16GB 6+ and it crashed with the blue screen, so I returned it. I now have a brand new one that I got from Tmobile ($75 return fee) and although it has mostly worked just fine, I have gotten 2 blue screen crashes. Below are the details from the phone's log.
    What strikes me is the message "Read, error type:Address map hole or size mis-match".
    Does anyone know if this could be caused by a hardware defect?
    I've gotten one of these crashes running iOS 8.1.2 and another in 8.1.3.
    Thanks.
    Incident Identifier: 20304759-E90B-453F-BDC5-176AF4E30041
    CrashReporter Key:   fcf18d230005749957728546dea3221a0c588330
    Hardware Model:      iPhone7,1
    Date/Time:           2015-01-25 19:43:44.913 -0800
    OS Version:          iOS 8.1.2 (12B440)
    panic(cpu 0 caller 0xffffff8008cd45d0): L2C PIO error (src:core0-AF snoop, address:0x1202030208, access:Read, error type:Address map hole or size mis-match, L2C_ERR_STS:100003fc00000202, L2C_ERR_ADR:0x1108e1202030208, L2C_ERR_INF:0x2107)
    Debugger message: panic
    OS version: 12B440
    Kernel version: Darwin Kernel Version 14.0.0: Mon Nov  3 22:27:30 PST 2014; root:xnu-2783.3.22~1/RELEASE_ARM64_T7000
    iBoot version: iBoot-2261.3.33
    secure boot?: YES
    Paniclog version: 3
    Kernel slide:     0x0000000006000000
    Kernel text base: 0xffffff8008002000
    Epoch Time:        sec       usec
      Boot    : 0x54bc22ef 0x00000000
      Sleep   : 0x54c58398 0x0002abb4
      Wake    : 0x54c583ae 0x000f08df
      Calendar: 0x54c5b7e3 0x00025045

    same with my iPhone 4s 16gb
    {"os_version":"iOS 8.1.3 (12B466)","bug_type":"110"}
    Incident Identifier: 582496DB-6999-468C-9504-3D1C191B9F4B
    CrashReporter Key: 623a577555e51ed110b937358adfa66fba3ea447
    Hardware Model: iPhone4,1
    Date/Time: 2015-02-20 04:17:50.830 +0300
    OS Version: iOS 8.1.3 (12B466)
    panic(cpu 0 caller 0x83dc8347): "i2c1::_checkBusStatus Bus is still in a bad state; last write status 00010110 xfer 00000000 fifo 00000000 for device als"
    Debugger message: panic
    OS version: 12B466
    Kernel version: Darwin Kernel Version 14.0.0: Mon Jan 12 21:30:11 PST 2015; root:xnu-2783.3.26~3/RELEASE_ARM_S5L8940X
    Kernel slide: 0x0000000003400000
    Kernel text base: 0x83401000
    Boot : 0x54e68884 0x00000000
    Sleep : 0x54e68a7e 0x000dd6ac
    Wake : 0x54e68b19 0x00035c02
    Calendar: 0x54e68b1d 0x00040927
    Panicked task 0x84a87c60: 13773 pages, 122 threads: pid 0: kernel_task
    panicked thread: 0xc5066e80, backtrace: 0x81a33ca0
    0x834ad94d
    0x834adcb1
    0x8341d5bd
    0x83dc8347
    0x83dc8059
    0x83dc7e35
    0x8389c601
    0x8389c513
    0x836f6f65
    0x8389cc6d
    0x8389ccc5
    0x83a9f18d
    0x83a9c27f
    0x83a9c73f
    0x83a9c90d
    0x836f6f65
    0x83a9c8e5
    0x836e91e7
    0x8343ed9b
    0x834ab59c
    Task 0x84a87c60: 13773 pages, 122 threads: pid 0: kernel_task
    Task 0x84a87948: 771 pages, 3 threads: pid 1: launchd
    Task 0x84a87000: 2016 pages, 13 threads: pid 17: UserEventAgent
    Task 0x84a87630: 481 pages, 4 threads: pid 18: misd
    Task 0x84a87318: 4114 pages, 22 threads: pid 19: CommCenter
    Task 0x87a62948: 349 pages, 2 threads: pid 21: keybagd
    Task 0x87a62318: 574 pages, 4 threads: pid 23: iaptransportd
    Task 0x87a62000: 868 pages, 9 threads: pid 24: configd
    Task 0x87a7ac60: 793 pages, 4 threads: pid 25: lockdownd
    Task 0x87a7a948: 1218 pages, 6 threads: pid 26: imagent
    Task 0x87a7a630: 2771 pages, 4 threads: pid 27: atc
    Task 0x87a7a318: 792 pages, 2 threads: pid 28: fairplayd.H1
    Task 0x87a7a000: 1571 pages, 14 threads: pid 29: aggregated
    Task 0x87c4ac60: 1069 pages, 4 threads: pid 30: routined
    Task 0x87c4a318: 707 pages, 5 threads: pid 33: timed
    Task 0x87d23c60: 646 pages, 2 threads: pid 35: installd
    Task 0x87d23948: 2383 pages, 11 threads: pid 36: mediaserverd
    Task 0x87d23318: 1279 pages, 11 threads: pid 38: ubd
    Task 0x87d23000: 249 pages, 7 threads: pid 39: syslogd
    Task 0x87d6ac60: 410 pages, 2 threads: pid 40: softwareupdated
    Task 0x87d6a948: 851 pages, 5 threads: pid 41: mediaremoted
    Task 0x87d6a630: 1877 pages, 7 threads: pid 42: identityservices
    Task 0x87d6a318: 9938 pages, 16 threads: pid 43: SpringBoard
    Task 0x87d6a000: 453 pages, 2 threads: pid 44: fileproviderd
    Task 0x87e25c60: 609 pages, 4 threads: p

  • Error: "Operation (Message) Mapping ... does not exist" during activation

    Hello Colleagues,
    I face following problem at our PI 7.1 System.
    After import and activating Integration Builder (Directory) Objects I received the Error "Operation (Message) Mapping ... does not exist" but the object (s) exist at Enterprise Service Builder (Integration Repository) at respective Software Component Version.
    The individual Product and respective Software Component Version was created at SLD and imported at Enterprise Service Builder (Integration Repository). Afterwards Namespaces with different objects was created incl. the missing Operation Mapping.
    As Check:
    When I try to import under menu Tools\Apply Model from ES Repository at Integration Builder (Integration Directory) i see onyl SAP (SAP BASIS 7.1) Software Components.
    I am not able to find any object regarding the individual created Product\Software Component.
    So, i asume objects from the Enterprise Service Builder (Integration Repository) aren't available at Integration Builder (Integration Directory).
    SLD cache refresh and application restart already performed.
    Any idea?
    Many thanks in advance!
    Regards,
    Jochen

    Hi Laxmi,
    attached short steps that we performed.
    In general in upfront:
    This behavior happend after import objects from DEV to TEST for Enterprise Services Builder (IR) and Ingegration Builder (ID) in addition manual object creation at SLD for Technical Systems and Business Systems.
    We don't have (currently) a central SLD for each environments DEV, TEST, PROD (not finished setup up to now). For each environments we have a local SLD at PI (XI).
    Deployment steps:
    - Product and respective Software Component Version created under Software Catalog
    - objects creation at SLD for Technical Systems
    - objects creation at SLD for Business Systems
    - objects imported from DEV to TEST for Enterprise Services Builder (IR) incl. save and activation
    - objects imported from DEV to TEST for Integration Builder (ID)
    - manual configuration for communication channels performed
    - after save and activation i received following error message: "Object Operation Mapping: ... does not exist.
    Because of this error message I thing objects out of the Enterprise Services Builder (IR) aren't available at Integration Builder (ID) but i don't know the cause.
    Could you help me to understand this behavior?
    Many thanks in advance!
    Regards,
    Jochen

  • Seeburger Splitter:Fatal error in user mapping . java.lang.StackOverflowErr

    Hello,
    I have created a mapping E2X_SLSRPT_UN_D96A as we didnt have the standard mapping(See_)  from Seeburger
    In my scenario when I give hardcoded mapping name ,it works fine,so I assume mapping is correctly created and deployed.
    But I need to use it with splitter,and in doing so,I am getting this error:
    Message initiation failed: Adapter call failed. Reason: --- Conversion of synchronous request from module chain ended with errors ---Error: [Error:ID=not set;LEVEL=1] Fatal error in user mapping ... java.lang.StackOverflowError at com.seeburger.jucon.dochandler.SegmentDescription.semanticCheck(SegmentDescription.java:444) at com.seeburger.jucon.dochandler.SegmentDescription.semanticCheck(SegmentDescription.java:460) at com.seeburger.jucon.dochandler.SegmentDescription.semanticCheck(SegmentDescription.java:460) at com.seeburger.jucon.dochandler.InhouseDocReader.doSyntaxCheck(InhouseDocReader.java:1555) at com.seeburger.jucon.dochandler.InhouseDocReader.moveNext(InhouseDocReader.java:1852) at com.seeburger.jucon.dochandler.EdifactDocReader.moveNext(EdifactDocReader.java:457) at com.seeburger.jucon.dochandler.InhouseDocReader.moveNext(InhouseDocReader.java:1859) at com.seeburger.jucon.dochandler.EdifactDocReader.moveNext
    My splitter configuration is :
    classifier     classifierMappingID     Abc
    classifier     destSourceMsg     MainDocument
    classifier     showInAuditLog     true
    bic     destSourceMsg     MainDocument
    bic     destTargetMsg     MainDocument
    bic     logAttID                          ConverterLog
    bic     mappingName     AUTO
    bic     saveSourceMsg     ORIGINAL_EDI
    bic     split     true
    splitter     mode     ASYNC
    splitter     transaction     MESSAGE
    The same configuration works fine with ORDERS message.
    Also,I have configured same mapping name in Splitter section in Seeburger Workbench.
    Has anyone encountered this error before?
    Kindly let me know
    Thanks.
    Regards,
    Shweta

    Hi,
        I understand that you need to use Custom mapping for your EDIFACT Message...
    Then did you created the generic mapping with Clasasifier ID...i.e ABC_edifact... (By default it will be See_Edifact)
    so you need to create the generic mapping by Name provided in classifier ID of settings then....
    need to create the child mapping in such a way that it calls the same (developed one...)
    in default cases See_Edifact frames the child mapping name to be called based on the messages received ...
    similarly your generic mapping need to call your child mapping....
    Hope this clears you
    Rajesh

  • System Error During Message Mapping

    I've set up a simple mapping scenario that sends a DEBMAS06 IDoc from our R/3 system to XI mapping to DEBMAS06 and writing out to a file.  I am getting the following system error during message mapping:
      <SAP:Category>XIServer</SAP:Category>
      <SAP:Code area="MAPPING">JCO_SYSTEM_FAILURE</SAP:Code>
      <SAP:P1>Server repository could not create function template for 'SMPP_CALL_JAVA_RUNTIME</SAP:P1>
    I have gone back to the Design Builder and tested out the message mapping and the interface mapping and both work successfully.  I have also taken the payload of the message and submitted it via the RWB and it generates the same error as when sent from R/3.  Any other places I can look?

    Hi Mike,
    You have got the connectivity issue problem between ABAP and J2EE stack. When do the test in the Message Mapping, thats the J2EE and it works. But during the runtime it has to go to the Integratin Server, which is the ABAP stack. Fix the connectivity issue, check the smicm,trace and debug log etc.
    Hope this helps.
    Cheers,
    Ranjan

  • Was 640 java add in installation error 1332 - no mapping...

    i am currently installing
    the was 640 java add in for the was 640 abap.
    i am logged in as /Sap_LocalAdmin and the installation fails.
    Please check the following error messages:
    INFO 2005-03-16 16:36:26
    Successfully added privileges 'SeServiceLogonRight SeNetworkLogonRight SeDenyInteractiveLogonRight SeDenyRemoteInteractiveLogonRight' to account 'JDCKARLSRUHESAPServiceJXI' on host '.'.
    INFO 2005-03-16 16:36:28
    Successfully added privileges 'SeTcbPrivilege SeAssignPrimaryTokenPrivilege SeIncreaseQuotaPrivilege' to account 'JDCKARLSRUHEjxiadm' on host '.'.
    ERROR 2005-03-16 16:36:28
    FSL-00001  System call failed. Error 1332 (No mapping between account names and security IDs was done.
    ) in execution of system call 'LookupAccountName' with parameter (NULL, jdcbwSAP_LocalAdmin, ...), line (305) in file (synxcaccmg.cpp).
    ERROR 2005-03-16 16:36:28
    FSH-00008  A system error occurred when executing function LookupAccountName. ErrorNo=1332
    i don´t know exactly what to do now? should i edit the xml file or what can be done?
    or am i wrong with my assumption, that the system´s reference to the group isn´t valid?

    Hi,
    i had the same problem too.
    Actually i'm installing the "Sneak Preview SAP NetWeaver 2004 Slim Edition (Java)" on Windows 2003 DomainController. In this case the relevant settings are stored in "<Location_Of_SAPINST.EXE>\ADA\control.xml", which is being copied to "<SAPINST_INSTDIR>\j2ee_wp\installdefault\" during installation.
    Before i started a new installation i searched the original "control.xml" for String "LocalAdmin".
    I replaced:
    'name:<u>host</u> + "
    SAP_LocalAdmin"'
    with
    'name:<u>this.getDomain()</u> + "
    SAP_LocalAdmin"'
    and
    'name:<u>host</u> + "
    SAP_" + this.getSID() + "_LocalAdmin"'
    with
    'name:<u>this.getDomain()</u> + "
    SAP_" + this.getSID() + "_LocalAdmin"'
    The installation is still running at the moment, but far behind that point where the error always came up.
    For me it looks very good.
    SAP says installation on a DC is not supported, which not means that it would be impossible.
    Remember to edit the "control.xml" at it's original location BEFORE you start the installation.
    Good luck,
    Philipp Kammerer

  • Error in messege mapping " Structure with min!=max without mapping"

    Hi Experts,
                           got an error in  messege mapping, after mapping was done as " Structure with min!=max without mapping" . Any idea what is my mistake!
    Points will be rewarded.
    Thanks and Regards,
    Arnab.

    Hi Mohd,
    This error pops up when your mapping is incomplete...
    First check all the fields are mapped....
    and check all the required fields are mapped which are in RED in colour...if not map to the specific field or to a constant or disable that one...and check the type of the sourse and target fields.....is it string,floatetc
    you got a element, which occurences (=minOccurs & maxOccurs) are unequal.
    Those fields have to be mapped.
    http://help.sap.com/saphelp_nw04/helpdata/en/02/9a6a1c244411d5b2e30050da4c74dc/frameset.htm
    Reward points if this helps
    Regards
    Pragathi.

Maybe you are looking for

  • How to change the text of a standard iview

    Hello, We are implementing ESS on ERP 2005 in an Irish client, and there is no Irish version of the webdynpro iview to change Personal data. So we follow the IMG docu and use the GB iview and works fine. The problem is that the text on one of the fie

  • Unable to play Ram Preview, Iris Pro problem?

    Hi, I cannot play the ram preview, when I click the button the image gets flipped and frozen.  I can scrub the timeline and see the animation I am working on, but I need a real-time preview.  I downloaded the last after effects patch for mavericks, b

  • Using TreeSet, how to list in ascending order....

    hi i need to use TreeSet class and i need to list the list of books in order of ISBN number and also in order of author.. both in ascending order.. ivebeen thinking for long long time but..can't figure it out.. please help me guys thanks

  • AE CS5 launching error

    Hello I'm using windows 7 Home Premium 64 bit I've got the Adobe Master Collection CS5 and last night installed PS 64bit, and AE among those collection components. There was two types of Photoshop(32 bit, 64 bit), but no for AE(at least I don't think

  • My text tone tries to play twice when i get one message, any clue why?

    Everytime I get a text or any other message, the ring tone plays double, it starts to play then immediately starts again. Any ideas what to do?