Checklist in XI

Hi All,
How to make checklist in XI for project point of view.
Please send me sample checklist.
regards
sai

Hi Sai,
There are many checklist available on XI and it can also be desinged as per the project requirement. However please some of the checklist which may be helpful for you in regards to XI:
Checklist - Making Correct Use of an Integration Process:
https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/98d06d5a-0401-0010-c7a5-ca3dad5a3cfc
Checklist: Making Correct Use of Mappings:
http://help.sap.com/saphelp_nw04/helpdata/en/d5/be364296f1b26be10000000a155106/frameset.htm
Checklist: Making Correct Use of Correlations:
http://help.sap.com/saphelp_nw04/helpdata/en/6d/94364296f1b26be10000000a155106/frameset.htm
Checklist: Making Correct Use of Dynamic Processing:
http://help.sap.com/saphelp_nw04/helpdata/en/ce/bb2c421f3fda2ce10000000a1550b0/frameset.htm
Regards,
Subhasha

Similar Messages

  • Sir, We have around 500 items as Insurance Spares in the stores. These spares are checked once in 6 months for their healthiness, storage, etc with a special checklist. We want this checklist an schedule in SAP ( MM). How to do it? Please help.

    Sir, We have around 500 items as Insurance Spares in the stores. These spares are checked once in 6 months for their healthiness, storage, etc with a special checklist. We want this checklist an schedule in SAP ( MM). How to do it? Please help.We are presently doing it as similar to PM schedule ( PM module) but want it in MM module.

    Hi Prerna
    Please refer the this doc ...it might help you
    http://www.erptips.com/Samples/ERPtips-SAP-Training-Manual-SAMPLE-CHAPTER-from-Basic-Quality-Management.pdf
    and kindly update the status if it works or not
    Regards
    Partha

  • Unit testing checklist

    Does anybody have any document which describes a checklist for unit testing for BW queries and also infoproviders.Please mail the document to [email protected]
    Thanks in advance.

    Hey Martin
    Can u please send me that document too,,
    As v vll be in testing phase in no time
    That will be of great help
    My id is [email protected] or [email protected]
    Points are assured
    Thanks

  • How to resolve most of the Oracle SQL , PL/SQL Performance issues with help of quick Checklist/guidelines ?

    Please go thru below important checklist/guidelines to identify issue in any Perforamnce issue and resolution in no time.
    Checklist for Quick Performance  problem Resolution
    ·         get trace, code and other information for given PE case
              - Latest Code from Production env
              - Trace (sql queries, statistics, row source operations with row count, explain plan, all wait events)
              - Program parameters & their frequently used values
              - Run Frequency of the program
              - existing Run-time/response time in Production
              - Business Purpose
    ·         Identify most time consuming SQL taking more than 60 % of program time using Trace & Code analysis
    ·         Check all mandatory parameters/bind variables are directly mapped to index columns of large transaction tables without any functions
    ·         Identify most time consuming operation(s) using Row Source Operation section
    ·         Study program parameter input directly mapped to SQL
    ·         Identify all Input bind parameters being used to SQL
    ·         Is SQL query returning large records for given inputs
    ·         what are the large tables and their respective columns being used to mapped with input parameters
    ·         which operation is scanning highest number of records in Row Source operation/Explain Plan
    ·         Is Oracle Cost Based Optimizer using right Driving table for given SQL ?
    ·         Check the time consuming index on large table and measure Index Selectivity
    ·         Study Where clause for input parameters mapped to tables and their columns to find the correct/optimal usage of index
    ·         Is correct index being used for all large tables?
    ·         Is there any Full Table Scan on Large tables ?
    ·         Is there any unwanted Table being used in SQL ?
    ·         Evaluate Join condition on Large tables and their columns
    ·         Is FTS on large table b'cos of usage of non index columns
    ·         Is there any implicit or explicit conversion causing index not getting used ?
    ·         Statistics of all large tables are upto date ?
    Quick Resolution tips
    1) Use Bulk Processing feature BULK COLLECT with LIMIT and FOR ALL for DML instead of row by row processing
    2) Use Data Caching Technique/Options to cache static data
    3) Use Pipe Line Table Functions whenever possible
    4) Use Global Temporary Table, Materialized view to process complex records
    5) Try avoiding multiple network trips for every row between two database using dblink, Use Global temporary table or set operator to reduce network trip
    6) Use EXTERNAL Table to build interface rather then creating custom table and program to Load and validate the data
    7) Understand Oracle's Cost based Optimizer and Tune most expensive SQL queries with help of Explain plan
    8) Follow Oracle PL/SQL Best Practices
    9) Review tables and their indexes being used in the SQL queries and avoid unnecessary Table scanning
    10) Avoid costly Full Table Scan on Big Transaction tables with Huge data volume,
    11) Use appropriate filtration condition on index columns of seeded Oracle tables directly mapped to program parameters
    12) Review Join condition on existing query explain plan
    13) Use Oracle hint to guide Oracle Cost based optimizer to choose best plan for your custom queries
    14) Avoid applying SQL functions on index columns
    15) Use appropriate hint to guide Oracle CBO to choose best plan to reduce response time
    Thanks
    Praful

    I understand you were trying to post something helpful to people, but sorry, this list is appalling.
    1) Use Bulk Processing feature BULK COLLECT with LIMIT and FOR ALL for DML instead of row by row processing
    No, use pure SQL.
    2) Use Data Caching Technique/Options to cache static data
    No, use pure SQL, and the database and operating system will handle caching.
    3) Use Pipe Line Table Functions whenever possible
    No, use pure SQL
    4) Use Global Temporary Table, Materialized view to process complex records
    No, use pure SQL
    5) Try avoiding multiple network trips for every row between two database using dblink, Use Global temporary table or set operator to reduce network trip
    No, use pure SQL
    6) Use EXTERNAL Table to build interface rather then creating custom table and program to Load and validate the data
    Makes no sense.
    7) Understand Oracle's Cost based Optimizer and Tune most expensive SQL queries with help of Explain plan
    What about using the execution trace?
    8) Follow Oracle PL/SQL Best Practices
    Which are?
    9) Review tables and their indexes being used in the SQL queries and avoid unnecessary Table scanning
    You mean design your database and queries properly?  And table scanning is not always bad.
    10) Avoid costly Full Table Scan on Big Transaction tables with Huge data volume,
    It depends if that is necessary or not.
    11) Use appropriate filtration condition on index columns of seeded Oracle tables directly mapped to program parameters
    No, consider that too many indexes can have an impact on overall performance and can prevent the CBO from picking the best plan.  There's far more to creating indexes than just picking every column that people are likely to search on; you have to consider the cardinality and selectivity of data, as well as the volumes of data being searched and the most common search requirements.
    12) Review Join condition on existing query explain plan
    Well, if you don't have your join conditions right then your query won't work, so that's obvious.
    13) Use Oracle hint to guide Oracle Cost based optimizer to choose best plan for your custom queries
    No.  Oracle recommends you do not use hints for query optimization (it says so in the documentation).  Only certain hints such as APPEND etc. which are more related to certain operations such as inserting data etc. are acceptable in general.  Oracle recommends you use the query optimization tools to help optimize your queries rather than use hints.
    14) Avoid applying SQL functions on index columns
    Why?  If there's a need for a function based index, then it should be used.
    15) Use appropriate hint to guide Oracle CBO to choose best plan to reduce response time
    See 13.
    In short, there are no silver bullets for dealing with performance.  Each situation is different and needs to be evaluated on its own merits.

  • Migrating from 10g to 11g checklist

    Hi,
    we are migrating from oracle 10.2.0.4.0 to 11g. we have Apex 3.1.2.00.02 installed in 10g.Will migrating to 11g will have any issues in our applications?.i have read that what comes with 11g is apex 3.0.
    it would be so helpful if you could give a checklist/steps on migarting to 11g.
    Many Thanks,
    Cklp.

    Thank you Shay. I tried to migrate our application to 11g without choosing Trinidad, when I want to deploy it i get follwoing exception
    eblogic.application.ModuleException: Failed to load webapp: 'enlogixcis'
         at weblogic.servlet.internal.WebAppModule.prepare(WebAppModule.java:393)
         at weblogic.application.internal.flow.ScopedModuleDriver.prepare(ScopedModuleDriver.java:176)
         at weblogic.application.internal.flow.ModuleListenerInvoker.prepare(ModuleListenerInvoker.java:199)
         at weblogic.application.internal.flow.DeploymentCallbackFlow$1.next(DeploymentCallbackFlow.java:517)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
         Truncated. see log file for complete stacktrace
    Caused By: java.lang.ClassNotFoundException: oracle.adf.view.faces.webapp.ResourceServlet
         at weblogic.utils.classloaders.GenericClassLoader.findLocalClass(GenericClassLoader.java:297)
         at weblogic.utils.classloaders.GenericClassLoader.findClass(GenericClassLoader.java:270)
         at weblogic.utils.classloaders.ChangeAwareClassLoader.findClass(ChangeAwareClassLoader.java:64)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:248)
         Truncated. see log file for complete stacktrace
    there is adf-faces-impl.jar in path when I open its I see following
    Manifest-Version: 1.0
    Ant-Version: Apache Ant 1.5.3
    Created-By: Apache Maven
    Built-By: asghosh
    Package: oracle.adfinternal.view.faces
    Build-Jdk: 1.4.2_16
    Extension-Name: adf-faces-impl
    Specification-Title: ADF Faces Implementation
    Specification-Vendor: Oracle Corporation
    Implementation-Title: oracle.adfinternal.view.faces
    Implementation-Vendor: Oracle Corporation
    Implementation-Version: 10_1_3_4_0
    it seems it is for app server 10.1.3.4

  • Checklist for SAP BI 7.0 and BO XI 3.1 integration - Challenges

    Hi Users who have successfully configured SAP BO XI 3.1 with SAP BI 7.0,
    We are preparing to install SAP Integration Kit and follow through on the steps (..that I have come across in some of the docs on these forums ) that would enable our users to report using BO - Webi.
    I would like to know what are the major challenges you have faced ? How did you resolve them or get around them?
    I would like to know who are all the mandatory technical people  (eg., sap security guy, BO admin,... ) that needs to be a part of this effort. What would be their specific role ? When would each of these guys come into the scope without whom we cant do this successfully?
    What would be the basic checklist of things , hardware /software (eg., Service Pack #, SAP Notes, Universe version,..) that would go along with SAP BO XI 3.1 and SAP BI 7.0 that we would have to do before/while installing Integration Kit make our job as smooth as possible?
    What are the DONT's and DO's of this work?
    How to make sure the this process is optimized / justified (performance wise, ..)?
    Are there any specific documents which shows the screenshots of this whole process end to end (i.e.,successfully install, configure, create/design the 1st Universe in BO based on BEx query, create the 1st query in BO, create the 1st report in BO, let the user view/edit/modify the report)?
    Responses from anyone who has gone through all these steps smoothly & successfully (which might include tips, tricks) are greatly appreciated.
    Thank you in advance.

    SP18 should be OK.  We're at SP19.  Again, a fair number of MDX related OSS Notes in SP20 and 21.  Some integration enhancements are only being made to EHP1, so if you do apply SP, you might as well go to EHP1, e.g. Thomas Zureks has a couple of blogs on some of the enhancements
    /people/thomas.zurek/blog/2009/03/06/better-performance-for-universe-based-access-to-bw
    /people/thomas.zurek/blog/2009/03/16/faster-universe-based-access-to-bw-via-mdx
    There are good things coming in WebI later in 2009. Of great interest to BW / WebI customers I think will be a feature called Query Stripping that is supposed to come in WebI SP3.  In BEx, you can create a query with many free characteristics, which really provides the query user with a guided ad-hoc capability, where they can pull any of the free characteristics into a report.  BEx does not include free characteristics in the generated SQL until the user specifically adds it to their report, so there is there is no performance impact of having several free characteristics available for use.  This lets you have one BEx query that is extremely versatile.
    A WebI document on the other hand, includes all objects in the query in the generated SQL, even though they are not actually used in a report.  With query stripping, if the object is not used in the report, WebI can (as an option) remove references the the object(s) from the generated SQL.  This gives you the same potential in WebI, to create a query with many objects in it, abd the user can drag them in / out of the report, providing you the ability to create one WebI query that can be the basis for for much more reporting.

  • Numbers 09 not working - I can open the program but only a few files are available, missing blank, checklist and many others. e.g  when I click on a file I get this error: The document "nmbtemplate is invalid. The index.xml file is missing. help.

    Please let me know what I can do to get my Numbers (iWork 09) working properly again.
    Here is what is going on:
    Numbers in iWork 09 not working can't access Blank, Checklist and many other files within Numbers.   I can open the program but only a few files are available. When I click on the file (which also has no icon just the name of the file) this warning appears:
    The document "Blank.nmbtemplate" is invalid.  The index.xml file is missing.
    I recently had to get a new hard drive installed and had the system upgraded and more memory put in by a Mac certified specialist recommended to me from the Apple store in Northbrook because this was the 3rd time my drive went bad but this time it was to old (I got the IMAC- in 2007) and the Apple store could no longer work on it this time so they recommended a few places that had certified Mac specialists.  Since then Numbers is not working right.
    I'm sure it's something simple to fix, but I've tried re installing it and that didn't work.  Appreciate any help.
    Thanks
    AppMare

    There is one way its getting fixed. Once I update my Adobe Illustrator CC to Adobe Illustrator CC 2014 it is further allowing me to go into the system folder and allocate the font to the file so that it can replace it. My only concern now is that our MAC partners who will receive these files back from us have Adobe CS6. We will down save it to CS6 but I hope they won't experience any font issues because of us using CC 2014? Any light you can shed on this?

  • How can I create a checklist in Pages (not Numbers) ?

    Hello all,
    Just curious if ANYONE out there has figured out how to implement a checkable checklist in Pages.  I am familiar with the Checklist template in Numbers, but it is not very pretty, for lack of a better word.  I need to create a stylish checklist in Pages that I can email out to employees, they can fill out, and send back.  Any suggestions?
    (I am also familiar with the check boxes in the Image Bullets section of Inspector, but it is too complicated for some of my less tech-savvy employees to go change the bullet for each line they need to check off - not to mention a hassle.  The intuitive thing would be for them to be able to simply click on the empty box, at which point a check would appear.  Please help.)
    Thank you!
    Jen

    The clean soluce is to build your own template matching your taste in Numbers.
    Yvan KOENIG (VALLAURIS, France) samedi 23 avril 2011 11:06:02

  • About to Upgrade MBP...... Checklist Review Appreciated ;)

    Hey Everyone,
    I'm finally getting my first mac - a late 2011 13" MBP from a co-worker (who has retina ****) for a little less than a refurb - and am contemplating (well, preparing) to do an upgrade. [kind of ironic, one of the reasons I'm dumping BYOPC for a Mac is so that I don't have to worry about taking the time to do upgrades and the odd problems that sometimes result, eating away hours, and so I can outsource all my computer problems to the genius folks, but here I am doing upgrades to save a measly few $100.....]
    First, I have some experience with this upgrades - I've done BYOPC for over a decade now, going through at least 5 systems, and used to be an apprentice admin, doing constant HDD/RAM switches on multiple machines on a SunOS network (back in the days when wooly mammoths walked the earth - but I'm not old enough to remember dinosaurs   ). 
    Anyway, it's a stock 4GB+HDD 13" late 2011 MBPl, and I'm looking to upgrade to a 128GB OCZ Vertex 4 SSD, and then 8GB RAM (one then the other.....).  A checklist is in order - would someone mind going over it to confirm that I haven't messed something up terribly?   
    I will be taking out the existing HDD (which has nothing of my own on it) without backing anything up on it.  
    What I will be getting:
    1. SSD:  128GB OCZ Vertex 4 SSD (Vertex 4 VTX4-25SAT3-128G 128GB SATA 6.0GB/s Internal Solid State Drive (SSD) with Indilinx Everest 2 Controller from Microcenter)
    Q: Bare SSD, without additional cables, brackets, Norton Ghost, etc.  is what I want, yes?
    2. Memory: Corsair 8GB DDR3-1333 (PC3-10600) CL9 Dual Channel SO-DIMM Laptop Memory Kit (Two 4GB Apple Memory Modules), again from Micro center
    Q: Corsair's mac memory is fine, yes?
    3. T6 torx screwdriver
    4. standard phillips head screwdriver
    5. Spudger
    Q: this is all I need, and I don't need anything else, yes?
    What I will be doing:
    a. Removing HDD and replacing with SSD
    http://www.ifixit.com/Guide/Installing-MacBook-Pro-13-Inch-Unibody-Late-2011-Har d-Drive/7656/1
    b. installing MacOS onto the SSD
    http://www.ifixit.com/Guide/Installing-Mac-OS-X-v10-5-Leopard/751/1
    c. Once above is confirmed to work, installing RAM:
    http://www.ifixit.com/Guide/Installing-MacBook-Pro-13-Inch-Unibody-Late-2011-RAM /7651/1
    Q: those lists are all I need, yes? 
    Final Question:
    Finally, re: SSDs: is there any advantage for the Samsung 830 vs. the OCZ Vertex 4?  Only thing I can think of is if the whole thing goes south the folks at the Genius bar *might* be willing to work with the Samsung since it's allegedly what's in the 15" Retina.  Also, is crucial vs. OCZ vs. Samsung (or for that matter any other SSD), assmuing similar specs?  From what I've researched, OCZ Vertex 4 seems to be generally as good as the others.   Thanks,
    Marc

    Marc, in addition to the other suggestions, I would recommend a static wirst strap, you can even make one with a length of flexible wire and an aligator clip.  Srip a length of wire long enough to wrap around your wrist, attach an aligator clip to the other end, and use that to attach yourself to the metal, power supply contact, or something else while working.  A lot of people just recommend touching the metal before starting but a wrist strap makes life a lot simpler by keeping you at the same static potential as the computer the entire time your fingers are inside.
    There have been several great comments about Corsair memory the past few weeks...haven't seen anyone complain about it so looks like a good choice.  Right up there with Crucial and OWC.
    Good luck and have a good time with your computer.

  • Looking for a customizable, shared checklist app

    Im an HVAC contractor and Im looking for a "checklist" type app that will allow me to update the status of my quarterly service contracts in real time. Must be able to share this info in real time to all my techs as well as be customizable so that I can enter customer sites, frequency and materials needed.

    the default font size for the comboBox is 10, going any small
    would make it hard on users to see. but if you still want to
    proceed... give your comboBox an instance name, like my_cbx. then
    paste this on the frame(by clicking the frame then opening the
    actions panel) that the comboBox resides on.
    my_cbx.setStyle("fontSize", 8); // 8 would be the new
    size..

  • Error when attaching checklist reference to cProject structure

    Hi,
    I have created a checklist template for cProjects. When attaching the checklist reference to a cProject project I am able to select the checklist, but when pressing the continue button, I get an error message:
    The following error text was processed in the system: Invalid parameters were transferred when calling.
    The termination type was: RABAX_STATE
    When checking the runtime error in ST22 the Exeption is CX_DPR_FATAL_ERROR.
    The ABAP call stack was:
    Method: CHECK_TEMPLATE_FOR_REFERENCING of program CL_DPR_CHECKLIST_T============CP
    Method: DO_ACTION_SET_REF_CHECKLIST of program CL_DPR_API_CHECKLIST_R========CP
    Method: DO_ACTION of program CL_DPR_API_CHECKLIST_R========CP
    Method: IF_DPR_PROVIDER_ACTION~DO_ACTION of program CL_DPR_API_APPLICATION_OBJECT=CP
    Method: DO_ACTION of program CL_DPR_API_BUSINESS_OBJECT====CP
    Method: IF_DPR_PROVIDER_ACTION~DO_ACTION of program CL_DPR_API_BUSINESS_OBJECT====CP
    Method: IF_DPR_CORE_SERVICE_PROVIDER~DO_ACTION of program CL_DPR_API_CPROJECTS_CSP======CP
    Method: IF_DPR_CORE_SERVICE_ACCESSOR~DO_ACTION of program CL_DPR_API_CORE_SERVICE_MNGR==CP
    Method: REPORT_ACTIONS of program CL_DPR_UI_CHANGE_MANAGER======CP
    Method: REPORT_ACTION of program CL_DPR_UI_LOG_DETAIL==========CP
    What could cause this problem? I have checked the SAP notes related to this. There seem to be some problems with summary tasks (note 1014441) and roles (notes 1023248, 878905), but my error messages seem to be different.
    Iu2019m using SAP RPM 4.5 (CPR xRPM 450_700: Support package 0009)
    Any help appreciated

    Did you replicate the datasource ?

  • SD checklist when creating a new company code

    Hello All,
    Can you Pls suggest what is the SD checklist to be followed while creating a new company code..
    Regards,
    Sree.

    Hi Biswas/Arif/Madhu,
    Thanks for your help. First of all ...I am doing this as a proof of concept in a training instance. So, I can mess it as much as I can.
    As you all mentioned I created a Company by copying an existing Company in EC01 (which is the T code of the screen that comes from the IMG navigation specified by Madhu). At that point system performed some copying tasks for some time and I guess my New Company got all the G/L Account, Chart Of Accounts from the old (they might not be relevant to the new company, which i will change later).
    But my follow up question is ...after all this, I expected to see the new company code in OMSY screen. But  I didn't. Why?
    TIA.
    Subra.

  • BADI while changing the checklist item

    Hi,
    We have a requirement to update the 'Result' in the additional data tab of a checklist item based on the status of the checklist item.
    Which BADI can be used so that the result field can be updated while a user saves the project after making changes to the checklist status.
    I had a look at badi's like DPR_ATTRIBUTES, DPR_EVE_DASHBOARD.... I am not sure which one would serve this purpose.
    Regards,
    Simmi

    Hi Simmi,
    I think BAdI DPR_EVENTS is the one you are looking for. With this one you can react on status changes for a given object.
    Best regards,
    Thomas

  • Business requirement Questioneer/checklist for New Company Code Creation

    Experts,
    Can anyone provide Business requirement Questioneer/ Checklist or  say all the factors to be considered for New Company Code Creation from user's point of view.
    this questioneer we will send to User department to specify all the requirements and add if required.
    Eg; Fiscal year definition, Posting period, Doc. types, etc. 
    Please provide full list to be considered before we go ahead.
    - Nilesh

    Dear Vivek,
    Actually I need the factors to be considered while defining Co. Code settings.
    All such factors which will guide us (SAP Team) how to design parameters in the Co. Code.
    We will send this questioneer to User Department to fill up and on that basis we will conclude our design Parameters.
    Please help.
    - Nilesh

  • Solution readiness or Relaization phase checklist for FICO

    Hello Gurus,
    Would some one have or know where I can find a checklist of action items one needs to ensure during the solution readiness or realization phase.
    For example:
    1) GL account numbering
    2) Document numbers
    3) Cost center numbering etc
    Thanks

    Any takers for this query?
    I think I need to take care of the following items but please feel free to add more in the list:
    u2022     GL account numbering
    u2022     Cost element numbering
    u2022     Cost center numbering
    u2022     Profit center determination
    u2022     Payment terms determination
    u2022     Assignment of check and payment advice forms
    u2022     FSV
    u2022     Assets number range
    u2022     Internal order number range
    u2022     settlement number range
    u2022     master data (GL Accounts, Cost Elements, Cost Centers, Profit Centers)
    u2022     Tax Codes
    u2022     Posting period variant
    u2022     Reports
    u2022     Bank master data
    u2022     Lockbox data

  • BW Upgrade Plan  3.1C  To BI 7.0 (Procedure and Checklist)

    Hi Friends,
    Pls send the template for BW Upgrade Plan 3.1C  To BI 7.0 (Procedure and Checklist)/Document. I need the exact & accurate SAP Standard Template/document. I searched SAPHelp 
    /https://websmp110.sap-ag.de/instguides . could n't find any thing for this.Pls send it to 
    :[email protected]
    ***PS: Only accurate replies will get full points**
    Regards
    CSM Reddy

    Reddy,
    please chck out
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/2e8e5288-0b01-0010-2ea8-bcd4df5084a7
    a hwo to on BI7.0 upgrade .. also as suggested check out the BW upgrade roadmap on the support portal..
    Hope it helps..
    Arun
    Assign points if helpful

Maybe you are looking for