System and Iview template selection to create SSO connection

Hello everybody,
a. In the system landscape when you create a system to connect with an external system (R/3) what have you to choose, SAP system using connection string, dedicated application server or with load balancing? What is the difference between them?
b. And then when you create an iview to use the system, SAP Transaction iView or another one?
I've been making some proofs with this but still there is no clear to me.
Thanks
Guillermo

Hi,
R\3 dedicated system means  user requests coming will go to that
particular R\3 system only.For R\3 load balancing system depending
on availability ,message server will send the request to the free dispatcher.
Yes, you can create a transaction iview for a particular transaction
which can use ur reference system.
<i>Kindly close the thread if you are satisfied with the replies recieved or get back in case of anything</i>.
Regards
Vineeth

Similar Messages

  • Getting content and address of select-options (created dynamically)

    Hi guys,
    Suppose I have a dynamically created select-options in a program
    SELECT-OPTIONS it_ranges FOR ...
    Let's say I can determine its name ( IT_RANGES ) only during program execution.
    Now I know I can use field symbols to get its content like below:
    FIELD-SYMBOLS: <fs>.
    "here I will have content of the table in <FS>
    ASSIGN ('IT_RANGES[]') TO <fs>.
    ...but I would like to know how can I get the content of this select-options table through date reference
    TYPES: BEGIN OF t_ranges,
            sign TYPE c,
            option(2) TYPE c,
            low TYPE i,
            high TYPE i,
           END OF t_ranges.
    "let say tt_ranges is of the same type like IT_RANGES
    TYPES: tt_ranges TYPE TABLE OF t_ranges.
    DATA: ref TYPE REF TO data.
    CREATE DATA ref TYPE tt_ranges.
    The above will only create typed reference to table but I want it to point to my table IT_RANGES. The statement below don't work here.
    GET REFERENCE OF ('IT_RANGES[]') INTO ref.
    Is there any other way I can get (using data reference)?
    1) address of this select-options table
    2) content of this select-options table
    Thanks for help in advance
    M.
    Edited by: Marcin Pciak on Nov 28, 2008 11:33 AM

    Statement CREATE DATA would only make sense when you are trying to create the dynamic select options. You can use the addition TYPE HANDLE in order to create the Range Table. Check method implementation CREATE_RANGE_TABLE in class CL_WDR_SELECT_OPTIONS.
    Once the Select-option is created, you need to use the GET REFERENCE to get the data reference of the Select-options. We can't specify the dynamic reference with brackets in the GET REFERENCE statement. So, you need to use the field-symbols to do the dynamics.
    DATA: ref TYPE REF TO data.
    DATA: ref_fs TYPE REF TO data.
    FIELD-SYMBOLS: <fs>.
    DATA: w_range TYPE i.
    SELECT-OPTIONS it_rang FOR w_range.
    START-OF-SELECTION.
      GET REFERENCE OF it_rang[] INTO ref.
      ASSIGN ('IT_RANG[]') TO <fs>.
      GET REFERENCE OF <fs> INTO ref_fs.
      write: 'done'.
    Regards,
    Naimesh Patel

  • HT204387 Several members of my family, peers at the office and friends have downloaded the new iOS. 7operating system and now our iPhones no loner will connect to many of our Bluetooh devices. Including the hands free Bluetooth systems in our vehicles.  I

    Several members of my family and friends are having problems mwith new iOS .7.02 operating system. After downloading new iOS our phones will not connect to our Bluetooth Handsfree phone systems in our vehicles. 2009 Mazda CX9 and 2010 Mazda CX7. Is this a known problem and Is there a fix coming soon?

    the change of iOS makes the iphones look like a different device to slave device ,in some cases ..
    Clear the pairings at both ends and re-pair

  • System and System Alias Creation

    Hi all,
    we have developed iViews in EP5. Now we want to migrate all our iViews to Ep6.. we have problem in EP6 for system and system alias creation..
    in EP5 we have 2 files called System.xml for defining the system and JCODestination.xml..
    after creating systems in System.xml.. we will define   all system properties in  like router string ,client no,and system number for each sap system in JCODestination.xml ..  
    and these systems we will map to the user in which will come all the defined Systems to combo box
    and we will define the systems in default.properties file and we will use in the par development...
    I heared that there are no System.xml and JCODestination.xml files in EP6 Netweaver Component....
    can you please any one advise me how to get configured System and System Alias in EP6 NetWever... and how to call in coding...
    I need a detailed steps how to create SAP System Alias.. since i am connecting to SAP System and Calling Function Modules and BAPIS From My Application(iViews).....
    I need a Detailed Explaination Step by Step Explanation ..
    your help will be required for me.. and appreciated to the great extent......
    Thanks and Regards
    Prasad.Y

    After following the steps above in system landscape
    please do the following to fill in the parameters
    Select connector under the property category.
    PlZ make sure that you have provided ApplicationHost(the host name of backend system), LogicalSystemName(can be found from transaction scc4,just dounle click on the client to see the logical name use saplogon and logon to the backend system R3 in this case) ,SAP Client(can be found from transaction code scc4), SAP SystenID,SAP System Number and Server port.
    After that create a System Alias for that system by selecting System Aliases under display.( This is important. I had the same kind of problem this should slove it).
    Now make sure that you have user mapping set for the backend R3 System(User Administration-->User Maping search for the user and choose edit. Then choose the system alias name form the drop down box and provide the login details for the backend system).
    Try to test the connection by selecting connection tests under display. If it doesnot work plz copy paste the whole error message.
    The message should look something like the one below
    Test Connection with Connector - Jan 1, 1970 2:35:42 PM
    Test Details:
    The test consists of the following steps:
    1. Retrieve the default alias of the system
    2. Check the connection to the backend application using the connector defined in this system object
    Results
    Retrieval of default alias successful
    Connection successful
    Let me know if you need any more details
    - Sheshu

  • Problem with EJB and JMS - Failed to obtain/create connection

    hello ejb and jms programmers,
    My problem is my topic MDB keep on retrieving the same message when there is a database connection failure. Maybe somebody could help me how to prevent to retrieve the same data?
    Given:
    - I purposedly turn off the pointbase database because im testing my error handling.
    - Im using SJSAS 8 as my application server.
    - My message Driven Bean of topic type.
    - Im using CMP for my entity bean
    Here is the scenario of whats happening - step by step:
    1. A separate application publishes a message to JMS queue server
    2. My MDB retrieves this message and do some processing then inserts a record (transaction history) in my database
    3. But my db is turned off or down
    4. My MDB sends a successful processing reply to the JMS queue server
    5. Then i noticed that my server.log keeps on growing so when i opened it, the record was not inserted and printed the stacktrace below "RAR5117 : Failed to obtain/create connection. Reason : javax.transaction.SystemException" (complete stacktrace below)
    6. I understand the cause of the stacktrace is because the DB is turned off. But what i dont understand is that my MDB keeps on reading the same message. Since my MDB is of topic type, isnt a topic MDB supposedly reads a message only once???
    So my questions are:
    1. how do i handle insert database error?
    2. how can i stop my MDB from processing the same message?
    3. any better suggestions?
    Thank you in advance :)
    leigh
    *** more complete stack trace ***
    [#|2005-01-09T15:35:57.097+0800|WARNING|sun-appserver-pe8.0.0_01|javax.enterprise.system.core.transaction|_ThreadID=17;|JTS5041: The resource manager is doing work outside a global transaction
    javax.transaction.xa.XAException
         at com.pointbase.xa.xaException.getXAException(Unknown Source)
         at com.pointbase.xa.xaConnectionResource.start(Unknown Source)
         at com.sun.gjc.spi.XAResourceImpl.start(XAResourceImpl.java:162)
    [#|2005-01-09T15:35:57.167+0800|SEVERE|sun-appserver-pe8.0.0_01|javax.enterprise.resource.resourceadapter|_ThreadID=17;|RAR5027:Unexpected exception in resource pooling
    javax.transaction.SystemException
         at com.sun.jts.jta.TransactionImpl.enlistResource(TransactionImpl.java:185)
         at com.sun.enterprise.distributedtx.J2EETransaction.enlistResource(J2EETransaction.java:360)
         at com.sun.enterprise.distributedtx.J2EETransactionManagerImpl.enlistResource(J2EETransactionManagerImpl.java:303)
         at com.sun.enterprise.distributedtx.J2EETransactionManagerOpt.enlistResource(J2EETransactionManagerOpt.java:115)
    [#|2005-01-09T15:35:57.177+0800|WARNING|sun-appserver-pe8.0.0_01|javax.enterprise.resource.resourceadapter|_ThreadID=17;|RAR5117 : Failed to obtain/create connection. Reason : javax.transaction.SystemException|#]
    [#|2005-01-09T15:35:57.227+0800|WARNING|sun-appserver-pe8.0.0_01|javax.enterprise.resource.resourceadapter|_ThreadID=17;|RAR5114 : Error allocating connection : [Error in allocating a connection. Cause: javax.transaction.SystemException]|#]
    [#|2005-01-09T15:35:57.237+0800|SEVERE|sun-appserver-pe8.0.0_01|javax.enterprise.system.container.ejb|_ThreadID=17;|EJB5071: Some remote or transactional roll back exception occurred
    com.sun.jdo.api.persistence.support.JDODataStoreException: JDO77006: SQL exception: state = null, error code = 0.
    NestedException: java.sql.SQLException: Error in allocating a connection. Cause: javax.transaction.SystemException
    FailedObjectArray: [[email protected]5ac]
         at com.sun.jdo.spi.persistence.support.sqlstore.impl.TransactionImpl.getConnectionInternal(TransactionImpl.java:1444)
         at com.sun.jdo.spi.persistence.support.sqlstore.impl.TransactionImpl.getConnection(TransactionImpl.java:1339)

    Hi annie,
    Wherever you are handling database transactions,
    you'd not be able to create a Connection if database
    is closed (I think you mentioned turning off the
    database) then at this condition, you should
    certainly throw a System level exception and stop all
    processing with some meaningful flow to indicate a
    failure (like display message on UI). Even
    network problems are handled by exceptions... so I
    don't see a reason why you didn't wrap it in the
    first place.
    Anyway, try handling specific exceptions rather than
    the general Exception... this will give you a better
    idea of what to do in case of an exception.Yes i know this. I am practicing this in my non-j2ee server applications. But the j2ee app im making, i just pass the db url in the descriptor and the app server automatically creates the connection for my app. So where would i put exception handling?
    2. how can i stop my MDB from processing the same
    message?Guaranteed delivery is not supposed to stop
    processing. It will continue to process the message
    after certain intervals till the message is
    delivered. You shouldn't deliver it at all, if you
    are able to detect that the database is off
    The problem here is that my MDB automatically retrieves the message from the JMS queue server. Im not the one retrieving the messages manually.
    My assumed behavior of topic MDB is once the a certain MDB retrieves a message it will not retrieve the same message anymore.
    thank you in advance.
    leigh

  • System and sysdba accounts are locked

    Hi
    System and sysdba accounts are locked I cannot connect
    is there a solution for it??

    no one answered but I could solve it using the user sys.

  • Unable to create TNS connection in SQL Developer

    This is my first time install SQL Developer 1.5 on my computer and when I try to create a connection using TNS Connection Type to connect to Oracle database, I get this error message:
    Status: Failure -lo exception: SO exception was generated.
    Do you know how to resolve this error?
    Thanks,
    Lily

    Hi Lily,
    This error is due to a tns entry that is unusual/malformed.
    Note that
    1/sqldeveloper picks up tnsnames.[a variety of endings not just ora] rather than just tnsnames.ora .
    2/We recently released 1.5.1[.54.40] is that the release you are using
    Can you post the 'problem' tns entry with ip and service name replaced by a stub?
    ie something like:
    XE =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = my.machine)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = my_service_name)
    -Turloch

  • Unable to create a connection to application server

    I am using JDev 10.1.3.0.3
    I also have standalone OC4J10.1.3 installed on my system.
    I am trying to create a connection to the application server by providing the correct username,pwd of the OC4J instance.I've alo checked correctness of rmi port.My oc4j instance is using port 8889 for http.But on saying test connection,it continues to test forever without returning any messages.

    Hi,
    the ormi port - the default is 23791 - is what you need, not the http port. The password should be the one of oc4jadmin (assuming you run OC4J 10.1.3)
    Frank

  • Bug - unable to create new connections on SQL Developer 4.0.0.13

    Upgraded to SQL Developer 4.0 and we are unable to create new connections in the Connections pane on the left hand side.
    Clciking the green plus button and right clicking Connections and 'New Connection' doesn't bring up the New Database Connection dialog box.

    Sounds like an 'install' problem.
    Can you extract the zip to a new directory and try again? You did extract v4 to a fresh directory, yes?

  • BI System Integration using EP iView Template

    Hi,
    Can u plz provide me POC, step by step process of below 2 que.
    1. BI System Integration using EP iView Template.
    2. BI System Integration using Federated Porta
    Thanks
    Prakash

    Hi,
    select your workset or folder where you should create the iview. Right click, it show you context menu, put create iview. You will have any options, one is BI, select this option.
    Best Regards,
    Conrado
    www.forosap.com spanish forums

  • Create and use templates

    Hi, experts,
        When i created a document from a template,why i can't find the template( which i have created and activated in the system configuration) in the selection?
    Thanks!

    Hi sandy,
    follow these steps
    Check and Configure the
    Template Service
    Task:
    Check the template service is activated and define the location of templates and
    template groups.
    1. Log on as EP300.A-## to check that the template service is running and
    define the location of the template groups and templates.
    a) In the top level navigation, choose System Administration &#8594; System
    Configuration and navigate to Knowledge Management &#8594; Content
    Management &#8594; Global Services &#8594; Template Service. If Template
    Service is invisible in Global Services, choose Mode &#8594; Advanced.
    b) Ensure that in Template Service, the Active box is checked. Note
    the paths for the template groups and templates. The default path
    is/documents/Templates.
    c) Choose Show Advanced Options if the Active box is missing.
    2. Create the folders that have been defined in the configuration for templates
    and template groups.
    a) Choose Content Administration &#8594; KM Content &#8594; documents.
    b) Choose Folder &#8594; New &#8594; Folder.
    c) Enter the name Templates and choose Save.
    d) Open this folder and create a new folder for the templates. The folder
    must have the same name as that defined in the configuration, so use
    SingleTemplates.
    e) Create now a folder for the template groups in folder Templates. The
    folder name must be the name defined in the configuration, so use
    TemplateGroups.
    Create and Use Single
    Templates
    Task:
    Upload documents that will be used as templates. Activate these templates for a
    specific folder and create new documents based on these templates.
    1. Upload the documents Exercise.doc, Solution.doc, and Unit.ppt from
    \Courses\EP300 62\Exercises\Template Service on the training share to the
    folder SingleTemplates.
    a) Choose Content Administration &#8594; KM Content and navigate
    todocuments/Templates/SingleTemplates.
    b) In the SingleTemplates folder, choose Folder &#8594; New &#8594; Upload.
    c) Choose Browse to locate the file in \Courses\EP300
    62\Exercises\Template Service, for example, Exercise.doc, and choose
    Open.
    d) Choose Upload and repeat these steps for the other documents.
    e) When all the templates have been uploaded, choose Done.
    2. Activate the templates Exercise.doc, Solution.doc, and Unit.ppt for the
    documents## folder.
    a) Locate the documents## folder. Navigate to the folder by choosing
    Content Administration &#8594; KM Content and select documents/Public
    Documents/documents##.
    b) Click on the context menu for documents## and choose Details &#8594;
    Settings &#8594; Templates.
    c) Select all the templates (select the checkboxes) and choose Save and
    then Close.
    3. Create new documents in the documents## folder based on these templates.
    a) Within the documents## folder, choose Folder &#8594; New &#8594; From
    Template and choose a template. Because the templates have been
    activated only in this folder, the template selection is also only available
    for this folder.
    b) Enter a name and choose Save.
    award me points if it helpful

  • No F4 value for system and client field for create job request

    Hi,
    While creating a job request in Solution manager system filed and client filed F4 is not working , it does not show any value.
    Do you have  any idea regarding this issue.
    Thansk & Regards,
    kaushal

    Hello  Kaushal,
    you habe to link user, key user i.e. a business partner (BP), and managed system and this work like this:
    a) User <-> BP: start transaction BP, assign role Employee to your business partner and enter the user name on tab Identification
    b) BP <-> managed system: start transaction BP, select role General and enter the External System Identifier (format: <managed system ID> <installation number> <client> <user in managed system>) on tab Identification
    Alternative: Use transaction BP_GEN to create valid business partners for managed systems
    See also the Solution Manager Implementation Guide (IMG):
    -> transaction SPRO
    .> SAP Solution Manager Implementation Guide
    -> SAP Solution Manager
    -> Cross-Scenario Settings
    then
    -> Business Partners
    and
    -> iBase
    (Note that IMG path (and labels) might vary in between support packages)
    Kind regards,
    Martin
    http://service.sap.com/jsm

  • Create new system and client with TDMS

    Hi all;
    I am tested the TDMS product with good results. I want create a new system and do one copy with time reduction time for new development system
    What it´s the best solution?
    - Install new system and do the client copy with TDMS
    or
    - System copy of production system, delete production client, create new client with UCUSV of productive system and copy client with TDMS?
    Thanks a lot

    Hi;
    It´s true :).
    Ok, one example, I have two systems, I want create system shell from A (client 900) to B . The central system is C
    In system B I don´t have any client but the Cross is diferent to system A
    I select in TDMS - ERP Shell Creation Package for SAP Release higher 4.6C
    System Definition;
    - Control system - C (all information it´s correct)
    - Sender system - A (Client 900)
    But i dont have any information about the receive system (A).
    When execute the synchronization appears the system A, but with any information (destination ID)
    and I have the error: Could not change password of RFC Destination sender system
    Any Idea
    thanks a lot for the help

  • Service Desk: System and client missing when creating a message.

    Hi Experts,
         I would like to find out if anyone has encountered this problem before. The system and client fields were blanked out and I am unable to select/create the system when creating a message. Thanks!

    Hello Wein,
    If the system/client are grayed out in the workcenters, it is because when creating your BP you've probably created it only for a single system/client. Try to update your BP with another system (tx. BP_GEN).
    Hope this will help.
    Regards,
    Stéphane.
    Oups didn't see that the question was marked as answered...
    Edited by: Stephane BUSTARRET on Aug 5, 2010 2:40 PM

  • Problem in creating iview template in EP7.0

    Hi,
    I getting the below message even after creating the iview template in EP7.0
    "No templates to display. You are not assigned to any existing templates."
    Created through:
    content Admin --> portal content --> <folder>new --> iview --> seleting "Portal component - create an iView from a portal component contained in a deployed portal archive (PAR file)" <next> --> seleting "com.sap.portal.appintegrator.sap" <next> --> webdynpro <next> --> finish.
    Open object for editing...--> Object is a Template to Yes.
    Result :
    content Admin --> portal content --> <folder>new --> iview --> seleting "iview template- create an iView from an existing iView template" <next> which displays the same message.
    "No templates to display. You are not assigned to any existing templates."
    Rgrds,
    Suri.

    Hi,
    do have the right permissions? You can check this using the Permission Editor (Applications, PCD)
    What role are you assigned to? Content Administrator? System Administrator or even Super Administrator?
    Doesthe same error occur when you're logged in as Super Administrator?
    br,
    Tobias

Maybe you are looking for

  • Downloading on multiple devices from iTunes

    I made some purchases on my iPad and they aren't showing up on my powerbook which has the same iTunes account. How to I download them on my powerbook?

  • Screen goes black on 2nd reboot(installing windows 7)

    So I'm trying to install windows 7 via bootcamp on my 21in iMac(Intel Core i3). Everything seems to be going fine on the install, it restarts, then when it goes to restart once more the screen goes black and just stays there indefinitely. I believe t

  • Currency Format in report

    I am currently working on a german report. I need to display the currency values in german format. For example if we have "2,345,223.55" it needs to be displayed as "2.345.223,55". the source of these values are formula and summary columns. I have tr

  • Adobe Acrobat 9.5.5 issue

    Every time I open any .pdf file it gets hanged after few seconds. Pls. suggest solution.

  • MacBook Pro beeps on power up

    I used my macbook last night and when I was finished put it on the charger and closed the lid. This morning when I woke up and opened it the display was black and it began beeping. The beeping had no pauses and was continuous, about every 7 seconds o