Simple Data Type in CAF of SAP NetWeaver DevStudio 7.1 SP3

Hallo
Anybody knows about the use of Enumeration for simple Data Type in CAF of SAP NetWeaver DevStudio 7.1 SP3?
I've defined an attribute "status" for the Entity "Project" with the following values
0: NEW;
1: ACTIVE;
-1: INACTIVE. 
As you see the data type is short.
In the program I want to use the following code:
Project myProject = new Project();
myProject.setStatus(Status.NEW)
But I found it out, it is inpossible to to use Status.NEW.
On the other side I read the article of https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/085098ea-0c01-0010-12a8-80ac838bec85. This article is again not updated with the version 7.1 SP 3.
I cannot understand about the whole changes. In the previous release we can define a DDIC type and use it as Simple Data type and in the new Release we just use the XSD-Facet to define an enumeration, but the problem is: we can not reference it in the program. I don't see any advantage.  And I tried to find out how I can define the attibute using DDIC type. I didn't get it.
Thanks for any Hints!
Kind Regards!
Ping

Hi Oliver,
Thanks for the reply!
I have login into the system, using User Id and Password.
I have tried unsinstalling everything but the result remains the same.
Previously only one service SAPCE_01 was showing up in the services explorer. But when I tried the
Instance 00:
sc create SAPRKT_00 binPath= "C:\usr\sap\RKT\SYS\exe\uc\NTI386\sapstartsrv.exe pf=C:/usr/sap/RKT/SYS/profile/CE1_SCS00_xxxxx" start= auto obj= "NT AUTHORITY\LocalService" password= abcd1234
Instance 01:
another service SAPCE1_00 was created. But when I tried to retry the instlattio, the installation again stopped at the point while starting the service and when I tried to retry it terminted with the following error.
Please guide.
sapinst.exe - Application Error
The instruction at "0x00cbf040" referenced memory at "0x0072006d". The memory could not be "read".
Click on OK to terminate the program
Click on CANCEL to debug the program
Selfextractor error
iaextract.c:888: child has signaled an exec error. Keeping directory C:/DOCUME1/I047488/LOCALS1/Temp/sapinst_exe.1448.1196681060
OK  
Manish

