Configuration Objects (ID Objects) Question

I am trying to understand each ID object better way,
What is the definition of each objects,
What the use of each objects......
Configuration scenario examples using each object.
1. Party
2. Service Without Party
            a. Business System
                1. Communication Channel
            b. Business Service
            c. Integration Process
3. Receiver Determination
4. Interface Determination
5. Sender Agreement
6. Receiver Agreement

Ash:
for a better understanding below i have maade a kinda comparision...hope this shud help you.
<b>1. Party and 2. Service Without Party</b>
Service without Party :
This has to be configured when we are doing A2A integration ie integration with in the same landscape ie in the same corporate boundary.
Party:
This has to be configured when we are doing B2B integration ie outside the corporate boundary...The use of party is mainly for B2B communication, such as Rosettanet. The definition of a party actually identifies the partner system
<b>a. Business System &1. Communication Channel & b. Business Service</b>
Business system is a logical system, and there is an importance on physical existence of the system.Also SLD entry is required.
It is generally used for SAP applications, this is just a general prinicple followed but not mandatory.
You use a Business Service, when you do not have the System details of the the partner system to which you want to communicate. i.e. you have not configured the partner system in SLD. Business Service is an Absract Unit with Sender and Receiver Interfaces,In this case you need to explicitly add the message interfaces while doing configuration in ID. It is generally used for NON-SAP applications, this is just a general prinicple followed but not mandatory
communication channel is the physical connection for adapters to communicate to the systems (within or outside your landscape)
<b>c. Integration Process</b>
Integration Process is a sequence of steps to attain a business process sequence. It gets executed in Business process engine. The Repository, directory etc are not part of Integration Process.They help in creation and execution of the integration process.
<b>3. Receiver Determination and  4. Interface Determination</b>
In receiver determination we never specify interface mapping. We specify interface mapping only in interface determination. Receiver Determination helps to specify which receivers a message is to be sent to. Interface determination helps you to specify which interface a message is to be sent to.
A receiver can have more than one interface, that is why you have to do interface determination. The split between Receiver Determination and Interfacedetermiantion is so that you can add send the same message to Multiple Receivers and then fior each of the receivers , if needed you can add multiple Inbound Interafces / mappings
<b>5. Sender Agreement and 6. Receiver Agreement</b>
Sender agreement binds the sender interface with the communication channel. In a sender agreement, you define how the message of a sender is to be transformed so that it can be processed by the Integration Engine .
When you create a sender agreement, you must specify at least the sender interface and the party or service for the sender and receiver. You can use a wildcard character (*) for the receiver party, receiver service, and the sender interface . One sender agreement can be associated in only one RECEIVER DETERMINATION
If u have any queries keep us posted

