What is the role of Lns process in oracle 10g data guard

Hi ,
plz help me out to find out the actual working of lns process in oracle 10g data guard
when i use SYNC redo transport
the output of v$managed_stanbdy is like that ..
PROCESS PID STATUS CLIENT_PROCESS GR# SEQ#
ARCH 9258 CLOSING ARCH 2 498
ARCH 9260 CLOSING ARCH 1 499
ARCH 9262 CLOSING ARCH 2 496
ARCH 9264 CLOSING ARCH 1 497
LGWR 9206 CLOSING LGWR 2 482
its not display any info about lns,thats means lns is not working in SYNC redo transport mode ?
but if i changed it to ASYNC then the out put of v$managed_stanbdy is like this ..
PS PID STS CPS GR# SEQ#
ARCH 9258 CLOSING ARCH 1 509
ARCH 9260 CLOSING ARCH 2 510
ARCH 9262 CLOSING ARCH 1 505
ARCH 9264 CLOSING ARCH 2 508
LGWR 9206 CLOSING LGWR 1 503
LNS 10528 CLOSING LNS 2 510
Now it display all the info about lns process...
i read in oracle documentation that lns process send redo data from primary,( through network service ) to RFS on standby side.
but first output means that lns is not working,if not then which process send redo from primary to RFS on standby ?
i also read in some blog that lgwr use some extra buffer size from primary db SGA ,to write redo in that buffer ,ans lns read redo from that buffer and send it to RFS on stanby side,
i m totally confused ..can u plz help me with correct logic behind this .
thanx in advance.

Hello,
On the primary database when you run the v$managed_standby, it shows up the LNS process as this process sends redo info to the standby database and on the standby database the RFS process receives the redo information.
So on the primary database when you query the v$managed_standby, it shows up LNS and on the standby database when you query the v$managed_standby it shows up RFS. Please let us know where you are running the query.
Refer this http://datadisk.co.uk/html_docs/oracle_dg/architecture.htm
969752     
Handle:     969752
Status Level:     Newbie
Registered:     Nov 6, 2012
Total Posts:     9
Total Questions:     2 (2 unresolved)
Name     Hemendra Singh
Location     NoidaPlease consider closing your questions by providing appropriate points and marking it as answered. Please keep the forum clean !