Similar Messages

  • Dynamic Drop Down creation using simple data types

    Hi all,
    I have got a requirement in which i have to create an iView which is going to have 6 drop down values and with in that 1 value is going to have sub values which needs to get displayed in the similar drop down fashion.
    I have created a simple data type having enumeration of the 6 values and linked the same to iView with drop down by key which is working successfully. And for the purpose of sub values i have created a similar simple data type with two values and linked the same with a value attribute.
    Well, can any one tell me the further process to proceed ?
    Thanks in advance ...
    Vipin

    Vipin,
    There are quite some steps to achieve what you need. Since you have both your DropDownByKey elements defined and bound to context elements, it may make sense to keep the Second DropDownByKey element invisible and make it visible only when user selects a specified key from first DropDownByKey. To achieve this, follow these steps.
    1. Create an action with a parameter "key" of type string.
    2. Bind this action with onSelect event of your First DropDownByKey UI Element.
    3. Do mapping of parameter "key" in your wdDoModifyView with following code.
      if (firstTime)
             final IWDDropDownByKey dk = (IWDDropDownByKey)view.getElement("DropDownByKey1");
               // Replace DropDownByKey1 with id of your DropDownByKey Element.
             dk.mappingOfOnSelect().addSourceMapping("key", "key");
    4. Create a context attribute of type WDVisibility say "DDVisible" and bind to "visible" property of your second DropDownByKey.
    5. Set DDVisible to NONE in wdInit().
    wdContext.currentContextElement().setDDVisible(WDVisibility.NONE); 
    6. In onSelect action write this code to make second visible
    if(key.equalsIgnoreCase("Two")){
         //Replace "Two" with your required value.
             wdContext.currentContextElement().setDDVisible(WDVisibility.VISIBLE);
           else{
                wdContext.currentContextElement().setDDVisible(WDVisibility.NONE); 
    This should give the desired results.
    Hope this helps.
    Vishwas.

  • Issues in Simple Data Type - Float

    Hi SDN,
    I have created a simple data type of float and assigned to a context attribute. I have mentioned that  the minimum and maximum inclusive value for the float as 0.1 and 29.9. This is assigned to a field aaa. When the page loads for the first time, there appears 0 by default and if I dont edit the field and try saving, it doesnt throw any error message. It accepts the value which was very strange to me. But if I edit the value and put as 0.0, it throws error message saying, the acceptable value for the field is between 0.1 and 29.9.
    What should I do to resolve this issue? Also Can I make the field empty instead of a zero appearing the field?
    Regards,
    Ganesh N

    Hello Ganesh,
    Whatever the value you have provided only that values are allowed in that input field. if the value is 0 or 0.0 you can validate that attribute and throw an error message that "The Value should not be 0".
    Regards
    Nizamudeen SM

  • Problem with central build of Simple Date Type with Enumeration

    Dear gurus,
    I hope I'm posting this in the correct forum. Please advise if I'm in the wrong forum.
    I have a Web Dynpro DC in which I've created a simple data type with enumeration.  It is used for binding to a radio box. The data type is called DownloadType; the enumeration contains two vales: current and archive. To allow me to access the enumeration values, I turn on the "Generate a class representation of the enumeration" in the data type builder.
    I then reference the enumeration values with code like:
    if (downloadType.equals (DownloadType._CURRENT))
        yada yada yada
    This works fine when building locally and deploying directly. But when the DC is built by CBS (or doing a "Development Component->Build..." in NW Dev Studio), the build fails, stating that the DownloadType._CURRENT symbol cannot be resolved.
    For example:
    C:yadayadayada.java:227: cannot resolve symbol
    symbol  : variable _CURRENT
    location: class yadayadayada.DownloadType
                    equals(DownloadType._CURRENT))  {
    Apparently the central builder is not smart enough to handle the "Generate a class representation" flag.
    Is this a known problem? Are there any workarounds?
    Thanks in advance for any help you can provide.
    -Kelly
    P.S. Environment: 2004s

    Hi Kelly,
    works for me using SP10, what SP are you on?
    There's a line in the DC log that says:
         [ddgen] [Info]    Generating datatypes/com/x/x/x/MyEnum.java
    and the java compiler includes the matching path for compilation:
          [echo]   source paths:
          [echo]     ...\_comp\src\packages
          [echo]     ..\t\ABF37B5AFB3B2E8A76FFD29E7862EA48\gen_ddic\datatypes
    Regards,
    Marc

  • How can I connect with SAP NetWeaver 7.01 SR1 SP3 ABAP Developer Edition

    Hello together,
    I downloaded and installed the SAP NetWeaver 7.01 SR1 SP3 ABAP Developer Edition on a virtual client.
    I toke a long period to finish the installation.
    Now some questions to use this system in the right way:
    1.) How can I get a "developer license" which do not expire? Because the link http://www.sap.com/minisap seems to be not ok.
    2.) How can I connect via network with the sap system? the application server is running on a vm client with a static ip i.e. 192.168.1.5. And my laptop gets a ip in the same range. I have installed the gui on my laptop and tried to connect with the system. But it does not work! I used as application server the ip of the virtual machine. I use the gui witch is installed on the same host like the application it works (with localhost as application server adress)
    3.) Where can I download the newest version of the SAP Gui? I do not have a service marktplace account? Is it possible?
    4.) I read in the documentation that it should be possible to reach the sap system also with web dynpro: http://localhost:8000/sap/bc/gui/sap/its/webgui?sap-client=000
    But it does not work. I got an error message: Service cannot be reached
    Note
    The termination occurred in system NSP with error code 403 and for the reason Forbidden.
    The selected virtual host was 0 .
    Regards
    Christian

    I fixed in the meantime the second problem. It was a problem with my local firewall. But the other three points are still open.
    Thank in advance for your help

  • Problem in Installation of SAP Netweaver CE 7.1 SP3

    Hi,
    I am trying to install SAP Netweaver CE 7.1 SP3 on Windows XP Professional. All the steps are executed sucessfully till Step 26 where it gives an error when it tries to
    "Creating SAP start service of instance CE1 SCS01"
    It says that the "Service didn't come up in 40 seconds" and if you retry the installation is terminated in 1 min with the error :
    Selfextractor error
    iaextract.c:888: child has signaled an exec error. Keeping directory C:/DOCUME1/I047488/LOCALS1/Temp/sapinst_exe.2620.1195815840
    In the SAP MMC only one server can be seen with the processes;
    msg_server.exe
    enserver.exe
    gwrd.exe
    All these processes are running in green.
    Please reply ASAP.
    The last part of the sapinstdev_log is :
    TRACE      2007-11-23 16:56:02.317
    NWInstance.getSAPLocExeDir() done: C:/usr/sap/CE1/SYS/exe/uc/NTI386
    TRACE      2007-11-23 16:56:02.317
    NWInstanceInstall.createServiceWindows(): going to run <C:\usr\sap\CE1
    \SYS\exe\uc\NTI386\sapstartsrv.exe -stdin> with input <-r -q -p C:\usr\sap\CE1\SYS\profile\CE1_SCS01_AGRD50051628A -s CE1 -n 01 -U "NT Authority\LocalService" -P "XXXXXX" -e SAP_ALL\I047488>
    TRACE      2007-11-23 16:56:02.317
    lognode: undefined, append: false
    INFO       2007-11-23 16:56:02.348 [synxcpath.cpp:815]
               CSyPath::createFile() lib=syslib module=syslib
    Creating file C:\Program Files\sapinst_instdir\CE71_DEV_ADA\INSTALL\sapstartsrv.exe.log.
    TRACE      2007-11-23 16:56:02.348 [synxcchapp.cpp:264]
               CSyChildApplicationImpl::doStart() lib=syslib module=syslib
    Going to call CreateProcess/CreateProcessAsUser for 'C:\usr\sap\CE1\SYS\exe\uc\NTI386\sapstartsrv.exe' now.
    TRACE      2007-11-23 16:56:02.348 [synxcchapp.cpp:560]
               CSyChildApplicationImpl::doStart() lib=syslib module=syslib
    Trying to start C:\usr\sap\CE1\SYS\exe\uc\NTI386\sapstartsrv.exe using CreateProcess(NULL, <command line for executable C:\usr\sap\CE1\SYS\exe\uc\NTI386\sapstartsrv.exe, NULL, NULL, TRUE, 0x420, NULL, NULL, &StartupInfo, &ProcessInfo)
    TRACE      2007-11-23 16:56:02.535 [synxcchapp.cpp:638]
               CSyChildApplicationImpl::doStart() lib=syslib module=syslib
    A child process has been started. Pid = 2480. Executable name: C:\usr\sap\CE1\SYS\exe\uc\NTI386\sapstartsrv.exe
    INFO       2007-11-23 16:56:02.535
               CJSlibModule::writeInfo_impl()
    Output of C:\usr\sap\CE1\SYS\exe\uc\NTI386\sapstartsrv.exe -stdin is written to the logfile sapstartsrv.exe.log.
    TRACE      2007-11-23 16:56:45.170 [synxcpipe.cpp:195]
               CSyStdOutErrPipe::onUnderflow(void * buf, int maxBytes, int timeout)
               lib=syslib module=syslib
    Syslib info about system call. OS message 109 (The pipe has been ended.
    ) after execution of system call 'ReadFile' with parameter ((read end of child process output pipe)), line (403) in file (synxcpipe.cpp).
    WARNING    2007-11-23 16:56:45.170
               CJSlibModule::writeWarning_impl()
    Execution of the command "C:\usr\sap\CE1\SYS\exe\uc\NTI386\sapstartsrv.exe -stdin" finished with return code -1. Output:
    Service not started within 40 seconds.
    TRACE      2007-11-23 16:56:45.170
    NWInstance.getSAPLocExeDir()
    TRACE      2007-11-23 16:56:45.170
    NWInstance.getProfiles()
    TRACE      2007-11-23 16:56:45.170
    NWInstance.getProfiles(): profiles object exists
    TRACE      2007-11-23 16:56:45.170
    NWInstance.getProfiles() done
    TRACE      2007-11-23 16:56:45.170
    NWProfiles(CE1.SCS01).getProfile()
    TRACE      2007-11-23 16:56:45.170
    NWProfiles(CE1.SCS01)._getProfile(INSTANCE)
    TRACE      2007-11-23 16:56:45.170
    NWProfiles(CE1.SCS01).getPersistentDefaultProfile()
    TRACE      2007-11-23 16:56:45.170
    NW.getPersistentDefaultProfile()
    TRACE      2007-11-23 16:56:45.186
    NW.isUnicode(true)
    TRACE      2007-11-23 16:56:45.186
    NW.isUnicode() done: true
    TRACE      2007-11-23 16:56:45.186
    NW.getPersistentDefaultProfile() done
    TRACE      2007-11-23 16:56:45.186
    NWProfiles(CE1.SCS01).getPersistentDefaultProfile() done
    TRACE      2007-11-23 16:56:45.201
    NWProfiles(CE1.SCS01)._getPersistentProfile(INSTANCE)
    TRACE      2007-11-23 16:56:45.217
    NWProfiles(CE1.SCS01).getPersistentDefaultProfile()
    TRACE      2007-11-23 16:56:45.217
    NW.getPersistentDefaultProfile()
    TRACE      2007-11-23 16:56:45.232
    NW.isUnicode(true)
    TRACE      2007-11-23 16:56:45.232
    NW.isUnicode() done: true
    TRACE      2007-11-23 16:56:45.232
    NW.getPersistentDefaultProfile() done
    TRACE      2007-11-23 16:56:45.232
    NWProfiles(CE1.SCS01).getPersistentDefaultProfile() done
    TRACE      2007-11-23 16:56:45.232
    NWProfiles(CE1.SCS01)._getPersistentProfile(INSTANCE) done
    TRACE      2007-11-23 16:56:45.264
    NWInstance.isAlwaysUnicode()
    TRACE      2007-11-23 16:56:45.264
    NWInstance.isAlwaysUnicode(SCS)
    TRACE      2007-11-23 16:56:45.264
    NWInstance.isAlwaysUnicode() done: true
    TRACE      2007-11-23 16:56:45.264
    NWInstance.isAlwaysUnicode() done: true
    TRACE      2007-11-23 16:56:45.264
    NWProfiles(CE1.SCS01)._getProfile(INSTANCE) done
    TRACE      2007-11-23 16:56:45.264
    NWProfiles(CE1.SCS01).getProfile() done
    TRACE      2007-11-23 16:56:45.326
    NWInstance.getSAPLocExeDir() done: C:/usr/sap/CE1/SYS/exe/uc/NTI386
    WARNING[E] 2007-11-23 16:56:45.326
               CJSlibModule::writeError_impl()
    MOS-01011  'C:/usr/sap/CE1/SYS/exe/uc/NTI386/sapstartsrv.exe' returned with '-1'.
    TRACE      2007-11-23 16:56:45.326 [iaxxejsbas.hpp:408]
               handleException<ESAPinstJSError>()
    Converting exception into JS Exception EJSException.
    TRACE      2007-11-23 16:56:45.326
    Function setMessageIdOfExceptionMessage: osmod.applicationReturn
    WARNING[E] 2007-11-23 16:56:45.326
               CJSlibModule::writeError_impl()
    MOS-01011  'C:/usr/sap/CE1/SYS/exe/uc/NTI386/sapstartsrv.exe' returned with '-1'.
    TRACE      2007-11-23 16:56:45.326 [iaxxejsbas.hpp:483]
               EJS_Base::dispatchFunctionCall()
    JS Callback has thrown unknown exception. Rethrowing.
    ERROR      2007-11-23 16:56:45.357 [sixxcstepexecute.cpp:891]
    FCO-00011  The step createService with step key |CE_DevSystem_App|ind|ind|ind|ind|0|0|NW_Onehost_System|ind|ind|ind|ind|2|0|NW_CI_Instance|ind|ind|ind|ind|11|0|NW_Instance|ind|ind|ind|ind|1|0|createService was executed with status ERROR .
    TRACE      2007-11-23 16:56:45.373 [iaxxgenimp.cpp:761]
                CGuiEngineImp::showMessageBox
    <html> <head> </head> <body> <p> An error occurred while processing service SAP NetWeaver CE Developer Edition > SAP NetWeaver CE Development System. You may now </p> <ul> <li> choose <i>Retry</i> to repeat the current step. </li> <li> choose <i>View Log</i> to get more information about the error. </li> <li> stop the task and continue with it later. </li> </ul> <p> Log files are written to C:\Program Files/sapinst_instdir/CE71_DEV_ADA/INSTALL. </p> </body></html>
    TRACE      2007-11-23 16:56:45.373 [iaxxgenimp.cpp:1257]
               CGuiEngineImp::acceptAnswerForBlockingRequest
    waiting for an answer from gui

    Hi All,
    I faced the same problem on WinXP Pro SP2, SP3 and on Win2k3Server although all the installation requirements are fulfilled. I have the same problem with SP5  downloaded from SDN which was released recently.
    I could install successfully SP1(Trial Version) from a DVD that came with the book "Developer's Guide to SAP NetWeaver Composite Environment". This was packaged using "Install Anywhere".
    So, I think it is a problem with SAPInst. Could anyone help to solve this problem?
    Your suggestion is highly appreciated.
    Thanks & Regards - Tarini P Mohanty

  • Problem while installing SAP Netweaver CE 7.1 SP3!

    Hi,
    I am installing SAP Netweaver CE 7.1 SP3 on Windows XP Pro. The installation
    proceeds normally till Step 26 but at Step 26 while creating and startiong
    SAPStartSrv an error is thrown that the Service can not be started in 40 seconds.
    If I retry the installation it is terminated with some errors.
    The service sapstartsrv can be seen in the task manager up and running.
    Please reply ASAP.
    I am providing here the error logs:
    TRACE      2007-11-23 16:56:02.161
    NWProfiles(CE1.SCS01)._getProfile(START) done
    TRACE      2007-11-23 16:56:02.161
    NWProfiles(CE1.SCS01).getStartProfile() done
    TRACE      2007-11-23 16:56:02.161
    NWInstance.getStartProfilePath(true)
    TRACE      2007-11-23 16:56:02.161
    NWInstance.getStartProfileName()
    TRACE      2007-11-23 16:56:02.161
    NWInstance.getStartProfileName() done: CE1_SCS01_AGRD50051628A
    TRACE      2007-11-23 16:56:02.161
    NWInstance.getDirProfile()
    TRACE      2007-11-23 16:56:02.161
    NW.getDirProfile(false)
    TRACE      2007-11-23 16:56:02.161
    NW.getDirProfile() done: C:/usr/sap/CE1/SYS/profile
    TRACE      2007-11-23 16:56:02.161
    NWInstance.getDirProfile() done: C:/usr/sap/CE1/SYS/profile
    TRACE      2007-11-23 16:56:02.176
    NWInstance.getStartProfilePath() done: C:/usr/sap/CE1/SYS/profile/CE1_SCS01_AGRD50051628A
    TRACE      2007-11-23 16:56:02.176
    NWProfiles(CE1.SCS01).getPersistentDefaultProfile()
    TRACE      2007-11-23 16:56:02.176
    NW.getPersistentDefaultProfile()
    TRACE      2007-11-23 16:56:02.207
    NW.isUnicode(true)
    TRACE      2007-11-23 16:56:02.207
    NW.isUnicode() done: true
    TRACE      2007-11-23 16:56:02.207
    NW.getPersistentDefaultProfile() done
    TRACE      2007-11-23 16:56:02.207
    NWProfiles(CE1.SCS01).getPersistentDefaultProfile() done
    TRACE      2007-11-23 16:56:02.207
    NWProfiles(CE1.SCS01)._getPersistentProfile(INSTANCE) done
    TRACE      2007-11-23 16:56:02.254
    NWInstance.isAlwaysUnicode()
    TRACE      2007-11-23 16:56:02.254
    NWInstance.isAlwaysUnicode(SCS)
    TRACE      2007-11-23 16:56:02.254
    NWInstance.isAlwaysUnicode() done: true
    TRACE      2007-11-23 16:56:02.254
    NWInstance.isAlwaysUnicode() done: true
    TRACE      2007-11-23 16:56:02.254
    NWProfiles(CE1.SCS01)._getProfile(INSTANCE) done
    TRACE      2007-11-23 16:56:02.254
    NWProfiles(CE1.SCS01).getProfile() done
    TRACE      2007-11-23 16:56:02.317
    NWInstance.getSAPLocExeDir() done: C:/usr/sap/CE1/SYS/exe/uc/NTI386
    TRACE      2007-11-23 16:56:02.317
    NWInstanceInstall.createServiceWindows(): going to run <C:\usr\sap\CE1\SYS\exe\uc\NTI386\sapstartsrv.exe -stdin> with input <-r -q -p C:\usr\sap\CE1\SYS\profile\CE1_SCS01_AGRD50051628A -s CE1 -n 01 -U "NT Authority\LocalService" -P "XXXXXX" -e SAP_ALL\I047488>
    TRACE      2007-11-23 16:56:02.317
    lognode: undefined, append: false
    INFO       2007-11-23 16:56:02.348 [synxcpath.cpp:815]
               CSyPath::createFile() lib=syslib module=syslib
    Creating file C:\ProgramFiles\sapinst_instdir\CE71_DEV_ADA\INSTALL\sapstartsrv.exe.log.
    TRACE      2007-11-23 16:56:02.348 [synxcchapp.cpp:264]
    CSyChildApplicationImpl::doStart() lib=syslib module=syslib
    Going to call CreateProcess/CreateProcessAsUser for 'C:\usr\sap\CE1\SYS\exe\uc\NTI386\sapstartsrv.exe' now.
    TRACE      2007-11-23 16:56:02.348 [synxcchapp.cpp:560]
               CSyChildApplicationImpl::doStart() lib=syslib module=syslib
    Trying to start C:\usr\sap\CE1\SYS\exe\uc\NTI386\sapstartsrv.exe using CreateProcess(NULL, <command line for executable C:\usr\sap\CE1\SYS\exe\uc\NTI386\sapstartsrv.exe, NULL, NULL, TRUE, 0x420, NULL, NULL, &StartupInfo, &ProcessInfo)
    TRACE      2007-11-23 16:56:02.535 [synxcchapp.cpp:638]
               CSyChildApplicationImpl::doStart() lib=syslib module=syslib
    A child process has been started. Pid = 2480. Executable name: C:\usr\sap\CE1\SYS\exe\uc\NTI386\sapstartsrv.exe
    INFO       2007-11-23 16:56:02.535
               CJSlibModule::writeInfo_impl()
    Output of C:\usr\sap\CE1\SYS\exe\uc\NTI386\sapstartsrv.exe -stdin is written to the logfile sapstartsrv.exe.log.
    TRACE      2007-11-23 16:56:45.170 [synxcpipe.cpp:195]
               CSyStdOutErrPipe::onUnderflow(void * buf, int maxBytes, int timeout)
               lib=syslib module=syslib
    Syslib info about system call. OS message 109 (The pipe has been ended.
    ) after execution of system call 'ReadFile' with parameter ((read end of child process output pipe)), line (403) in file (synxcpipe.cpp).
    WARNING    2007-11-23 16:56:45.170
               CJSlibModule::writeWarning_impl()
    Execution of the command "C:\usr\sap\CE1\SYS\exe\uc\NTI386\sapstartsrv.exe -stdin" finished with return code -1. Output:
    Service not started within 40 seconds.
    TRACE      2007-11-23 16:56:45.170
    NWInstance.getSAPLocExeDir()
    TRACE      2007-11-23 16:56:45.170
    NWInstance.getProfiles()
    TRACE      2007-11-23 16:56:45.170
    NWInstance.getProfiles(): profiles object exists
    TRACE      2007-11-23 16:56:45.170
    NWInstance.getProfiles() done
    TRACE      2007-11-23 16:56:45.170
    NWProfiles(CE1.SCS01).getProfile()
    TRACE      2007-11-23 16:56:45.170
    NWProfiles(CE1.SCS01)._getProfile(INSTANCE)
    TRACE      2007-11-23 16:56:45.170
    NWProfiles(CE1.SCS01).getPersistentDefaultProfile()
    TRACE      2007-11-23 16:56:45.170
    NW.getPersistentDefaultProfile()
    TRACE      2007-11-23 16:56:45.186
    NW.isUnicode(true)
    TRACE      2007-11-23 16:56:45.186
    NW.isUnicode() done: true
    TRACE      2007-11-23 16:56:45.186
    NW.getPersistentDefaultProfile() done
    TRACE      2007-11-23 16:56:45.186
    NWProfiles(CE1.SCS01).getPersistentDefaultProfile() done
    TRACE      2007-11-23 16:56:45.201
    NWProfiles(CE1.SCS01)._getPersistentProfile(INSTANCE)
    TRACE      2007-11-23 16:56:45.217
    NWProfiles(CE1.SCS01).getPersistentDefaultProfile()
    TRACE      2007-11-23 16:56:45.217
    NW.getPersistentDefaultProfile()
    TRACE      2007-11-23 16:56:45.232
    NW.isUnicode(true)
    TRACE      2007-11-23 16:56:45.232
    NW.isUnicode() done: true
    TRACE      2007-11-23 16:56:45.232
    NW.getPersistentDefaultProfile() done
    TRACE      2007-11-23 16:56:45.232
    NWProfiles(CE1.SCS01).getPersistentDefaultProfile() done
    TRACE      2007-11-23 16:56:45.232
    NWProfiles(CE1.SCS01)._getPersistentProfile(INSTANCE) done
    TRACE      2007-11-23 16:56:45.264
    NWInstance.isAlwaysUnicode()
    TRACE      2007-11-23 16:56:45.264
    NWInstance.isAlwaysUnicode(SCS)
    TRACE      2007-11-23 16:56:45.264
    NWInstance.isAlwaysUnicode() done: true
    TRACE      2007-11-23 16:56:45.264
    NWInstance.isAlwaysUnicode() done: true
    TRACE      2007-11-23 16:56:45.264
    NWProfiles(CE1.SCS01)._getProfile(INSTANCE) done
    TRACE      2007-11-23 16:56:45.264
    NWProfiles(CE1.SCS01).getProfile() done
    TRACE      2007-11-23 16:56:45.326
    NWInstance.getSAPLocExeDir() done: C:/usr/sap/CE1/SYS/exe/uc/NTI386
    WARNING[E] 2007-11-23 16:56:45.326
               CJSlibModule::writeError_impl()
    MOS-01011  'C:/usr/sap/CE1/SYS/exe/uc/NTI386/sapstartsrv.exe' returned with '-1'.
    TRACE      2007-11-23 16:56:45.326 [iaxxejsbas.hpp:408]
               handleException<ESAPinstJSError>()
    Converting exception into JS Exception EJSException.
    TRACE      2007-11-23 16:56:45.326
    Function setMessageIdOfExceptionMessage: osmod.applicationReturn
    WARNING[E] 2007-11-23 16:56:45.326
               CJSlibModule::writeError_impl()
    MOS-01011  'C:/usr/sap/CE1/SYS/exe/uc/NTI386/sapstartsrv.exe' returned with '-1'.
    TRACE      2007-11-23 16:56:45.326 [iaxxejsbas.hpp:483]
               EJS_Base::dispatchFunctionCall()
    JS Callback has thrown unknown exception. Rethrowing.
    ERROR      2007-11-23 16:56:45.357 [sixxcstepexecute.cpp:891]
    FCO-00011  The step createService with step key |CE_DevSystem_App|ind|ind|ind|ind|0|0|NW_Onehost_System|ind|ind|ind|ind|2|0|NW_CI_Instance|ind|ind|ind|ind|11|0|NW_Instance|ind|ind|ind|ind|1|0|createService was executed with status ERROR .
    TRACE      2007-11-23 16:56:45.373 [iaxxgenimp.cpp:761]
                CGuiEngineImp::showMessageBox
    <html> <head> </head> <body> <p> An error occurred while processing service SAP NetWeaver CE Developer Edition > SAP NetWeaver CE Development System. You may now </p> <ul> <li> choose <i>Retry</i> to repeat the current step. </li> <li> choose <i>View Log</i> to get more information about the error. </li> <li> stop the task and continue with it later. </li> </ul> <p> Log files are written to C:\Program Files/sapinst_instdir/CE71_DEV_ADA/INSTALL. </p> </body></html>
    TRACE      2007-11-23 16:56:45.373 [iaxxgenimp.cpp:1257]
               CGuiEngineImp::acceptAnswerForBlockingRequest
    waiting for an answer from gui
    INFO       2007-11-23 17:15:43.180 [sixxcstepexecute.cpp:936]
    An error occured and the user decided to retry the current step: "|CE_DevSystem_App|ind|ind|ind|ind|0|0|NW_Onehost_System|ind|ind|ind|ind|2|0|NW_CI_Instance|ind|ind|ind|ind|11|0|NW_Instance|ind|ind|ind|ind|1|0|createService".
    INFO       2007-11-23 17:15:43.196 [synxccuren.cpp:1016]
               CSyCurrentProcessEnvironmentImpl::setWorkingDirectory(const CSyPath & C:/Program Files/sapinst_instdir/CE71_DEV_ADA/INSTALL)
               lib=syslib module=syslib
    Working directory changed to C:/Program Files/sapinst_instdir/CE71_DEV_ADA/INSTALL.
    TRACE      2007-11-23 17:15:43.227 [syxxcfile.cpp:130]
               CSyFileImpl::decideIfMoveCopyNode(const CopyMoveDestinationInfo & , ISyNode::CopyMoveMode_t 0x3, PSyNode &) const 
               lib=syslib module=syslib
    Target node does not exists and (mode & ISyNode::MISSING) ==> I will copy/move.
    TRACE      2007-11-23 17:15:43.243 [syxxcnode.cpp:441]
               CSyNodeImpl::move(const CSyPath & C:/Program Files/sapinst_instdir/CE71_DEV_ADA/INSTALL/stepLogMessages.1.xml, ISyNode::CopyMoveMode_t 0x3)
               lib=syslib module=syslib
    Moved C:/Program Files/sapinst_instdir/CE71_DEV_ADA/INSTALL/stepLogMessages.xml to C:/Program Files/sapinst_instdir/CE71_DEV_ADA/INSTALL/stepLogMessages.1.xml
    TRACE      2007-11-23 17:15:43.243 [sixxcstepexecute.cpp:795]
    Execution of preprocess block of |CE_DevSystem_App|ind|ind|ind|ind|0|0|NW_Onehost_System|ind|ind|ind|ind|2|0|NW_CI_Instance|ind|ind|ind|ind|11|0|NW_Instance|ind|ind|ind|ind|1|0|createService returns TRUE.
    TRACE      2007-11-23 17:15:43.258
    Instantiating new NWUsageTypeBasic
    TRACE      2007-11-23 17:15:43.258
    NWUsageTypeBasic() done
    TRACE      2007-11-23 17:15:43.258
      Call block:NW_Instance_ind_ind_ind_ind
        function:NW_Instance_ind_ind_ind_ind_SubComponentContainer_createService
    is validator: false
    TRACE      2007-11-23 17:15:43.274
    NWInstance.byNumber(01, AGRD50051628A)
    TRACE      2007-11-23 17:15:43.274
    NWInstanceInstall.find(
    function (instance) {
        return instance.getNumber() == number && instance.getHostName().equals(host);
    TRACE      2007-11-23 17:15:43.274
    NWOption(collected).value()
    TRACE      2007-11-23 17:15:43.274
    NWOption(collected).value() done: true
    TRACE      2007-11-23 17:15:43.274
    NWInstanceInstall._fromRow()
    TRACE      2007-11-23 17:15:43.274
    NWDialogInstanceInstall()
    TRACE      2007-11-23 17:15:43.274
    NWJavaInstanceInstall()
    TRACE      2007-11-23 17:15:43.274
    NWJavaInstanceInstall() done
    TRACE      2007-11-23 17:15:43.274
    NWDialogInstance()
    TRACE      2007-11-23 17:15:43.274
    NWJavaInstance()
    TRACE      2007-11-23 17:15:43.274
    NWInstance(CE1/J00/AGRD50051628A)
    TRACE      2007-11-23 17:15:43.274
    NWInstance(CE1/J00/AGRD50051628A) done
    TRACE      2007-11-23 17:15:43.274
    NWJavaInstance() done
    TRACE      2007-11-23 17:15:43.274
    NWDialogInstance() done
    TRACE      2007-11-23 17:15:43.274
    NWInstanceInstall()
    TRACE      2007-11-23 17:15:43.274
    NWInstanceInstall() done
    TRACE      2007-11-23 17:15:43.274
    NWDialogInstanceInstall() done
    TRACE      2007-11-23 17:15:43.274
    NWInstanceInstall._fromRow() done
    TRACE      2007-11-23 17:15:43.274
    NWInstanceInstall._fromRow()
    TRACE      2007-11-23 17:15:43.274
    NWSCSInstanceInstall()
    TRACE      2007-11-23 17:15:43.274
    NWSCSInstance()

    Hi Michael,
    I have tried that, but the result remains the same.
    Manish

  • SAP NetWeaver 7.01 SR1 SP3 ABAP Trial Version

    shall we able to work BI in
    SAP NetWeaver 7.01 SR1 SP3 ABAP Trial Version

    Yes BW components should be included in this version same as it was in earlier ones.

  • SAP Netweaver CE 7.1 SP3 & SR5 difference

    Dear experts,
    currently, we would like to install a SAP Netweaver CE 7.1 but according to this link :
    SAP NetWeaver Composition Environment 7.1 [original link is broken]
    what is the fundamental difference between SAP Netweaver CE 7.1 SP3 and SAP Netweaver CE 7.1 SR5?
    Best regards,
    Pascal.

    Hi Pascal,
    SAP Netweaver CE 7.1 SP3 - means CE 7.1 with Support stack level 3.
    and SAP Netweaver CE 7.1 SR5 - means CE 7.1 service release 5.
    SR5 is more recent. That's the only difference.
    Regards,
    Shitij

  • Local Dictionary Simple Data Types - RFC Model

    Hi,
    can somebody help out with this error message:
    com.sap.tc.webdynpro.services.exceptions.WDTypeNotFoundException: type com.global.wdschulung3.types.String could not be loaded: com.sap.dictionary.runtime.DdException:
         at com.sap.tc.webdynpro.services.datatypes.core.DataTypeBroker.getSimpleType(DataTypeBroker.java:242)
         at com.sap.tc.webdynpro.services.datatypes.core.DataTypeBroker.getDataType(DataTypeBroker.java:205)
    is it something to do with the JCO Connection?
    I have checked in the WebDynpro Content Admin - and I don't get a green or red Status Symbol - in fact it's just grey - and buttons for "create JCO Connection" ars disabled
    thanx for help,
    matthias

    Hi Bhavik,
    thanks for the links - now i configured the sld supplier in visual admin tool and it looks good. Connection test is successful.
    Now I was also able to create the JCO Connection in webdynpro content administrator for wd_model_dest and wd_metadata_dest - looks good, and I get a green icon.
    Unfortunately testing the jco-connection still fails... I get this error message:
    com.sap.mw.jco.JCO$Exception: (102) RFC_ERROR_COMMUNICATION: Connect to message server host failed Connect_PM  TYPE=B MSHOST=x1t GROUP=SPACE R3NAME=X1T MSSERV=sapmsX1T PCS=1 <b>ERROR       service '?' unknown TIME </b>       Mon Sep 12 14:24:20 2005 RELEASE     640 COMPONENT   NI (network interface) VERSION     37 RC          -3 COUNTER     1
    Somebody experienced this before?
    thanx once more,
    matthias
    Message was edited by: matthias kasig

  • SAP NetWeaver 7.01 SR1 SP3 ABAP Trial Version ERROR in importing ABAP phase

    Hi all,
    I am trying to instal this trial version on my computer. I have tried with Windows XP Pro SP2 and with Windows XP Pro SP3 and I get the same error, in both cases, in the phase 18 wich is: Importing ABAP.
    These are the errors I get:
    Import Monitor jobs: running 1, waiting 27, completed 0, failed 0, total 28.
    Import Monitor jobs: running 2, waiting 26, completed 0, failed 0, total 28.
    Import Monitor jobs: running 3, waiting 25, completed 0, failed 0, total 28.
    Loading of 'DOKCLU' import package: ERROR
    Import Monitor jobs: running 2, waiting 25, completed 0, failed 1, total 28.
    Loading of 'REPOSRC' import package: ERROR
    Import Monitor jobs: running 1, waiting 25, completed 0, failed 2, total 28.
    Loading of 'SAPSSEXC_1' import package: ERROR
    Import Monitor jobs: running 0, waiting 25, completed 0, failed 3, total 28.
    Import Monitor jobs: running 1, waiting 24, completed 0, failed 3, total 28.
    Import Monitor jobs: running 2, waiting 23, completed 0, failed 3, total 28.
    Import Monitor jobs: running 3, waiting 22, completed 0, failed 3, total 28.
    Loading of 'SMIMCONT1' import package: ERROR
    Import Monitor jobs: running 2, waiting 22, completed 0, failed 4, total 28.
    Loading of 'SAPAPPL1' import package: ERROR
    Import Monitor jobs: running 1, waiting 22, completed 0, failed 5, total 28.
    Loading of 'SAPAPPL0' import package: ERROR
    Import Monitor jobs: running 0, waiting 22, completed 0, failed 6, total 28.
    Import Monitor jobs: running 1, waiting 21, completed 0, failed 6, total 28.
    Import Monitor jobs: running 2, waiting 20, completed 0, failed 6, total 28.
    Import Monitor jobs: running 3, waiting 19, completed 0, failed 6, total 28.
    Loading of 'SEOCOMPODF' import package: ERROR
    Import Monitor jobs: running 2, waiting 19, completed 0, failed 7, total 28.
    Loading of 'SAPNTAB' import package: ERROR
    Import Monitor jobs: running 1, waiting 19, completed 0, failed 8, total 28.
    Loading of 'SAPAPPL2' import package: ERROR
    Import Monitor jobs: running 0, waiting 19, completed 0, failed 9, total 28.
    Import Monitor jobs: running 1, waiting 18, completed 0, failed 9, total 28.
    Import Monitor jobs: running 2, waiting 17, completed 0, failed 9, total 28.
    Import Monitor jobs: running 3, waiting 16, completed 0, failed 9, total 28.
    Loading of 'SAPSSEXC_2' import package: ERROR
    Import Monitor jobs: running 2, waiting 16, completed 0, failed 10, total 28.
    Loading of 'ATAB' import package: ERROR
    Import Monitor jobs: running 1, waiting 16, completed 0, failed 11, total 28.
    Loading of 'SAPSDIC' import package: ERROR
    Import Monitor jobs: running 0, waiting 16, completed 0, failed 12, total 28.
    Import Monitor jobs: running 1, waiting 15, completed 0, failed 12, total 28.
    Import Monitor jobs: running 2, waiting 14, completed 0, failed 12, total 28.
    Import Monitor jobs: running 3, waiting 13, completed 0, failed 12, total 28.
    Loading of 'REPOTEXT' import package: ERROR
    Import Monitor jobs: running 2, waiting 13, completed 0, failed 13, total 28.
    Loading of 'STXL' import package: ERROR
    Import Monitor jobs: running 1, waiting 13, completed 0, failed 14, total 28.
    Loading of 'SAPSSRC' import package: ERROR
    Import Monitor jobs: running 0, waiting 13, completed 0, failed 15, total 28.
    Import Monitor jobs: running 1, waiting 12, completed 0, failed 15, total 28.
    Import Monitor jobs: running 2, waiting 11, completed 0, failed 15, total 28.
    Import Monitor jobs: running 3, waiting 10, completed 0, failed 15, total 28.
    Loading of 'WDY_CTLR_COMPO' import package: ERROR
    Import Monitor jobs: running 2, waiting 10, completed 0, failed 16, total 28.
    Loading of 'SAPSPROT' import package: ERROR
    Import Monitor jobs: running 1, waiting 10, completed 0, failed 17, total 28.
    Loading of 'SAPSDOCU' import package: ERROR
    Import Monitor jobs: running 0, waiting 10, completed 0, failed 18, total 28.
    Import Monitor jobs: running 1, waiting 9, completed 0, failed 18, total 28.
    Import Monitor jobs: running 2, waiting 8, completed 0, failed 18, total 28.
    Import Monitor jobs: running 3, waiting 7, completed 0, failed 18, total 28.
    Loading of 'SAPPOOL' import package: ERROR
    Import Monitor jobs: running 2, waiting 7, completed 0, failed 19, total 28.
    Loading of 'SAPSLEXC' import package: ERROR
    Import Monitor jobs: running 1, waiting 7, completed 0, failed 20, total 28.
    Loading of 'SAPSLOAD' import package: ERROR
    Import Monitor jobs: running 0, waiting 7, completed 0, failed 21, total 28.
    Import Monitor jobs: running 1, waiting 6, completed 0, failed 21, total 28.
    Import Monitor jobs: running 2, waiting 5, completed 0, failed 21, total 28.
    Import Monitor jobs: running 3, waiting 4, completed 0, failed 21, total 28.
    Loading of 'SAPDFACT' import package: ERROR
    Import Monitor jobs: running 2, waiting 4, completed 0, failed 22, total 28.
    Loading of 'SAPDDIM' import package: ERROR
    Import Monitor jobs: running 1, waiting 4, completed 0, failed 23, total 28.
    Loading of 'SAPCLUST' import package: ERROR
    Import Monitor jobs: running 0, waiting 4, completed 0, failed 24, total 28.
    Import Monitor jobs: running 1, waiting 3, completed 0, failed 24, total 28.
    Import Monitor jobs: running 2, waiting 2, completed 0, failed 24, total 28.
    Import Monitor jobs: running 3, waiting 1, completed 0, failed 24, total 28.
    Loading of 'SAPUSER' import package: ERROR
    Import Monitor jobs: running 2, waiting 1, completed 0, failed 25, total 28.
    Loading of 'SAPDODS' import package: ERROR
    Import Monitor jobs: running 1, waiting 1, completed 0, failed 26, total 28.
    Loading of 'SAP0000' import package: ERROR
    Import Monitor jobs: running 0, waiting 1, completed 0, failed 27, total 28.
    WARNING[E] 2009-04-10 18:45:34.749
               CJSlibModule::writeError_impl()
    CJS-30022  Program 'Migration Monitor' exits with error code 103. For details see log file(s) import_monitor.java.log, import_monitor.log.
    ERROR      2009-04-10 18:45:34.764 sixxcstepexecute.cpp:950
    FCO-00011  The step runMigrationMonitor with step key |NW_ABAP_OneHost|ind|ind|ind|ind|0|0|NW_Onehost_System|ind|ind|ind|ind|2|0|NW_CreateDBandLoad|ind|ind|ind|ind|9|0|NW_ABAP_Import_Dialog|ind|ind|ind|ind|5|0|NW_ABAP_Import|ind|ind|ind|ind|0|0|runMigrationMonitor was executed with status ERROR .
    I am very new on this so I probably will not understand many technical words.
    Please. Can any one tell what´s going on. This is the 5th time I try to instal the program.
    Thank you very much in advance.
    Regards.

    Hi,
    I got a similar error while installing Solution Manager 7 EHP1 on Windows/Oracle. Ihave gone through the import log, and the respective logs directed to, and pasted below.
    Loading of 'REPOSRC' import package: ERROR
    ERROR: 2009-06-18 11:19:40 com.sap.inst.migmon.LoadTask run
    Loading of 'REPOSRC' import package is interrupted with R3load error.
    Process 'D:\usr\sap\SMN\SYS\exe\uc\NTAMD64\R3load.exe -i REPOSRC.cmd -dbcodepage 4103 -l REPOSRC.log -stop_on_error' exited with return code 2.
    For mode details see 'REPOSRC.log' file.
    REPOSRC.log
    (TSK) ERROR: file C:\Program Files\sapinst_instdir\SOLMAN\SYSTEM\ORA\CENTRAL\AS\REPOSRC.TSK.bck already seems to exist
                 a previous run may not have been finished cleanly
                 file C:\Program Files\sapinst_instdir\SOLMAN\SYSTEM\ORA\CENTRAL\AS\REPOSRC.TSK possibly corrupted
    D:\usr\sap\SMN\SYS\exe\uc\NTAMD64\R3load.exe: job finished with 1 error(s)
    REPOSRC.TSK
    REPOSRC.TSK.bck
    Upon inspection of the previous .TSK files, i found that it contained a list of Tables to be created: the REPOSRC.TSK.bck was a continuation of the same list. Hence the installation uses/used both to see where it had stopped.
    I found a sapnote 455195 (last paragraph) which advises that i run R3load with the -merge option, but how can i do that during the installation process?

  • Error message when trying to install SAP NetWeaver 7.01 SR1 SP3 ABAP Trial

    I have downloaded the two rar-files and put them in the same folder. Part 1 is unrared and I start the file sapinst.exe
    After a few seconds I get the following error message:
    Connection to SAPinst refused with the following message: 
    Connection to SAPinst could not be established, see following messages.
    Could not connect to host localhost on port 21200.
    java.net.ConnectException: Connection timed out: connect
    java.net.ConnectException: Connection timed out: connect
    Please correct the error condition and restart.
    Any suggestions on how to fix this error?

    I forgot to add the MS loopback adapter...

  • How to reference complex data type when consuming web services in WAS 620?

    In WAS 620, I tried to consume a web service in ABAP. I was successful when the web service returned one or more simple data type. But when the web service is changed to return a complex data type (eg. a structure with 3 elements), the call to the web service did not return anything.
    Do any of you know how to reference the individual element in the structure of an output parameter in a web service? I use the add_parameter method of the CSoapDocument class to identify the output parameters.
    Here is part of the WSDL file:
      <?xml version="1.0" encoding="UTF-8" ?>
    - <definitions xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:s0="urn:sap-com:document:sap:rfc:functions" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" targetNamespace="urn:sap-com:document:sap:rfc:functions">
    - <types>
    - <xsd:schema targetNamespace="urn:sap-com:document:sap:rfc:functions">
    - <xsd:element name="Z_SRM_SOAP_TEST_COMPLEX">
    - <xsd:complexType>
    - <xsd:all>
    - <xsd:element name="INTEXT">
    - <xsd:simpleType>
    - <xsd:restriction base="xsd:string">
      <xsd:maxLength value="50" />
      </xsd:restriction>
      </xsd:simpleType>
      </xsd:element>
      </xsd:all>
      </xsd:complexType>
      </xsd:element>
    - <xsd:element name="Z_SRM_SOAP_TEST_COMPLEX.Response">
    - <xsd:complexType>
    - <xsd:all>
      <xsd:element name="OUTTEXT" type="s0:ZSRM_TEST_STRUCT" />
      </xsd:all>
      </xsd:complexType>
      </xsd:element>
    - <xsd:complexType name="ZSRM_TEST_STRUCT">
    - <xsd:sequence>
    - <xsd:element name="ELEMENT1" minOccurs="0">
    - <xsd:simpleType>
    - <xsd:restriction base="xsd:string">
      <xsd:maxLength value="50" />
      </xsd:restriction>
      </xsd:simpleType>
      </xsd:element>
    - <xsd:element name="ELEMENT2" minOccurs="0">
    - <xsd:simpleType>
    - <xsd:restriction base="xsd:string">
      <xsd:maxLength value="50" />
      </xsd:restriction>
      </xsd:simpleType>
      </xsd:element>
    - <xsd:element name="ELEMENT3" minOccurs="0">
    - <xsd:simpleType>
    - <xsd:restriction base="xsd:string">
      <xsd:maxLength value="50" />
      </xsd:restriction>
      </xsd:simpleType>
      </xsd:element>
      </xsd:sequence>
      </xsd:complexType>
      </xsd:schema>
      </types>

    Hi,
      [email protected] is my id and one more thing u by looking at the wsdl file u can know what al the parameters we have to give to the webservice so try it out also.
    Regards,
    Sirisha.

  • Why need message type when u create data type...

    why need message type when u create data type...

    Hi,
    A message type comprises a data type that describes the structure of a message. At the following points in SAP Exchange Infrastructure you can refer to the message to be exchanged at runtime by using the message type:
    ·        More than one message interface can use the same message type. For example, an asynchronous outbound message interface and an asynchronous inbound message interface can reference the same message type because the request message does not need to be mapped.
    ·        When defining a message mapping you can directly reference message types to map messages from an outbound interface to messages from a receiver interface.
    For technical reasons, a data type is not sufficient to describe the instance of a message. In XML schema, data types are defined as abstract types that are not yet fixed to an element. You can only describe an instance of a message when you have specified a data type as an element type. Therefore, a message type defines the root element of a message.
    A message type does not define the direction of the message exchange, in other words, whether it is a request or a response. In exceptional cases you can use the same message type for both the request and the response message.
    A message type has the following characteristics:
    ·        It comprises exactly one data type, which determines the content of the message to be transferred.
    ·        It is identified by a name and an XML namespace. The name (together with the namespace) of a message type is located in the uppermost tag of the message to be exchanged. This is an element tag.
    You have defined a message type GreetingRes that references a simple data type of type xsd:string. The XML namespace of the message type is http://sap.com/xi/myExample. The corresponding payload might look like this:
    <?xml version="1.0" encoding="utf-8" ?>
    <ns1:GreetingRes xmlns:ns1="http://sap.com/xi/myExample"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
       Hello Mrs. Miller
    </ns1:GreetingRes>
    You can specify how a message type is used in more detail in the description
    hope this will help you.
    regards
    Aashish Sinha
    PS : reward points if helpful

  • Does new 1402 Activity object in Cloud for Customer have wrong data type namespaces?

    I see that the individual "activity" objects (e.g., ActivityTask, AppointmentActivity, etc) are being deprecated as of 1405 and moving to a new Activity object with a TypeCode. That makes a lot of sense.
    In reviewing this new Activity object, I've noticed that many of the node elements utilize Data Types in the http://sap.com/xi/Common/DataTypes namespace instead of the http://sap.com/xi/AP/Common/GDT. For example, the root node element UUID has a data type UUID in the http://sap.com/xi/Common/DataTypes namespace, unlike all the other objects in the Public Solution Model.
    There are many more elements in this new Activity object that are mismatched like this to other common usage in other objects. Is this a new trend or a mistake?

    Hello Gregory, Alessandro,
    just for clarification:
    SAP wanted to eliminate the superflous supplementary components from the data types used in the Business Objects.
    Take the GDT Identifier as an example. It has the following supplementary components:
    SCHEME_ID
    SCHEME_VERSION_ID
    SCHEME_AGENCY_ID
    SCHEME_AGENCY_SCHEME_ID
    SCHEME_AGENCY_SCHEME_AGENCY_ID
    CONTENT
    You very seldom need the SCHEME_ID or the SCHEME_AGENCY_ID (if the ID is a GTIN or DUNS number then you need them). I never came over a situation to use the SCHEME_AGENCY_SCHEME_AGENCY_ID.
    So the data types from the "new" namespace omit those components. But SAP noticed the effort to adapt all the coding.
    Therefore it was decided that only new objects will use the data types from the new namepace.
    In the case of the ActivityTask, AppointmentActivity, etc. this wil requires - as Alessandro mentioned - some adoption effort.
    HTH,
          Horst

Maybe you are looking for

  • Cinema Display hookup via a Thunderbolt drive

    I believe it's possible to run a Cinema Display from my MBP via a Thunderbolt drive, going from the MBp to the TB and then, via a Mini-display to DVI cable, into the display. I've hooked it up this way with the display also plugged into its power sup

  • Issues while saving the Webi Report locally in pdf and Excel Format

    Hi, I am getting issues with the images on a Webi Report when I try to save the reports locally on my machine in either a pdf format or in an Excel Format. I think the issue is that when I am trying to save the report it saves the address of the imag

  • Split a FOUR sheet page into FOUR page in the right Order

    Hei, I have a PDF file in which every page is filled with four singel sheets (pages). The owner made this to save paper for printing. To make it more clear: page 1,2,3 and 4 are on ONE single page. Now I want to split them again to have page 1 on one

  • Configration

    how we can configure oracle warehouse builder 10g r2 with oracle 10g database and how we can create repository in oracle warehouse builder 10g r2 Plz explain step by step because i am new

  • Planned & Actual Production  report

    Hello all MY requirement is ,  i need to add this two req in the one report   ( Z transaction ), Planned Production - This must show the  production plan for the current week only. We should be able to drill in further and see the actual day of plann