Doubt about SAP XI standard Demo.

Hi All,
          I am running through SAP XI standard Demo.
When I am creating Container for the receiver I don't find any container type available to select. Where to define this container type. In demo the container type MultipleBookingOrderRequest_Abstract is given. but I don't find it when click on the Type field. Your Help wud be greatful. Please find the tutorial link below for your reference.
http://help.sap.com/saphelp_nw70/helpdata/en/66/64104221ef5133e10000000a155106/frameset.htm
Cheers,
Senthil

Hi,
S, you can but should be gud in fundas.  Ofcourse, tutorials willl help you to pick the design skills, plz chck the following threads for basic docus:
Check out this thread for basic doubts.
Re: Newbie - WebDynpro Java
check out this pdf for complete webdynpro tutorial.
https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/ba2db0e5-0601-0010-9790-e271902f2c38
The below link will take you to webdynpro sample applications and tutorials.
https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/49f2ea90-0201-0010-ce8e-de18b94aee2d
regards

Similar Messages

  • NWBC can not work, about /sap/bc/dal/demoA

    Dear all,
    I was trying to connent ERP6.0 with NWBC.
    My configuration of the NWBC now is:
    Name: IDS
    Type: SAP All-in-one
    protocal: http
    Host: xxx.xxx.xxx.xxx
    Port: 8000
    Path: /sap/bc/dal/demoA
    Client: 800
    Language: EN
    I can see the logon window, but after that, there is a error message liike :
    "Could not load content from connection IDS (error code invalid server response)"
    When I test this service in the transaction SICF. The page after the logon shows:
    <?xml version="1.0" ?>
    <DAL />
    Any one can help me on this? thanks a lot
    Edited by: Victor Yan on Jul 7, 2009 8:16 AM

    Hi All,
    The NWBC is basically a frontend for GRC Process control.
    The correct path for NWBC is....
    Name: <ANY NAME>
    Type: SAP All-in-one
    Client: (100,200..etc)
    protocal: http
    Host: xxx.xxx.xxx.xxx
    Port: 8000
    Path: /sap/grc/nwbc/pc
    Client: 800
    Language: EN
    Activate the belwo path
    *Path: /sap/grc/nwbc/pc  and activate all under
    /sap/bc*
    /sap/grc*
    Hope this will you ..
    Regards
    Gangadhar
    Edited by: gangadhar hm on Aug 19, 2009 4:45 PM

  • Doubts about SAP Frontend server.

    Hello guys.
    I am gonna install SAP R/3 47 IDES on my local PC. I am reading SAP Front End Installation Guide. Must I install SAP Frontend server too? Or just Frontend?
    Regards,
    Flavio Aquino.

    The "frontend server" is just a PC running a SAPGUI; don´t get confused with "server" as "SAP server".
    Markus

  • Doubt about difference between "Send to sap" and "Send EWA Alerts to SAP"

    Hello All
    I hope that you can help me is juts a doubt about 2 check boxes
    I'm on setup of a EWA but when i´m on the configuration (dates, transfers ewa to sap, archiving of EWA etc) i see 2 check boxes
    that i don't know what is the difference
    The path is the following
    Tcode = DSWP --> Select the solution --> (the left column) Operations Setup --> Solution Monitoring --> EarlyWatch Alert  --> Setup EarlyWatch Alert
    Could you tell me what is the difference between "Send to SAP" and "Send EWA alerts to SAP" boxes?
    Thanks and have a nice day

    Hello Cherios,
    The "Send to SAP" check box is used when you want to sent a Production or Test (Quality) systems EWA data to SAP for analysis.
    Currently the "Send EWA Alerts to SAP" is not used at this time, and actually cannot be selected, and saved.
    There should now be no doubt about the two check box fields .
    Hope this information is helpful.
    Regards,
    Paul

  • Doubt about Select statement.

    Hi folks!!
                 I have a few doubts about the select statements, it may be a silly things but its useful for me.
    what is   difference between below statment.
    1)SELECT * FROM TABLE.
    2)SELECT SINGLE * FROM TABLE
    3)SELECT SINGLE FROM TABLE.
    Hope i will get answer,thanks in advance.
    Regards
    Richie..

    Hi,
    try this and if possible use sap help.i mean place the cursor on select and press F1.
                 Types of select statements:
    1.     select * from ztxlfa1 into table it.
                 This is simple select statement to fetch all the data of db table into internal table it.
       2.   select * from ztxlfa1 into table it where lifnr between 'V2' and 'V5'.
            Thisis using where condition between v2 and v5.
      4. select * from ztxlfa1 where land1 = 'DE'. "row goes into default table work Area
      5. select lifnr land1 from ztxlfa1
            into corresponding fields of it   "notice 'table' is omitted
             where land1 = 'DE'.
              append it.
               endselect.
         Now data will go into work area. and then u will add it to internal table by     
            append statement.
      6.   Table 13.2 contains a list of the various forms of select as it is used with internal tables and their relative efficiency. They are in descending order of most-to-least efficient.
    Table 13.2  Various Forms of SELECT when Filling an Internal Table
    Statement(s)                                   Writes To
    select into table it                                    Body
    select into corresponding fields of table it   Body
    select into it                                    Header line
    select into corresponding fields of it           Header line
    7. SELECT VBRK~VBELN
           VBRK~VKORG
           VBRK~FKDAT
           VBRK~NETWR
           VBRK~WAERK
           TVKOT~VTEXT
           T001~BUKRS
           T001~BUTXT
        INTO CORRESPONDING FIELDS OF TABLE IT_FINAL
        FROM VBRK
        INNER JOIN TVKOT ON VBRKVKORG = TVKOTVKORG
        INNER JOIN T001 ON VBRKBUKRS = T001BUKRS
        WHERE VBELN IN DOCNUM AND VBRK~FKSTO = ''
       AND VBRK~FKDAT in date.
    Select statement using inner joins for vbrk and t001 and tvkot table for this case based on the conditions
    8. SELECT T001W~NAME1 INTO  TABLE IT1_T001W
    FROM T001W INNER JOIN EKPO ON T001WWERKS = EKPOWERKS
    WHERE EKPO~EBELN = PURORD.
    here selecting a single field into table it1_t001winner join on ekpo.
    9. SELECT BUKRS LIFNR EBELN FROM EKKO INTO CORRESPONDING FIELDS OF IT_EKKO WHERE     EBELN IN P_O_NO.
    ENDSELECT.
    SELECT BUTXT   FROM T001 INTO  IT_T001 FOR ALL ENTRIES IN IT_EKKO WHERE BUKRS = IT_EKKO-BUKRS.
    ENDSELECT.
    APPEND IT_T001.
    here I am using for all entries statement with select statement. Both joins and for all entries used to fetch the data on condition but for all entries is the best one.
    10. SELECT AVBELN BVTEXT AFKDAT CBUTXT ANETWR AWAERK INTO TABLE ITAB
                 FROM  VBRK AS A
                 INNER JOIN TVKOT AS B ON
                 AVKORG EQ BVKORG
                 INNER JOIN T001 AS C ON
                 ABUKRS EQ CBUKRS
                 WHERE  AVBELN IN BDOCU AND AFKSTO EQ ' ' AND B~SPRAS EQ
                 SY-LANGU
                 AND AFKDAT IN BDATE AND AVBELN EQ ANY ( SELECT VBELN FROM
                VBRP WHERE VBRP~MATNR EQ ITEMS ).
        Here we are using sub query in inner join specified in brackets.
    Thanks,
    chandu.

  • In depth information about SAP SRM

    Hi,
    i was wondering if there is a source or may somebody personally who can answer me some general questions about sap SRM, which go beyon the 10 page 40000feet-white paper of SAP.
    - what is the main difference between MM and SRM
    - how difficult is the migration/upgrade to SRM having a MM in place
    - what standard purchasing processes are provided by SAP SRM
    Thanks for your feedback
    Torsten

    Hi Torsten,
    Indeed, it's quite complicated to answer your questions in some sentences.
    Please check the available document sources, maybe you can help yourselves:
    If you have an access to the service marketplace, see the note 1026369 for useful links. If not, see the following links (for some of them  regisered user is needed):
    - The online help is available at http://help.sap.com -> SAP Business Suite -> SAP Supplier Relationship Mgmt. or http://help.sap.com/content/documentation/erp/docu_sbs_erpsrm.htm
    - Integrated Business Content: https://websmp201.sap-ag.de/ibc ; 
    - Installation And Upgrade Documentation: http://service.sap.com/instguides
    mySAP Business Suite Applications -> mySAP SRM -> mySAP SRM Server 5.0
    Download MasterGuide and scenario-specific instructions.
    Follow this link for detailed understanding of srm business process.
    - Installation and upgrade information is available at http://service.sap.com/srm-inst
    - wiki: https://wiki.sdn.sap.com/wiki/display/SRM This is good starting point.
    - Integrated Business Content for SRM is available at http://service.sap.com/ibc-srm
    - SAP Best Practices are available at http://service.sap.com/bestpractices
    - General product information about SRM is available on the SAP home page: http://www.sap.com/solutions/business-suite/srm/index.epx
    Kind regards,
    Peter

  • Doubts about BP number in SRM and SUS

    Hello everyone,
    I have some doubts about the BP number, especially for Vendors.
    I am working with the implementation of SRM 5.0 with SUS in an extended classic scenario. We will use one server for SRM and other for SUS. We will use the self registration for vendor (in SUS). My questions are:
    - Can I have the same BP number in SRM and SUS?? Or is it going to be different??
    - When a vendor accesses at the site to make a self registration in SUS, the information is sent to SRM as prospect (by XI) and there the prospect is changed as vendor? After that, is it necessary to send something from SRM to SUS again? (to change the prospect to vendor)
    - When is it necessary to replicate vendors from SRM to SUS??
    Thanks
    Ivá

    Dear Ivan,
    Here is answer to all your questions. Follow these steps for ROS configuration:
    Pls note:
    1. No need to have seperate clients for ROS and SUS. Create two clients for EBP and (SUS+ROS).
    2. No need of XI to transfer new registered vendor from ROS to EBP
    Steps to configure scenario:
    1. Make entries in SPRO --> "Define backend system" on both clients.
        You will ahev specify logical systems of both the clients (ROS as well as EBP)
    2. Create RFCs on both clients to communicate with each other
    3. In ROS client create Service User for supplier registration service with roles:
        SAP_EC_BBP_CREATEUSER
        SAP_EC_BBP_CREATEVENDOR
        Grant u201CS_A.SCONu201D profile to the user.
    4. Maintain service user in u201CLogon Datau201D tab of service : ros_self_reg in ROS client
    5. Create Purchasing and vendor Organizational Structure in EBP client and maintain necessary
        attributes. create vendor org structure in ROS client
    6. Create your ROS registration questionnaires and assign to product categories- in ROS client
    7. To transfer suppliers from registration system to EBP/Bidding system, Supplier pre-screening has to be
        defined as supplier directory in SRM server - EBP client.
        Maintain your prescreen catalog in IMG --> Supplier Relationship Management u2192 SRM Server u2192
        Master Data u2192 Define External Web Services (Catalogs, Vendor Lists etc.) 
    8. Maintain this catalog Id in purchasing org structure under attribure "CAT" - in EBP client
    9. Modify purchaser role in EBP client:
        Open node for u201CROS_PRESCREENu201D and maintain parameter "sap-client" and ROS client number
    10.Maintain organizational data in make settings for business partner
    Supplier Relationship Management -> Supplier Self-Services -> Master Data -> Make Settings for the Business Partners. This information is actually getting getting stored in table BBP_MARKETP_INFO.
    11. Using manage Business partner node with purchasers login (BBPMAININT), newly registsred vendors are pulled from Pre-screen catalog and BP is created in EBP client. If you you have SUS scenario, ensure to maintain "portal vendor" role here.
    I hope this clarifies all your doubts.
    Pls reward points for helpful answers
    Regards,
    Prashant

  • Doubt about proxies implementation

    hi experts i have small doubt about proxies implementation
    1. if we r implementing client proxies, it means sap r/3(proxy)->>xi->>>file
         system.here where we have to execute the SPROXY  transaction. in sap r/3 or
         in the xi server.and the next thing is where we have to write the report program
         to trigger the interface.in sap r/3 or in the xi server.
    2. if we r implementing server proxies, it means File->>xi->>>sap r/3
        (proxy).here where we have to execute the SPROXY  transaction. in sap r/3 or
         in the xi server.
    please clear me
    Regards
    giri

    Sreeram,
    The Integration Server and the client on which you generate the proxies should not be the same. If they are different then yes, you can use another client in your XI box itself to generate proxies and trigger the call to XI.
    If you see this blog by Ravi ( incidentally he is my boss as well ) this is exactly what we have done as well.
    /people/ravikumar.allampallam/blog/2005/03/14/abap-proxies-in-xiclient-proxy
    When you say XI, you mean the Client on which the Integration Server is running! XI is basically a R3 instance with more functionality and its own Integration Engine.
    Regards
    Bhavesh

  • Doubt about unicode conversion

    Dear Friends,
    I have a doubt about the unicode conversion. I have read (one server strategy) that I have to do export (R3load), delete the ECC 6.0 non-unicode, install an unicode database and then import with R3load. My doubt is about the deletion of ECC 6.0 non unicode. Why?  can I convert to unicode only with an export (R3load) and subsequent import (R3load) without any deletion?. Obviously I must to change the SAP kernel with a unicode one. Is it correct?
    Cheers

    you can not convert a SAP System to unicode by just exchanging the executables from non unicode to unicode ones.
    a non unicode SAP Oracle database is typically running with a database codepage WE8DEC or US7ASCII (well this one is out of support).
    so every string stored in the database is stored using this codepages or SAP-Internal codepages.
    When converting to unicode you have to convert also the contents of the database to unicode. As unicode implementation starts at a time where Oracle did not support mixed codepage databases (one tablespace codepage WE8DEC the other one UTF8) inplace conversions are not possible. To keep things simpler, we still do not support mixed codepage databases.
    Therefore you have to export the contents of your database and import it to a newly created database with a different codepage if you want to migrate to unicode.
    regards
    Peter

  • Doubt about the sizing in the CPH

    Hi gurus!
    I have the following doubt about the sizing in the CPH.  I'm going to implement the CCMS BI CONTENT, i read the Note 979581 - Installing and configuring the CCMS BI Content, but in the document called "IT Performance Reporting Using SAP NetWeaver Business Intelligence" you can see images in this link:
    http://www.servidor-imagenes.com/show-image.php?id=050236bd91654e16c94a559350611dff
    here said how I can calculate the sizing based in Data Record Size per each Metric stored, but in specific,  about the example: 20 systems, 17 CPH metrics. are included SCM, BI, ECC, SOLMAN in this 20 systems? And about the 17 CPH Metrics is talking about ratios? what's mean the CPH metrics?, How can I know what is my CPH metrics?
    I hope can help me
    Best Regards
    Ramon Sanchez

    this theme has been closed on our enterprise

  • Doubt about Substitution Rules

    Hello gurus!
    We have a doubt about Management Substitution Rules. We fully understand all the benefits of this feature and tried to communicate to all our personnel to make it work properly, but as we have a big staff and not everybody have the same "skills" understanding technology, we eant to have a different approach to this: we want to develop a "user friendly" interface, as a single acreen where we can emulate all the features of Substitution Rules, but we want to know if there is a control program or a Function that controls this, and the understand it fully to achieve this. Anybody knows if this is possible?
    Regards IA

    Hi,
    If you use UWL only with one backend system, you can easily build your own application for example with web dynpro ABAP. Just use the function modules SAP_WAPI_SUBSTITUTE* to do the different operations (creating, deleting substitutions, etc.).
    If you have multiple backend systems, it is a bit more complicated. You could build your own (Java WD) application by using the Substitution API. Check the docs at: http://help.sap.com/javadocs/NW04S/SPS09/uw/com/sap/netweaver/bc/uwl/IUWLSubstitutionManager.html
    Both approaches work.
    Regards,
    Karri

  • Doubt about how to extend 2LIS_08TRTLP.

    hello all!
    i have a doubt about 2LIS_08TRTLP extractor. I checked the Estructure Maintenance for this datasource and it has
    the follow BW communication structure: MCCOMVTRLK, MCCOMVTRLP, MCCOMVTSP, MCCOMVTTK e MCCOMVTTS. Searching for
    field UATBG, i found it in MCCOMVTTK and MCCOMVTTS.
    when i try to extend the 2LIS_08TRLP datasource with UATBG field, i just can do this with MCCOMVTTS-UATBG because i
    didn´t find the UATBG-MCCOMVTTK in field list. I need MCCOMVTTK-UATBG and not the MCCOMVTTS-UATBG.
    what is happening here friends?

    Hi,
       2LIS_08TRTLP gives the Delivery Item in Shipment. Therefore it mainly deals with the deliveries and the shipment stages. Therefore most of the fields come from the VTTS and LIPS.
    IF you need data from VTTK, then you need to use datasource 2LIS_08TRTK.
    Also refer sap note 440166. It gives the design using an ODS. Basically, you get to know what are the keys being used for fetching the data from the tables.
    Regards.

  • Doubt about Integration Directory

    Hi Expers,
    I have one doubt about ID.
    What are  the objects we can re-use in the IR And  ID.
    Please let me know.
    Regards
    Khanna

    Hi Rajesh,
    <i>With out Developing of the ID Also my Scenario is Working Fine.</i>
    Yes it will work, if you are using the same names for message interface, message mapping and interface mapping.
    Beacause in ID an Object key is uniquely assigned for each configuration object.
    if it already exist then no need to create another.
    Check this link for more details.
    http://help.sap.com/saphelp_nw04/helpdata/en/7c/7c33419026f423e10000000a155106/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/5d/372f41fe21c059e10000000a155106/frameset.htm
    Sachin

  • Doubt about upgration in the service pack

    Hi experts,
    I have one doubt about upgration of the service packs.How to upgrate one sevice pack to another one . Is there any process to this.
    please let me know the things.
    Regards
    babu

    HI,
    There is a procedure to upgrade , first you need to update the kernal,ABAP stack,patches,javastack.
    see the below links
    SAP installation guide
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/bd5950ff-0701-0010-a5bc-86d45fd52283
    Post Installation steps for activating Adobe Document Services in SAP XI NW 2004S -/people/sravya.talanki2/blog/2006/11/15/post-installation-steps-for-activating-adobe-document-services-in-sap-xi-nw-2004s
    Regards
    Chilla

  • SAP License for demos

    Hi,
      Is there any license provided by SAP to develop demos and hold some webinars etc.
    Thanks & Regards,
    Raja Sekhar K

    hi,
    you can log on to your OS using <sid>adm user if you are using UNIX.
    run saplicense command.
    >saplicense -get
    this command will show you your hardware key. you can also install your new license key using this command.
    For more information about how to use saplicense command, just type : >saplicense --help
    ardhian
    http://ardhian.kioslinux.com
    http://sapbasis.wordpress.com

Maybe you are looking for

  • I get an error when running adobe downloader

    I am not able to run adobe downloader (in order to install a trial version of Photoshop Elements 13).  I'm running windows 7, have administrative privileges, have tried on both Firefox and Internet Explorer. The message:   Sorry an error has occurred

  • JasperReports Integration PDF is created with ISO-8859-1 instead of UTF-8

    Hi, This is a strange problem i'm struggling with. Since about one month the PDF's are created with the wrong character set. Instead of UTF-8 (this is also given as a parameter calling the procedure as you see below) the PDF are always created with I

  • ITunes track on ipad not in order after update

    iTunes LP not in numbered order after iPad update. Checked if shuffle mode was the issue but seems not to be the problem.

  • How to STOP and START the BO EXPLORER/POLESTAR - LINUX

    Dear friends, Could you please let me know on How to STOP and START the BO EXPLORER/POLESTAR on LINUX platform? Thank you, Nikee

  • Semaphores

    Have a problem doing assignment in college on threads, Have to create Producer(extends thread) and Consumer(extends thread) classes simular to those on the java tutorial on threads , also created another class that contains two variables. The produce