Similar Messages

  • What are the benefits of Grid Computing in Oracle 10G

    hi every one:
    plz tell me what are the benefits of grid computing in oracle 10g.
    thanks
    usman ali

    hi every one:
    plz tell me what are the benefits of grid computing in oracle 10g.
    thanks
    usman ali

  • What is the use of SYSAUX Tablespace in Oracle 10G

    Dear Experts,
    Please Tell me What is the use of SYSAUX Tablespace in Oracle 10G Because
    during Web Load Testing It is going to increase countinuosly.Although i am not using this with any tables.
    How Can I find out the what is gong on in this.
    Can I Remove this tablesspace and other non using Schemas like FLOWS_020100,MDSYS,OUTLN,DIP and TSMSYS etc.

    What is SYSAUX?
    The SYSAUX tablespace provides storage of non-sys-related tables and indexes that traditionally were placed in the SYSTEM tablespace. For example, the tables and indexes that were previously owned by the system user can now be specified for a SYSAUX tablespace. Unfortunately, Oracle still places the SCOTT schema and the other demonstration schemas in the SYSTEM tablespace. Go figure.
    The SYSAUX tablespace is specified with the CREATE DATABASE command. This is demonstrated in the example database creation script in Figure 1.1.
    CREATE DATABASE test
    MAXINSTANCES 1
    MAXLOGHISTORY 1
    MAXLOGFILES 5
    MAXLOGMEMBERS 3
    MAXDATAFILES 100
    DATAFILE '/usr/oracle/OraHome1/oradata/aultdb1/test/system01.dbf' SIZE 300M REUSE AUTOEXTEND ON NEXT 10240K MAXSIZE UNLIMITED
    EXTENT MANAGEMENT LOCAL
    SYSAUX DATAFILE '/usr/oracle/OraHome1/oradata/aultdb1/test/sysaux01.dbf' SIZE 120M REUSE AUTOEXTEND ON NEXT 10240K MAXSIZE UNLIMITED
    DEFAULT TEMPORARY TABLESPACE TEMP TEMPFILE '/usr/oracle/OraHome1/oradata/aultdb1/test/temp01.dbf' SIZE 20M REUSE AUTOEXTEND ON NEXT 640K MAXSIZE UNLIMITED EXTENT MANAGEMENT LOCAL
    UNDO TABLESPACE "UNDOTBS1" DATAFILE '/usr/oracle/OraHome1/oradata/aultdb1/test/undotbs01.dbf' SIZE 200M REUSE AUTOEXTEND ON NEXT 5120K MAXSIZE UNLIMITED
    CHARACTER SET WE8ISO8859P1
    NATIONAL CHARACTER SET AL16UTF16
    LOGFILE GROUP 1 ('/usr/oracle/OraHome1/oradata/aultdb1/test/redo01.log') SIZE 10240K,
    GROUP 2 ('/usr/oracle/OraHome1/oradata/aultdb1/test/redo02.log') SIZE 10240K,
    GROUP 3 ('/usr/oracle/OraHome1/oradata/aultdb1/test/redo03.log') SIZE 10240K
    USER SYS IDENTIFIED BY "password" USER SYSTEM IDENTIFIED BY "password";
    Oracle10g sysaux
    With the new SYSAUX tablespace, Oracle comes closer to providing all the needed tablespaces for a truly OFA-compliant database right out of the box. With just one CREATE DATABASE command we can specify the SYSTEM tablespace, the TEMPORARY tablespace, the AUXSYS tablespace, the default UNDO tablespace, and the redo logs.
    Of course, with the Oracle Managed Files option you can create an entire database with a single command, but the database created is not suitable for production use and is not OFA-compliant.
    The SYSAUX tablespace is required in all new 10g databases. Only the SYSAUX tablespace datafile location is specified. Oracle specifies the remainder of the tablespace properties including:
    online
    permanent
    read write
    extent managment local
    segment space management auto
    If a datafile is specified for the SYSTEM tablespace, then one must be specified for the SYSAUX tablespace as well. If one is not specified, then the CREATE DATABASE command will fail. The only exception is for an Oracle Managed File system.
    During any update of a database to Oracle Database 10g, a SYSAUX tablespace must be created or the upgrade will fail. The SYSAUX tablespace has the same security profile as the SYSTEM tablespace. However, loss of the SYSAUX tablespace will not result in a database crash, only the functional loss of the schemas it contains.
    Can I drop SysAux?
    DROP DATAFILE
    Read this...

  • Find the roles granted on tables in oracle 10g

    Hi,
    I need to find what roles granted to what tables in a schema. I try to query dba_tab_privs but this will give what roles granted to tables, but i want to find what tables are missing these roles in a schema?
    any help is appreciated.
    Thanks...

    789287 wrote:
    i have another scenario where i have 2 different schemas such as TEST_A ans TEST_B. here TEST_B. at TEST_B user have 2 roles B_query and b_update and granted these roles to TEST_B user.
    TEST_A need to access the TEST_B objects, when i grant the A_QUERY, A_UPDATE to TEST_A user. then i login as TEST_A user to access the TEST_B objects gets an eror object doesn't exist.
    i dont want to grant privileges directly on to the TEST_B objects to TEST_A user. is there anyway i can accomplish this through the role?
    i thought it would appropriate to ask the question here rather opening a thread.
    Thanks...consider to actually post the actual SQL & complete error response from Oracle.
    How do I ask a question on the forums?
    SQL and PL/SQL FAQ

  • As a abap programmer what is the role in ale/idoc.

    hi guru.
    i am a abap programmer. please tell me<b> what is the role of abap programmer
    in ale/ idoc.</b>
    regards.
    subhasis.

    Hi,
    ALE  is Application Link Enabling.
    ALE
    A means of creating and operating distributed applications.
    Application Link Enabling (ALE) guarantees a distributed, but integrated, R/3 installation. This involves business-controlled message exchange using consistent data across loosely linked SAP applications.
    Applications are integrated using synchronous and asynchronous communication - not by using a central database.
    ALE consists of the following layers:
    Application services
    Distribution services
    Communication services
    Refer
    http://www.sappoint.com/abap/ale.pdf
    http://www.sappoint.com/abap/ale2.pdf
    Check this link ALE and EDI
    ABAP Programmer must know how to create inbound n outbound interfaces to send IDOCs through ALE.
    Please refer to the details mentioned in the hyper-links beow.
    You will get the details how to go about it.
    To see the IDOC & status check it in WE02/WE05
    You will get step by step process.
    ABAP Development
    http://www.sapgenie.com/sapedi/idoc_abap.htm
    http://www.netweaverguru.com/EDI/HTML/IDocBook.htm
    http://www.allsaplinks.com/idoc_sample.html
    http://www.geocities.com/xplosion78/customised_ALE_IDOC_BY_SACHIN_DABHADE.zip
    http://help.sap.com/saphelp_45b/helpdata/en/35/b0ea5187a62488e10000009b38f9b7/content.htm
    http://help.sap.com/saphelp_erp2005/helpdata/en/c4/6bc368fef411d28d0900104b56737d/frameset.htm
    ABAP Development
    Follow below steps to create custom IDOC.
    1.Create segments through transaction WE31.
    2.Create IDoc Type through transaction WE30 by attaching created segments.
    3.Message type through transaction WE81.
    4.Link Idoc and message type in WE82 transaction.
    Check the transaction WEDI for ALE settings
    Check these links for more details on IDoc's:
    ALE/ IDOC
    http://help.sap.com/saphelp_erp2004/helpdata/en/dc/6b835943d711d1893e0000e8323c4f/content.htm
    http://www.sapgenie.com/sapgenie/docs/ale_scenario_development_procedure.doc
    http://edocs.bea.com/elink/adapter/r3/userhtm/ale.htm#1008419
    http://www.netweaverguru.com/EDI/HTML/IDocBook.htm
    http://www.sapgenie.com/sapedi/index.htm
    http://www.sappoint.com/abap/ale.pdf
    http://www.sappoint.com/abap/ale2.pdf
    http://www.sapgenie.com/sapedi/idoc_abap.htm
    http://help.sap.com/saphelp_erp2005/helpdata/en/0b/2a60bb507d11d18ee90000e8366fc2/frameset.htm
    http://help.sap.com/saphelp_erp2005/helpdata/en/78/217da751ce11d189570000e829fbbd/frameset.htm
    http://www.allsaplinks.com/idoc_sample.html
    http://www.sappoint.com/abap.html
    http://help.sap.com/saphelp_erp2004/helpdata/en/dc/6b835943d711d1893e0000e8323c4f/content.htm
    http://www.sapgenie.com/sapgenie/docs/ale_scenario_development_procedure.doc
    http://edocs.bea.com/elink/adapter/r3/userhtm/ale.htm#1008419
    http://www.netweaverguru.com/EDI/HTML/IDocBook.htm
    http://www.sapgenie.com/sapedi/index.htm
    http://www.allsaplinks.com/idoc_sample.html
    ALE/ IDOC/ XML
    http://www.sapgenie.com/sapgenie/docs/ale_scenario_development_procedure.doc
    http://www.thespot4sap.com/Articles/SAP_XML_Business_Integration.asp
    http://help.sap.com/saphelp_srm30/helpdata/en/72/0fe1385bed2815e10000000a114084/content.htm
    IDOC Convertion
    /people/kevin.wilson2/blog/2005/12/07/changing-fields-in-an-idoc-segment
    http://www.intelligententerprise.com/channels/applications/feature/archive/kasturi.jhtml
    Hope this will help.
    Regards,
    Priyanka.

  • What is CTS ? what is the role of CTS in between DEV and QAS?

    Dear
    What is CTS ? what is the role of CTS in between DEV and QAS?
    Thanx & Regards
    Mohamamd Nabi
    [email protected]

    hello, friend.
    actually, you can search for subjects like this in the threads archive.  you will be pleasantly surprised to find that there are already many threads with similar issues and that you can find answers to even more otherwise unrealized questions.  and you don't have to wait for anyone to reply.
    it looks like the issue is urgent for you, and this is why i am attaching this feed from Sadhu Kishore, which was posted some time ago... (if he replies to your thread, you may choose to award him points).
    "Hi,
    The transport workflow provides a framework for transporting enhancements or new developments of existing business functions in a system landscape. It provides a direct connection between development and transport administration. The transport workflow manages the transport process, determines the user for each individual step automatically, and then displays an interface which they can use to perform the task directly.
    It is an efficient method of transporting a selected number of requests into a group of transport targets, and uses clearly defined approval steps to ensure the quality of your target systems. The requests can be transportable change requests, Customizing requests, relocation transports or transports of copies. The transport targets do not need to be located on defined transport routes. However, the transport workflow can involve some risks, caused by the dependencies between transport requests:
    Import sequence
    It is important that you import requests in the correct order, so that development work is up-to-date in the target system.
    Incompleteness
    It is important that the functions transported in the transport proposal are complete; otherwise errors may occur in the import system.
    A request is not imported, but it contains an important data element. You use another request to transport a table that references this data element. Since the referenced data element does not exist in the target system, activation errors will occur when you import the second request.
    The transport workflow is a generic workflow. Its ability to process the transport route configuration in TMS enables it to adapt itself to any system landscape. This means you can transport multiple requests into multiple targets, even if these targets are not located on the transport routes.
    This reduces the amount of work for the transport administrator significantly. The automated nature of the workflow also reduces the likelihood of errors during transports.
    You can use the transport workflow in two different ways.
    Transport workflow as a transport strategy
    If you have production systems in your landscape that can only accept approved transports, we recommend that you use the transport workflow to organize and coordinate the transport process.
    To do this, set Workflow-controlled transports as your transport strategy and configure the transport workflow.
    When you release a transport request, the transport workflow starts automatically and the screen Create Transport Proposal appears. The requests are then released implicitly when the transport proposal is sent to the transport administrator.
    Special transport workflow (mass transports)
    You can use the special transport workflow to make transports that do not follow the defined transport routes or that take place outside the normal transport schedule (part of the mass transport strategy). These transports may be corrections made in the development system that have to be transported into the production system without delay.
    To use the special transport workflow, set Mass transports as your transport strategy and configure the transport workflow."
    thanks.  you have been most generous.
    regards.

  • What is XI ? What are the role of an XI Consultant ?

    Hi Everybody,
    I am presently working as an ABAP Consultant since 3 years.Thinking for XI.
    <b>Can anybody tell me about XI.
    What are the role of an XI Consultant ?
    Is it a good option for an ABAPer ?</b>
    <b>Reward is assured</b>
    <b>Thanks in advance</b>
    Srikanta Gope

    <b>What is SAP XI?</b>
    SAP Exchange Infrastructure is SAP’s platform for process integration based on the exchange of XML messages.
    1. It provides a technical infrastructure for XML based message exchange in order to connect SAP components with each other as well as with non-SAP components.
    2. It delivers business process integration knowledge to the customer in the form of SAP pre-defined business scenarios.
    3. It provides an integrated tool set for building new business scenarios by defining and maintaining all integration relevant information. (“Shared collaboration knowledge”).
    Before we take a closer look at how the Exchange Infrastructure will enter into the IT landscape of every SAP customer, let’s take a closer look at the capabilities as well as the strategic direction of XI. This particular module of Net Weaver is one of the most powerful and is undeniably the most critical. Its purpose is really three-fold:
    Connect:
    XI has the ability to connect all applications regardless of whether it is an application
    From a 3rd party or from SAP. The solution has pre-built connectivity to all SAP modules
    Such as SAP CRM and utilizes the Adapter Framework to integrate 3rd Party solutions
    such as Siebel, People Soft, Legacy systems, or AS/400s and Mainframes.
    Coordinate:
    XI has the ability to define a path/workflow for each business transaction that is
    Integrated. The system actively routes each message to ensure that it is properly
    Delivered from the source to the target destination. Active monitoring allows
    Administrators to manage document exchange on an exception basis.
    Communicate:
    XI has the ability to translate files into any format whether an internal file format or any
    Business to Business integration standard including but not limited to an XML format, an
    EDI format, a marketplace, or a Web Service. Finally, there are multiple communication
    Protocols included which allow the routing of a file over protocols such as s/FTP, http/s,
    SOAP, ebMS, Value-Added Networks, or EDI INT (AS1, AS2).
    Understanding The SAP Exchange Infrastructure_
    Now, you might be saying to yourself, we already have solutions that provide all of this
    Functionality. True, most organizations have invested previously in an integration strategy, but what we see in over 90% of organizations is that they have multiple translators and communication brokers, which they are supporting on a daily basis. This is both a resource drain as well as a monetary drain. For example, it is not uncommon to see the following even in smaller organizations:
    • Multiple Point to Point connectivity: For example, R/3 connected to a 3rd party
    Warehouse Management Solution via an internally developed adapter or with the SAP
    Business Connector
    • A 3rd party EAI Integration Broker to connect legacy mainframe systems to SAP and
    WMS
    • A 3rd party EDI translator to communicate messages
    • A 3rd party XML broker to communicate XML messages to marketplaces and non-EDI
    Trading partners
    • A communication server that focuses on sending messages via FTP, Value-Added
    Networks and Internet protocols such as AS2 solution of choice for SAP end users
    Interface-
    <b>Role of XI consultant</b>
    As a SAP XI Developer you will be required to : Gather requirements, develop specifications and technical documentation. Perform requirement analysis and high and low level design. Perform the coding, testing and integration mapping Interface with onsite / offshore project teams ,sometimes responsible for developing java applications based on clients requirement specifications, preparing the technical design document, creating prototypes, analyzing and identifying performance bottle-necks, providing technical and user documentation and training to client, providing relevant data to the Module Leader for status reports both.
    <b>It's a good option to switch to XI</b>
    regards,
    srinivas
    <b>*reward for useful answers*</b>

  • What is the role of JSP in jsf

    hi..i am learning jsf now..ofteni use jsp files to dipslay out put or process the tags..really want to know what is the role of jsp here

    http://www.javaworld.com/javaworld/jw-12-2004/jw-1213-jsf.html

  • What is the role of java in the netweaver platform

    Hi All
    sapnetweaver platform is the integration of the java and abap.then what is the role of java in that netweaver platform
    regards
    Sunil

    Hi Sunil,
            Java makes Sap NetWeaver more powerfull than it was before.
           One of the new additions to the Java functionality of NetWeaver includes the Java Virtual Machine container technology. This will allow standard Java code to run on a framework around the Java Virtual Machine itself. It does this by reducing the number of parallel users per virtual machine. It also improves on the overall memory consumption, the application stability and the number of affected users in the event of a screen freeze, loss of data or the need for re-keying of information.
          The JVM technology also includes several added features designed to assist developers in managing error resolutions. This includes the ability for developers to switch a user process in the production system in or out of debugging mode on the fly allowing for minimum downtime. While also including tracing and monitoring tools for error analysis and hopefully a quick resolution.
             So now, not only does NetWeaver offer support for such standards as HTTP, XML, Web services and of course ABAP, but now it also offers support for Java. All of this adds to SAP’s future interoperability with such applications as Microsoft .NET and IBM WebSphere.
             Now that SAP NetWeaver supports Java we will start to see a real positive impact in the marketplace for those who are in search of a cost-effective means to deploy and manage Java applications in their enterprise and small businesses. For companies of all sizes looking for a way to adapt quickly to market changes, respond to unforeseen challenges and to seize new opportunities, SAP NetWeaver is a tool that is worth looking into.

  • What is the Role of ABAPer in SAPCRM Implementation

    Hi ABAPers,
    I am working in SAPCRM Implementation Project.What is the Role of the ABAPers in SAPCRM Implementation.
    Thanks & Regards,
    Ashok.

    Hi M Ashok,
    writing ABAP code, I assume
    Honestly: One big construction site is interface with SAP and other systems. The second is implementing BADIs to make the freely-configurable processes work.
    Last not least: Get used to GUIDs (
    <a href="http://en.wikipedia.org/wiki/GUID">Globally Unique Identifier</a>).
    Regards,
    Clemens

  • While doing fi integration with mm & sd what is the role as a fi consultant

    Dear Friends Good Morning,
    While doing FI Integration with MM & SD what is the role as a FI Consultant?
    Plese let me  know what is the configuration need?  plese reply me as early as possible
    its veryhelpful for me.
    Thanks in advance,
            babu

    Hi
    As a FI Consultant should know the FI-MM & FI-SD Integration process.   The following Q&A will be useful and FI Consultant has to configure both MM & SD related process based on the requirement.
    FI-MM-SD Integration
    FI MM account determination:
    FI MM settings are maintained in transaction code OBYC. Within these
    there are various transaction keys to be maintained like BSX, WRX,
    GBB, PRD etc. In each of these transaction keys you specify the GL
    accounts which gets automatically passed at the time of entry.
    Few examples could be: BSX- Stands for Inventory Posting Debit
    GBB-Standsfor Goods Issue/Scrapping/delivery
    of goods etc
    PRD- Stands for Price Differences.
    Q: what level is the FI-MM, FI-SD account determination settings?
    A: They are at the chart of accounts level.
    Q: What are the additional settings required while maintaining or
    creating the GL codes for Inventory accounts?
    A:  In the Inventory GL accounts (Balance sheet) you should switch on the
    u2018Post automatically onlyu2019 tick. It is also advisable to maintain the
    aforesaid setting for all FI-MM accounts and FI-SD accounts. This helps
    in preserving the sanctity of those accounts and prevents from having
    any difference between FI and MM, FI and SD.
    Q: What is Valuation and Account assignment in SAP?
    A: This is actually the link between Materials Management and Finance.
    The valuation in SAP can be at the plant level or the company code level.
    If you define valuation at the plant level then you can have different
    prices for the same material in the various plants. If you keep it at the
    company code level you can have only price across all plants.
    Valuation also involves the Price Control .Each material is assigned to a
    material type in Materials Management and every material is valuated
    either in Moving Average Price or Standard Price in SAP. These are the
    two types of price control available.
    What is Valuation Class?
    The Valuation Class in the Accounting 1 View in Material Master is the
    main link between Material Master and Finance. This Valuation Class
    along with the combination of the transaction keys (BSX,WRX,GBB,PRD )
    defined above determine the GL account during posting.
    We can group together different materials with similar properties by
    valuation class. Eg Raw material,Finsihed Goods, Semi Finished
    We can define the following assignments in customizing :
    All materials with same material type are assigned to just one valuation
    class.
    Different materials with the same material type can be assigned to
    different valuation classes.
    Materials with different material types
    Q:  What is the accounting entry in the Financial books of accounts
    when the goods are received in unrestricted use stock? Also
    mention the settings to be done in the u2018Automatic postingsu2019 in SAP
    for the specific G/L accounts.
    A:  On receipt of the goods in unrestricted-use stock, the Inventory account
    is debited and the GR/IR account gets credited. In customization, in the
    automatic postings, the Inventory G/L account is assigned to the
    Transaction event key BSX and the GR/IR account is assigned to the
    Transaction event key WRX.
    Q:  How do you configure FI-SD account determination?
    The FI-SD account determination happens through an access sequence.
    The system goes about finding accounts from more specific criteria to
    less specific criteria.
    This is the sequence it would follow:
    1) It will first access and look for the combination of Customer
    accounts assignment grp/ Material account assignment grp/
    Account key.
    2) If it does not find the accounts for the first combination it will look
    for Customer account assignment grp and account key
    combination.
    3) Furthermore, if it does not find accounts for the first 2 criteriau2019s
    then it will look for Material account assignment grp/Account key.
    4) If it does not find accounts for the all earlier criteriau2019s then finally it
    will look for Account key and assign the GL code.
    Thus posting of Sales Invoices into FI are effected on the basis of a
    combination of Sales organization, Account type, or Customer and
    Material Account assignment groups and following are the options
    available.
    a. Customer AAG/Material AAG/Account type
    b. Material AAG/Account type
    c. Customer AAG/Account type
    For each of this option you can define a Gl account. Thus the system
    uses this gl account to automatically pass the entries.
    All the best.
    Regards
    GB

  • What is the Role of R/3 BASIS administrator in SAP-APO

    Hi can any one tell me, what is the role of a BASIS admin. in SAP-APO. Please list the responsibilities. 
    Thanks in advance.
    Regards,
    bompally.

    Thank you very much manish,
    Actually I am a BASIS admin. I want to explore the BASIS -APO administration side. What do you suggest on this.
    Please provide me some more information on the following also.
    CIF Performance Questions.
    What is CIF?
    1) Check and ensure that same qRFC versions and supplements are used in both R/3 and APO Side. Make sure that latest available qRFC Version and supplement is being used.
    2) Review the Integration models used currently and identify if they can be reorganized to reduce the duplication?
    3)Review the background processes for Activation and generation of the integration models.
    4)Identify if there are any bottlenecks in the CIF queues.
    5)Review the process of transferring the Product/Material master changes? Are the change pointers being used or BTE's?
    6)Review and check the schedule of the following background jobs: (Which transaction we use to do these functions?)
    Deleting old integration models?
    Deleting old application logs.
    Processing of change pointers.
    Deletion of old change pointers.
    Live Cache consistency Check jobs.
    Planning area consistency checks.
    Reorganize OMS Data (/SAPAPO/OM_REORG_DAILY and /SAPAPO/OM_DELETE_OLD_SIMSESS)
    7)Monitor the QRFC Tables-ARFCSSTATE, ARFCSDATA, ARFCRSTATE,
    TRFCQDATA, TRFCQIN, TRFCQOUT and TRFCQSTATE.
    8)Monitor the Optimization server performance.
    Thanks and Regards,
    Pradeep

  • What are the roles we have in XI ?

    what are the roles we have in XI ?

    Hi Durga prasad,
    HI
    XI Developer:
    Starts from technical specification
    Create design and configuration objects- execute unit tests
    Support integration/stress tests
    Document the developments
    Responsibilities for a support project :
    Responsibilities for a support project depends on Project.
    But in general u have to Monitor SXMB_MONI, SMQ2, SMQ1 & RBW for Error Message.If there is any error u have to find the reason of error.
    Then either u can resend it or u have to cancel it.
    In IDOC scenarios most of the time Error comes bcoz IDOC comes with blank values for required Fileds & then Mapping fails........... in such cases u have to cancel that message & tell R3 ppl to resend the IDOC.
    Then some times messages get stuck in queuesu have to resend them.
    SAP XI AUTHORIZATIONS :
    Role: SAP_XI_Developer
    u2022 SAP_XI_DEVELOPER (Composite)
    u2022 SAP_SLD_DEVELOPER
    u2022 SAP_XI_DEMOAPP
    u2022 SAP_XI_DEVELOPER_ABAP
    u2022 SAP_XI_DEVELOPER_J2EE
    Notes:
    No access to the Administration of the XI Tools URL,
    ABAP
     SXI_CACHE to view the cache but not refresh it
     SXMB_MONI
     SPROXY
     SXMB_IFR
     SXMB_ADM
     SLDCHECK
     SLDAPICUST
    SLD
     create/change Technical /Business System
     create Software Catalog (Product/Software Component Version)
     create/change Development (Name Reservation, Content Browser, Class Browser).
    REPOSITORY
     import SWCV (Software Component Version) from SLD
     create new namespace under a SWCV
     create/change new or existing Integration Scenarios and Integration Processes because the Software Component cannot be changed
     create/change new or existing Interface Objects because the Software Component cannot be changed
     create/change new or existing Mapping Objects because the Software Component cannot be changed
     create/change new or existing Adapter Objects
    DIRECTORY
     transfer integration scenario from Repository
     create/change Party
     create/change Service Without Party
     create/change Service Receiver Determination
     create/change Service Interface Determination
     create/change Service Sender Agreement
     create/change Service Receiver Agreement
    RWB
     Component Monitoring
     Message Monitoring
     Performance Monitoring
     Alert Configuration
     Alert Inbox
     Cache Monitoring Role: SAP_XI_Configurator
    u2022 SAP_XI_CONFIGURATOR (Composite)
    u2022 SAP_SLD_CONFIGURATOR
    u2022 SAP_XI_BPE_CONFIGURATOR_ABAP
    u2022 SAP_XI_CONFIGURATOR_ABAP
    u2022 SAP_XI_CONFIGURATOR_J2EE
    u2022 SAP_XI_DEMOAPP
    Notes:
    No access to the Administration of the XI Tools URL
    ABAP
     SXI_CACHE to view the cache but not refresh it
     SXMB_MONI
     SPROXY
     SXMB_IFR
     SXMB_ADM
     SLDCHECK
     SLDAPICUST
    SLD
     create/change Technical /Business System
     create Software Catalog (Product/Software Component Version)
     create/change Development (Name Reservation, Content Browser, Class Browser).
    REPOSITORY
     import SWCV (Software Component Version) from SLD
     create new namespace under a SWCV
     create/change new or existing Integration Scenarios and Integration Processes because the Software Component cannot be changed
     create/change new or existing Interface Objects because the Software Component cannot be changed
     create/change new or existing Mapping Objects because the Software Component cannot be changed
     create/change new or existing Adapter Objects
    DIRECTORY
     transfer integration scenario from Repository
     create/change Party
     create/change Service Without Party
     create/change Service Receiver Determination
     create/change Service Interface Determination
     create/change Service Sender Agreement
     create/change Service Receiver Agreement
    RWB
     Component Monitoring
     Message Monitoring
     Performance Monitoring
     Alert Configuration
     Alert Inbox
     Cache Monitoring
    Role: SAP_XI_ADMINISTRATOR
    u2022 SAP_XI_ADMINISTRATOR (Composite)
    u2022 SAP_ALM_ADMINISTRATOR
    u2022 SAP_ALM_CUSTOMIZER
    u2022 SAP_SLD_ADMINISTRATOR
    u2022 SAP_XI_ADMINISTRATOR_ABAP
    u2022 SAP_XI_ADMINISTRATOR_J2EE
    u2022 SAP_XI_BPE_ADMINISTRATOR_ABAP
    u2022 SAP_XI_DEMOAPP
    Notes: Has access to the Administration of the XI Tools URL (This should be Basis Only)
    ABAP
    u2022 Has access to SXI_CACHE to view the cache but not refresh it
    u2022 Has access to SXMB_ADM
    u2022 Has access to SXMB_MONI
    u2022 Has access to SPROXY
    u2022 Has access to SXMB_IFR
    u2022 Has access to SLDCHECK
    u2022 Has access to SLDAPICUST
    SLD
    u2022 Can create/change Technical /Business System
    u2022 Can create/delete Software Catalog (Product/Software Component Version)
    u2022 Can create/change Development (Name Reservation, Content Browser, Class Browser).
    REPOSITORY
    u2022 Can import SWCV (Software Component Version) from SLD and delete from Repository
    u2022 Can create new namespace under a SWCV
    u2022 Can create/change new or existing Integration Scenarios and Integration Processes
    u2022 Can create/change new or existing Interface Objects
    u2022 Can create/change new or existing Mapping Objects
    u2022 Can create/change new or existing Adapter Objects
    DIR
    u2022 Can transfer integration scenario from Repository
    u2022 Can create/change Party
    u2022 Can create/change Service WithoutParty
    u2022 Can create/change Service Receiver Determination
    u2022 Can create/change Service Interface Determination
    u2022 Can create/change Service Sender Agreement
    u2022 Can create/change Service Receiver Agreement
    RWB
    u2022 Can access Component Monitoring
    u2022 Can access Message Monitoring
    u2022 Can access Performance Monitoring
    u2022 Can access Alert Configuration
    u2022 Can access Alert Inbox
    u2022 Can access Cache Monitoring Role: SAP_XI_CONTENT_ORGANIZER
    u2022 SAP_XI_CONTENT_ORGANIZER (Composite)
    u2022 SAP_SLD_ORGANIZER
    u2022 SAP_XI_CONTENT_ORGANIZER_ABAP
    u2022 SAP_XI_CONTENT_ORGANIZER_J2EE
    Notes: No access to the Administration of the XI Tools URL
    ABAP
    u2022 No access to SXI_CACHE
    u2022 No access to SXMB_ADM
    u2022 No access to SXMB_MONI
    u2022 No access to SPROXY
    u2022 Has access to SXMB_IFR
    u2022 No access to SLDCHECK
    u2022 No access to SLDAPICUST
    SLD
    u2022 Can create/change Technical /Business System
    u2022 Can create/delete Software Catalog (Product/Software Component Version)
    u2022 Can create/change Development (Name Reservation, Content Browser, Class Browser).
    REPOSITORY
    u2022 Can import SWCV (Software Component Version) from SLD and delete from Repository
    u2022 Can create new namespace under a SWCV
    u2022 Can create/change new or existing Integration Scenarios and Integration Processes
    u2022 Can create/change new or existing Interface Objects
    u2022 Can create/change new or existing Mapping Objects
    u2022 Can create/change new or existing Adapter Objects
    DIR
    u2022 Can transfer integration scenario from Repository
    u2022 Can create/change Party
    u2022 Can create/change Service WithoutParty
    u2022 Can create/change Service Receiver Determination
    u2022 Can create/change Service Interface Determination
    u2022 Can create/change Service Sender Agreement
    u2022 Can create/change Service Receiver Agreement
    RWB
    u2022 Can access Component Monitoring
    u2022 Can access Message Monitoring
    u2022 Can access Performance Monitoring
    u2022 Can access Alert Configuration
    u2022 Can access Alert Inbox
    u2022 Can access Cache Monitoring
    Role: SAP_XI_DISPLAY_USER
    u2022 SAP_XI_DISPLAY_USER (Composite)
    u2022 SAP_SLD_GUEST
    u2022 SAP_XI_DISPLAY_USER_ABAP
    u2022 SAP_XI_DISPLAY_USER_J2EE
    Notes: No access to the Administration of the XI Tools URL
    ABAP
    u2022 Has access to SXI_CACHE but cannot refresh cache
    u2022 Has display access to SXMB_ADM
    u2022 Has access to SXMB_MONI
    u2022 Has access to SPROXY
    u2022 Has access to SXMB_IFR
    u2022 Has access to SLDCHECK
    u2022 No access to SLDAPICUST
    SLD
    u2022 Cannot create/change Technical /Business System
    u2022 Cannot create/delete Software Catalog (Product/Software Component Version)
    u2022 Cannot create/change Development (Name Reservation, Content Browser, Class Browser).
    REP
    u2022 Cannot import SWCV (Software Component Version) from SLD and delete from Repository
    u2022 Cannot create new namespace under a SWCV
    u2022 Cannot create/change new or existing Integration Scenarios and Integration Processes
    u2022 Cannot create/change new or existing Interface Objects
    u2022 Cannot create/change new or existing Mapping Objects
    u2022 Cannot create/change new or existing Adapter Objects
    DIR
    u2022 Cannot transfer integration scenario from Repository
    u2022 Cannot create/change Party
    u2022 Cannot create/change Service WithoutParty
    u2022 Cannot create/change Service Receiver Determination
    u2022 Cannot create/change Service Interface Determination
    u2022 Cannot create/change Service Sender Agreement
    u2022 Cannot create/change Service Receiver Agreement
    RWB
    u2022 Can access Component Monitoring
    u2022 Can access Message Monitoring
    u2022 Can access Performance Monitoring
    u2022 Can access Alert Configuration
    u2022 Can access Alert Inbox
    u2022 Can access Cache Monitoring Role: SAP_XI_MONITOR
    u2022 SAP_XI_MONITOR (Composite)
    u2022 SAP_SLD_GUEST
    u2022 SAP_XI_BPE_MONITOR_ABAP
    u2022 SAP_XI_DEMOAPP
    u2022 SAP_XI_MONITOR_ABAP
    u2022 SAP_XI_MONITOR_J2EE
    Notes: No access to the Administration of the XI Tools URL
    ABAP
    u2022 Has access to SXI_CACHE and refresh cache
    u2022 No access to SXMB_ADM
    u2022 Has access to SXMB_MONI
    u2022 Has access to SPROXY
    u2022 Has access to SXMB_IFR
    u2022 No access to SLDCHECK
    u2022 No access to SLDAPICUST
    SLD
    u2022 Cannot create/change Technical /Business System
    u2022 Cannot create/delete Software Catalog (Product/Software Component Version)
    u2022 Cannot create/change Development (Name Reservation, Content Browser, Class Browser).
    REP
    u2022 Cannot import SWCV (Software Component Version) from SLD and delete from Repository
    u2022 Cannot create new namespace under a SWCV
    u2022 Cannot create/change new or existing Integration Scenarios and Integration Processes
    u2022 Cannot create/change new or existing Interface Objects
    u2022 Cannot create/change new or existing Mapping Objects
    u2022 Cannot create/change new or existing Adapter Objects
    DIR
    u2022 Cannot transfer integration scenario from Repository
    u2022 Cannot create/change Party
    u2022 Cannot create/change Service WithoutParty
    u2022 Cannot create/change Service Receiver Determination
    u2022 Cannot create/change Service Interface Determination
    u2022 Cannot create/change Service Sender Agreement
    u2022 Cannot create/change Service Receiver Agreement
    RWB
    u2022 Can access Component Monitoring
    u2022 Can access Message Monitoring
    u2022 Can access Performance Monitoring
    u2022 Can access Alert Configuration
    u2022 Can access Alert Inbox
    u2022 Can access Cache Monitoring
    cheers
    reward points if found useful

  • What are the roles & responsibilities of SAP MDG Functional Consultant?

    Dear experts,
    Please explain What are the roles & responsibilities of SAP MDG Functional Consultant?
    Regards
    Adhi,

    Hello Adhi
    There is no limit to explore in MDG. As a functional consultant you are responsible for -
    1. Defining scope of MDG
    2. Set up governance process - Workflow
    3. Configuration - MDG (Activate services - functions / role set up / Data modelling / process modelling / replication set up ) - You have to involve in each of these activities with technical. You can also do it on your own.
    4. Testing - end to end testing and training
    5. Cut over activities - data load etc
    In these areas, you have to contribute 100% and work with entire team (tech) for set up.
    As mention, you can explore a lot in MDG.
    Kiran

  • What is the role of payroll area

    Hai,
    Exactly what is the role of payroll area in payroll as well as time.

    Hi Devi,
    A Payroll Area is an Accounting Area where you classify your employees to get their Payroll.
    Further a Payroll Area fulfills two functions that are necessary for Payroll.
    These are:
    -It groups together personnel numbers that are to be processed on the same day.
    -It determines exact Payroll Period.
    For Ex: If you want to run Payroll for Salaried employees and Industrial Workers, you define
    different Payroll Areas seperately with different Pay Periods.
    (Ex. One Payroll ARea for Salaried on 1st of Every month and other for Industrial workers
    on 15th of every month)
    And also this is very important for capturing time data with Payroll.
    Hope this will give you clarity.
    Regards,
    Ahmed

Maybe you are looking for

  • Material document 4900000006 does not include an accounting document

    Hi guys I created normal sales order, delivery and and released it thr VF01. Then I created the RE document without order reference and PGR. But while checking the accounting documents in VL02N it gives the error as follows Material document 49000000

  • Kernel panics after 10.6.8 update

    I installed 10.6.8 via software update on my MBP 17 2.6Ghz (2008? The model before unibody) and now I get kernel panic any time I plug in a mouse (wired or wireless) in the usb port or try and use a BT mouse. It appears to only be a problem with mice

  • Opening a servlet in new browser window

    Does anyone know how you can make a servlet open in a a new browser window when clicking a link for that servlet. cheers

  • Sar command to find out total percentage of memory utilisation for a day.

    Hi, I am in a process of taking last 10 days average percentage of memory, CPU and Disk utilisation in solaris8. Can any one help me regarding in this. I found sar command and I got the details of CPU by using #sar -u -f sa23 command. For memory If I

  • Download Chart?

    I would like to export/download the chart generated in APEX to PowerPoint or Word document. Is there a way to accomplish it? Thanks, Yivon