Regarding SAP PI 7.0 Configuration

Hi Experts,
We Completed The SAP PI 7.0 Installation.
Now we Are Doing The Configuration Steps.
Here We run the post installation Templates which automatically configures PI system.
<b>Steps:</b>
Step 1: Go to this link http://<host name>: <HTTP port number>/index.html
Step 2: Click on SAP NetWeaver Administrator
Step 3: Click on seeDeploy and Changelink
Step 4: First executed the templates for NWA for configuring you SLD
Step 5: Then executed the templates for PI
After this  for the  Importing the XI Content for Software Component Version SAP Basis
1. Here We Are Trying to Copy XI3_0_SAP_BASIS_6.40_00_12.tpz from <installation DVD>
to directory /usr/sap/<SAPSID>/SYS/global/xi/repository_server/import/
But We Are Unable to Find out <b>/repository_server/import/</b><u></u>
We Can Able to Find out the Path Upto <b>/usr/sap/<SAPSID>/SYS/global/xi/</b><u></u>
Can Anybody Please help To Go in the Right Direction
Regards
Khanna

Hi,
Thanks for the Reply.
This was solved by team a long back,
Sorry, i forgot to close the thread
REgards
Seshagiri

Similar Messages

  • Regarding SAP PI 7.0 Configuration of Integration Engine

    Hi Experts,
    We Installed SAP PI 7.0 Successfully.After that We Run the Template Installers for PI.
    Here We Selected <u><b>PI Post Install Process</b></u> Option in the Template Field.
    <b>Q1)</b>  After Completion of this Should we Configure All   IE , IS, AE  Or Those wil be Configured Automatically ????
    <b>Q2) </b> What are the Necessary Steps to Do Even We Run the Template Installer, To execute a Scenario  Successfully.?????
    Please Let me Know
    Regards
    Khanna

    Here is an extract from the OSS note. I guess,this should answer your second question
    Reason and Prerequisites
    To avoid problems while using the configuration wizard (template installer )please check prerequisites for post-installation in SAP documentation. That information can be found in SAP Help Portal (http://help.sap.com --> SAP Netweaver --> Installation and Upgrade guide --> Installation --> 2 - Installation - SAP Netweaver 2004s --> SAP NetWeaver 2004s Installation Documentation).
    Select your Operating System and Database and look for 'Post-Installation Steps for Usage Type *' in the dedicated document.
    Important: You cannot use the configuration wizard after
    Upgrade
    Add-In installation (Exception: Configuration of Usage Type BI-Java can be executed after Add-In Installation)
    Additional usage type enablement
    System copy
    Always install the latest available SPS + Patches before running the CTC.( You can find the latest LMTOOLS Patch at http://service.sap.com -> SAP Support Portal -> Downloads (Tab) -> Downloads (Menue) -> Support Packages and Patches -> Search for Support Packages and Patches -> Search for: LMTOOLS*P -> Download and Save the .sca. Apply the patch by using the SDM.)
    The sequence is:
    1. Installation
    2. Install latest SPS + Patches (if available)
    3. Run configuration wizard.
    You can run the configuration wizard only once for initial configuration.
    In these cases, you need to perform the corresponding configuration steps as described in the configuration documentation.
    For more information on how to access the configuration documentation, see 'Accessing Configuration Documentation in the SAP Solution Manager'.

  • Help regarding SAP SCRIPT

    Hi!
      can any one help me regarding SAP SCRIPT. i unable to write a print program for sap script . can any one can send me sample code using ITCSY structure.
    Thanks in advance.
    Thanks & Regads,
    DurgaPrasad.k

    Hi,
    refer this to write print program:
    <b>The Print Program</b>
    Structure of a print program
    OPEN_FORM function
    CLOSE_FORM function
    WRITE_FORM
    START_FORM function
    END_FORM function
    CONTROL_FORM function
    The print program is used to print forms. The program retieves the necesary data from datbase
    tables, defines the order of in which text elements are printed, chooses a form for printing and
    selects an output device and print options.
    <b>Function modules in a printprogram:</b>
    When you print a form you must used the staments OPEN_FORM and CLOSE_FORM. To combine
    forms into a single spool request use START_FORM and END_FORM.
    To print textelements in a form use WRITE_FORM. The order in which the textelements are printed,
    is determined by the order of the WRITE_FORM statements. Note: for printing lines in the body, you
    can also use the WRITE_FORM_LINES function module.
    To transfer control command to a form use CONTROL_FORM.
    <b>Structure of a print program</b>
    Read data
    Tables: xxx.
    SELECT *
    FROM xxx.
    Open form printing - Must be called before working with any of the other form function modules.
    Must be ended with function module CLOSE FORM
    call function 'OPEN_FORM'.....
    To begin several indentical forms containing different data within a single spool request, begin each
    form using START_FORM, and end it using END_FORM
    call funtion 'START_FORM'.....
    Write text elements to a window of the form
    call function 'WRITE_FORM'.....
    Ends spool request started with START_FORM
    call funtion 'END_FORM'.....
    Closes form printing
    call function 'CLOSE_FORM'...
    OPEN_FORM function
    Syntax:
    CALL FUNCTION 'OPEN_FORM'
    EXPORTING
      APPLICATION                       = 'TX'
      ARCHIVE_INDEX                     =
      ARCHIVE_PARAMS                    =
      DEVICE                            = 'PRINTER'
      DIALOG                            = 'X'
      FORM                              = ' '
      LANGUAGE                          = SY-LANGU
      OPTIONS                           =
      MAIL_SENDER                       =
      MAIL_RECIPIENT                    =
      MAIL_APPL_OBJECT                  =
      RAW_DATA_INTERFACE                = '*'
    IMPORTING
      LANGUAGE                          =
      NEW_ARCHIVE_PARAMS                =
      RESULT                            =
    EXCEPTIONS
      CANCELED                          = 1
      DEVICE                            = 2
      FORM                              = 3
      OPTIONS                           = 4
      UNCLOSED                          = 5
      MAIL_OPTIONS                      = 6
      ARCHIVE_ERROR                     = 7
      INVALID_FAX_NUMBER                = 8
      MORE_PARAMS_NEEDED_IN_BATCH       = 9
      SPOOL_ERROR                       = 10
      OTHERS                            = 11
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    <b>Some important parameters:</b>
    FORM Name of the form
    DEVICE PRINTER : Print output using spool
    TELEFAX: Fax output
    SCREEN: Output to screen
    OPTIONS Used to control attrubutes for printing or faxing (Number of copies, immediate output....
    The input for the parameter is structure ITCPO.
    CLOSE_FORM function
    CALL FUNCTION 'CLOSE_FORM'
    IMPORTING
      RESULT                         =
      RDI_RESULT                     =
    TABLES
      OTFDATA                        =
    EXCEPTIONS
      UNOPENED                       = 1
      BAD_PAGEFORMAT_FOR_PRINT       = 2
      SEND_ERROR                     = 3
      SPOOL_ERROR                    = 4
      OTHERS                         = 5
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    Paramerters:
    RESULT Returns status information and print/fax parameters after the form has been printed.
    RESULT is of structure ITCPP.
    WRITE_FORM function
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
      ELEMENT                        = ' '
      FUNCTION                       = 'SET'
      TYPE                           = 'BODY'
      WINDOW                         = 'MAIN'
    IMPORTING
      PENDING_LINES                  =
    EXCEPTIONS
      ELEMENT                        = 1
      FUNCTION                       = 2
      TYPE                           = 3
      UNOPENED                       = 4
      UNSTARTED                      = 5
      WINDOW                         = 6
      BAD_PAGEFORMAT_FOR_PRINT       = 7
      SPOOL_ERROR                    = 8
      OTHERS                         = 9
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    Some important parameters:
    ELEMENT Specifies which textelement is printed
    WINDOW Specifies which window is printed
    TYPE Specifies the output area of the main window. This can be:
    TOP - Used for headers
    BODY
    BOTTOM - Used for footers
    FUNCTION Specifies whether text is to be appended, replaced or added
    Example of how to use the WRITE_FORM function module together with a script.
    Form layout of the MAIN window
    /E INTRODUCTION
    Dear Customer
    /E ITEM_HEADER
    IH Carrier, Departure
    /E ITEM_LINE
    IL &SBOOK-CARRID&, &SPFLI-DEPTIME&
    /E CLOSING_REMARK
    <b>The print program</b>
    Writing INTRODUCTION
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
    ELEMENT                  = 'INTRODUCTION'
    FUNCTION                 = 'SET'
    TYPE                     = 'BODY'
    WINDOW                   = 'MAIN'
    EXCEPTIONS
    OTHERS                   = 8
    Writing ITEM_HEADER
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
    ELEMENT                  = 'ITEM_HEADER'
    FUNCTION                 = 'SET'
    TYPE                     = 'BODY'
    WINDOW                   = 'MAIN'
    EXCEPTIONS
    OTHERS                   = 8
    Set ITEM_HEADER into TOP area of main window for subsequent pages
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
    ELEMENT                  = 'ITEM_HEADER'
    FUNCTION                 = 'SET'
    TYPE                     = 'TOP'
    WINDOW                   = 'MAIN'
    EXCEPTIONS
    OTHERS                   = 8
    Write ITEM_LINE
    LOOP AT .....
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
    ELEMENT               = 'ITEM_LINE'
    FUNCTION              = 'SET'
    TYPE                  = 'BODY'
    WINDOW                = 'MAIN'
    EXCEPTIONS
    OTHERS                 = 8.
    ENDLOOP.
    Delete ITEM_HEADER from TOP area of main window
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
    ELEMENT                  = 'ITEM_HEADER'
    FUNCTION                 = 'DELETE'
    TYPE                     = 'TOP'
    WINDOW                   = 'MAIN'
    EXCEPTIONS
    OTHERS                    = 8
    Print CLOSING_REMARK
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
    ELEMENT                  = 'CLOSING_REMARK'
    FUNCTION                 = 'SET'
    TYPE                          = 'BODY'
    WINDOW                   = 'MAIN'
    EXCEPTIONS
    OTHERS                    = 8
    START_FORM function
    CALL FUNCTION 'START_FORM'
    EXPORTING
      ARCHIVE_INDEX          =
      FORM                   = ' '
      LANGUAGE               = ' '
      STARTPAGE              = ' '
      PROGRAM                = ' '
      MAIL_APPL_OBJECT       =
    IMPORTING
      LANGUAGE               =
    EXCEPTIONS
      FORM                   = 1
      FORMAT                 = 2
      UNENDED                = 3
      UNOPENED               = 4
      UNUSED                 = 5
      SPOOL_ERROR            = 6
      OTHERS                 = 7
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    END_FORM function
    CALL FUNCTION 'END_FORM'
      RESULT                         =
    EXCEPTIONS
      UNOPENED                       = 1
      BAD_PAGEFORMAT_FOR_PRINT       = 2
      SPOOL_ERROR                    = 3
      OTHERS                         = 4
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    CONTROL_FORM function
    The CONTROL_FORM function module alows you to create SapScript control statements from within
    an APAB program.
    Syntax:
    CALL FUNCTION 'CONTROL_FORM'
    EXPORTING
    command         =
    EXCEPTIONS
      UNOPENED        = 1
      UNSTARTED       = 2
      OTHERS          = 3
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    Example:
    Protecting the text element ITEM_LINE
    CALL FUNCTION 'CONTROL_FORM'
    EXPORTING
    COMMAND = 'PROTECT'.
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
    TEXELEMENT = 'ITEM_LINE'.
    CALL FUNCTION 'CONTROL_FORM'
    EXPORTING
    COMMAND = 'ENDPROTECT'.
    rgds,
    latheesh
    Message was edited by: Latheesh Kaduthara

  • SAP J2EE engine for configuring Java mail Service.

    Hi
    I am experiencing following exception when trying to use JAVA mail API.
    javax.mail.SendFailedException: Invalid Addresses;
    nested exception is:
    javax.mail.SendFailedException: 554 <email@ddress>: Recipient address rejected:
    Relay access denied
    email address above is valid..
    I have to use SAP J2EE engine for configuring Java mail Service.
    But is does not hav any such access permissions to check....!!

    Relay access denied
    To send mails from SAP system through the mail server which you have configured, SAP server should be permitted to relay through the mailserver. Then only you will be able to send mail to external email address. Otherwise, you will get the above message.
    You must contact the mail server administrator and ask him to add the ip of SAP server into the allowed relay list.
    If you are using MS exchange server as your mail server and if you have administrative access to the Exchange box, you can do it yourself by following the below steps:
    1.Verify that your Exchange computer is not an open mail relay. To do this, follow these steps:
    a.      Click Start, point to Programs, point to Microsoft Exchange, and then click System Manager.
    b.      In Exchange System Manager, expand the following object:
    Servers\Your_Exchange_Server_Name\Protocols\SMTP
    c.      Right-click the virtual SMTP server where you want to prevent mail relay, and then click Properties.
    d.      Click the Access tab, and then click Relay.
    e.      By default, open relay is blocked. The default settings are as follows:
    u2022     The Only the list below check box is selected.
    u2022     The Allow all computers which successfully authenticate to relay, regardless of the list above check box is selected.
    f.      If you must permit a single computer, a group of computers, or a domain to relay through the server, click Add. In the Computer dialog box, click the appropriate selection for the computers you want to relay through the server. Then, type the required information.
    Note Enabling access by IP address or by domain name is helpful for users who do not authenticate with the Exchange computer.
    g.      In the Relay Restrictions dialog box, click OK.
    h.      Click Apply, and then click OK in the Default SMTP Virtual Server Properties dialog box.
    hope this helps you out...
    Cheers,
    Jazz

  • Hi i am new to SCN. I want a help regards SAP-PM . Where to post any query regards SAP PM

    Hi i am new to SCN. I want a help regards SAP-PM . Where to post any query regards SAP PM

    Please check this link SAP Portfolio and Project Management (SAP RPM, cProjects) and cFolders
    Please check scn index to find relevant forum link.
    SCN Site Index

  • Need information/training material regarding SAP CRM Functional

    Hello,
    I am a SD Consultant.
    I want to learn SAP CRM (Functional) on my own without going to any training institute or some thing.
    Therefore, can anyone help me in forwarding the link(s) or document(s) with which I can learn about SAP CRM (Functional).
    I want information/training material regarding SAP CRM 7.0 (on system/software working, not the general information, for example- why CRM, where CRM, etc)
    For example, about org data, org structure, possible scenarios, etc.
    Thanks in advance for spending your valuable time for me.
    Regards,
    T. Chaitanya

    Hi ,
    In the SDN lot of documents are there search in the WIKI.check the standard sap doc cr100.

  • Hi All,I have one serious problem regarding sap b1.

    Hi All,
    I have one serious problem regarding sap b1.
    In Sales order whenever I select the item from list or tax from list one. I got this
    Msg Box (Application has a problem. Diagnostic file c|:\Program file\SAP\sap Business one \Log\Sap Business one_20080602105441.dmp was created.
    Please contact support and attach diagnostic file). When select ok sap b1 application close. If anyone required screen short of all this error  plz give me Ur email id I will send u.
    Can any one help me?
    Awaiting Early Response
    Regards
    Rajkumar Gupta

    Hi Rajkumar,
    create a message at the marketplace and send them the diagnostic file with an error description.
    lg David

  • Regarding SAP SRM Inbox configuration

    Hello Guys,
    We are in the process of configuring the SRM workflow approvals in Portal.
    We made the basic mandatory configurations and we are able to see the workitems in the UWL.
    But unfortunately, we need configure the Inbox iView comes with the SAP SRM business package to work.
    With the configurations recommended, we manage to get the workitems in the standard Inbox iView.
    Only the header items are shown and when opened, a new window opens with just the header. Information of the workitems are not shown. But the same is shown in Universal Worklist.
    We are just wondering what could be wrong.
    Any suggestions are welcome.
    Thanks and Regards,
    Vivek

    Hello Siddharth,
    Thanks for the quick response.
    I think it is POWL. After making some entries in the SRM system table, we are able to get the workitems in the Inbox view, but no details were displayed.
    We tries modifying the xml
    <ItemType name="uwl.task.webflow.srm.TS93107952" connector="WebFlowConnector"
    defaultView="DefaultView" defaultAction="launchSAPAction" executionMode="default">
    <ItemTypeCriteria systemId="SAP_SRM" externalType="TS93107952" connector="WebFlowConnector"/>
    <Action name="launchSAPAction" groupAction="" handler="SAPIACLauncher" returnToDetailViewAllowed="yes" launchInNewWindow="yes"
    launchNewWindowFeatures="resizable=yes,scrollbars=yes,status=yes,toolbar=no,menubar=no,location=no,directories=no">
    <Properties>
    <Property name="display_order_priority" value="5"/>
    <Property name="newWindowFeatures" value="resizable=yes,scrollbars=yes,status=yes,toolbar=no,menubar=no,location=no,directories=no"/>
    <Property name="openInNewWindow" value="yes"/>
    <Property name="IAC" value="BBPCF02"/>
    </Properties>
    </Actions>
    </ItemType>
    We just want to see the workitem details like we do in the UWL.
    Thanks and regards,
    Vivek

  • Regarding the SAP Business objects Server configuration

    Hi Experts ,
    I was newly entered in to SAP Business Objects .Kindly i am requesting can you please let me know the follwing details .
    1) Latest server configuration of the SAP Business Objects .
    2) Latest version of the Crystal reporting / Desktop Intelligance / Web Intelligance / Universe.
    3) And also if do you have any document releated to the server configuration of the SAP Business objects kindly can you aatch the mail.
    Thanks and Regards,
    Vijay.

    The latest available version of the BO Server/Web Intelliggence /Dekstop Intelligence is XI 3.1 SP3 with FP 3.4.
    The latest available version of CR is CR 2008 SP3 with FP 3.4.
    You can find the latest documentation for Business Objects here:
    http://help.sap.com
    Regards,
    Stratos

  • SAP PI 7.0 configuration

    i am trying to configure the SAP PI 7.0 in other client using Template based configuration. But by default its getting congigured in 001 client. how can we change the client in PI 7.0

    Hi,
    For this you have to change the master client in the configtool.
    Also you got to create the sapjsf and other j2ee_admin user in the target client which you want to
    asisgn .
    Regards,
    Vamshi.

  • Regarding SAP XI

    Dear All ,
    I have few queries :
    1) do I need to install SAP XI on Web AS machine or on a different machine .
    2)What is the hardware configuration for development & for production server of SAP XI .
    3)What are the prerequisites for installing SAP XI .
    4) what all components we need to install while installing SAP XI
    5)IMPLEMENTATION METHODOLOGIES FOR SAP XI
    Kindly help me , waiting for your feedback asap
    Regards
    Prabhat

    Hi Prabhat,
    Go to the following link and look for the XI installation, config, tuning etc.. guides.
    It will give you a good deal of idea.
    Hope it helps.
    https://service.sap.com/instguides
    Regards,
    Satish

  • Anything in SAP that suits software configuration Management profile..

    Hi guys.....i am working as Software Configuration management engineer i want to know if there is anything in SAP (plz remenber my knowledge in SAP is zero!!!!!) that can add value to my domain.

    Thank you very much for your answers!
    @Pushkar:
    No this is not exactly what I meant;
    What we want to do is a kind of classical configuration management or at least version control of
    development objects like ABAP programs, table definitions, table data etc. that are contained within our SAP development system.
    It's not about version management of external documents imported into SAP.
    I know that there is a kind of version control via Transports, but this does not cover all classical version control mechanisms; what we are missing there is
    - the possibility of reverting to an older version of an 'object'
    - Branching / Merging mechanisms
    - the possibility to choose which changes I want to release with which transform and which objects
    - view differences between arbitrary versions of an object
    I was hoping there is maybe a kind of 'add-on' or maybe even a built-in tool that provides classical version control mechanisms or something similar.
    Thank you for further help,
    Regards,
    Jörg

  • Regarding sap nstallation master startup

    i donot know installation of the IBM jdk1.4.2_18amd64.rpm
    when i trying executing command rpm -i IBM jdk1.4.2_18amd64.rpm from terminal.
    it saying that libxp.so.6 is required
    so where it can be download
    my system configuration is
    os: RHEL 5.0
    processor is intel duo core processor 64 -bit
    RAM:2GB
    HARDDISK :250 DISK
    i just copied the IBM jdk1.4.2_18amd64 folder to /opt folder
    i give the environment varaiables like this
    export JAVA_HOME=/opt/IBM jdk1.4.2_18amd64
    export PATH=/opt/IBM jdk1.4.2_18amd64/bin
    export SAPINST_JRE_HOME=/opt/IBM jdk1.4.2_18amd64/jre
    i execute the command line also java -version
    it says
    ibm java version 1.4.2
    jit (enabled) and extra
    i declared environment variable correctly but sap installamaster connot initializing
    it saying that while executing tmp uname 7 command line got error
    (in tmp directory sap3322.exe folder)
    regards
    sudheer

    > when i trying executing command rpm -i IBM jdk1.4.2_18amd64.rpm from terminal.
    > it saying that libxp.so.6 is required
    > so where it can be download
    Read Note 1048303 - Red Hat Enterprise Linux 5.x: Installation and upgrade
    The necessary libraries are part of the Redhat installation media. Check that you have installed all necessary pacakges.
    > i declared environment variable correctly but sap installamaster connot initializing
    > it saying that while executing tmp uname 7 command line got error
    > (in tmp directory sap3322.exe folder)
    Please post the exact error.
    Markus

  • Regarding this issue in the configuration on smsy in the solution manager

    hai all,
    i am havig an issue when trying to configure the smsy in the solution manager
    the issue is
    Invalid user s0001234567 when calling SAP Backend system
    all the rfcs related to the oss is fine
    i had maintained the user in the aisuser tcode correctly
    and then i router is finly working
    software component : st is 400 kernel and level is18
    hope all the experts of solution manger help me
    thanks & regards
    praveen kumar

    Invalid user s0001234567 when calling SAP Backend system
    Is it a valid S-USER?
    Use valid S-USER and update the user details in AIUSER.
    Regards,
    Nick Loy

  • Regarding Partner Type LI (Vendor) configuration

    Hi All,
    My scenario is File > XI> IDOC (INVOIC02 Idoc) Partner Type LI
    I had configured WE20 in receiving System for Partner Type LI and given the Process code details.
    Now in XI what are the steps that i need to configure( For Partner Type LI Vendor Only)?
    DO we need to create Parties for both Sender System and Recieving System?
    Please suggest with the various steps to be done for Hanling Partner Type LI in XI .
    And i think in receiveing SAP system only WE20 is enough for Partner Type LI ... correct me if i am wrong.
    Thanks and Regards,
    Sridhar Reddy

    Sridhar,
    I don't think because of change in partner types whether LI or KU...etc settings at xi will chnage :
    It is going to be same :
    1. Idoc Import .- through IR
    2. RFC destination pointing to R3
    3.  Port creation - IDX1 using the rfc destination created at step 2.
    Apart from this partner profiles needs to created at r/3 end .
    Regards

Maybe you are looking for