Similar Messages

  • Parsing Generic Configuration Object

    Hi,
    i tried to parse a generic Configuration Object and to get objects and attributes. Unfortunately i got allways null.
    How is the syntax to get the specify objects?
    my Configuration object:
    <Configuration id='#ID#Configuration:SpecialSystemSettings' name='Special System Settings'>
      <Extension>
        <Object>
          <Attribute name='Profile'>
             <List>
              <Object name='ABC'>
                 <Attribute name='regx' value='(\w){8}'/>
                 <Attribute name='description' value='Wrong value!'/>
               </Object>
              <Object name='DEF'>
                <Attribute name='regx' value='(\w){8}'/>
                <Attribute name='description' value='Wrong value!'/>
                </Object>
            </List>
          </Attribute>
          <Attribute name='Role'>
            <List>
              <Object name='GHI'>
                <Attribute name='regx' value='(\w){8}'/>
                <Attribute name='description' value='Der Wert muss 8 stellig sein!'/>
                <Attribute name='lang' value='de'/>
              </Object>
            </List>
          </Attribute>
    </Object>
      </Extension>
      <MemberObjectGroups>
        <ObjectRef type='ObjectGroup' id='#ID#All' name='All'/>
      </MemberObjectGroups>
    </Configuration>statements:
    <set name='systemObject'>
            <new class='com.waveset.object.GenericObject'>
                     <invoke name='toXml'>                           
                             <invoke name='getObject'>
                                    <ref>context</ref>
                                    <s>Configuration</s>
                                    <s>Special System Settings</s>
                              </invoke>           
                    </invoke>
            </new>
    </set>
    <invoke name='dump' class='de.im.idm.ViewTool'>
         <concat>
                <s>Output:</s>
                <ref>systemObject[Profile].name</ref>
         </concat>
    </invoke>The Output is still null. I also tried with some other combinations also without success.
    <get>
       <ref>systemObject</ref>
       <s>Profile</s>
    </get> 
    <ref>systemObject.Profile[*].name</ref>
    <ref>systemObject[name=Profile]</ref>                       
    <ref>systemObject.Profile.ABC.description</ref>                       
    <ref>systemObject.Profile[ABC].description</ref>     My question: How is the syntax to get the List of Profiles or to get single attribute-values?
    Thanks,
    Best Regards

    You need to use the getExtension and then set it to systemObject in that way it will have access to all attributes.
    <set name='systemObject'>
                <invoke name='getExtension'>
                    <invoke name='getObject' class='com.waveset.ui.FormUtil'>
                                    <ref>context</ref>
                                    <s>Configuration</s>
                                    <s>Special System Settings</s>
                              </invoke>           
                    </invoke>
    </set>and then
    <get>
       <ref>systemObject</ref>
       <s>Profile</s>
    </get>  will get you the profile.

  • Can multiple Powershell v4 DSC configuration objects be combined on a machine?

    I'm working on configuring servers using Powershell Desired State Configuration (DSC). I have several different groups of IIS servers. The configuration for all of them is about 90% identical, but there are differences between the groups.
    In order to follow good programming practices and re-use the common code, I attempted to use multiple configuration objects to configure the groups. There was one configuration object full of common configuration, and then each group had a configuration
    object with group specific config. It looked something like this:
    Configuration CommonConfiguration {
    Node "IISServer1" {
    #Common configuration settings go here, such as this one (to keep things brief, I'm only showing one setting... there would be many more):
    WindowsFeature Role_Web_Server_IIS
    Ensure = "Present"
    Name = "Web-Server"
    Configuration IISGroup1Configuration {
    Node "IISServer1" {
    #Configuration resources for group1 go here. Again, much shorter than real life.
    WindowsFeature Feature_ASP_Dot_Net_4_5
    Ensure = "Present"
    Name = "Web-Asp-Net45"
    To fully configure a server in my first group of IIS servers, I would need to use both these configuration objects by running them like this:
    CommonConfiguration
    IISGroup1Configuration
    Start-DscConfiguration -Path ".\CommonConfiguration\"
    Start-DscConfiguration -Path ".\IISGroup1Configuration\"
    DSCConfiguration runs twice and starts two Powershell jobs, both of which seem to complete. But there is a problem, and I'm wondering if it is at all solvable.
    Problem:
    When I try to use other DSC cmdlets to control my server's configuration, such as Restore-DCSConfiguration or Get-DSCConfiguration, it only seems to work on what ever configuration object ran last. For example, Get-DSCConfiguration returns only the IISGroup1Configuration,
    because that ran last. I've tried playing around with order, and whichever configuration I run last is what is returned. Similarly, if I were to try to keep my configuration enforced with restore-configuration, it's only going to work on IISGroup1Configuration,
    because it ran last. This is an example of what I ran that returned only one of the configuration objects.
    Get-DscConfiguration -CimSession "IISServer1"
    The behavior I want is for the server to treat ever configuration block run on it as its configuration and return all of them. But since it doesn't, does this mean I have to have everything needed to configure a server in a single configuration block? For
    example, if I wanted to use DSC to configure two groups of IIS servers, would I have to have the following?
    Configuration Group1 {
    Node "IISServer1" {
    #---Common configuration, 90% the same---
    #---Group 1 specifics----
    Configuration Group2 {
    Node "IISServer2" {
    #---Common configuration copy pasted in, 90% the same---
    #---Group 2 specifics----
    If this is how I have to do things, and a node can have only one configuration block be its "configuration", then this is absolutely terrible from a code reuse perspective. If I have six groups of servers, and I want to edit some shared code, I'm
    going to have to go into six groups of configuration objects and edit the same line six times. That leads to errors and makes a mess. Is there any way to avoid this, while have the server consider all configuration objects run against it to be part of
    its configuration?

    Hi AlgebraicMirror,
    Sorry for the delay.
    I am trying to involve someone familiar with this topic to further look at this issue.
    There might be some time delay. Appreciate your patience.
    If you have any feedback on our support,
    please click here.
    Best Regards,
    Anna
    TechNet Community Support

  • Problem when Activating Design-Configuration objects

    Hi Everyone,
    We are facing a strange error in our XI system. When we are trying to activate any design/configuration object, we get an error, which states:
    <b>ERROR com.sap.aii.utilxi.swing.toolkit.ExceptionDialog: Throwable
    Thrown:
    MESSAGE ID: com.sap.aii.utilxi.misc.api.ResourceException
    com.sap.aii.utilxi.swing.framework.PersistenceException: ResourceException in method ConnectionFactoryImpl.getConnection(): com.sap.engine.services.dbpool.exceptions.BaseResourceException: SQLException thrown by the physical connection: com.sap.sql.log.OpenSQLException: Error while accessing secure store: File "
    <hostname>\sapmnt\<SYSID>\SYS\global\security\data\SecStore.properties" does not exist although it should</b>
    We double checked that the properties file does exist in the directory specified. We also went for a instance restart, but since then the SMC is showing a yellow flag with info 'J2EE Status Info Unavailable', and the java Stack is not working. Does anybody have any idea why this error is occuring?
    Regards,
    Amitabha

    Hi Krishna,
    As far as I know, this file is used for containing encrypted password and connection info for J2EE stack. So, I daresay, it will be very risky to remove the file from the source directory. Still, I would like to try your hint.
    Regards,
    Amitabha

  • Error in importing Configuration objects of PI 7.0 to PI 7.1

    Hi All,
    My server is upgraded from PI 7.0 to PI 7.1.
    I am getting Error while  importing Configuration objects of PI 7.0 to PI 7.1 now.
    Pls see the below error
    Attempt to access the 1 requested objects on 1 failed. Detailed information:  com.sap.aii.ib.core.roa.RoaObjectAccessException: Attempt to read object Adapter Metadata Mail | http://sap.com/xi/XI/System, type AdapterMetaData from application REPOSITORY on system REPOSITORY failed. Object does not exist. Detailed informatio n: Software component version with key ID: b38bcd00e47111d7afacde420a1145a5 not found
    Pls suggest

    Hi,
    It seems that adapter metadata has not been loaded into integration repository and because of that when you are trying to import configuration objects in ID then you are getting the error.
    The SAP adapter metadata objects are located under the namespace http://sap.com/xi/XI/System of software component SAP BASIS.
    What you can do is, if you have installation dvd's then you can copy from their or you can simply [_DOWNLOAD_|https://websmp205.sap-ag.de/~form/handler?_APP=00200682500000001943&_EVENT=SEARCH&HIDE=&SEARCH_SPAT=X&SEARCH_BPAT=X&SEARCH_CD=X&SEARCH_P=X&SEARCH_PV=X&SEARCH_C=X&SEARCH_CV=X&SEARCH_TA=&SEARCH_V=&HIDE_EXPERT_SEARCH=X&SEARCH_MAX_RESULT=20 ] from sap market place (refer this [thread|how to import Adapter metadata;) (you must have S-user id for this) and then after you need to do as mentioned below...
    1. First unzip the file (if it is zipped) and then put it in the import directory: \usr\sap\<SID>\SYS\global\xi\repository_server\import\
    2. Now login to IR and then from menu TOOLS ---> Import design objects and import it.
    3. After that in ID, Environment ---> Clear SLD Data Cache
    4. Now you can try to import configuration objects...
    Regards,
    Sarvesh

  • Re-importing Configuration Objects

    experts!
    I have imported Configuration Objects from .tpz files in Integration Directory. Because of those objects where unable to activate, I did a reject change and all objects were gone. When I try re-import from the same .tpz file, it is not showing in the file list. The .tpz file is there in the import folder of directory.
    Please help me to re-import objects from .tpz file.
    thanks
    nikhil

    Hi,
    Here we have to consider some points while Exporting & Importing the .tpz files.
    1)Once you export that configuration objects, the tpz file will be created at Export DIR.
    2)From there we have to copy that file into Import DIR.
    3)Once You import the tpz file from Import DIR or faild to Import DIR means those files will be moved to Imported Files DIR.
    4) Now if we are looking to import those again means , they will not be available to import in ID.
    So we have to copy that file again from the Export DIR and Paste it inImport Folder
    REgards
    Seshagiri

  • 22591 The specified computer name (%ComputerName;) is already in use by another virtual machine or by a virtual machine configuration object. Ensure that the computer name is unique in the VMM environment, and then try again.

    Hello everyone,
    I recently bummed into an error message when I want to deploy a service template.
    Setup:
    1 HyperV server on win2k12 r2
    1 SCCM VMM 2k12r2 on the hyperv server
    1 template with all the objects in the library
    Error:
    When I deploy the the service template I get the below error message.
    22591
    The specified computer name (%ComputerName;) is already in use by another virtual machine or by a virtual machine configuration object.
    Ensure that the computer name is unique in the VMM environment, and then try again.
    The issue is that I can't find it anywhere, not on my domain controller not on my dns server as a record and also not as a vm in sccm or in powershell when doing get-vm. So where do I need to remove it ( no it is not an option to create a new Hostname for
    this service template ).
    Andre

    There could be a couple things happening.
    One - you have a Service Template, it defines %Computername% as a variable.  And you have deployed this Template once using 'foo' and you are deploying it again as 'foo' without deleting the previous instance.
    Two - you hardcoded the computer name into the template.
    Three - you are scaling out and you have hit the bug that the wizard does not increment the machinename if you have something like computername## where SCVMM should be incrementing the machine name.
    Windows does not support identically named machines (you can't have two machines on the same network with the same computer name - they broadcast their name and the 'second' one shuts down its network stack).  In support of this SCVMM also enforces
    this rule.
    And with any templates SCVMM is in charge of machine names at deployment.
    Brian Ehlert
    http://ITProctology.blogspot.com
    Learn. Apply. Repeat.

  • Deleting an entry in an IDM Configuration Object

    Does anyone know of a way using Express or Express/Java to delete an entry in an IDM configuration object (not the configuration object itself)? For example, if an IDM Configuration object has a Hashmap with 6 entries and we want to delete entry number 4, is there a way to do this? Thanks!

    Hi Mohammed,
    Are you really facing authorization issue or you mention to say that the delete option in grey out.
    Generally, it won't allow you to delete the entries in TCOLL table.
    Steps to delete entry in a table:
    1.) First, you have to select the entry and press display.
    2.) Enter in debugging mode by pressing /h.
    3.) For code variable it will be CODE="show". Change show to DELE and press F8(Execute).
    4.) Now the delete button will be enabled. After deleting, go out of T-code and again enter into SE16 and      check the table TCOLL.
    Regards
    Sudhir Sadhu

  • Moving/Exporting Seeburger configurations/objects from QA to Production

    Hi,
    I need some expert advise in moving Seeburger configuration objects like splitter adapter,AS2 adapter configurations from QA to Prod.
    Our scenario is like this , in the Seeburger message splitter we have defined the splitter adapter based on the AS2ID for different vendors/suppliers/customers. now when we go live on couple of customers every week, we are manually creating/configuring the seeburger channels in production. Is there a way to do it automatically like Exporting the objects in XI from QA to Prod???
    Any help is much appreciated.
    Thanks and Regards,
    Preeti

    Hi Preeti,
    For moving the congiguration objects from quality to production, you need to configure transport groups in the SLD so that when you are moving configuration objects from quality to production it will take Production R/3 system.
    For Transport Groups check the below links
    /people/sap.india5/blog/2005/11/03/xi-software-logistics-1-sld-preparation
    http://help.sap.com/saphelp_nw04/helpdata/en/ef/a21e3e0987760be10000000a114084/content.htm
    But you need to manually change AS2ID and Partner Number according to production environment in the Party which you configured for each customer in the ID.
    Regards,
    Prakash

  • Configuration Objects

    Hi All,
    I am new to Solution Manager. In SOLAR02 t-code, i have to maintain 'Configuration Objects' for configuration we are doing in ECC 6.0 in configuration tab. So can any one tell me how to find the configuration object.
    Thanks

    There are two options.
    - If you had chosen to build your project structure from the BPR (Business Process Repository) this tab would be pre-populated with the standard content. All you have to do is edit this to suit your requirements.
    The other ways is to group the objects manually. The steps are,
    -Choose object type ' IMG object' under the 'type' column in ' Configuration' tab.
    -Your default logical component will default or you choose one from the dropdown in the next column ' Logical component'
    - When you F4 in the next column ' Object' it takes you to the target IMG where you can pick and choose the IMG objects for the referenced process in the structure.
    Hope this helps. Thanks.
    Kathir

  • Importing design/configuration objects.

    Hi everybody,
    I've exported design and configuration objects from a test server, but now i need to import those files into the development server in order to set the scenario on this server.
    So, i've tried the import option but it saids "0 objects found", i don't know where to upload these files and what tool/option use to perform the importing task.
    Do you know how to do that?
    Regards,
    Gerardo.

    Hi Gerardo,
    you have to transfer exported files (from the export directory of the dev XI)
    to the importing directories of the destination XI(qat, prd) server
    try this page:
    http://help.sap.com/saphelp_nw04/helpdata/en/a8/5e56006c17e748a68bb3843ed5aab8/content.htm
    it shows <b>Import and Export Directories</b>
    the whole path look like this:
    <b><SAPSID>/SYS/global/xi/repository_server/import/</b>
    for example
    Regards,
    michal

  • Exporting and importing Configuration objects in PCK

    Hi all,
    Anyone have a idea of exporting and importing configuration objects in PCK .
    please give me step by step guide if you have any related document.
    Thanks
    Ashwin

    Hi ashwin
    Welcome to SDN forums
    Check out the following thread  for more info
    PCK Configuration Export and import
    <i>reward points if helpful</i>
    Regards
    krishna

  • Wana XI objective questions

    Hi all,
    any body wants XI certification objective questions I have some that please contact me on personal mail id
    [removed by moderator]
    I will forward that doc.
    Thanks & Regards,
    Ashok Kumar.M
    Selling certification questions is illegal and point mongering for them is not a respected community activity - [by moderator]

    Hi Ashok,
    SAP SDN is a devloper forum where Professional Developers all around the world discuss their issues and share knowledge among themselves for any support.
    Please dont post this type of questions on this forum in near future for any personal gains.
    Thanks
    Prasad

  • Updating an attribute value in a custom Configuration Object

    I created a custom configuration object, and have two attributes which should hold date values. One attribute will contain a null value and one attribute will contain a date value by default. Now, when i enter date values on an end user form and press continue, the user entered values have to be updated in these fields in the configuartion object. The attrib1 null value has to be updated with the corresponding value entered on the userform and the attibute2 ( which already has a default value) has to be overwritten with the date value selected(date selected with the date picker) on the enter user form.
    I used checkout object, a script to get the value from the form and a checkin object to perform the above operation, but the value is not being updated in the configuration object. Any suggestions for the above problem would help me a lot!!

    Have you tried accessing the object from a rule using 'getObject' (you might need to use 'getExtension' also).
    Try gettting the object directly from a rule, and use a 'set' to set the object key. I am not sure, but you might need to 'dumpMap' to actually convert the object to a Map structure before you can modify it.
    IC.

  • Issues in the import of Design & Configuration objects

    Hi SDNers,
    I have a small doubt. In one of our scenario we have exported the Design & Configuration objects (all objects) from DEV to ACC.
    But actually we want only selected objects to be imported into ACC.
    Will the import of objects under the same namespace append / overwrite the already imported objects ??
    Kindly advice us.
    Thanks in advance,
    Anguraj

    Hi Roger,
    Thanks for your reply..
    Actually with IR we are not facing any issues.. but with ID when we are importing the objects from Dev to Acc , some objects are getting overwritten and some are getting appended.
    Could you please let me know what is the actual behaviour in PI 7.0
    When  the object will overwrite and will append.
    Appreciate for exact reply.
    Regards,
    Anguraj

  • Problem when importing Configuration Objects in ID

    Hi,
    i have a problem, when importing configuration objects in my integration directory.
    i have one development system and one corresponding quality assurance system.
    in sld i have defined my business systems + groups + transport targets. the export works fine.
    when trying to import the configuration objects in integration directory of QA i get the following failure.
    #13 07:41:34 [AWT-EventQueue-0] ERROR com.sap.aii.utilxi.swing.toolkit.ExceptionDialog: Throwable
    Thrown:
    MESSAGE ID: com.sap.aii.ib.core.transport.api.TransportCsException
    com.sap.aii.ib.core.transport.api.TransportCsException: java.lang.NullPointerException
         at com.sap.aii.ib.server.transport.impl.pvc.PvcTransport.pvcImport(PvcTransport.java:145)
         at com.sap.aii.ibdir.server.transport.impl.pvc.DirPvcTransport.pvcImport(DirPvcTransport.java:74)
         at com.sap.aii.ibdir.server.transport.impl.service.InternalDirTransportServiceImpl.pvcImport(InternalDirTransportServiceImpl.java:127)
         at com.sap.aii.ib.server.transport.impl.service.InternalTransportServiceImpl.importZippedStream(InternalTransportServiceImpl.java:709)
         at com.sap.aii.ib.server.transport.impl.service.InternalTransportServiceImpl.importFromImportSource(InternalTransportServiceImpl.java:365)
         at com.sap.aii.ib.server.transport.impl.service.TransportServiceImpl.importFromImportSource(TransportServiceImpl.java:154)
         at com.sap.aii.ib.sbeans.transport.TransportServiceBean.importFromImportSource(TransportServiceBean.java:129)
         at com.sap.aii.ib.sbeans.transport.TransportServiceRemoteObjectImpl1_0.importFromImportSource(TransportServiceRemoteObjectImpl1_0.java:730)
         at com.sap.aii.ib.sbeans.transport.TransportServiceRemoteObjectImpl1_0p4_Skel.dispatch(TransportServiceRemoteObjectImpl1_0p4_Skel.java:105)
         at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:313)
         at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:199)
         at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:136)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(AccessController.java:215)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    Serialized server exceptions:
    MESSAGE ID: java.lang.NullPointerException (serialized)
    java.lang.NullPointerException: java.lang.NullPointerException
         at com.sap.aii.ibdir.server.sldaccess.gen.LDAccess.getMySAPIntegrationServerBusinessSystem(LDAccess.java:301)     at com.sap.aii.ibdir.server.sldaccess.gen.LDAccess.getMyBusinessSystemGroup(LDAccess.java:243)     at com.sap.aii.ibdir.server.sldaccess.gen.LDAccess.getBusinessSystemNameInMyGroup(LDAccess.java:173)     at com.sap.aii.ibdir.server.transport.impl.postprocessing.TransportPostprocessor.renameService(TransportPostprocessor.java:838)     at com.sap.aii.ibdir.server.transport.impl.postprocessing.TransportPostprocessor.renameService(TransportPostprocessor.java:732)     at com.sap.aii.ibdir.server.transport.impl.postprocessing.TransportPostprocessor.postprocessTransport(TransportPostprocessor.java:345)     at com.sap.aii.ibdir.server.transport.impl.postprocessing.DirImportPostprocessor.postprocess30Import(DirImportPostprocessor.java:62)     at com.sap.aii.ibdir.server.transport.impl.postprocessing.InternalPostprocessingService.postprocess(InternalPostprocessingService.java:211)     at com.sap.aii.ibdir.server.transport.impl.postprocessing.PostprocessingService.doPostprocessing(PostprocessingService.java:168)     at com.sap.aii.ibdir.server.pvcadapt.XIDirPropagationProvider.transportFinished(XIDirPropagationProvider.java:90)     at com.sap.aii.ib.server.transport.impl.pvc.PvcTransport.pvcImport(PvcTransport.java:107)     at com.sap.aii.ibdir.server.transport.impl.pvc.DirPvcTransport.pvcImport(DirPvcTransport.java:74)     at com.sap.aii.ibdir.server.transport.impl.service.InternalDirTransportServiceImpl.pvcImport(InternalDirTransportServiceImpl.java:127)     at com.sap.aii.ib.server.transport.impl.service.InternalTransportServiceImpl.importZippedStream(InternalTransportServiceImpl.java:709)     at com.sap.aii.ib.server.transport.impl.service.InternalTransportServiceImpl.importFromImportSource(InternalTransportServiceImpl.java:365)     at com.sap.aii.ib.server.transport.impl.service.TransportServiceImpl.importFromImportSource(TransportServiceImpl.java:154)     at com.sap.aii.ib.sbeans.transport.TransportServiceBean.importFromImportSource(TransportServiceBean.java:129)     at com.sap.aii.ib.sbeans.transport.TransportServiceRemoteObjectImpl1_0.importFromImportSource(TransportServiceRemoteObjectImpl1_0.java:730)     at com.sap.aii.ib.sbeans.transport.TransportServiceRemoteObjectImpl1_0p4_Skel.dispatch(TransportServiceRemoteObjectImpl1_0p4_Skel.java:105)     at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:313)     at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:199)     at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:136)     at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)     at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)     at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)     at java.security.AccessController.doPrivileged(AccessController.java:215)     at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)     at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    #12 07:41:34 [Pool-Thread-3] ERROR com.sap.aii.ib.gui.tools.transport.ConcurrentProgressDialog: Execution failed
    Thrown:
    MESSAGE ID: com.sap.aii.ib.core.transport.api.TransportCsException
    com.sap.aii.ib.core.transport.api.TransportCsException: java.lang.NullPointerException
         at com.sap.aii.ib.server.transport.impl.pvc.PvcTransport.pvcImport(PvcTransport.java:145)
         at com.sap.aii.ibdir.server.transport.impl.pvc.DirPvcTransport.pvcImport(DirPvcTransport.java:74)
         at com.sap.aii.ibdir.server.transport.impl.service.InternalDirTransportServiceImpl.pvcImport(InternalDirTransportServiceImpl.java:127)
         at com.sap.aii.ib.server.transport.impl.service.InternalTransportServiceImpl.importZippedStream(InternalTransportServiceImpl.java:709)
         at com.sap.aii.ib.server.transport.impl.service.InternalTransportServiceImpl.importFromImportSource(InternalTransportServiceImpl.java:365)
         at com.sap.aii.ib.server.transport.impl.service.TransportServiceImpl.importFromImportSource(TransportServiceImpl.java:154)
         at com.sap.aii.ib.sbeans.transport.TransportServiceBean.importFromImportSource(TransportServiceBean.java:129)
         at com.sap.aii.ib.sbeans.transport.TransportServiceRemoteObjectImpl1_0.importFromImportSource(TransportServiceRemoteObjectImpl1_0.java:730)
         at com.sap.aii.ib.sbeans.transport.TransportServiceRemoteObjectImpl1_0p4_Skel.dispatch(TransportServiceRemoteObjectImpl1_0p4_Skel.java:105)
         at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:313)
         at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:199)
         at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:136)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(AccessController.java:215)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    Serialized server exceptions:
    MESSAGE ID: java.lang.NullPointerException (serialized)
    java.lang.NullPointerException: java.lang.NullPointerException
         at com.sap.aii.ibdir.server.sldaccess.gen.LDAccess.getMySAPIntegrationServerBusinessSystem(LDAccess.java:301)     at com.sap.aii.ibdir.server.sldaccess.gen.LDAccess.getMyBusinessSystemGroup(LDAccess.java:243)     at com.sap.aii.ibdir.server.sldaccess.gen.LDAccess.getBusinessSystemNameInMyGroup(LDAccess.java:173)     at com.sap.aii.ibdir.server.transport.impl.postprocessing.TransportPostprocessor.renameService(TransportPostprocessor.java:838)     at com.sap.aii.ibdir.server.transport.impl.postprocessing.TransportPostprocessor.renameService(TransportPostprocessor.java:732)     at com.sap.aii.ibdir.server.transport.impl.postprocessing.TransportPostprocessor.postprocessTransport(TransportPostprocessor.java:345)     at com.sap.aii.ibdir.server.transport.impl.postprocessing.DirImportPostprocessor.postprocess30Import(DirImportPostprocessor.java:62)     at com.sap.aii.ibdir.server.transport.impl.postprocessing.InternalPostprocessingService.postprocess(InternalPostprocessingService.java:211)     at com.sap.aii.ibdir.server.transport.impl.postprocessing.PostprocessingService.doPostprocessing(PostprocessingService.java:168)     at com.sap.aii.ibdir.server.pvcadapt.XIDirPropagationProvider.transportFinished(XIDirPropagationProvider.java:90)     at com.sap.aii.ib.server.transport.impl.pvc.PvcTransport.pvcImport(PvcTransport.java:107)     at com.sap.aii.ibdir.server.transport.impl.pvc.DirPvcTransport.pvcImport(DirPvcTransport.java:74)     at com.sap.aii.ibdir.server.transport.impl.service.InternalDirTransportServiceImpl.pvcImport(InternalDirTransportServiceImpl.java:127)     at com.sap.aii.ib.server.transport.impl.service.InternalTransportServiceImpl.importZippedStream(InternalTransportServiceImpl.java:709)     at com.sap.aii.ib.server.transport.impl.service.InternalTransportServiceImpl.importFromImportSource(InternalTransportServiceImpl.java:365)     at com.sap.aii.ib.server.transport.impl.service.TransportServiceImpl.importFromImportSource(TransportServiceImpl.java:154)     at com.sap.aii.ib.sbeans.transport.TransportServiceBean.importFromImportSource(TransportServiceBean.java:129)     at com.sap.aii.ib.sbeans.transport.TransportServiceRemoteObjectImpl1_0.importFromImportSource(TransportServiceRemoteObjectImpl1_0.java:730)     at com.sap.aii.ib.sbeans.transport.TransportServiceRemoteObjectImpl1_0p4_Skel.dispatch(TransportServiceRemoteObjectImpl1_0p4_Skel.java:105)     at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:313)     at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:199)     at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:136)     at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)     at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)     at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)     at java.security.AccessController.doPrivileged(AccessController.java:215)     at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)     at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    I couldn't find any similiar problem when searching SDN and SAP Notes.
    BR,
    Martin

    Hi
    Chk this thread
    XI Transport Error
    BR

Maybe you are looking for

  • Authorizing and deauthorizing

    question: we purchased an ipod shuffle for our daughter while she was home on her college winter break. it was frustrating to set it up to say the least, some of that is our issue as we are not very tech-y people. she has a windows laptop, we have a

  • Dynamic changes in the report

    I generated one report in BI 7.0 using the BEx Analyser. But what the user want is to simulate the report in according to the market changes. For example: Suppose fields for the ingredients of a product and the % of amount used to get the profit is t

  • UM175 - Not able to connect to office network with VPN

    I am having trouble connecting to my office network using this wireless card, UM175, and connecting with a VPN. I have the VPN set up the same as many other computers connecting to our server. Currently when I start VZAccess, I can access the interne

  • How to export 1080 HD video to MPG4 file with chapters?

    Now that I have put a sequence together in FCE, how do I create a 1080HD MPG4 file that can be used on a PC, MAC or with the WD HD Media player (for those that know the latter). Thanks!

  • Error in j1id - Change / Display

    Dear All,           I am facing a problem in transaction j1id, while changing or displaying customer excise details. could any one help me out on this ?? Regards, Sridhar S The error is as follows.. Short text     Syntx error or generation error in a