Types of containers

Hi Experts,
I am new to Workflow,can some one tell me.
How many types of containers we can use in Workflow?
What is workflow deffinition?
Thanks and Regards,
Srinivas...

Hi Srini,
Check this for containers information.
http://help.sap.com/saphelp_47x200/helpdata/en/c5/e4b06d453d11d189430000e829fbbd/frameset.htm
Once the container is created data from the Customer transaction needs to be binded with the Container. Click the link below to know about Data binding.
http://help.sap.com/saphelp_47x200/helpdata/en/c5/e4b0ae453d11d189430000e829fbbd/content.htm
Best Regards,
Deepa Kulkarni

Similar Messages

  • BackgroundColor is only supported by type 'mx.containers.Box' with the theme 'halo, spark'

    Hello:
    I just upgrade from Flash Builder Burrito to 4.5. After importing my Burrito project into 4.5, I got like 30 errors saying the following:
    The style 'backgroundColor' is only supported by type 'mx.containers.Box' with the theme(s) 'halo, spark'.
    I have been using backgroundColor through the project to set colors ... Is there a new property name? Do I have to start using CSS?
    The only option I had for theme was "Mobile Theme".
    I would like to be able to use backgroundColor with out rewritting all that code. Is there a way?
    Thanks
    Paul

    I used to have the prerelease "burrito" which I coded all the background colors using the "backgroundColor" property. I just bought the release version from the store and after I unstalled it I started getting the compiler errors releated to "backgroundColor".
    Where do I locate the "use flex 3 compatability" box?

  • What types of containers need to be used for one-to-many relationships

    While looking at toplink examples, I noticed that synchronized containers only are being used for one-to-many relationships even though it's not required by the documentation.
    Is it required?
    Also how does merge affect it? I'm gettning concurrent modification exceptions from time to time, while using iterators for containers from these relationships.
    Does it mean that I have to use enumeration on vectors only and toplink merge isn't atomic? So there is no isolation when toplink merges the data from unit of work into identity maps?
    There is nothing about thread-safety and threading aspects of accessing containers for CollectionMapping based relationships. Please advise.

    Non synchronized containers can be used but may require some extra code to handle concurrent access. If you are accessing the objects from the shared cache (not cloned in a UnitOfWork) then you will need to isolate your iteration within a synchronized block, synchronized on the collection itself, or handle the ConncurrentModificationException if they happen rarely.
    Because these are shared instances of these collections other threads may be writing to them while they are being read from.
    --Gordon

  • Arch & containers ?

    I've been messing with Arch for a little while now, I really like it, and would like to use it to setup my web-development environment.
    I currently run the following services locally on my main install :
    Database server (mongodb, mysql, postgres)
    Application server (rails, sinatra, node.js)
    Web server (apach, nginx)
    Git server
    Needless to say, it's quite messy, and a PITA to manage.
    So I've been considering using containers in order to encapsulate them, in small, manageable units, clearly separated from my development environment.
    And this has been a bit of a mindfuck, for the following reasons...
    To my knowledge, there are 3 containers technologies :
    - V-Server
    - OpenVz
    - LXC
    And then there is the host/guest paradigm where different setups are possible :
    - The system on metal could be Arch, holding the environment, and managing the containers that make up the underlying infrastructure.
    - Or the dev environment itself (still Arch) could be just another container, which  leaves the possibility of using another distro than Arch on metal.
    Has anyone had experience with that kind of setup ? Would Arch be more fitting as the host, guest, both ?
    I realize this quite an open-ended question, and I'm probably looking confused as hell here (I guess I am).
    The process sure seems long-winded, but the end result would allow for such flexibility in my work, that I intend to think this through.
    I hope someone can share some insight.
    Cheers !

    dschauer wrote:
    From my experience with OpenVZ it would work out just as well for the types of containers you wish to run.
    My current usage is not exactly like yours, but I'm setting up some new stuff with Arch and LXC that is similar to what you mention. (One box with a variety of services running in different containers.
    I use Arch as a host on a few systems, as host mainly. I've ran some Arch guests without much trouble, but for my specific needs I primarily need to use Debian/CentOS/OpenSUSE containers.
    OpenVZ is what I started with but I gave up on due to lack of decent kernel support, so I migrated everything to LXC.
    V-Server I could never get working on Arch.
    So I switched to LXC.
    That's nice to hear, LXC was the most appealing since it's mainline, but I wasn't sure it was mature/stable enough, so I was kind of leaning towards V-Server, you probably saved me a bunch of time here...
    Did you notice any difference in performance between openvz and lxc ?
    Also, do you think it makes sense to have your user session setup as a container itself, or is there no benefit over having it directly on the host ?
    and thanks for the reply

  • Issue in RFCLookup UDF

    Hi All,
    Requesting your help in fixing an UDF issue.
    This UDF is to check for a table entry and if not found it will create an alert with some source values.
    Now the problem is, alert mails are getting created but the values are not getting passed.
    Here is the source code:
    AbstractTrace trace;
    trace = container.getTrace();
    MappingTrace trace1;
    trace1 = container.getTrace();
    Object cachedValue = null;
    String result = null;
    String sender = null;
    String receiver = null;
    //Check if source is null or blank. If so then pass blank value to target 
    if(((sourceValue1.trim()).equals("")) ||  ((sourceValue2.trim()).equals("")) || ((sourceValue3.trim()).equals("")))
      result="";
    else
                                 Map map = container.getTransformationParameters();
    //Sender System name which is the same as the Sender Business System name in Integration Directory
    sender = (String) map.get(StreamTransformationConstants.SENDER_SYSTEM);
    //Receiver System name which is the same as the Receiver Business System name in Integration Directory
    receiver = (String) map.get(StreamTransformationConstants.RECEIVER_SYSTEM);
    // Parameter for cache value. A semicolon is used as a separator between keys
    String CONTAINER_PARAMETER = subCat.trim() + UDFReader.getString("PARAMETER_DELIMETER") +sourceValue1.trim() + UDFReader.getString("PARAMETER_DELIMETER") +sourceValue2.trim() + UDFReader.getString("PARAMETER_DELIMETER") +sourceValue3.trim();
    trace1.addWarning("CONTAINER PARAMETER: " + CONTAINER_PARAMETER + "\n");
    trace.addDebugMessage(UDFReader.getString("CACHE_CONTAINER_PARAMETER_TEXT") + CONTAINER_PARAMETER);
    // Retrieve cached value
    cachedValue = container.getParameter(CONTAINER_PARAMETER);
    if(cachedValue!=null)
      // Cached value found
      result = cachedValue.toString();
      trace.addDebugMessage(UDFReader.getString("CACHE_RESULT_TEXT") + result);
    else
      // Cached value not present. Fetch value from database
      // Build key column names array to be passed to java class
      String keyColNames[] =new String[6];
      keyColNames[0]=UDFReader.getString("SAP_SYSTEM_COLUMN_NAME");
      keyColNames[1]=UDFReader.getString("LEGACY_SYSTEM_COLUMN_NAME");
      keyColNames[2]=UDFReader.getString("SUBCATEGORY_COLUMN_NAME");
      keyColNames[3]=sourceField1;
      keyColNames[4]=sourceField2;
      keyColNames[5]=sourceField3;
      trace1.addWarning("KeyColNames" + keyColNames[0] + "\n" + keyColNames[1] + "\n" + keyColNames[2] + "\n" + keyColNames[3] + "\n" + keyColNames[4] + "\n" + keyColNames[5] + "\n");
      // Build key column values array to be passed to java class
      String keyColValues[] = new String[6];
       //Check whether sender system is SAP or Legacy
                             if(sourceField1.startsWith(UDFReader.getString("SAP_SYSTEM_PREFIX")))
       //Sender system is SAP
       keyColValues[0]=sender;
       //Receiver system is Legacy
       keyColValues[1]=receiver;
                             else
       //Receiver system is SAP    
       keyColValues[0]=receiver;
       //Sender system is Legacy
       keyColValues[1]=sender;
      keyColValues[2]=subCat.trim();
      keyColValues[3]=sourceValue1.trim();
      keyColValues[4]=sourceValue2.trim();
      keyColValues[5]=sourceValue3.trim();
      // Fetch result using java class
      result=RfcLookupHandler.RFCLookup(table,keyColNames, 
    keyColValues,targetField,trace);
    trace1.addWarning("Result:" + result);
      if(!result.equals(RfcLookupHandler.VALNOTFOUND))
       // Record found in database
       container.setParameter(CONTAINER_PARAMETER,result);
      else
       // Record not found in database
                                              //Autogenerated message id generated at runtime
       String msgId = (String) map.get ( StreamTransformationConstants.MESSAGE_ID);
       //Dynamic alert message details-Trigerred through RFC SALERT_CREATE
       String element[] = new String[9];
       String tabIndex[] = new String[9];
       String elementLength[] = new String[9];
       String type[] = new String[9];
       String value[] = new String[9];
       //Container names for alert message
       element[0] = UDFReader.getString("CONTAINER_NAME_MESSAGE_ID");
       element[1] =UDFReader.getString("CONTAINER_NAME_INTERFACE_NAME");
       element[2] =UDFReader.getString("CONTAINER_NAME_OBJECT_TYPE");
            //element[2]="SAP_MAT_NO";
       element[3] =UDFReader.getString("CONTAINER_NAME_OBJECT_TYPE"); ;
       element[4] =UDFReader.getString("CONTAINER_NAME_OBJECT_TYPE");
            //element[4]="PLANT";
       element[5] = UDFReader.getString("CONTAINER_NAME_OBJECT_VALUE");
       element[6] = UDFReader.getString("CONTAINER_NAME_OBJECT_VALUE");
       element[7] =UDFReader.getString("CONTAINER_NAME_OBJECT_VALUE");
       element[8] ="TABLE";
       trace1.addWarning("Warning: \n" + element[0]  + "\n" + element[1]  + "\n" + element[2]  + "\n" + element[3]  + "\n" + element[4]  + "\n" + element[5]  + "\n" + element[6]  + "\n" + element[7]  + "\n" + element[8]);
       //Tab index of container variables in alert message
       tabIndex[0] = "000001";
       tabIndex[1] = "000002";
       tabIndex[2] = "000003";
       tabIndex[3] = "000004";  
       tabIndex[4] = "000005";  
       tabIndex[5] = "000006";  
       tabIndex[6] = "000007";  
       tabIndex[7] = "000008";
       tabIndex[8] = "000009";
       //Length of containers
       elementLength[0] = elementLength[1] = elementLength[2] =elementLength[3] = elementLength[4] = elementLength[5] = elementLength[6] =  elementLength[7]=elementLength[8]=UDFReader.getString("CONTAINER_VALUE_LENGTH");
       //Data type of containers
       type[0] = type[1] = type[2]  = type[3] = type[4]=type[5]  = type[6]  =type[7]  ="C";
       //Values supplied to containers
       value[0] =msgId;
       value[1] =interfaceName;
       value[2] =  sourceField1;
       value[3] = UDFReader.getString("MESSAGE_SEPARATOR_HYPHEN") + sourceValue1.trim();
       value[4] = UDFReader.getString("MESSAGE_SEPARATOR_COMMA")  + sourceField2;
       value[5] = UDFReader.getString("MESSAGE_SEPARATOR_HYPHEN") + sourceValue2.trim();
       value[6] = UDFReader.getString("MESSAGE_SEPARATOR_COMMA")  + sourceField3;
       value[7] = UDFReader.getString("MESSAGE_SEPARATOR_HYPHEN") + sourceValue3.trim();
       value[8] =table;
    trace1.addWarning("Table: "+table);
       // Check error handling flag
       if(errorHandlingFlag.equalsIgnoreCase("E"))
       //Throw Error and generate alert message
       trace.addInfo(UDFReader.getString("NO_RESULT_FLAG_E_TRACE"));
    trace1.addWarning("Error Flag: E");
    for (int i=0; i<9; i++){
    trace1.addWarning("Parameters["+i+"]: " +value[i]);
       result = SUPPRESS;
       RfcAlertHandler.RFCAlert(alertCat,element,tabIndex,elementLength,type,value,trace);
       throw new ValueMappingException(UDFReader.getString("NO_RESULT_FLAG_E_EXCEPTION"));
       else if(errorHandlingFlag.equalsIgnoreCase("N"))
        //Pass 'NA' value to target
        result=UDFReader.getString("NO_RESULT_FLAG_N_VALUE_PASSED");
        trace.addInfo(UDFReader.getString("NO_RESULT_FLAG_N_TRACE"));
    trace1.addWarning("Error Flag: N");
       else if(errorHandlingFlag.equalsIgnoreCase("B"))
        //Pass blank value to target
        result="";
        trace.addInfo(UDFReader.getString("NO_RESULT_FLAG_B_TRACE"));
    trace1.addWarning("Error Flag: B");
       else
        //Incorrect Error Handling Flag
        trace.addInfo(UDFReader.getString("INCORRECT_FLAG_TRACE"));
    trace1.addWarning("Error Flag: INCORRECT");
        result = SUPPRESS;
        throw new ValueMappingException(UDFReader.getString("INCORRECT_FLAG_EXCEPTION"));
    return result;
    Can someone check where could be the problem?
    Thanks,
    Glory.

    What is RfcLookupHandler? And where is RFC channel settings?

  • Can not see any entities in The ER diagram

    I am trying to create an ER diagram from an existing database. I am using designer 10.1. I generated a server model, the table to entity retrofit successfully. I can see all the entities and attributes in the RON. But when I try to create ER diagram , I don't see any entities or attributes. Am I missing something ??
    Any help???? Thanks in advance..

    If version control is not turned on, then there is only one workarea, "GLOBAL SHARED WORKAREA" and EVERYTHING is in it. So that isn't the problem.
    Let's step through this a little:
    You start the E/R diagrammer and open a new diagram.
    You are prompted to Select a default container for this diagram, and you probably selected the application (an application is one of two types of containers) where you created the entities.
    So you have a blank diagram.
    You select the Edit menu, and "Include...", "Entity".
    You should get a window with a navigator in it, with the entities in the default container showing.
    If not, you should be able to open the tree to view and select those entities.
    Is this where you don't get the list of entities that you expected to see?
    One possible problem is Access Rights - in RON, right click the application, and choose "View Access Rights". Make sure that your username has the right to SELECT that application. By the way, you ARE using a username other than the owner of the repository, right? The only time you should connect as the repository owner is in the RAU. Use the RAU to grant another user (have the DBA create another user, if you haven't already) access to the repository. Then, in RON, make that user the owner of your application.

  • Need help in Xi faqs

    Hi guys ,
    This is SuryaNarayana . I have collected some faqs from www.**************** but they have no answers please answers these questions
    Questions are releated in to XI-BPM
    1. Business Process Management is concerned with ?
    a. Processes within and across applications
    b. Planned or spontaneous Human interaction
    c. Automating, streamlining, managing business processes
    d. Moving process control from application to technology layer
    e. All of the above
    2. Which open modeling standard ccBPM adheres to?
    a. BPEL
    b. XML
    c. WSDL
    d. None of these
    3. High-Tech industry ccBPM implementation guidelines are known as ?
    a. RosettaNet Implementation Framework
    b. CIDX
    c. Marketpalce
    d. SAP BC
    4. Individual "Swim Lane" in BPM modelling contains ?
    a. Business Scenarios from same company
    b. Business Scenarios from same Application
    5. Different Panes within BPM editor in IR ?
    a. Header
    b. Editing
    c. Process Overview
    d. Property
    e. Output
    f. Object
    g. All of the above
    6. Data Declaration of the Business process can be viewed in ?
    a. Correlation in Object area
    b. Container in Output area
    c. Container in Object area
    d. None of these
    7. Which of these is not Messaging relevant Step type ?
    a. Receive
    b. Send
    c. Transformation
    d. Receiver Determination
    e. Block
    8. Control Step can be used for, except ?
    a. Terminate current process
    b. Trigger an Exception
    c. Trigger an Alert
    d. Define different processing braches for process
    9. Which of the following triggers process to start?
    a. By receiving amessage assinged to receive step
    b. Batch job by scheduling in WAS
    c. Both of these
    d. None of these.
    10. To route response messages to the
    correct process instance, _______ object is used ?
    a. Correlation
    b. Interface
    c. Adapter
    d. Mapping
    11. Correlation handling is handled by ?
    a. BP engine
    b. Integration Engine
    c. Adapter Engine
    d. None of these
    12. Container element can be typecasted to, except ?
    a. simple XSD/XML Schema
    b. Abstract i/f
    c. Receiver
    d. Multilne(vector)
    e. Sender
    13. Outer Container block has container element 'O' and inner Container block
    has container element 'I'. Then which of the following is true?
    a. Both 'O' and 'I' are visible in outer block.
    b. Both 'O' and 'I' are visible in inner block.
    c. Both of these.
    d. None of these.
    14. Simple Fork process step terminates when ?
    a. All branches are true.
    b. All branches are false.
    c. Either true.
    d. Either false.
    15. Collect process pattern types includes ?
    a. Condition
    b. Receiver message
    c. Append message
    d. Increase counter
    e. Merge message
    f. Send message
    g. All
    XI-Releated questions
    1. SAP XI is an Integration technology and platform?
    a) for SAP and non SAP applications.
    b) for A2A and B2B scenarios
    c) for asynchronous and synchronous applications
    d) for cross-component Business Process Management.
    2. XI represents the following layer in the NetWeaver stack:?
    a) People Integration
    b) Information Integration
    c) Process Integration
    3. XI uses the following web standards ?
    a) WSDL
    b) XSD
    c) SOAP
    4. XI components include?
    a) SLD (System Landscape Directory)
    b) Integration Builder
    c) Integration Server
    d) Central Monitoring
    e) Adapter Engine
    5. Integration Builder is a?
    a) Java application
    b) ABAP application
    c) .NET application
    6. Java Web Start is required for?
    a) Caching java clients
    b) Drawing pictures
    c) Connect to SUN systems
    7. SLD is a?
    a) Client application
    b) Server application
    8. XI is technically a client of SLD?
    a) TRUE
    b) FALSE
    9. SLD adheres to?
    a) Common Information Model
    b) Web Services Definition Language
    c) XML Schema Definition Language
    d) XML
    10. Usage of PCK (Partner Connectivity Kit) ?
    a) Allow small partners and subsidiaries to communicate natively with XI
    b) For Partners to connect to database systems7444
    c) Allow Partners to connect to .NET and Java applications
    11. Certain adapters are needed in cases where the Integration Server
    is to exchange messages with an R/3 system based on basis kernel lower than?
    a) 6.10
    b) 6.20
    c) 6.40
    d) 4.5
    12. XI supports the following QoS (Quality of Services)?
    a) BE (Best Effort)
    b) Exactly Once (EO)
    c) Exactly Once In Order (EOIO)
    d) Exactly Twice In Order (ETIO)
    13. QoS BE is equal to ?
    a) Synchronous RFC (sRFC)
    b) Asynchronous RFC (aRFC)
    c) Transactional RFC (tRFC)
    d) Queued RFC (qRFC)
    14. QoS EO is equal to ?
    a) Synchronous RFC (sRFC)
    b) Asynchronous RFC (aRFC)
    c) Transactional RFC (tRFC)
    d) Queued RFC (qRFC)
    15. QoS EOIO is equal to ?
    a) Synchronous RFC (sRFC)
    b) Asynchronous RFC (aRFC)
    c) Transactional RFC (tRFC)
    d) Queued RFC (qRFC)
    16. Adapter Framework is based on ?
    a) JCA (Java Connector Architecture)
    b) NCA (.NET Connector Architecture)
    c) PCK (Partner Connectivity Kit)
    d) WSDL (Web Services Definition Language)
    17. XI Adapter Engine is based on the integrated?
    a) ABAP engine
    b) J2EE engine
    c) .NET engine
    d) JCA (Java Connector Architecture)
    18. Integration Processes are built using?
    a) WSDL (Web Services Definition Language)
    b) BPEL (Business Process Execution Language)
    c) XSD (XML Schema Definition Language)
    d) JCL (Java Connector Language)
    19. Runtime Workbench in XI is the central monitoring tool for the following?
    a) Component Monitoring
    b) Message Monitoring
    c) End-to-End Monitoring
    d) Performance Monitoring
    e) Queue Monitoring
    f) Schedule Monitoring
    20. XI uses enhanced version of SOAP protocol called?
    a) XI XML
    b) XI SOAP
    c) XI XSD
    d) XI PML
    21. What is the cardinality of MESSAGE TYPES : DATA TYPES ?
    a) 1:1
    b) 2:1
    c) 2:2
    d) 1:0
    22. What are the advantages of ASYNCHRONOUS updates?
    a) Acknowledgement can be sent back
    b) Messages can be persisted.
    23. What are the advantages of SYNCHRONOUS updates?
    a) Acknowledgement can be sent back (messages can be persisted with additional configuration)
    b) Messages can be persisted.
    c) Messages cannot be persisted.
    24. What is the Message format used in XI for processing?
    a) Specific implementation of SOAP which is XI XML
    b) JMS
    c) RFC
    d) CIDX
    25. What is an Adapter?
    a) Adapters are used to communicate to Legacy or SAP systems with WAS version < 6.2
    b) Adapters are used to retrieve information from Java, .NET systems
    c) Adapters are used to import IDOC, RFC information.
    26. In the Integration Repository, what is the KEY of an
    object or how can an object be uniquely identified?
    a) SWCV, Namespace, Name
    b) Namespace, Name, Description
    c) Name, Description, SWCV
    d) SWCV, SWCV1, SWCV2
    27. How do you classify NAME SPACE in an R/3 Environment?
    a) Equivalent to function group
    b) Equivalent to development class
    c) Equivalent to function module
    d) Equivalent to BAPI
    28. What is ICM?
    a) Internet Console Manager
    b) Internet Communication Manager
    c) Infrastructure Communication Manager
    d) Intranet Communication Manager
    29. A Customer has WAS 6.2 and has decided to use XI?
    a) He cannot use XI unless WAS 6.2 is upgraded to WAS 6.4
    b) Can use XI with some additional patches
    c) WAS 6.2 already has XI in it. No need of any additional software
    30. What is the name space of an IDOC?
    a) urn:sap-com:document:sap:idoc:messages
    b) urn:sap-com:document:idoc:sap:messages
    c) urn:sap-com:sap.document:idoc:messages
    d) urn:sap-com:document:idoc:messages
    31. What is the name space of an RFC ?
    a) urn:sap-com:document:rfc:sap:functions
    b) urn:sap-com:document:bapi:rfc:functions
    c) urn:sap-com:document:sap:rfc:functions
    d) urn:sap-com:document:remote:rfc:functions
    32. What doesn’t get transported when the configuration is released?
    a) All Objects will get transported
    b) Generated proxies and application coding in the application
    components does not get transported when the configuration is released.
    c) Only application coding will not get transported.
    d) Only generated proxies will not get transported.
    33. How many Pipelines are there in the integration server?
    a) Receiver Identification, Interface Identification, Message Branch,
    Request Message Mapping, Outbound Binding, Call Adapter, Request Message Mapping.
    b) Receiver Identification, Interface Identification, Message Branch,
    Request Message Mapping, Outbound Binding.
    c) Message Branch, Request Message Mapping, Outbound Binding,
    Call Adapter, Request Message Mapping.
    34. What are the possible Trace Levels?
    a) 0 – No Trace,1 – Low Trace Level,2 – Medium Trace Level,
    3 – High Trace Level,4 – Expert Trace Level
    b) 0 – No Trace,1 – Low Trace Level,
    2 – Medium Trace Level,3 – High Trace Level
    c) 10 – Low Trace Level,20 – Medium Trace Level,
    30 – High Trace Level,40 – Expert Trace Level
    35. Does JMS adapter need additional driver to communicate to database?
    a) Yes
    b) No
    c) JMS adapter is not available in XI
    36. What is use of PCK?
    a) Partner Connectivity Kit that helps Partner Systems with no ability
    to communicate in XML speak to the Business Systems.
    b) PCK is used to deploy additional drivers
    c) PCK can be used as an alternative to XI
    37. What is Context Object? What is its role?
    a) Context Objects are pointers to a specific element within the message,
    for future reference. Encapsulate the access to data that is contained
    in the payload or in the header of the message.
    b) Another form of data types
    c) Can be used instead of message types
    38. What adapters don’t need Sender Agreement?
    a) HTTP, IDOC.
    b) IDOC, RFC
    c) IDOC, JMS
    d) JDBC, JMS
    39. What is the Protocol followed for Mail Adapter?
    a) SMTP
    b) IMAP
    c) POP3
    d) POP4
    40. Where do you configure an Adapter?
    a) Sender Agreement
    b) Receiver Determination
    c) Business System
    d) Communication Channel
    41. Can a JDBC adapter query the database table?
    If yes, what are different possibilities?
    a) Yes. You can configure sender and receiver communication channels.
    A special XML format is defined for content coming from the
    Integration Engine. This canonical format enables SQL Insert,
    Update, Select, Delete or stored procedure statements to be processed.
    A message is always processed in exactly one database transaction.
    b) JDBC adapter cannot insert records in the database.
    c) We should not insert, update records in the database directly.
    42. The message monitoring status DLNG means ?
    a) DLNG = Delivering.
    b) DLNG = Dialing
    c) DLNG = Detailing
    d) DLNG = Dismantling
    43. Where do you perform Content Based Routing?
    a) Receiver Determination
    b) Receiver Agreement
    c) Sender Agreement
    d) Communication Channel
    44. What are the various supported mapping types?
    a) Message Mapping, Java Mapping, XSLT Mapping, ABAP Mapping.
    b) XSLT, Java, JDBC, JMS
    c) XSLT, WSDL, XSD
    45. With respect to ABAP proxies,
    what are the methods that can be coded?
    a) EXECUTE_SYNCHRONOUS, EXECUTE_ASYNCHRONOUS.
    b) EXECUTE_SYNCHRONOUS, EXECUTE_ASYNCH.
    c) EXECUTE_SYNCH, EXECUTE_ASYNCH
    46. “ Fields under a node with a minoccurs of ZERO has been mapped.
    ” The values don’t appear in the target result, what could be wrong?
    a) The parent node has not been assigned.
    b) Parent node has cardinality 0…unbounded
    c) Parent node has many fields
    47. What is a SENDER COMM CHANNEL?
    a) Sender Communication Channel is where you define the source system from
    where the message/information goes to XI and also the adapter, the Sender System uses.
    b) Sender Communication Channel is where you define the target system from where
    the message/information goes out of XI and also the adapter, the Receiver System uses.
    c) Sender Communication Channel is where you define the how the
    interface mapping takes place between Sender and Receiver.
    48. XSLT is supported but two statements were not supported. What are they?
    a) <xsd:include>, <xsd:import>
    b) <xsd:including>, <xsd:importing>
    c) <xsd:includes>, <xsd:imports>
    d) All statements are supported.
    49. What steps can be inserted in an Exception branch?
    a) Terminate a process, trigger an alert.
    b) Terminate the interface, trigger IDOC.
    c) Terminate exception, branch integration process.
    50. What is multi mapping? When can it be used?
    a) Multi Mapping is used to map abstract interfaces and can only be used in ccBPM.
    b) Can be used when there are multiple interfaces from Sender systems.
    c) Can be used when there are multiple interfaces from Receiver systems
    51. The first step in the Integration process can be ?
    a) Receive step
    b) fork Step
    c) Send Step
    d) Block Step
    52. An Exception raised by a step can be handled by ?
    a) Only by exception handler in the same step
    b) Only by exception handler in the outer step
    c) By exception handler in the same step or in the outer step
    53. An exception is raised by ?
    a) Async or sync send step, transformation step and Control Step
    b) Sync send step
    c) By control step only
    54. A message can be received by ?
    a) Only a receive step
    b) By receive, fork or loop step
    c) By receive and block step
    d) By send, block and Fork
    55. What are the types of containers ?
    a) Abstract
    b) Simple & Abstract
    c) Simple, Abstract and receiver
    56. Which of these are true/false with user defined functions?
    a) User defined functions are accessible only in the mapping where they are created
    b) User defined functions are visible across namespace
    c) User defined functions accessed in other mapping by copying it to that mapping
    d) User defined functions are accessible in any mapping in a software component version
    57. Java Mapping is executed by implementing the interface ?
    a) com.sap.aii.mapping.api.StreamTransformation
    b) com.sap.api.mapping.StreamTransformation
    c) com.sap.api.mapping.aii.StreamTransformation
    d) com.sap.mapping.api.StreamTransformation
    58. An Idoc has been sent by a sender system to XI, but the idoc is not
    received at the XI system which of these could be true/false ?
    a) The destination system from the sender system to XI is not configured correctly.
    b) The metadata in XI was copied/generated from the sender Idoc is corrupted
    c) The destination system from XI to sender system is not defined correctly
    d) Sender channel is not configured
    59. While mapping which of these is true ? Can I use different mapping ?
    a) You can use only one mapping at a time
    b) You can use ABAP & JAVA mapping
    c) You can use any mapping in any sequence any number of times
    d) Different mapping can’t be used together
    60. To import the metadata from an R/3 system which of this is true/false ?
    a) The import permitted in Software component need to be selected
    b) You have to create ‘ALE’ Name in SLD
    c) You need to login to the destination (R/3) with a valid user
    d) You need to login to destination(R/3) with a User having administrator rights
    61. You are implementing XI for your customer, you have very good experience
    working in ABAP. While mapping you want to do it in abap, but the option
    available are only ‘Message Mapping’ ‘Java Mapping’ What would you do to
    add the ‘ABAP Mapping’ option. Where would you configure it?.
    a) In Exchange profile
    b) In s/w component
    c) In Integration Repository
    62. From the WSDL description from application server, you can generate ?
    a) Java Proxies only
    b) ABAP proxies
    c) Java and ABAP proxies.
    63. JMS adapter can be used for ?
    a. IBM web sphere MQ
    b. Sonique
    c. Web services
    64. Which of the following is true/false about HTTP plain adapters?
    a. Sender channel is not required to be configured
    b. Receiver channel is not required to be configured
    c. Using this system can directly connect to integration server
    65. You would install Adapter engine de-centrally ?
    a. To install PCK
    b. To monitor the messages de-centrally
    c. To share load with the central adapter engine and increase performance.
    66. To Receive the data using ‘Select with JDBC adapter you would ?
    a. You would configure a receiver channel
    b. you would configure a sender channel
    67. You find that the status in transaction ‘SXI_CACHE’ is
    not equal to 0. Which of the following would you perform?
    a. Check the condition of BP in Integration Repository
    b. Activate the BP in ‘SXI_CHACHE’.
    c. Activate the BP in Integration Directory
    68. Which are the methods that you need to call compulsorily in java mapping ?
    a) execute(), setParameter()
    b) Exit() Systemproperties()
    c) Execute(), SetProperties()
    69. What is the relationship between an integration process and business workflow?
    a) The Business Process Engine is the same as the Workflow Engine.
    b) The Business Process Engine needs external Workflow Engine
    c) Business Process Engine is a new name for Workflow Engine
    70. What are the different types that a container element can be based on?
    a) Simple XSD types : XSD:DATE, XSD:TIME, XSD: INTEGER, XSD: STRING
    b) Abstract Integer
    c) Receiver
    71. Which of the following is true with regards to Container Elements?
    a) Elements of a super container are visible in sub container.
    b) Elements of sub container are visible in super container
    c) Container cannot have super or sub containers
    d) Containers can have multiple elements.
    72. Send message within an integration process to 8 receivers
    at the same time, how can I do this?
    a) Create a FORK statement with 8 branches
    b) Create 8 interfaces
    c) Create a loop with 8 interfaces
    d) Create 8 branches
    73. Which of the following Objects can be used in BPM ?
    a) Context Object
    b) Receiver Determination
    c) Message Mapping
    d) Interface Mapping
    74.Could multiple instances of Integration process run at the same time ?
    a) Yes
    b) No
    75. For ABAP mapping which of the following settings have to be done in Exchange Profile ?
    a) Com.sap.aii.repository.mapping.additionaltypes = R3_ABAP | Abap-class; R3_XSLT | XSL
    b) Com.sap.aii.repository.mapping.additionaltypes = R3_JAVA | Abap-class; R3_XSLT | XSL
    c) Com.sap.aii.repository.mapping.additionaltypes = | Abap-class; R3_XSLT | XSL
    76. How does Boolean functions work in message mappings ?
    a) Boolean functions accept Boolean inputs and result in Boolean values
    b) Boolean functions accept Boolean inputs and result in decimal values
    c) Boolean functions accept Boolean inputs and result in alphanumeric values
    77. While testing message mapping the source message occurs 3 times
    but the target message occurs only once? What can be the reason ?
    a) Target cardinality is not defined sufficiently
    b) Source cannot repeat
    c) Message mapping cannot handle multiple values
    78. What JAR file is required to perform Java mapping ?
    a) aii_map_api.jar
    b) aii_map_api.java
    c) aii_map_aii.jar
    d) None
    79. Collaboration Agreement is made of the following ?
    a) Sender Agreement, Receiver Agreement
    b) Sender Agreement, Sender Communication Channel
    c) Sender Agreement, Receiver Communication Channel
    d) Receiver Agreement, Receiver Communication Channel
    80.What are the three IDOC related transactions in XI ?
    a) IDX9
    b) IDX1
    c) IDX2
    d) IDX5
    e) IDX3
    81.Is EOIO supported by RFC ?
    a) YES
    b) NO
    82. Java Web Start is used for ?
    a) Caching Java applications
    b) to write Java code
    c) to execute Java mapping
    d) to perform JMS connectivity
    83. Where do you define Usage Dependency?
    a) Integration Repository
    b) Integration Directory
    c) SLD
    d) Enterprise Portal
    84. For ABAP mapping which class must be implemented ?
    a) IF_MAPPING
    b) IF_MAPPING_ABAP
    c) MAPPING_ABAP
    d) MAPPING_EXECUTE_ABAP
    85.Component Monitoring in the RWB is used to display
    the monitoring of the following components?
    a) Integration Engine
    b) Adapter Engine
    c) Integration Directory
    d) Integration Repository
    e) Runtime Workbench
    86.Does HTTP adapter support QoS BE?
    a) Yes
    b) No
    87.IDOC adapter supports the following QoS’s?
    a) EO
    b) EOIO
    c) BE
    d) All the above
    88.The Client has decided to user HTTP adapter as Sender.
    Which transaction should be used to configure the HTTP adapter?
    a) SICF
    b) SMICM
    c) SM59
    d) SE80
    89.The following transaction is used to monitor XML messages in XI ?
    a) SXMB_MONI
    b) SM59
    c) SXMB_ADM
    d) SICF
    90.File adapter has the following QoS?
    a) BE
    b) EO
    c) EOIO
    d) BEIO
    91.When FILE adapter as Sender, we do not need Sender agreement ?
    a) Yes
    b) No
    92. File Sender communication channel can be used by only one Sender agreement ?
    a) True
    b) False
    93. SOAP adapter uses the following message protocol:?
    a) SOAP 1.1
    b) SOAP 1.2
    c) SOAP 1.9
    d) SOAP 1.3
    94. Using the following URL we can display the content of CPACache?
    a) http://<host>:<J2EEport >/CPACache
    b) http://<host>:<J2EEport >/AdapterCache
    c) http://<host>:<J2EEport >/CPACatch
    d) http://<host>:<J2EEport >/CPACache/index.html
    95. The following URL can be used to display the Adapter Status in XI ?
    a) http://<host>:<J2EEport >/AdapterFramework
    b) http://<host>:<J2EEport >/AdapterFramework/RFC
    c) http://<host>:<J2EEport >/AdapterFramework/rep
    d) http://<host>:<J2EEport >/AdapterStatus
    96. Which security role need to be assigned to access the CPACache ?
    a) xi_af_cpa_monitoring
    b) xi_af_cache_monitor
    c) xi_af_cpa_monitor
    97. The following URL can be used to manually refresh the CPACache?
    a) http://<host>:<J2EEport >/CPACache/refresh=delta
    b) http://<host>:<J2EEport >/CPACache/refresh?mode=full
    c) http://<host>:<J2EEport >/CPACache/refresh?mode=all
    98. The Objects from repository are accessed from directory using user?
    a) XIDIRUSER
    b) XISUPER
    c) XIAPPLUSER
    d) XIADMIN
    99. Information about the central and decentral Adapter
    Framework installations is maintained in ?
    a) SLD
    b) CLD
    c) IR
    d) ID
    100. Special drivers required for JDBC, JMS adapters can be deployed using ?
    a) SPM (Software Procurement Manager)
    b) SDM (Software Deployment Manager)
    c) SCM (Software Change Manager)
    d) SOM (Software Ownership Manager)

    Hi guys ,
    This is SuryaNarayana . I have collected some faqs from www.**************** but they have no answers please answers these questions
    Questions are releated in to XI-BPM
    1. Business Process Management is concerned with ?
    a. Processes within and across applications
    b. Planned or spontaneous Human interaction
    c. Automating, streamlining, managing business processes
    d. Moving process control from application to technology layer
    e. All of the above
    2. Which open modeling standard ccBPM adheres to?
    a. BPEL
    b. XML
    c. WSDL
    d. None of these
    3. High-Tech industry ccBPM implementation guidelines are known as ?
    a. RosettaNet Implementation Framework
    b. CIDX
    c. Marketpalce
    d. SAP BC
    4. Individual "Swim Lane" in BPM modelling contains ?
    a. Business Scenarios from same company
    b. Business Scenarios from same Application
    5. Different Panes within BPM editor in IR ?
    a. Header
    b. Editing
    c. Process Overview
    d. Property
    e. Output
    f. Object
    g. All of the above
    6. Data Declaration of the Business process can be viewed in ?
    a. Correlation in Object area
    b. Container in Output area
    c. Container in Object area
    d. None of these
    7. Which of these is not Messaging relevant Step type ?
    a. Receive
    b. Send
    c. Transformation
    d. Receiver Determination
    e. Block
    8. Control Step can be used for, except ?
    a. Terminate current process
    b. Trigger an Exception
    c. Trigger an Alert
    d. Define different processing braches for process
    9. Which of the following triggers process to start?
    a. By receiving amessage assinged to receive step
    b. Batch job by scheduling in WAS
    c. Both of these
    d. None of these.
    10. To route response messages to the
    correct process instance, _______ object is used ?
    a. Correlation
    b. Interface
    c. Adapter
    d. Mapping
    11. Correlation handling is handled by ?
    a. BP engine
    b. Integration Engine
    c. Adapter Engine
    d. None of these
    12. Container element can be typecasted to, except ?
    a. simple XSD/XML Schema
    b. Abstract i/f
    c. Receiver
    d. Multilne(vector)
    e. Sender
    13. Outer Container block has container element 'O' and inner Container block
    has container element 'I'. Then which of the following is true?
    a. Both 'O' and 'I' are visible in outer block.
    b. Both 'O' and 'I' are visible in inner block.
    c. Both of these.
    d. None of these.
    14. Simple Fork process step terminates when ?
    a. All branches are true.
    b. All branches are false.
    c. Either true.
    d. Either false.
    15. Collect process pattern types includes ?
    a. Condition
    b. Receiver message
    c. Append message
    d. Increase counter
    e. Merge message
    f. Send message
    g. All
    XI-Releated questions
    1. SAP XI is an Integration technology and platform?
    a) for SAP and non SAP applications.
    b) for A2A and B2B scenarios
    c) for asynchronous and synchronous applications
    d) for cross-component Business Process Management.
    2. XI represents the following layer in the NetWeaver stack:?
    a) People Integration
    b) Information Integration
    c) Process Integration
    3. XI uses the following web standards ?
    a) WSDL
    b) XSD
    c) SOAP
    4. XI components include?
    a) SLD (System Landscape Directory)
    b) Integration Builder
    c) Integration Server
    d) Central Monitoring
    e) Adapter Engine
    5. Integration Builder is a?
    a) Java application
    b) ABAP application
    c) .NET application
    6. Java Web Start is required for?
    a) Caching java clients
    b) Drawing pictures
    c) Connect to SUN systems
    7. SLD is a?
    a) Client application
    b) Server application
    8. XI is technically a client of SLD?
    a) TRUE
    b) FALSE
    9. SLD adheres to?
    a) Common Information Model
    b) Web Services Definition Language
    c) XML Schema Definition Language
    d) XML
    10. Usage of PCK (Partner Connectivity Kit) ?
    a) Allow small partners and subsidiaries to communicate natively with XI
    b) For Partners to connect to database systems7444
    c) Allow Partners to connect to .NET and Java applications
    11. Certain adapters are needed in cases where the Integration Server
    is to exchange messages with an R/3 system based on basis kernel lower than?
    a) 6.10
    b) 6.20
    c) 6.40
    d) 4.5
    12. XI supports the following QoS (Quality of Services)?
    a) BE (Best Effort)
    b) Exactly Once (EO)
    c) Exactly Once In Order (EOIO)
    d) Exactly Twice In Order (ETIO)
    13. QoS BE is equal to ?
    a) Synchronous RFC (sRFC)
    b) Asynchronous RFC (aRFC)
    c) Transactional RFC (tRFC)
    d) Queued RFC (qRFC)
    14. QoS EO is equal to ?
    a) Synchronous RFC (sRFC)
    b) Asynchronous RFC (aRFC)
    c) Transactional RFC (tRFC)
    d) Queued RFC (qRFC)
    15. QoS EOIO is equal to ?
    a) Synchronous RFC (sRFC)
    b) Asynchronous RFC (aRFC)
    c) Transactional RFC (tRFC)
    d) Queued RFC (qRFC)
    16. Adapter Framework is based on ?
    a) JCA (Java Connector Architecture)
    b) NCA (.NET Connector Architecture)
    c) PCK (Partner Connectivity Kit)
    d) WSDL (Web Services Definition Language)
    17. XI Adapter Engine is based on the integrated?
    a) ABAP engine
    b) J2EE engine
    c) .NET engine
    d) JCA (Java Connector Architecture)
    18. Integration Processes are built using?
    a) WSDL (Web Services Definition Language)
    b) BPEL (Business Process Execution Language)
    c) XSD (XML Schema Definition Language)
    d) JCL (Java Connector Language)
    19. Runtime Workbench in XI is the central monitoring tool for the following?
    a) Component Monitoring
    b) Message Monitoring
    c) End-to-End Monitoring
    d) Performance Monitoring
    e) Queue Monitoring
    f) Schedule Monitoring
    20. XI uses enhanced version of SOAP protocol called?
    a) XI XML
    b) XI SOAP
    c) XI XSD
    d) XI PML
    21. What is the cardinality of MESSAGE TYPES : DATA TYPES ?
    a) 1:1
    b) 2:1
    c) 2:2
    d) 1:0
    22. What are the advantages of ASYNCHRONOUS updates?
    a) Acknowledgement can be sent back
    b) Messages can be persisted.
    23. What are the advantages of SYNCHRONOUS updates?
    a) Acknowledgement can be sent back (messages can be persisted with additional configuration)
    b) Messages can be persisted.
    c) Messages cannot be persisted.
    24. What is the Message format used in XI for processing?
    a) Specific implementation of SOAP which is XI XML
    b) JMS
    c) RFC
    d) CIDX
    25. What is an Adapter?
    a) Adapters are used to communicate to Legacy or SAP systems with WAS version < 6.2
    b) Adapters are used to retrieve information from Java, .NET systems
    c) Adapters are used to import IDOC, RFC information.
    26. In the Integration Repository, what is the KEY of an
    object or how can an object be uniquely identified?
    a) SWCV, Namespace, Name
    b) Namespace, Name, Description
    c) Name, Description, SWCV
    d) SWCV, SWCV1, SWCV2
    27. How do you classify NAME SPACE in an R/3 Environment?
    a) Equivalent to function group
    b) Equivalent to development class
    c) Equivalent to function module
    d) Equivalent to BAPI
    28. What is ICM?
    a) Internet Console Manager
    b) Internet Communication Manager
    c) Infrastructure Communication Manager
    d) Intranet Communication Manager
    29. A Customer has WAS 6.2 and has decided to use XI?
    a) He cannot use XI unless WAS 6.2 is upgraded to WAS 6.4
    b) Can use XI with some additional patches
    c) WAS 6.2 already has XI in it. No need of any additional software
    30. What is the name space of an IDOC?
    a) urn:sap-com:document:sap:idoc:messages
    b) urn:sap-com:document:idoc:sap:messages
    c) urn:sap-com:sap.document:idoc:messages
    d) urn:sap-com:document:idoc:messages
    31. What is the name space of an RFC ?
    a) urn:sap-com:document:rfc:sap:functions
    b) urn:sap-com:document:bapi:rfc:functions
    c) urn:sap-com:document:sap:rfc:functions
    d) urn:sap-com:document:remote:rfc:functions
    32. What doesn’t get transported when the configuration is released?
    a) All Objects will get transported
    b) Generated proxies and application coding in the application
    components does not get transported when the configuration is released.
    c) Only application coding will not get transported.
    d) Only generated proxies will not get transported.
    33. How many Pipelines are there in the integration server?
    a) Receiver Identification, Interface Identification, Message Branch,
    Request Message Mapping, Outbound Binding, Call Adapter, Request Message Mapping.
    b) Receiver Identification, Interface Identification, Message Branch,
    Request Message Mapping, Outbound Binding.
    c) Message Branch, Request Message Mapping, Outbound Binding,
    Call Adapter, Request Message Mapping.
    34. What are the possible Trace Levels?
    a) 0 – No Trace,1 – Low Trace Level,2 – Medium Trace Level,
    3 – High Trace Level,4 – Expert Trace Level
    b) 0 – No Trace,1 – Low Trace Level,
    2 – Medium Trace Level,3 – High Trace Level
    c) 10 – Low Trace Level,20 – Medium Trace Level,
    30 – High Trace Level,40 – Expert Trace Level
    35. Does JMS adapter need additional driver to communicate to database?
    a) Yes
    b) No
    c) JMS adapter is not available in XI
    36. What is use of PCK?
    a) Partner Connectivity Kit that helps Partner Systems with no ability
    to communicate in XML speak to the Business Systems.
    b) PCK is used to deploy additional drivers
    c) PCK can be used as an alternative to XI
    37. What is Context Object? What is its role?
    a) Context Objects are pointers to a specific element within the message,
    for future reference. Encapsulate the access to data that is contained
    in the payload or in the header of the message.
    b) Another form of data types
    c) Can be used instead of message types
    38. What adapters don’t need Sender Agreement?
    a) HTTP, IDOC.
    b) IDOC, RFC
    c) IDOC, JMS
    d) JDBC, JMS
    39. What is the Protocol followed for Mail Adapter?
    a) SMTP
    b) IMAP
    c) POP3
    d) POP4
    40. Where do you configure an Adapter?
    a) Sender Agreement
    b) Receiver Determination
    c) Business System
    d) Communication Channel
    41. Can a JDBC adapter query the database table?
    If yes, what are different possibilities?
    a) Yes. You can configure sender and receiver communication channels.
    A special XML format is defined for content coming from the
    Integration Engine. This canonical format enables SQL Insert,
    Update, Select, Delete or stored procedure statements to be processed.
    A message is always processed in exactly one database transaction.
    b) JDBC adapter cannot insert records in the database.
    c) We should not insert, update records in the database directly.
    42. The message monitoring status DLNG means ?
    a) DLNG = Delivering.
    b) DLNG = Dialing
    c) DLNG = Detailing
    d) DLNG = Dismantling
    43. Where do you perform Content Based Routing?
    a) Receiver Determination
    b) Receiver Agreement
    c) Sender Agreement
    d) Communication Channel
    44. What are the various supported mapping types?
    a) Message Mapping, Java Mapping, XSLT Mapping, ABAP Mapping.
    b) XSLT, Java, JDBC, JMS
    c) XSLT, WSDL, XSD
    45. With respect to ABAP proxies,
    what are the methods that can be coded?
    a) EXECUTE_SYNCHRONOUS, EXECUTE_ASYNCHRONOUS.
    b) EXECUTE_SYNCHRONOUS, EXECUTE_ASYNCH.
    c) EXECUTE_SYNCH, EXECUTE_ASYNCH
    46. “ Fields under a node with a minoccurs of ZERO has been mapped.
    ” The values don’t appear in the target result, what could be wrong?
    a) The parent node has not been assigned.
    b) Parent node has cardinality 0…unbounded
    c) Parent node has many fields
    47. What is a SENDER COMM CHANNEL?
    a) Sender Communication Channel is where you define the source system from
    where the message/information goes to XI and also the adapter, the Sender System uses.
    b) Sender Communication Channel is where you define the target system from where
    the message/information goes out of XI and also the adapter, the Receiver System uses.
    c) Sender Communication Channel is where you define the how the
    interface mapping takes place between Sender and Receiver.
    48. XSLT is supported but two statements were not supported. What are they?
    a) <xsd:include>, <xsd:import>
    b) <xsd:including>, <xsd:importing>
    c) <xsd:includes>, <xsd:imports>
    d) All statements are supported.
    49. What steps can be inserted in an Exception branch?
    a) Terminate a process, trigger an alert.
    b) Terminate the interface, trigger IDOC.
    c) Terminate exception, branch integration process.
    50. What is multi mapping? When can it be used?
    a) Multi Mapping is used to map abstract interfaces and can only be used in ccBPM.
    b) Can be used when there are multiple interfaces from Sender systems.
    c) Can be used when there are multiple interfaces from Receiver systems
    51. The first step in the Integration process can be ?
    a) Receive step
    b) fork Step
    c) Send Step
    d) Block Step
    52. An Exception raised by a step can be handled by ?
    a) Only by exception handler in the same step
    b) Only by exception handler in the outer step
    c) By exception handler in the same step or in the outer step
    53. An exception is raised by ?
    a) Async or sync send step, transformation step and Control Step
    b) Sync send step
    c) By control step only
    54. A message can be received by ?
    a) Only a receive step
    b) By receive, fork or loop step
    c) By receive and block step
    d) By send, block and Fork
    55. What are the types of containers ?
    a) Abstract
    b) Simple & Abstract
    c) Simple, Abstract and receiver
    56. Which of these are true/false with user defined functions?
    a) User defined functions are accessible only in the mapping where they are created
    b) User defined functions are visible across namespace
    c) User defined functions accessed in other mapping by copying it to that mapping
    d) User defined functions are accessible in any mapping in a software component version
    57. Java Mapping is executed by implementing the interface ?
    a) com.sap.aii.mapping.api.StreamTransformation
    b) com.sap.api.mapping.StreamTransformation
    c) com.sap.api.mapping.aii.StreamTransformation
    d) com.sap.mapping.api.StreamTransformation
    58. An Idoc has been sent by a sender system to XI, but the idoc is not
    received at the XI system which of these could be true/false ?
    a) The destination system from the sender system to XI is not configured correctly.
    b) The metadata in XI was copied/generated from the sender Idoc is corrupted
    c) The destination system from XI to sender system is not defined correctly
    d) Sender channel is not configured
    59. While mapping which of these is true ? Can I use different mapping ?
    a) You can use only one mapping at a time
    b) You can use ABAP & JAVA mapping
    c) You can use any mapping in any sequence any number of times
    d) Different mapping can’t be used together
    60. To import the metadata from an R/3 system which of this is true/false ?
    a) The import permitted in Software component need to be selected
    b) You have to create ‘ALE’ Name in SLD
    c) You need to login to the destination (R/3) with a valid user
    d) You need to login to destination(R/3) with a User having administrator rights
    61. You are implementing XI for your customer, you have very good experience
    working in ABAP. While mapping you want to do it in abap, but the option
    available are only ‘Message Mapping’ ‘Java Mapping’ What would you do to
    add the ‘ABAP Mapping’ option. Where would you configure it?.
    a) In Exchange profile
    b) In s/w component
    c) In Integration Repository
    62. From the WSDL description from application server, you can generate ?
    a) Java Proxies only
    b) ABAP proxies
    c) Java and ABAP proxies.
    63. JMS adapter can be used for ?
    a. IBM web sphere MQ
    b. Sonique
    c. Web services
    64. Which of the following is true/false about HTTP plain adapters?
    a. Sender channel is not required to be configured
    b. Receiver channel is not required to be configured
    c. Using this system can directly connect to integration server
    65. You would install Adapter engine de-centrally ?
    a. To install PCK
    b. To monitor the messages de-centrally
    c. To share load with the central adapter engine and increase performance.
    66. To Receive the data using ‘Select with JDBC adapter you would ?
    a. You would configure a receiver channel
    b. you would configure a sender channel
    67. You find that the status in transaction ‘SXI_CACHE’ is
    not equal to 0. Which of the following would you perform?
    a. Check the condition of BP in Integration Repository
    b. Activate the BP in ‘SXI_CHACHE’.
    c. Activate the BP in Integration Directory
    68. Which are the methods that you need to call compulsorily in java mapping ?
    a) execute(), setParameter()
    b) Exit() Systemproperties()
    c) Execute(), SetProperties()
    69. What is the relationship between an integration process and business workflow?
    a) The Business Process Engine is the same as the Workflow Engine.
    b) The Business Process Engine needs external Workflow Engine
    c) Business Process Engine is a new name for Workflow Engine
    70. What are the different types that a container element can be based on?
    a) Simple XSD types : XSD:DATE, XSD:TIME, XSD: INTEGER, XSD: STRING
    b) Abstract Integer
    c) Receiver
    71. Which of the following is true with regards to Container Elements?
    a) Elements of a super container are visible in sub container.
    b) Elements of sub container are visible in super container
    c) Container cannot have super or sub containers
    d) Containers can have multiple elements.
    72. Send message within an integration process to 8 receivers
    at the same time, how can I do this?
    a) Create a FORK statement with 8 branches
    b) Create 8 interfaces
    c) Create a loop with 8 interfaces
    d) Create 8 branches
    73. Which of the following Objects can be used in BPM ?
    a) Context Object
    b) Receiver Determination
    c) Message Mapping
    d) Interface Mapping
    74.Could multiple instances of Integration process run at the same time ?
    a) Yes
    b) No
    75. For ABAP mapping which of the following settings have to be done in Exchange Profile ?
    a) Com.sap.aii.repository.mapping.additionaltypes = R3_ABAP | Abap-class; R3_XSLT | XSL
    b) Com.sap.aii.repository.mapping.additionaltypes = R3_JAVA | Abap-class; R3_XSLT | XSL
    c) Com.sap.aii.repository.mapping.additionaltypes = | Abap-class; R3_XSLT | XSL
    76. How does Boolean functions work in message mappings ?
    a) Boolean functions accept Boolean inputs and result in Boolean values
    b) Boolean functions accept Boolean inputs and result in decimal values
    c) Boolean functions accept Boolean inputs and result in alphanumeric values
    77. While testing message mapping the source message occurs 3 times
    but the target message occurs only once? What can be the reason ?
    a) Target cardinality is not defined sufficiently
    b) Source cannot repeat
    c) Message mapping cannot handle multiple values
    78. What JAR file is required to perform Java mapping ?
    a) aii_map_api.jar
    b) aii_map_api.java
    c) aii_map_aii.jar
    d) None
    79. Collaboration Agreement is made of the following ?
    a) Sender Agreement, Receiver Agreement
    b) Sender Agreement, Sender Communication Channel
    c) Sender Agreement, Receiver Communication Channel
    d) Receiver Agreement, Receiver Communication Channel
    80.What are the three IDOC related transactions in XI ?
    a) IDX9
    b) IDX1
    c) IDX2
    d) IDX5
    e) IDX3
    81.Is EOIO supported by RFC ?
    a) YES
    b) NO
    82. Java Web Start is used for ?
    a) Caching Java applications
    b) to write Java code
    c) to execute Java mapping
    d) to perform JMS connectivity
    83. Where do you define Usage Dependency?
    a) Integration Repository
    b) Integration Directory
    c) SLD
    d) Enterprise Portal
    84. For ABAP mapping which class must be implemented ?
    a) IF_MAPPING
    b) IF_MAPPING_ABAP
    c) MAPPING_ABAP
    d) MAPPING_EXECUTE_ABAP
    85.Component Monitoring in the RWB is used to display
    the monitoring of the following components?
    a) Integration Engine
    b) Adapter Engine
    c) Integration Directory
    d) Integration Repository
    e) Runtime Workbench
    86.Does HTTP adapter support QoS BE?
    a) Yes
    b) No
    87.IDOC adapter supports the following QoS’s?
    a) EO
    b) EOIO
    c) BE
    d) All the above
    88.The Client has decided to user HTTP adapter as Sender.
    Which transaction should be used to configure the HTTP adapter?
    a) SICF
    b) SMICM
    c) SM59
    d) SE80
    89.The following transaction is used to monitor XML messages in XI ?
    a) SXMB_MONI
    b) SM59
    c) SXMB_ADM
    d) SICF
    90.File adapter has the following QoS?
    a) BE
    b) EO
    c) EOIO
    d) BEIO
    91.When FILE adapter as Sender, we do not need Sender agreement ?
    a) Yes
    b) No
    92. File Sender communication channel can be used by only one Sender agreement ?
    a) True
    b) False
    93. SOAP adapter uses the following message protocol:?
    a) SOAP 1.1
    b) SOAP 1.2
    c) SOAP 1.9
    d) SOAP 1.3
    94. Using the following URL we can display the content of CPACache?
    a) http://<host>:<J2EEport >/CPACache
    b) http://<host>:<J2EEport >/AdapterCache
    c) http://<host>:<J2EEport >/CPACatch
    d) http://<host>:<J2EEport >/CPACache/index.html
    95. The following URL can be used to display the Adapter Status in XI ?
    a) http://<host>:<J2EEport >/AdapterFramework
    b) http://<host>:<J2EEport >/AdapterFramework/RFC
    c) http://<host>:<J2EEport >/AdapterFramework/rep
    d) http://<host>:<J2EEport >/AdapterStatus
    96. Which security role need to be assigned to access the CPACache ?
    a) xi_af_cpa_monitoring
    b) xi_af_cache_monitor
    c) xi_af_cpa_monitor
    97. The following URL can be used to manually refresh the CPACache?
    a) http://<host>:<J2EEport >/CPACache/refresh=delta
    b) http://<host>:<J2EEport >/CPACache/refresh?mode=full
    c) http://<host>:<J2EEport >/CPACache/refresh?mode=all
    98. The Objects from repository are accessed from directory using user?
    a) XIDIRUSER
    b) XISUPER
    c) XIAPPLUSER
    d) XIADMIN
    99. Information about the central and decentral Adapter
    Framework installations is maintained in ?
    a) SLD
    b) CLD
    c) IR
    d) ID
    100. Special drivers required for JDBC, JMS adapters can be deployed using ?
    a) SPM (Software Procurement Manager)
    b) SDM (Software Deployment Manager)
    c) SCM (Software Change Manager)
    d) SOM (Software Ownership Manager)

  • Aperture creating new versions unexpectedly

    One of my projects in Aperture started behaving unexpectedly yesterday and I still haven't figured out why. I was reviewing proofs with a client and we were making selections and adjustments to some of the images. We were working in a smart album that was filtered on 5-star ratings. We made a few new versions of some of these images within the smart album, made adjustments, and ultimately selected her picks by adding the keyword "pick" to her selected images. In retrospect I probably will change that flow so that when I make my original selects I will rate them as a 4-star and then up it to a 5-star when the client makes their picks.
    But for now, back to the problem. All was going well with the workflow until I tried to rearrange some of the images within the smart album. When I dragged the first image to a new location it created new versions of several images. I think this happened multiple times before I realized what had happened, so before I new it the album was filled with duplicate versions. I deleted the duplicate versions, but I find that they keep cropping up unexpectedly. If I go to the parent project and then return to the smart album, it makes a duplicate version of every image in the album.
    A light table and a book within the project are now also giving me trouble in that they claim to have images in them, but even with all queries turned off they do not show any of the images (and yes, the "show all images" button is selected).
    Any thoughts on what could be wrong?
    G5   Mac OS X (10.4.3)  

    Mmm...I don't think this explanation tells the whole story.
    Dragging an image out of the project container and into an enclosed (non-smart) album does NOT automatically generate a new version of the master image local to that album; instead, the album is populated with a new reference to the original version. Dragging that same image again out of the project container - or the first album - to yet another album generates yet another reference to the same underlying version.
    Edits performed in any of these containers propagate to the images in all containers (within a particular project, of course), demonstrating that each type of container holds merely a reference to the project's single original version.
    The Aperture User Manual is a bit ambiguous in its description (Chapter 5 pg 113) of the distinction between "copying" and "moving" images between projects and albums; I believe that when it refers to copying versions it's really talking about copying REFERENCES to versions between various containers.
    So, long story short, I don't think moving images between the various types of containers within a single project can explain your duplicated images.
    15" Alu PB 1.25GHZ G4 FW800 1GB RAM 100GB HDD   Mac OS X (10.4.6)   Aperture 1.1.1

  • Error while compiling with Flash Builder [FlexSDK4]

    I'm new to Flex 4 .. I have a application which is developed in Flex 3..
    But I'm changing it to flex4.. I'm getting the following error.. Can any one help me how to resolve this..?
    The style 'paddingTop' is excluded by type 'mx.containers.Canvas'.
    Help me to resolve this..
    Thanks in advance,
    Vijay

    That style is not defined for the Canvas.
    http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/mx/containers/Canvas.ht ml?filter_flex=4.1&filter_flashplayer=10.1&filter_air=2

  • Error while creating container Element in WF

    Hi,
    I have created a container element with field vbeln, and specified an initial value. Created mail step and activated it.  I have given the mail subject and content  as "value given : &vbeln&".  When I try to test this I couldn't find the container element in " Input Data" tab  of the Test Data and getting the message as "Contnr elem. VBELN  is for read purposes only. No values are assigned to it." 
    Could anyone suggest me to correct this, because I am new to WF.
    Thanks,
    AA

    Hi AA,
    You would probably need to create more than one containers.
    In workflows, we have following types of containers:
    1. Workflow container
    2. Task Container
    3. Event Container
    Now, since you need the element VBELN, try the following:
    1. Create a WF container for VBELN. Make it as both input and output parameter.
    2. Create a container for the Mail Step, again with VBELN field as an input parameter.
    3. There would be a button for binding in the mailstep. Bind the Field VBELN from Work flow container to the Mail Step container.
    Once binding is done, save it and Activate the Workflow.
    Hope this helps.
    Do get back in case of any issues.
    Regards,
    Sonal

  • Error while using container element _WF_PARFOREACH_INDEX in workflow

    Hi All,
    I am using internal container element WFPARFOREACH_INDEX in internal table so that i can use it as index to read table row one by one..but in binding i am getting error "Container element '_WF_PARFOREACH_INDEX' does not exist" in form of an example.
    Can someone tell me that how to get rid of this error in binding? I am using this element variable to achieve parallel branching in workflow.
    Regards,
    Sumit

    Hi AA,
    You would probably need to create more than one containers.
    In workflows, we have following types of containers:
    1. Workflow container
    2. Task Container
    3. Event Container
    Now, since you need the element VBELN, try the following:
    1. Create a WF container for VBELN. Make it as both input and output parameter.
    2. Create a container for the Mail Step, again with VBELN field as an input parameter.
    3. There would be a button for binding in the mailstep. Bind the Field VBELN from Work flow container to the Mail Step container.
    Once binding is done, save it and Activate the Workflow.
    Hope this helps.
    Do get back in case of any issues.
    Regards,
    Sonal

  • I just updated my mac to Yosemite, after it's done I see that all my "notes" are gone. Is there a way to find them?

    I asked on another website and got this answer:
    – Quit all apps.
    – Press command shift G.
    – Type
    ~/Library/Containers/{not this}com.apple.Notes/Data/Library/Notes
    and then click "Go".
    – Drag "NotesV3.blahblah" to the desktop.
    – Rename "Notes V2.blahblah" to "NotesV3.blahblah"
    So it brought me to the Notes section in the finder. So there are three files: NotesV3.storedata , NotesV3.storedata-shm , NotesV3.storedata-wal Then there is a folder called Backups. In there are similar file names saying V3 but they start with a date (when I made the update?).
    Which files do I move? Nothing seems to say V2...
    Let me know if you need any extra information, I'm pretty lost. Thank you so much!

    I take it you didn't read the warning prior to updating the phone. It said that you need to backup before upgrading. You have two ways. 1) load apps off your old computer. 2) Download apps one at a time. Your apps are still tide to your account and you will not be charged.

  • An Important AS3-based Multi-Platform Framework for Developers and Adobe

    Hello to all developers and to all representatives at Adobe!
    We're all fortunate for Adobe's progressive thinking and their immensely helpful programs to battle against device fragmentation.  In order to advance our efforts, we, as developers, must also permit our creative juices to flow to allow the cup of opportunity to runneth over -- not just for our and Adobe's benefit, but for the benefit of businesses and consumers who demand innovation.
    There are, however, barries in the shape of human form that deter potential developers, businesses, and consumers from embracing and capitalizing on such a powerful platform.  These obstructions aren't only coming from behind walled gardens; unfortunately, they're entrenched within our own camp.
    Ignoring rules of optimization and taking careless shortcuts, combined with not possessing an optimized and simplified alternative to targeting a wide range of browers and devices in one fell swoop, are the ammunition needed for skeptics to plant seeds of doubt about such a useful and future-proof ecosystem.
    Much like any platform and object-oriented programming language, the Flash Platform and ActionScript 3 are powerful weapons that must be wielded with responsiblity, or risk creating wounds that, in the minds of consumers, aren't easily healed.
    And since this is OUR responsibility, I've decided to take on that burden...which then became a challenge...which soon became the innovative answer we so deperately need.
    As an offering to my fellow developers, and as a proposal to Adobe -- the company in which I'm devoted to -- I've created an OOP-based framework that simplifies the process of developing optimized applications that cover a broad spectrum of browsers and devices.
    It's called Cross Model View Controller™, or XMVC™ for short, and it offers the following features:
    -Imagine using one base source code -- which you build just once -- to target a multitude of platforms: from smartphones and tablets, to desktops and browsers, and even to smart televisions.
    -Your concrete View classes determine the layout of components and animations for each targeted device; once your base classes are built, your concrete View classes are the ONLY classes that require alteration (see diagram).
    -Utilize the flexibility of the XMVC UI Components to work across ALL devices and browsers.  You simply specify the platform type (mobile, desktop, browser, or television) in the concrete view classes, and the XMVC UI Components do the rest.
         Example: The XMVC Container (which holds child elements and incorporates scrolling): When set to "mobile," it incorporates touch scrolling; when set to "desktop" or "browser," it incorporates a scroll bar; when set to "television," its scrolling is controlled by remote control directional events, as well as incorporates virtual directional buttons.  And this is all from ONE instance of the XMVC Container component; this eliminates switching out various types of containers for each targeted device.
    -Animations are created using Greensock's TweenMax platform, for lightweight, optimized animations.
    -For complete orientation control, you can assign custom animations for orientation changes.  It even incorporates an Upside Down view for Android devices.
    -You can allow users the preference of turning animations on or off, with a flip of a switch (litteraly).
    -XMVC automatically removes event listeners for better Garbage Collection processing.
    -XMVC accepts various data structures, including XML, PHP/AMFPHP with SQL, SAP, and HTTP Web Services.  It would be incredibly beneficial to allow incorporation of ColdFusion, LiveCycle Data Services, and BlazeDS data structures, as well.
    Necessity is indeed the mother of invention, and possessing and utilizing a powerful tool is necessary to progress our efforts in reaching an abundant amount of individuals and entities.
    The primary functionality of the framework (as displayed in the diagram) is complete; improving and adding additional XMVC components are the primary objective at this point of the development stage.
    Very soon, I will upload the source code to an outlet (such as Google Code) for developers to download and experiment.  Within the same timeframe, anticipate demo apps within App Markets to test on your devices.
    Adobe has such an incredible development community, and my hope is that XMVC provides these developers, as well as Adobe, an incredible amount of leverage to persuade businesses, consumers, as well as other developers to embrace and utilize a platform that can withstand the change of time.
    Imagine businesses excelling beyond their self-imposed barries due to the robustness and flexibility of a platform and framework that can function in any environment.
    Imagine liberating consumers to allow them to use your applications whenever, wherever, and on WHATever they desire.
    Think of the possibilities of quickly submitting applications -- with very little, or no, alterations to your programs -- once device manufacturers like Windows Mobile, webOS, and Symbian finally accept Adobe AIR.
    If there are developers out there who share the same sentiment, and if there are Adobe representatives who find this framework intriguing and effective, by all means, contact me.
    The possiblities are endless...so must be our efforts.
    Onward and upward,
    Adrian-Cortez Jackson
    [email protected]

    Thanks for posting.

  • Flash Movie Tween Displays Off Canvas in Flex

    I have a SWF which plays a tween of a sliding door moving downwards.  I am loading it using SWFLoader and then extracting the content as a MovieClip and playing it.  The intention is that it will occupy the top half of the screen in the Flex app so the size of the SWFLoader has been set accordingly.  I have tried to constrain it in various types of containers but no matter what I do the door slides down into bottom half of my Flex app (obscuring other stuff) even though the flash movie has a size which corresponds to the top half of the window only and plays that way as a standalone movie.
    Any ideas on this?  Surely there must be some way to say "use the following rectangle of the screen and no more".

    Okay.  So I figured it out.  Seems that you have to set clipAndEnableScrolling="true" on the container. Cheers.

  • Flex 4 Mdi canvass, how to set background image..?

    Hi.,
         Now i try to use mdi canvass  background image,how to set  background image in mdi canvass in flex 4..
    With Regards
    LinFlex-

    In the past flex 3 version, there is an attribute call <flexlib:MDICanvas  backgroundImage="@Embed(source='/imgFolder/imgFile.png')/>
    to set it. However it has problem in Flex 4 because of 'halo' and 'spark' theme library changed.
    The following is my post that still haven't found the answer.
    Dear all,
    We  have a project that doing migration from flex 3 to flex 4. We use  flexlib the latest version of
    flexlib - 2.5 - flex4.zip.
    However we  confronted problems that several of attributes that flex 4 doesn't  support:
    Constraints are listed as follows:
    1) <flexlib:MDICanvas  backgroundImage="@Embed(source='/imgFolder/imgFile.png')/>
    2)  <flexlib:MDICanvas backgroundSize="auto"/>
    3)  <mx:ApplicationControlBar barColor="#000000">
    original error message:
    ====================================================
    Description     Resource    Path    Location    Type
    The style 'backgroundImage' is  only supported by type 'flexlib.mdi.containers.MDICanvas' with the  theme(s) 'halo'.    MainView.mxml     /osss/flex_src/hk/gov/labour/osss/view    line 242    Flex Problem
    Description    Resource    Path     Location    Type
    The style 'backgroundSize' is only supported by type  'flexlib.mdi.containers.MDICanvas' with the theme(s) 'halo'.     MainView.mxml    /osss/flex_src/hk/gov/labour/osss/view    line 242     Flex Problem
    Description     Resource    Path    Location    Type
    The style 'barColor' is only  supported by type 'mx.containers.ApplicationControlBar' with the  theme(s) 'halo'.    MainView.mxml     /osss/flex_src/hk/gov/labour/osss/view    line 227    Flex Problem
    Regards,
    Man  Pak Hong, Dave
    manpakhong
    [email protected]

Maybe you are looking for