Technical System of Web AS ABAP

hi all,
i have following doubts when creating technical system of web as ABAP type.
1)when creating techincal system it is asking me for
' Message Port (sapmsXXX): '. what should i enter for this field and wheredo i get the details from. by default it is taking 3600 is it ok if i go ahead with 3600.
2) logical system name .it appears it is optional but should i fill this entry as well.
3) After creating the technical system. do i need to fill TMS Domain and TMS Transport Group Name. if yes how do i need to fill and and what is the use of this field.
can some one suggest me a blog for Technical System creation for  web as abap type.
thanks,
raj

Hi,
you can do it automatically
check out my weblog:
/people/michal.krawczyk2/blog/2005/03/10/registering-a-new-technical-system-in-sld--abap-based
or you can find how to do it
(in more details) in my book too:
<a href="/people/michal.krawczyk2/blog/2006/10/11/xi-new-book-mastering-idoc-business-scenarios-with-sap-xi"><b>Mastering IDoc Business Scenarios with SAP XI</b></a>
Regards,
michal
<a href="/people/michal.krawczyk2/blog/2005/06/28/xipi-faq-frequently-asked-questions"><b>XI / PI FAQ - Frequently Asked Questions</b></a>

Similar Messages

  • How To Create A Technical And Business Systems For Web AS ABAP ???

    Hi Experts,
    How To Create A Technical And Business Systems For Web AS ABAP ???
    Please Let me Know All the Step-By-Step Process to Create ????
    Points Will be Given
    Regards
    Khanna

    Hi Sumit,
    When U Told the thing that first time to execute the RZ70 and All i Did this in XI System
    So I got An Entry for the Technical System for XI System.
    Now i Deleted that and Executed RZ70 in R/3.
    When I Executed RZ70, I got this Error.
    <b> "RFC Call failed: Error Opening an RFC Connection "</b>.
    Now I am Unable to see Any Technical System  Under Web As ABAP. It's Showing Empty Now.
    Please Let me know
    Regards
    Khanna

  • Conversion from SAP R/3 system to web dynpro abap.

    hi,
        Can anybody provide me with information on what all objects can be converted from an SAP R/3 system to a web dynpro ABAP application, nd hw??.

    Hi Girish,
    I don't understand your question completely. Is your question related to the Internet Transaction Server? If it is a Web Dynpro question, I can move this thread to the Web Dynpro forum. What do you think?
    - Henning

  • Not able to upload file in DMS(Document Mang. system) using Web dynpro ABAP

    Hi All,
    I am facing a problem while uploading the file into the DMS ( Document Management System ) from Webdnrpo .
    I am using the BAPI - BAPI_DOCUMENT_CREATE2 to create the document .
    CASE - 1
    when i am providing the storage category mention below and no data carrier1
    ls_documentfiles-storagecategory = 'ZHMEL_CS'.  it is not able to upload the document in the DMS system and when i check
    in the debugg mode it giving error as  ""Error while checking in and storing: C:\TEST.TXT "" .
    CASE - 2
    When i am not using the storage category and providing the the data carrier as default
    ls_documentdata-DATACARRIER1 = 'DEFAULT'. It is able to create the document in the DMS but i am not able to read that document .
    I checked with DMS Consultant that DMS is configured for  ZOL ( documenttype) with a storage category  as 'ZHMEL_CS'.
    The code which i have used is below :
    ls_documentdata-documenttype = 'ZOL'.
    ls_documentdata-documentversion = '00'.
    ls_documentdata-documentpart = '000'.
    ls_documentdata-description = 'Test Document'.
    ls_documentdata-laboratory = '001'.
    ls_documentdata-WSAPPLICATION1 = 'TXT'.
    ls_documentdata-DOCFILE1 = 'C:\TEST.TXT'.
    ls_documentdata-SAVEDOCFILE1 = 'C:\TEST.TXT'.
    *ls_documentdata-FILESIZE1 = 000000000000.
    *ls_documentdata-FILESIZE2 = 000000000000.
    ls_documentdata-WSAPPLICATION1 = 'TXT'.
    ls_documentfiles-DOCUMENTTYPE = 'ZOL'.
    ls_documentfiles-DOCUMENTPART = '000'.
    ls_documentfiles-DOCUMENTVERSION = '00'.
    ls_documentfiles-storagecategory = 'ZHMEL_CS'.
    ls_documentfiles-WSAPPLICATION = 'TXT'.
    ls_documentfiles-DOCPATH = 'C:\'.""lv_filename.
    ls_documentfiles-DOCFILE = 'TEST.TXT'."lv_filename.
    ls_documentfiles-description = 'Test Document'.
    ls_documentfiles-language = 'EN'.
    ls_documentfiles-CHECKEDIN = 'X'.
    APPEND ls_documentfiles to lt_documentfiles .
    *&----Fill Descriptions
    w_descr-language = 'EN'.
    w_descr-language_iso = 'EN'.
    w_descr-description = 'Test'.
    append w_descr to lt_descr.
    clear w_descr.
    **w_hostname = 'HMEL-DV1R3_DR3_00'.
    CALL FUNCTION 'BAPI_DOCUMENT_CREATE2'
    EXPORTING
    documentdata = ls_documentdata
    *hostname = 'content-srv'
    *pf_http_dest = 'SAPHTTPA'
    *pf_ftp_dest  = 'SAPFTPA'
    IMPORTING
    DOCUMENTNUMBER = lv_DOCUMENTNUMBER
    return = gv_return
    TABLES
    documentdescriptions       = lt_descr
    documentfiles              = lt_documentfiles.
    Please let me know your valuable inputs on the same ..
    Edited by: Omm Awasthi on Dec 30, 2010 12:22 AM
    Edited by: Omm Awasthi on Dec 30, 2010 12:25 AM

    Hi omm , from functional side your require a document type and content repository
    I have used below code in a function module to create document , we have create object link as PO to the doc.
    FUNCTION ZFM_SR_CREATE_FROM_EXTERNAL .
    ""Local Interface:
    *"  IMPORTING
    *"     VALUE(IV_DOCUMENTNUMBER) TYPE  DOKNR OPTIONAL
    *"     VALUE(IV_DOCUMENTTYPE) TYPE  DOKAR OPTIONAL
    *"     VALUE(IV_DOCUMENTVERSION) TYPE  DOKVR OPTIONAL
    *"     VALUE(IV_DOCUMENTPART) TYPE  DOKTL_D OPTIONAL
    *"     VALUE(IV_STORAGE_CAT) TYPE  CV_STORAGE_CAT OPTIONAL
    *"     VALUE(IV_DOKST) TYPE  DOKST OPTIONAL
    *"     VALUE(IT_DM_FILES) TYPE  ZDM_TT_FILES OPTIONAL
    *"     VALUE(IV_EBELN) TYPE  EBELN
    *"  EXPORTING
    *"     VALUE(EV_DOCUMENTNUMBER) TYPE  DOKNR
    *"     VALUE(ES_RETURN) TYPE  BAPIRET2
    V00.00  DD.MM.YYYY                                                   *
    *********************New Method of Uploading File*********************************
      CONSTANTS path_name    TYPE dms_path
               VALUE '/tmp/'.
      CONSTANTS log TYPE dms_path VALUE '/tmp/logFO.txt'.
      DATA: ls_draw TYPE bapi_doc_draw2,
            lt_documentfiles TYPE TABLE OF bapi_doc_files2,
            ls_documentfiles TYPE bapi_doc_files2,
            ls_dm_files TYPE zdm_files,
            lv_filename TYPE string,
            lv_ext TYPE string,
            lv_file_type TYPE draw-dappl,
            lv_file_name TYPE dms_path,
            lv_msg(80) TYPE c,
            lt_objectlinks TYPE TABLE OF bapi_doc_drad,
            ls_objectlinks TYPE bapi_doc_drad,
            lv_ebelp   TYPE ebelp
    Prepare Data
      MOVE iv_documentnumber TO ls_draw-documentnumber.
      MOVE iv_documenttype TO ls_draw-documenttype.
      MOVE iv_documentversion TO ls_draw-documentversion.
      MOVE iv_documentpart TO ls_draw-documentpart.
      ls_draw-statusextern = iv_dokst.
      ls_draw-statusintern = iv_dokst.
      ls_draw-username = sy-uname.
      LOOP AT it_dm_files INTO ls_dm_files.
        SPLIT ls_dm_files-filepath AT '.' INTO lv_filename lv_ext.
        CALL FUNCTION 'CV120_DOC_GET_APPL'
          EXPORTING
            pf_file   = ls_dm_files-filepath
          IMPORTING
            pfx_dappl = lv_file_type.
        TRANSLATE lv_file_type TO UPPER CASE.
        OPEN DATASET log FOR OUTPUT IN TEXT MODE ENCODING DEFAULT.
        TRANSFER lv_ext TO log.
        ls_documentfiles-wsapplication = lv_file_type.
        TRANSLATE ls_documentfiles-wsapplication TO UPPER CASE.
        CONCATENATE path_name
                           lv_filename
                            lv_ext
                            INTO lv_file_name.
        CONDENSE lv_file_name  NO-GAPS.
        TRANSFER lv_file_name TO log.
        OPEN DATASET lv_file_name FOR OUTPUT IN BINARY MODE MESSAGE lv_msg.
    *Transfer Attachment Content to Application Server
        TRANSFER ls_dm_files-content TO lv_file_name.
        CLOSE DATASET lv_file_name.
        TRANSFER 'move data to lt_files' TO log.
        ls_documentfiles-storagecategory = iv_storage_cat.
        ls_documentfiles-docfile = lv_file_name.
        ls_documentfiles-DOCUMENTVERSION = IV_DOCUMENTVERSION.
        APPEND ls_documentfiles TO lt_documentfiles.
        CLEAR lv_file_name.
        CLOSE DATASET log.
      ENDLOOP.
      IF iv_ebeln IS NOT INITIAL.
        ls_objectlinks-objecttype = 'EKPO'.
        SELECT SINGLE ebelp INTO lv_ebelp FROM ekpo WHERE
                                          ebeln = iv_ebeln
                                          AND loekz eq space.
        CONCATENATE iv_ebeln lv_ebelp INTO ls_objectlinks-objectkey.
        APPEND ls_objectlinks TO lt_objectlinks.
      ENDIF.
    CALL FUNCTION 'BAPI_DOCUMENT_CREATE2'
       EXPORTING
         documentdata   = ls_draw
         pf_ftp_dest    = 'SAPFTPA'
         pf_http_dest   = 'SAPHTTPA'
       IMPORTING
         documentnumber = ev_documentnumber
         return         = es_return
       TABLES
         objectlinks          = lt_objectlinks
         documentfiles  = lt_documentfiles.
    DATA:   ls_doc_data  type bapi_doc_draw2,
       ls_doc_datax type bapi_doc_drawx2,
       ls_return type bapiret2.
    Set value for document data
      ls_doc_data-statusextern  = 'IW'.
      ls_doc_data-statusintern  = 'IW'.
    Set value for document data check
    ls_doc_datax-statusextern = 'X'.
    ls_doc_datax-statusintern = 'X'.
    CALL FUNCTION 'BAPI_DOCUMENT_CHANGE2'
      EXPORTING
        DOCUMENTTYPE               = 'ROS'
        DOCUMENTNUMBER             = IV_DOCUMENTNUMBER
        DOCUMENTPART               = IV_DOCUMENTPART
        DOCUMENTVERSION            = IV_DOCUMENTVERSION
        DOCUMENTDATA               = ls_doc_data
        DOCUMENTDATAX              = ls_doc_datax
      HOSTNAME                   =
      DOCBOMCHANGENUMBER         =
      DOCBOMVALIDFROM            =
      DOCBOMREVISIONLEVEL        =
      SENDCOMPLETEBOM            = ' '
          pf_ftp_dest    = 'SAPFTPA'
          pf_http_dest   = 'SAPHTTPA'
      CAD_MODE                   = ' '
      ACCEPT_EMPTY_BOM           = ' '
    IMPORTING
       RETURN                     =  ls_return
    TABLES
      CHARACTERISTICVALUES       =
      CLASSALLOCATIONS           =
      DOCUMENTDESCRIPTIONS       =
      OBJECTLINKS                =
      DOCUMENTSTRUCTURE          =
       DOCUMENTFILES              = lt_documentfiles.
      LONGTEXTS                  =
      COMPONENTS                 =
      move es_return to ES_RETURN.
      IF es_return-type CA 'EA' ."NE 'E' AND es_return-type NE 'A'.
        "do nothing
      ELSE.
        CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
          EXPORTING
            wait = 'X'.
      ENDIF.
      LOOP AT lt_documentfiles INTO ls_documentfiles.
        DELETE DATASET ls_documentfiles-docfile.
      ENDLOOP.
    ENDFUNCTION.

  • Regarding error in creating technical system of type WEB AS ABAP

    while creating technical system of WEB AS ABAP i have few doubts
    1) host name:(do we have to give sap system name or xi system name)
    and while creating business system for this technical system am not able to find the option under RELATED INTEGRATION SERVER  i.e xi3/sxi what ever it may be,so am facing very difficulty while creating communication channel and not able to select the integration engine under the ADAPTER ENGINE ,so please provide me suitable solution with screen shoits if possible ,it very urgent for me

    pls check this
    /people/michal.krawczyk2/blog/2005/03/10/registering-a-new-technical-system-in-sld--abap-based
    as per ur doubt
    1. <i>host name</i>:; sap system (can find under system status  info-->database of R/3)
    2. <i>SId is system status</i>->database>name (3) characters
    3.<i>while creating business system for this technical system am not able to find the option under RELATED INTEGRATION SERVER</i>--as fra as this info that is there when u follow the wizard of creating Business system , also did u select business system role as application system name then probly u can get the related server name ,make sure ur technical system is created well
    <i></i>

  • How To Create A Technical  For Web AS ABAP ???

    Hi experts,
    How to Create a Technical System For Web AS ABAP  in SLD, Using "SLDAPICUST" And RZ70 Transaction Codes.
    Please Give me Complete Steps And Support to Create TS in SLD Successfully
    <b>If Ur Answers Are Help full Means Points will be Rewarded</b>
    Regards
    Khanna

    Hi Prateek,
    I Did the Things Which is Presented By Michal in This Blog.
    But When I Executed RZ70 With My Gateway Service as "sapgw01" And the Gateway Host As "Server Host Name".
    I Got the Error When I Click on "<b>start Data Collection"</b> After Execution of the Program As Follows
    <b>"Used RFC destination :SLD_NUC"</b>
    <b>"RFC call failed : Error opening an RFC connection"</b>
    <b>"Batch job not scheduled"</b>
    All Other Are Success Like Data Collection ......
    Please let me Know What to Do Now...
    Regards
    Khanna

  • SLD - Error in creation of technical system

    hi experts,
    when we go to create a new technical system type WEB AS ABAP, the system said 'system already exists'
    it exist other technical system for this system of type third party,
    don't is it possible have together?
    very thanks,

    Hi,
    The problem is due to whatever technical system your are trying to create those details are  already contain another technical system name in SLD.  We can't create more then one technical system with same parameters.  Better to use existing technical system or delete existing one create new one.

  • Technical system for idoc

    i am doing a file2idoc scenario.i want to crete a technical system as web-as-abap.but we are having ecc6.0.here  we are having both abap & xi .here those are having  different host name.here in this scenario i am using idoc as receiver system.so will i use hostnbame of abap or xi in  technical system(web-as-abap)??

    Hi Michal,
    Thanks for reply.
    Regd Logical System, i did like this.
    T-Code: SALE
    Copied 'Logical System' name which is assigned for Client 800.
    and While creating SLD,
    Technical System: ( for Receiver IDOC)
    1.Web As ABAP
    2.Web AS ABAP Name (SID): FIC ( i don't know where to find SID , somebody asked me to give my R/3 System name.
    Note:Other guy told me like this to find SID, T-Code:SM51
    There will be name Seperated by 2 Underscores, the part next to 2nd underscore is SID. So, in my R/3 System, its like FIC_FIC_00, but when i tried to give 00 as SID, its not accepting, so i gave FIC)
    Installtion Number:    (i gave)
    Database hostname: FIC
    3. In next page Instance Number:00
    4. In next page Host Name: FIC and clicked Add
    5. Client: 800
    Logical System: T90CLNT090 ( which is from T-Code Sale)
    Business System:
    1. New_BS_IDOC
    2. Selected the Technical System created above.
    Still cannot find in "Adapter Specific Identifiers"
    <i>>>>you need to have logical system for your r3 business system (which you put in header mapping - sender service of the receiver agreement)</i>
    do i need to provide, receiver Buss System for Sender Service of Receiver Agreement?
    and i looked at weblog given, i am unable to find anything under T-Code IDX2, its empty..
    Any Sugg?

  • Technical System Type

    Hi all,
    I would like to know information about Technical system. When I am creating new technical system it asks to enter the technical system type. Till now I have used Technical system type is third party. What my question is, if I used the adapters like IDOC, HTTP then May I change the technical system type? Can any body explain clearly when we use different technical system types in our scenario?
    Technical system wizard Technical System Type
    Web as abap
    Web as java
    Standalone java
    Third party
    System landscape directory

    Hi,
    For XI you need to create (technial system)
    1) Web AS ABAP 2) WEB as JAVA
    For r3
    1) Web AS ABAP
    and 1) Web AS ABAP business system
    also check these docs...
    technical ssytem types:
    http://help.sap.com/saphelp_nw04s/helpdata/en/24/8fa93e08503614e10000000a114084/content.htm
    business system types:
    http://help.sap.com/saphelp_nw2004s/helpdata/en/42/c817d9d2296bb2e10000000a1553f6/content.htm
    sekhar

  • Technical system  in XI

    Dear All
    When i am trying to create a technical system in Web As ABAP in my XI server, i do not get any software component version.
    Please guide with the process for creating a ABAP technical system in XI server
    Sandeep

    Refer the belo wlink
    http://sap.ittoolbox.com/groups/technical-functional/sap-netweaver-l/creating-a-technical-system-in-sld-web-as-abap-for-r3-server-2616786
    Regards,
    raj

  • Technical system creation problem in SLD

    hi
    while i'm traying to create a technical system for Web As ABAP(ERP 2004 ECC 5.0) in SLD when I serch for Installed product no product with ECC 5.0 is found.
    is there somthing missing ?
    regards,
    kinjal

    HI kinjal
    i think UR J2EE server patch level is SP9.
    do u read the SLD configuration document carefully?
    look at sap note 669669. and import the CR Content according to that. this solves ur issue.
    regards,
    kaushal

  • System type for technical system.

    Hi All,
    I want to create a new technical system for my receiver sys. The receiver is the PI .
    so its SAP->XI->XI Interface.
    Can anybady explain what will be the System Type for receiver PI.(web as abap or ...etc)
    Also pls explain the diffrent system types.

    Hi,
    Technical system for PI is of type Web As ABAP (because PI is also a product of SAP)
    Other technical system types:
    Web as ABAP -
    > For SAP applications.
    Web as JAVA -
    > Web AS Java systems consist of one or more instances and each instance is installed
                       on a separate host. An instance itself consists of cluster nodes that can
                       communicate with each other.For Enterprise java applications on J2EE stack.
    Third party -
    > For People soft, BAAN, JDEdwords, ...........
    Regards
    Ramesh

  • Problem in Technical System Creation Wizard in Portal SLD

    Hi
    When I am trying to Create New Technical System for  WEB AS ABAP, I am getting the following error at the Installed Production phase
    in the Portal SLD
    *CIM_ERR_FAILED: Unable to execute createInstance() request, exclusive write mode is enabled*
    Please help
    Regards
    Soumya Dasgupta

    HI ,
       Thank you for spend your valuable time for my problem
    But my main problem is, when i am going to http://hostname:portno/sld page,
    all those are not in active mode.  i mean when i am selecting any function it showing sld is not configured. please do sld configuration. sld and nwdi related users are also not there in user administration. I cant understand why  sld is not configured.
    coz sld is configured if , we select web as java component in installation time . i dont know web as java component is selected or not. but when i am going to http://hostname:portno/ irj/portal, it showing user , content , system administration  tabs . and every thing is working fine. 
    IN case if i did not select web as java component in installation  time, may be portal also should not be configured.  But here i am able to access portal. but in case of sld , it is showing error message. what is hell with sld realted problem. Please give reply.
    reply will highly appreciated. Thank you.

  • Difference between different Technical systems

    Please tell
    We can define a technical system as :
    Web AS ABAP or Web AS JAVA or Standalone JAVA or Third party or
    Exchange Infrastructure
    What is Web AS ABAP system? What is Web AS JAVA system? What is standalone JAVA?
    Thanx in advance
    Harsh

    Hi Harsh
    Web AS ABAP
    Web AS ABAP technical systems, ranging from any SAP system to an APO server or CRM server, are based on the same Basis Component (BC), which includes the ABAP interpreter, ABAP Dictionary, ABAP Workbench, and so on. A dedicated database, which stores most of the data of the BC and the application components, is associated with the system.
    Web AS Java
    Web AS Java systems consist of one or more instances and each instance is installed on a separate host. An instance itself consists of cluster nodes that can communicate with each other.
    Standalone Java
    Standalone Java technical systems are standalone Java applications that are installed in a computer system from an administration perspective. They can also be installed as an operating system service or as a daemon.
    Third-Party
    Third-party technical systems contain third-party software components and products.
    Third-party systems are not automatically registered in the SLD. Therefore, you have to create them manually by creating:
    Third-party products
    Third-party software components
    Third-party technical system
    Third-party business system
    Exchange Infrastructure (XI)
    XI technical systems are the infrastructure systems (such as integration servers and adapter engines) of XI.
    Cheers...
    VAsu
    <b>** REward POints if found useful **</b>

  • Technical System not appearing while creating Business System

    Hi
    We had already created business system and assigned a technical system and all the interfaces was working fine.
    Now we removed the technical system and created a new technical system, since we need to point to different server.
    I created a new technical system, oped the old business system and in integration tab, when i click on change technical system.
    The newly created technical system is not appearing.
    Thought of assigning the business system directly in technical system, but it is not allowing and i am getting message business system is already assigned.
    Can you pls help
    Regards
    Madhan D

    Hi Madhan,
    When you create a Business System, it will ask for the type of Technical system like Web AS ABAP, Web AS Java etc.
    So, the new TS type should match the TS type you selected for your BS so that you can see your TS in the dropdown, when you click on "Change" link.
    HTH,
    GP

Maybe you are looking for

  • Why can't I log into WiFI?

    Why can't I log into WiFi with my Ipad Air all of a sudden? WiFi is turned on. Under settings ... it shows the network Im trying to log into ... and in the column   to the right where it lists the various networks, it shows the network i want and a l

  • Install my program in one step

    I am finishing my application and I am looking after my users. How can I distribute my application in one step? No all computers have a VM already installed. First of all I have to consider that I am using the javacomm2 that needs to copy some files

  • Lost all visual indicators, function keys, etc. on T500 (Type 2082)

    I think CCleaner is the culprit as soon after running that, I lost all my onscreen indicators (volume, brightness, battery meter in the system tray, etc.) as well as functionality - volume up and down work, but mute does not.  Blue Thinkvantage butto

  • M93p FRU / part no. for second HDD in SFF

    Hello all; I'm in the Toronto area in Canada and am having a very hard time searching for the FRU / Part No. and ordering something that seems to be very well documented at Lenovo in regards to installation. I have spoken with Lenovo Support (who sug

  • Do over on an apple imap account

    I want to delete a me.com imap account and let mail recreate it from scratch. Question is the saved mail folder that is "on my mac" will that be deleted, when I delete the account? If it is I can copy it to a folder on the me.com web app first.