IDOC configuration in 46C for BI 7

Dear Experts
Is there a set of  steps to create the idoc configurations in R/3 for data transfer between R/3 46C  and BI 7?
After refresh, the idoc related configurations are lost and BI is unable to load from Source System R/3.
Thanks for reading and hope you can advise on the above.
Best regards
Pascal

Hello Pascal,
Maybe a thread in the PI forum would help you better:
Process Integration (PI) & SOA Middleware
Check the following thread:
Re: interface help
Regards,
Eduardo Rezende

Similar Messages

  • ALE/Idoc configuration - (R3--XI--File)

    Iam XI developer and know basic ABAP. Client is NOT  using any Idocs right now. I have to develop a scenarios ( including ALE/Idoc Configuration on R3 for standard Idocs like MATMAS, DEBMAS, CREMAS etc ) both Master data and change pointer to XI and then to File.
    Would some one show me step by step procedures for ALE/Idoc configuration on R3 and XI.I need to send both Master data and incremental data to XI possibly by bundling Idocs to XI.

    Hi Ram...
    Once the mapping is done then re-check the ALE settings.
    <b>SAP XI</b>
    1) <b>RFC Destination (SM59)</b>   
            a) Choose create.
                b) Specify the name of the RFC destination
                c) Select connection type as 3 and save
                d) In the technical settings tab enter the details SAP SID/URL and system number#.
                e) Enter the Gateway host as same details above SID/URL.
                f) Gateway service is 3300+system number#.
                g) In the Logon /Security tab, enter the client user & Password details of                                   Destination system.
                h) Test the connection and remote logon.
    <b>2)         Create Port (IDX1)</b>  
             a) Select create new button
                b) Enter the port name as SAP+SID (The starting char should be SAP)
                c) Enter the destination client.
                d) Enter the RFC Destination created in SAP R/3 towards other system.
                e) Save
    <b>3)         Load Meta Data for IDOC (IDX2)</b>            a) Create new
                b) IDOC Message Type
                c) Enter port created in IDX1.
    <b>SAP R/3
    1) RFC Destination (SM59)</b>       
        a) Choose create.
                b) Specify the name of the RFC destination
                c) Select connection type as 3 and save
                d) In the technical settings tab enter the details SAP SID/URL and system number#.
                e) Enter the Gateway host as same details above SID/URL.
                f) Gateway service is 3300+system number#.
                g) In the Logon /Security tab, enter the client user & Password details of                                   Destination system.
                h) Test the connection and remote logon.
    <b>2)         Create Port (We21)</b>
                a) First Select Transactional RFC and then click create button
                b) Enter the destination port name as SAP+SID (The starting char should be SAP)
                c) Enter the destination client.
                d) Enter the RFC Destination created in SAP R/3 towards other system.
                e) Save
    <b>3)         Create Partner Profile (WE20)</b>
                a) Create New
                b) Create the Partner no. name as same the logical system name of the destination                      system.
                c) Select Partner type LS         
                d) Enter details for Type: US/USER, Agent, and Lang.
                e) Click on the + button to select the message type.
                f) Select Partner no. and LS which ever create above.
                g) Select Message type
                h) Select Process code related to the Message type.
                I) save.
    <b>In SLD – System Landscape Directory</b>
    TS for R/3 (Logical system):-Assign the client name created in R/3 as Logical system Name.
    Ts for Third Party (Logical system):-
    BS for SAP R/3 (Logical system):- Assign the client name created in R/3 as Logical system Name.
    BS for Third Party (Logical system):-Enter the XI logical system name.
    <b>In Transaction SALE</b>
    Define and Assign the logical system name.
    Cheers,
    raghavesh

  • IDoc Configuration for Production Order Creation and Change

    Hi All,
    Please Help me out for IDoc Configuration for Production Order Creation and Change
    I have found the IDoc for Production Order
    Messgae Type : LOIPRO and IDoc type : LOIPRO01
    Actually my requirment is to send the (LOIPRO01 )IDoc from SAP R/3 to XI system ,when ever the Production Order Created and Changed,
    I have done following Configurations:
    1. RFC Destination created for XI system
    2. PORT was created for XI
    3. Partner profile created WE20 and LOIPRO01 IDoc is added in OutBound Perameter.
    I need to know how to do the followning.
    1. How do i configure the outbound Production order idocs when Production Order is created or changed.
    2. in NACE (Output control) which is the Application for Production Order.
    3. How can I set IDoc as output Type for Production Order Creation.
    Thanks in advance
    Dhanabal T

    Hi Michal,
    I know that it is the old thread but still want to get clarified from you out of curiosity.
    Unlike other IDOC, i actiavated change pointers for LOIPRO
    1.message and idoc type is linked
    2.function module , message type , idoc type is linked
    function module used is CLOI_MASTERIDOC_CREATE_LOIPRO
    3.BD64, distribution model is created and distributed
    4. port and partner profile is in place.
    5. IDOC is not getting generated after creating the process order.
    do we need to activate the change documents for the message type in BD52,
    if yes can you please provide the object types for the same.
    or i am missing something else. please guide me in this regards.
    Thanks in advance for your time.
    S.Janagar

  • IDOC Problem From 46C To ECC6 For ORDERS05

    Hello
    I am trying to generate 46C version ORDERS05 basic type from ECC6 700 version.
    Within WE20(Partner Profiles) I have set the Seg. release in IDOC type to 46C to generate the old 46C segment. When I run my test again the IDOC that was generated is still version 700.
    Thanks for the help.
    Joe

    Gentlemen:
    The problem around this statement:
    ASSIGN (w_field) TO <fs_field>
    is explained as follows:
    1. In ABAP language, there are two ways for assigning a new value to a field-symbol.
    - Sentence: ASSIGN (values) TO <my_field_symbol>.
      In this case, the <my_field_symbol> receives from (w_field) the data type and value content of this variable. So, we keep that a FSymbol is assigned and, at the same time, receives an initial value.
    - Sentence: <my_field_symbol> = '/' or <my_field_symbol> = my_var.
      In this way, we only pass the content of the variable next to = sign. But before this, the field-symbol must had been assigned (using ASSIGN statement), in another case, the compiler raises an exception.
    Following the example of Federico... I think he tried to assign a field like this (please, supose the program imports the structure of a database table with a standard function, into a internal table which is looped by the work area w_field ):
    - If w_field contains 'BKPF-WERKS', so sentence ASSIGN will affect the field symbol, passing to this the data type and current content of table field BKPF-WERKS.
    - If w_field contains 'BKPF-.INCLUDE': *the column .INCLUDE obviously is not associated with a data type... so our statement ASSIGN... TO... never pass any data type or value to our field-symbol. So that, this field is never initialized properly, and when inmmediately you try to execute something like this: <my_field_symbol> = '/', the game (program) is over.. XD
    I hope this post was helpful for anyone...
    Best Regards!!
    RRG
    ABAPer(u) - EVOLution

  • Creation of Custom IDoc with Message control for sales Order

    Hi all,
    I am trying to create custom Outbound IDoc with message control.
    I wrote the code in a function module and i want to register that function module. (as in inbound registration of function module as in BD51).I am not knowing if that registration is necessary for outbound Idoc, if so in which transacition?
    Please list me the steps to create a custom IDoc for Message control.
    Thanks in advance,
    Regards,
    John.

    Hi,
    You need to use FM : MASTER_IDOC_DISTRIBUTE to create outbound idoc.fill the data in the tables EDIDC,EDIDD and generate the IDOC.
    check this link:
    Re: Master_IDoc_Distribute
    and use transaction : WEDI for IDOC configurations.
    here you will have all the transactions(step by step) to set the outbound IDOC configurations.
    Regards
    Appana

  • Idoc configurations in PI7.3

    Hi Experts,
    For an Idoc scenario prior to PI 7.3, RFC destination, port, logical system and partner profile needs to be created in case of outbound Idoc scenario and again at XI side we need to create RFC destination, port and loading of meta data....
    Is the same is applicable for PI 7.3 as well? since Idoc resides in AAE in PI 7.3, I believe there could be some changes applicable for these settings of Idoc....
    Pls provide your inputs.....

    Hi,
    Along with the links provided by Phani and Gayatri you can laso refer this thread for IDoc configuration in PI7.3
    IDOC settings from sap r/3 to sap pi7.3
    IDoc Packaging in PI7.3
    http://www.sdn.sap.com/irj/sdn/index?rid=/library/uuid/4096a6b3-3dc3-2d10-bf87-f63d5340a916
    Configuring PI 7.30 Java IDoc Adapter
    PI/XI: PI 7.3 New Java based IDOC adapter's configuration (sender, receiver) - teaser
    IDoc Acknowledments in PI7.3
    acknowledge handling for IDOC_AAE in sap PI 7.3
    IDoc_AAE acknowledgement handling in PI 7.3
    IDoc related error in PI7.3
    Processing error in Idoc_AAE sender channel
    Hope its informative.
    Regards,
    Amol

  • CRMXIF_ORDER_SAVE IDOC not getting generated for BUS_TRANS_MSG BDOC

    Hello Experts,
    In our project, we have a requirement to send custom fields in the BUS_TRANS_MSG to external system through XIF. The model of BDOC BUS_TRANS_MSG triggering IDOC CRMXIF_ORDER_SAVE_M02 perfectly worked in the development system. We wanted to try the custom field extension in the Sandbox. So as per OSS note 916093, we have extended E101_CRMXIF_CUSTOMER_H segments with custom fields and tried generating the interfaces in BDFG transaction. While generation with IDOC CRMXIF_ORDER_SAVE_M we got an error message "Incompatible change to complex data type
    type E101CRMXIF_ISU_PRA1_X". So went about creating a custom IDOC ZZ_CRMXIF_ORDER_SAVE_M02 for message CRMXIF_ORDER_SAVE. Even for this config, the IDOC is not getting generated for the BDOCs. Lastly, configured the IDOC ZZ_CRMXIF_ORDER_SAVE_M02 to a custom function module ZZ_BDFG_IDOC_TEST_FM. The FM got generated and activated, even then the IDOC is not generated for the BDOC.
    SMOEAC config in Sandbox looks the same as the Development system. We do not the reason why IDOC is not getting generated and also the reason for error in BDFG while generating the interfaces after adding custom fields to CUSTOMER_H segment.
    Any help would be appreciated.
    Thanks,
    Partha

    Hi Partha,
    Kindly check the following thread.
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/406efa7e-388a-2910-f9b8-81913b0ca57f?QuickLink=index&overridelayout=true
    XIF adapter
    Hope it answers your Query
    Regards,
    Srikanth.Naga

  • ALE/ IDOC CONFIGURATION OBJECT

    IT'S URGENT
      I NEED AN OBJECT IN ALE/IDOC CONFIGURATION SETTINGS

    Hi Viji.
    I can provide you a link which deals with precise material for ALE/IDOC configuration.
    This link has just 1 page, but very good configurations.
    http://publib.boulder.ibm.com/infocenter/wbihelp/v6rxmx/index.jsp?topic=/com.ibm.wsadapters.jca_sap.doc/doc/csap_depl_config_serv.html
    Inside if you want Outbound or Inbound settings, choice is to be made.
    <removed by moderator>
    Regards
    Harsh
    Edited by: Mike Pokraka on Aug 6, 2008 10:56 AM

  • IDoc Configuration steps

    Hi Guru's
    Can any one of you explain the Idoc configuration steps in brief with t.codes?
    rgds,

    Cherukuri:
    <a href="http://www.scribd.com/doc/24447/SAP-R3-IDoc-Cookbook-for-EDI-and-Interfaces-by-Axel-Angeli">IDoc Config Guide</a>
    In case the link doesn't work:
    Google this: "Axel Angeli SAP R/3 guide to Idoc"
    Idoc Transactions:
    Transaction Code
    SALE:Display ALE Customizing
    SM59:RFC Destinations (Display/Maintain)
    BD64:Maintenance of Distribution Model
    BD82:Generate Partner Profiles
    WE20:Partner Profiles
    WE21:Port definition
    WE30:IDoc Type Development ( View Segments of an IDOC )
    WE60:IDOC segment field description
    WE19:Test tool for IDOC Processing
    WE05:IDOC Lists
    WE09:Search for IDOC in Database
    BD87:Status Monitor for ALE Messages (Process IDOC manually)
    BD73:Start Error Handling for Non-Posted IDocs
    WEDI:IDOC and EDI Basis
    Change Pointers:
    BD50:Activate change pointer for message type
    BD61:Activate Change pointer generally
    BD52:Triggering table and field name
    BD21:Creates and sends the Idoc for Change pointer method
    BD59:Set the field for Filter in Distribution Model
    BD95:Along with BD59 , used for setting a filter in Distribution model
    BD60:Assigning FM to the outbound IDOC , and specifying Change pointer Table and Object
    BD56:Segment Filtering
    Inbound IDOC:
    WE81:Create Logical message types
    WE82:Assign Messages for IDoc Type
    WE31:Development IDoc Segment
    WE57:Assignment of FM to Log, Message and IDoc Type
    BD51:Characteristics of Inbound FM
    WE42:Creating Inbound Process Code
    BD67:Function modules for Inbound ALE-EDI
    Assign points if info helps Vj

  • Idoc configuration in IDES??

    hi experts ,
    Can somebody explain me about , how do we do entire Idoc configuration in IDES and we can execute the same as sample in IDES
    Explain me in step by step for outbound and inbound ...
    Thanks
    Edited by: MM group on Jul 2, 2010 10:44 AM

    1 Logical System
    2 Assign Logical system
    3 RFC
    4 Port
    5 Customer distribution model
    6 Partner profile
    7 CDM distribution
    Tcode : SALE
    First 2 steps not necessary ( Basis work already done )
    Two logical system created
    Ls110 -Sender
    Ls800 - Receiver
    RFC
    RFC establishment SM59
    Receiving system IP address or hostname
    System number, client id
    Username, password
    Ports
    We21 – define ports
    TRFC – ale
    File – Edi
    CPI_C - R2 connections
    In the port we need to define Port name and RFC destinations
    And version
    Customer Distribution Model - BD64
    Sender
    Receiver
    Message type
    Partner profile we20 , BD62
    Partner may be customer, vendor, logical system
    In BD62 define the partner system (LS800)
    One more additional entry SYNC for synchronization
    Post processing Agent - workflow
    MATMAS 03 – 03 is the version
    Collect idoc we need to trigger
    Transfer idoc will be send immediately
    With message control
    Which program need to run for generating the idoc
    With out message control
    For some of the programs have inbuilt idoc generation for that case no need to mention program name
    Process code
    Distribute CDM
    Receiving System:
    Partner profile is going to control all the thing
    BD64 - > edit - > model view - > distribute
    BD67 – Function module assigned to the process code
    BD10 – used to create idoc for material
    Master idoc generated – only buffered
    One master idoc – multiple communication idoc
    One communication idoc generated
    We02 – idoc satus

  • Configuration output type for VL02N - creating output type

    Dear Sapguru,
    I want to configure output type for VL02N transaction for IDOC creation,Here scenario is to connect SAP to third party system in IS retail.
    VL02N- Output type configuration In only return delivery case.
    Can anybody guide step by step cycle configuration for output type.Looking forward for your quick reply.
    Note: Output type required for IDOC,to communicate with third party system,not for print function.
    Thanks.

    Dear Anup,
    If my understanding is correct,
    This seems to be a outbound Idoc scenario where Idoc will be sent by SAP to third party for a return delivery notification.
    Output type configuration steps are as follows :
    1) Identify the standard output type (Application - V2, Transmission Medium - 6 ) for e.g. LAVA which is very close to your requirement.
    2) Use this output type as a reference & create a copy output type of your own.
    3) Use a suitable access sequence or create your own access sequence as per your requirement.
    4) Assign access sequence to the output type.
    5) Maintain output determination procedure (connect your output type to a suitable procedure )
    6) Assign output determination procedure. (to your delivery document type)
    7) Maintain required output condition records through T Code - VV21 against your newly created output type.
    8) Set up the partner profiles as per your requirement (T code - WE20)
    9) Check the reflection/ effects of your new output setup at the delivery document level (VL02N).
    You may quickly access these settings through T codes - NACE.
                                                                                  Tables - TNAPR, NAST
    Hope it will help you in the set up.
    BR,
    Anubhav

  • ALE and Idocs configuration

    Hi Gurus,
    Please tell me the ALE and Idocs configuration settings
    Thnaks in advance

    Hi,
    Please refer to the details mentioned in the hyper-links beow.
    You will get the details how to go about it.
    To see the IDOC & status check it in WE02/WE05
    You will get step by step process.
    ABAP Development
    http://www.sapgenie.com/sapedi/idoc_abap.htm
    http://www.netweaverguru.com/EDI/HTML/IDocBook.htm
    http://www.allsaplinks.com/idoc_sample.html
    http://www.geocities.com/xplosion78/customised_ALE_IDOC_BY_SACHIN_DABHADE.zip
    http://help.sap.com/saphelp_45b/helpdata/en/35/b0ea5187a62488e10000009b38f9b7/content.htm
    http://help.sap.com/saphelp_erp2005/helpdata/en/c4/6bc368fef411d28d0900104b56737d/frameset.htm
    ABAP Development
    Follow below steps to create custom IDOC.
    1.Create segments through transaction WE31.
    2.Create IDoc Type through transaction WE30 by attaching created segments.
    3.Message type through transaction WE81.
    4.Link Idoc and message type in WE82 transaction.
    Check the transaction WEDI for ALE settings
    Check these links for more details on IDoc's:
    ALE/ IDOC
    http://help.sap.com/saphelp_erp2004/helpdata/en/dc/6b835943d711d1893e0000e8323c4f/content.htm
    http://www.sapgenie.com/sapgenie/docs/ale_scenario_development_procedure.doc
    http://edocs.bea.com/elink/adapter/r3/userhtm/ale.htm#1008419
    http://www.netweaverguru.com/EDI/HTML/IDocBook.htm
    http://www.sapgenie.com/sapedi/index.htm
    http://www.sappoint.com/abap/ale.pdf
    http://www.sappoint.com/abap/ale2.pdf
    http://www.sapgenie.com/sapedi/idoc_abap.htm
    http://help.sap.com/saphelp_erp2005/helpdata/en/0b/2a60bb507d11d18ee90000e8366fc2/frameset.htm
    http://help.sap.com/saphelp_erp2005/helpdata/en/78/217da751ce11d189570000e829fbbd/frameset.htm
    http://www.allsaplinks.com/idoc_sample.html
    http://www.sappoint.com/abap.html
    http://help.sap.com/saphelp_erp2004/helpdata/en/dc/6b835943d711d1893e0000e8323c4f/content.htm
    http://www.sapgenie.com/sapgenie/docs/ale_scenario_development_procedure.doc
    http://edocs.bea.com/elink/adapter/r3/userhtm/ale.htm#1008419
    http://www.netweaverguru.com/EDI/HTML/IDocBook.htm
    http://www.sapgenie.com/sapedi/index.htm
    http://www.allsaplinks.com/idoc_sample.html
    ALE/ IDOC/ XML
    http://www.sapgenie.com/sapgenie/docs/ale_scenario_development_procedure.doc
    http://www.thespot4sap.com/Articles/SAP_XML_Business_Integration.asp
    http://help.sap.com/saphelp_srm30/helpdata/en/72/0fe1385bed2815e10000000a114084/content.htm
    IDOC Convertion
    /people/kevin.wilson2/blog/2005/12/07/changing-fields-in-an-idoc-segment
    http://www.intelligententerprise.com/channels/applications/feature/archive/kasturi.jhtml
    Hope this will help.
    Regards,
    Priyanka.

  • ALE/IDOC configuration study Material

    Hi All,
    Anyone come across ALE/IDOC configuration study Material which consists of
    ONLY ONE PAGE. If YES, Please pass it on.
    Points Assured \[but not given. Dont write such statements here anyway!\]
    Regards,
    Viji.
    Edited by: Jan Stallkamp on Aug 6, 2008 2:26 PM

    Hi Viji.
    I can provide you a link which deals with precise material for ALE/IDOC configuration.
    This link has just 1 page, but very good configurations.
    http://publib.boulder.ibm.com/infocenter/wbihelp/v6rxmx/index.jsp?topic=/com.ibm.wsadapters.jca_sap.doc/doc/csap_depl_config_serv.html
    Inside if you want Outbound or Inbound settings, choice is to be made.
    <removed by moderator>
    Regards
    Harsh
    Edited by: Mike Pokraka on Aug 6, 2008 10:56 AM

  • ALE/IDOC CONFIGuRING

    Hi ,
    can any one send me step by step ALE/IDOC Configuring please it is very important for me..
    Thank's in advance..

    hi,
    check all the below links.......
    http://www.sapgenie.com/sapgenie/docs/ale_scenario_development_procedure.doc
    For ALE -- IDoc's
    http://www.sappoint.com/abap/ale.pdf
    http://www.sappoint.com/abap/ale2.pdf
    http://www.sapgenie.com/sapgenie/docs/ale_scenario_development_procedure.docs
    ALE/ IDOC/EDI
    http://help.sap.com/saphelp_erp2004/helpdata/en/dc/6b835943d711d1893e0000e8323c4f/content.htm
    http://www.sapgenie.com/sapgenie/docs/ale_scenario_development_procedure.doc
    http://edocs.bea.com/elink/adapter/r3/userhtm/ale.htm#1008419
    http://www.netweaverguru.com/EDI/HTML/IDocBook.htm
    http://www.sapgenie.com/sapedi/index.htm
    http://www.sappoint.com/abap/ale.pdf
    http://www.sappoint.com/abap/ale2.pdf
    http://www.sapgenie.com/sapedi/idoc_abap.htm
    http://help.sap.com/saphelp_erp2005/helpdata/en/0b/2a60bb507d11d18ee90000e8366fc2/frameset.htm
    http://help.sap.com/saphelp_erp2005/helpdata/en/78/217da751ce11d189570000e829fbbd/frameset.htm
    http://www.allsaplinks.com/idoc_sample.html
    http://www.sappoint.com/abap.html
    http://help.sap.com/saphelp_erp2004/helpdata/en/dc/6b835943d711d1893e0000e8323c4f/content.htm
    http://www.sapgenie.com/sapgenie/docs/ale_scenario_development_procedure.doc
    http://edocs.bea.com/elink/adapter/r3/userhtm/ale.htm#1008419
    http://www.netweaverguru.com/EDI/HTML/IDocBook.htm
    http://www.sapgenie.com/sapedi/index.htm
    http://www.allsaplinks.com/idoc_sample.html
    http://www.sapgenie.com/sapgenie/docs/ale_scenario_development_procedure.doc
    for MM
    http://help.sap.com/saphelp_nw04/helpdata/en/78/217da751ce11d189570000e829fbbd/content.htm
    one more good link
    /people/kevin.wilson2/blog/2006/11/13/ale-scenario-development-guide
    ~~Guduri

  • Is there pre-configured message mapping for SRM Content?

    Hi,
    My requirement is to do a message mapping between the SRM Message "Purchase Order Request" and the R/3 Idoc Orders01. Is there a preconfigured message mapping in SRM content or will I have to do it?
    I see the generated proxy class from the outbound message interfacePurchaseOrderRequest_Out which will carry the message to XI and my requirement is to map it to the Interface ORDRSP.Orders01 Please let me know if there is a pre-configured message mapping for this ? or is the message mapping between the message "Purchase Order Request" and the R/3 IDOC ORDERS01 to be done by the developer himself?

    HI,
    There are mappings available in the predelivered SRM content from SAP.
    Did you import  the SRM content into the repository? If so , you can find this.
    www.service.sap.com/ibc -> Integrated Business Content for mySAP SRM->
    Hope this helps,
    Rgds,
    Moorthy
    Message was edited by:
            Krishna Moorthy P

Maybe you are looking for

  • Time capsule slow to backup

    Ever since upgrading to Maverick backing up my HD to an Airport 2TB Time Capsule is painfully slow. I have just over 200 GB to backup and after nearly a week and dozens of Airport connectivity drops I'm only at 30 GB being backed up. WTH? Is there a

  • SAP -PM

    Hi Experts, I have some doubts in PM so plz help to resolve it... I) what is Equipment PRT.? 2)how to cancel the release status of Any Maintenance order? 3)If i want to block d corfirmation  of Maintenance order for  previous months(Order which creat

  • Table name and field required for Project name

    Hi Guys I need to print Transfer order print out Which Table and field I need to take to print Project number (Original format) BSA01.000045.00002

  • Connecting source system

    Hi, I am working on BI 7.0 ... I have connected my BI dev client with QA client 630 and have loaded the target. Now the user wants to connect BI dev to another QA client 650 and load the data. Is there any way by which i will have to not create the I

  • Distributed java system copy of NW2004s......

    Dear friends we have an requiremen on SAP NETWEAVER portal environement, we have to take a java system copy of our produciton portal. our source portal landscape details as follows: CI: Host A DB : Host B Target portal landscape: CI & DB on same host