BI Implementation Questionnaire

Hi All,
Do we have any SAP BI implementation/ feasibility study questionnaire.
If you let me know where we can find one, it will be of great help
Thanks & Regards,
Pushpa

HI,
Search in SAP Bestpractices.

Similar Messages

  • E-Recruiting - how to implement questionnaires in candidate profile?

    Hello experts,
    has anyone experience in how to implement questionnaires into the container sequences of the candidate profile (for internal as well as external candidates)?
    I think, I know all the necessary tables (T77RCF_CS_ID, -_SEQ and -_ITEM), have also studied the IMG, but simply don´t get it.
    Thanks in advance.
    Greetings,
    Florian

    Hello,
    as I said you can just solve it out of the front end within the registration workflow, or the candidate status change workflow.
    So it is just possible to do this via a correspondence activity and not via the standard front end.
    From the correspondence you can jump back to a front end application. But it is not possible to integrate it into a startpage.
    If the candidate filled out a questionnaire (trm activity), then  you can search on those questionnaires and its answers via the talent pool search. Prerequisite is, that the questionnaire is assigned to a trm activity (Assigned to NA).
    There is no possibility handling pool candidates as applications. You will always have problems looking at each pool candidate. The talent pool is just meant to be a pool of candidates you can search on.

  • Regarding Implementation Questionnaire

    Hi All,
    Currently iam assigned in an Implementation Project,where i have to start,right from the scratch..I should ask my client regarding their sales process..can i get any standard SD questionnaire ,which will cover all the required SD questions to ask the clients.It is just like a Q&A DB,but it should be in own format..can u please provide any links regarding this..
    Help is needed from Implementation Experts..It is very urgent..
    Thanks in advance..
    Regards..
    Yogi...

    Hi,
    First of all you get all the information from customer what exectly he wants. Aftet getting the info from customer then you go in service.sap.com and download implementation guide. Reade it and implement accordingly.
    Your all the query will be solved in this guide.
    Regards,
    Anil

  • Implementation questionnaire

    I'm about to start working on a implementation project. Its from the scratch. im aware of the ASAP methodology. Could any one provide me a questionnarie which needs to be discussed with the business to gather requirements. What i mean is like if we need to know the requirements on MRP,then what all questions need to be raised with the buiness. Like wise anybody can provide all such questions for PP module.
    In the above example for MRP broadly it would be like whether they have a MTS or MTO, then how is the PIR arrived at either by forecast or not. Then how could be the consumption of PIR, forward, backward etc.
    Planning horizon, then Net requirement or gross requirement.

    Functionality Matrix will help you come up with questions to be asked.
    Following would be some of the high level questions -
    What level of product variation exists?
    Do co-products and by-products result during the manufacture of this product?
    How predictable or controllable is the process?
    What is your normal production volume?
    How do you manage your production u2013individual orders or collectively?
    What demands does the costing department have on the manufacturing process?
    What level of interaction does the QM department have with the process?
    What level of re-engineering are you expecting from the use of SAP?
    How is the plant maintenance (PM) function integrated with manufacturing (resource availability)?
    The abpve questions will break down into many sub questions.
    Hope this helps you.

  • Implementation questionnaires

    hi
    This is Ramesh. i am in starting of implementation project. can you just tell me what type of questions should be asked in client interaction for Technicle (Basis) requirements (prepare phase, blueprint, realisation and golive)
    thanks
    Ramesh

    Hi Ramesh
    SAP delivers ASAP Roadmaps in service market place and u can go through it from (http://service.sap.com/roadmaps).
    Phase 1: Project Preparation: During this phase the team goes through initial planning and preparation for SAP project.
    Phase 2: Business Blueprint:The purpose of this phase is to achieve a common understanding of how the company intends to run SAP to support their business. The result is the Business Blueprint, a detailed documentation of the results gathered during requirements workshops.
    Phase 3: Realization:The purpose of this phase is to implement all the business process requirements based on the Business Blueprint. The system configuration methodology is provided in two work packages: Baseline (major scope); and Final configuration (remaining scope).
    Phase 4: Final Preparation: The purpose of this phase is to complete the final preparation (including testing, end user training, system management and cutover activities) to finalize your readiness to go live. The Final Preparation phase also serves to resolve all critical open issues. On successful completion of this phase, you are ready to run your business in your live SAP System.
    Phase 5: Go Live & Support:The purpose of this phase is to move from a project-oriented, pre-production environment to live production operation.
    Regards
    Anilsai

  • Q&A DB for CRM

    Hello,
    I wanted to look for the Q&A DB in the Solution Manager but was not able to find a transaction where to call it. I found the transaction SQADB01 where you can maintain Questions but i was not able to find the applications/scenarios to which the questions belong.
    Is there a possibility to create a pre-implementation questionnaire out of these questions or how else can they be used?
    Thanks in advance and best regards.
    Thorsten

    Hi,
    Check this SPRO path
    SAP Solution Manager --> Scenario-Specific Settings --> Service Desk --> Solution Database
    and
    SAP Solution Manager Implementation Guide --> Customer Relationship Management --> Enterprise Intelligence --> Solution Database --> Basic Data
    SAP Solution Manager Implementation Guide --> Customer Relationship Management --> Enterprise Intelligence --> Solution Database --> Problems
    SAP Solution Manager Implementation Guide --> Customer Relationship Management --> Enterprise Intelligence --> Solution Database --> Solutions
    hope this helps.
    Feel free to revert back.
    -=-Ragu

  • Cannot Cast List ? extends Object as List Object

    I apologize if this is a common question but I could not seem to find the proper set of search terms that yielded an answer.
    Basically I have an RMI application and on the 'middle-tier' I would like to pass around references to the implementation objects and only convert to the interface type when dealing with them over RMI (I never pass an object back to the middle-tier).
    public interface Questionnaire implements Remote {
        public List<? extends Comment> getComments() throws RemoteException;
    public class QuestionnaireImpl extends UnicastRemoteObject implements Questionnaire {
        public List<CommentImpl> getComments() {...}
    }This works fine, the issue arises when I try to do the following:
    public List<Comment> getComments(int questionnaireId) throws RemoteException {
        return classLoader.getQuestionnaire(questionnaireId).getComments();
    }The compiler issues a Type mismatch: cannot convert from List<capture#8-of ? extends Comment> to List<Comment> Which I find perplexing as the compiler can assure that at the very least it is a List of Comment objects.

    public List<? extends Comment> getComments() throws RemoteException;
    public List<Comment> getComments(int questionnaireId) throws RemoteException {
    return classLoader.getQuestionnaire(questionnaireId).getComments();
    The compiler issues a Type mismatch: cannot convert from List<capture#8-of ? extends Comment> to List<Comment> Which I find perplexing as the compiler can assure that at the very least it is a List of Comment objects.Yes, however Java's generics work correctly to prevent you from shooting yourself in the foot. If you have a List<Superclass> pointing at a List<Subclass>, you would be entirely within your rights to try to store an object that is not castable to Subclass in it, this breaks type safety, so the compiler will not let you do it.
    Instead, create a new List<Supertype> and copy over the elements from the list returned by getComments(). There is a constructor that will do this for you.

  • Module-specific checklist for business process requirements mapping?

    Hi,
    I am looking for some ASAP tools to support the business process requirements mapping phase of an implementation. The best would be to have a checklist, a sheet of questions to ask during the meetings so that each requirements are considered when creating the business processes in solution manager.
    Anyone can recommend me such material?
    Thanks in advance,
    regards,
    Ádá

    Dear,
    Check: Pre Implementation Questions
    Implementation questionnaire
    http://it.toolbox.com/blogs/dhruvs-blog/sap-implementation-blueprints-32286
    Regards,
    Syed Hussain.

  • Need help implementing a Questionnaire page

    Hi,
    I have a requirement to build a web page which is like a Questionnaire page.
    There are multiple questions and each question can have multiple acceptable responses. The responses can be either an Input text/Check box/RadioGroup depending on the Question type.
    Each question can also have sub-questions depending on the responses. Each sub-question will also have its acceptable responses and further child questions. Currently we are supporting 5 level of parent-child questions hierarchy.
    We are also planning to support the re-arrangement of questions. Is it possible to achieve this functionality using standard ADF components ? I am trying to implement the same using a Tree table. I created a self reference view link to display all the questions in a hierarchal manner. But for displaying the responses I was not able to define the relationship in the tree table.
    The same thing I tried with forEach. Defined view links between Questions and responses VO. But I guess forEach does not support view links. So I was not able to get the responses corresponding to each question.
    [UI Mockup|http://apps-ux.us.oracle.com/fusion_prototypes/v2/prc/PRC_Qualification/shells/questionnaire.htm] for this page.
    Please suggest some approach to implement the above functionality.
    Thanks in Advance,
    Rakesh

    The Questionnaire page will look somewhat like the below questions.
    1.How long has your company been in business? //Parent question#1 : There are 3 radio group for selecting A/B/C.
    A.○ 0-2 years
    B.○ 3-5 years
    C.○ 5-10 years
    1.A.1 What is the founding month & year of your company? // For response A there are two sub-questions 1.A.1 & 1.A.2, 1.A.1 is of type I/p text & 1.A.2 shows 3 checkboxes.
    1.A.2 Who are some of your key investors?
    A.□ Advantage Capital Partners
    B.□ Goldman Sachs
    C.□ Others
    1.A.2.C Who are your key investor(s)? // For response C to qn 1.A.2 this is a sub-question of type i/p text.
    2. What is your annual revenue? // Parent question#2 which can also have sub-questions
    A.○ $5-$10 million
    B.○ $10-$15 million
    C.○ $15+ million
    Edited by: user775413 on Feb 14, 2011 9:42 AM
    Edited by: user775413 on Feb 14, 2011 9:52 AM

  • SAP Fiori implementation customer questionnaire

    Dear Experts,
    I have to implement SAP Fiori apps, both standard and customized for a customer. Is there any standard questionnaire for the customer to fill in before the implementation about the architecture, security and other details? If anyone has such a questionnaire kindly share it.
    Kind Regards,
    Arthur.

    Have you checked the Fiori RDS package?
    http://www.service.sap.com/public/rds-fiori-apps
    Better yet:  Explore SAP Fiori apps rapid-deployment solution (RDS)

  • PM Module Implementation _ Questionnaire

    Hi Friends
    Can you please let  me know  the Due diligence questionnaire  if available for PM Module Implementation .
    Looking forward to hear .
    Thanks in advance
    Regards
    KK

    Hi,
    Succes of PM implementaion & use largely depends on user discipline. There are several ways to enforce business discipline:
    1. Make a Plant maintenance KPI for the Head maintenance and his sub-ordinate 
    2. Training: People need to be trained to use SAP and more importantly in your business processes. If people understand why they need to do something they are more likely to do it. 
    3. Use of Workflow: Use workflow to automate the process. For example when a particular job is taken up by a planner group an email may be sent to the p[lanner. 
    4. System audit: carry out regular system audit and submit the report to the responsible maintenance engineer / Head. 
    5. Be Flexible: Be prepared to modify your business process. If you can deliver what the users want then definitely there would be lot of takers. 
    6. Discipline is the king: Make people aware of this fact through training and change mangement workshop.
    regards,
    Venkatesan Anandan
    Edited by: Venkatesan Anandan on Feb 10, 2009 7:51 AM

  • Time limitation of the questionnaire

    Dear Helpdesk!
    I'm a satisfied Forms Central user since Aug. 2013. I created and used few questionnaires, and now I’m creating a new one. Now I have a problem. I would like to use this questionnaire as a test and I should use a time limitation. I mean when the responder open the Link which shows him/her the questionnaire, it would be nice a timer which shows him/her the remaining time of the filling of the questionnaire. If a responder run out his/her time limitation the questionnaire will closed for him/her. Can I set this function somehow in Forms Central?
    Thanks in advance for your answer. VBRGDS: Zoltán Gábriel ([email protected])

    Hi;
    FormsCentral does not have any support for this type of a timer. 
    I think you could accomplish this by embedding the FormsCentral form into your own web site into a page where you implement a countdown timer.  There is "Embed code" on the Distribute tab of the form to use for embedding into your own web page.
    Thanks,
    Josh

  • Cannot get questionnaire HTML string SAP CRM 7.0  EHP3

    Hello,
    We are trying to use questionnaires in Activities and it doesn't work.
    This error : Cannot get questionnaire HTML string is shown.
    I checked  Note 1600561 - Changes done in values template XSLT not taken into account, but it isn't valid for our release ( EHP3 )
    Thanks in advance for your help.
    Belén

    Hi,
    We used the questionnaires (questionnaires was displayed and worked) but we faced issues with the display in web UI (only when the questionnaires are linked to an activity/opportunity). The Admin screen for questionnaire works well).
    We have implemented the following notes in order to correct this displaying issues :
    - 1858059 : Upload the CRM_SVY_GENERATE_BSP_TEMPLATE.ZIP, refresh cash and generate all surveys
    And then notes mentioned above
    - 1914885 & 1944288 in the relevant order.
    But we cannot display anymore the existing surveys (They are active, all scenarios are flagged).
    Error message : Cannot get questionnaire HTML string
    Any Ideas how to proceed to solve ? (we work on EHP2)

  • Recruiting problem with the candidate search by trex with questionnaires

    Hi Gurus,
    I am trying to search candidates using trex in recruiting by candidate_questionnaires but the trex does not show any result. How can I solve it?
    When candidates register theirselves on internet, they complete questionnaires that I have added in the apllication wizard.
    But the problem starts when I want to search candidates by the answers that they have complete in this questionnaire. So I select the criteria search candidate questionnaire, then I select the questionnaire and then the answer and I run the searh. I know that the results shown are always about others requisitions and not the one that I am doing the search. But in my case candidates are assigned in other requisition with the same process template so I do not know where is the problem, because other sort of search works fine. This is the only one that it does not work.
    In addition, I have run the report RCF_CHECK_SEARCH_SETTINGS but the result is that all the parameters are fine except that I have not implement the badi HRAHAP00_FOLLOW_UP_SES. May I have to implement?
    Moreover I have seen that when I select the answer to search, any operator (element of selection mask) is assigned but I have read that it is correct because I am using the search profile "int_cand" with the category "candidate_document" that it use in the mask search candidate_questionnaire.
    In conclusion, I don't know how I can solve this problem with trex? Any idea?
    Thanks in advance,
    Juanjo Garcin.

    I've already done it.
    Do you think this will help?
    I doubt that Apple will listen to us. Users with a problem that occurs quite a lot.

  • Survey: locked questionnaire in creation

    Hello,
    We have SRM installation with:
    SAP_ABA 700 0010 SAPKA70010
    SAP_BASIS 700 0010 SAPKB70010
    SRM_SERVER 550 0007 SAPKIBKT07
    When a vendor logs the ROS registration form (BSP ROS_SELF_REG) a
    questionnaire is sent to his e-mail as a web-link.
    When the vendor tries to open the questionnaire link the system
    issues an error message due to lock problems.
    This is exactly the symptom of SAP Note 1030665 - SURVEY/WEB_REQUEST:
    Lock problems during creation .
    We implemented this note but the problem still happens.
    We also checked Sap Note 912967 BSP session does not terminate correctly
    We tried the solution exposed in this note (do not have pop-up blocks
    in the browser) but the problem continues.
    Anybody has a solution?
    Thanks.
    Guido

    Hi Guido,
    you need to configure an anonymouse login for the ROS Services.
    Assign a user and a password in the service files.
    Cheers,
    Claudia

Maybe you are looking for

  • Integration directory is not getting displayed..

    Hi Gurus, Our developers are facing an issue here- they are not able to view the Integration Directory (ID) window with their own ID's as well as PISUPER. They are able to view the same instance ID from a different server. But I'm able to view to ID

  • Touchsmart PC 300-1120 Blue screen and error messages

    My computer turns on and I can access the internet however it will all of sudden kick me off the internet and a blue screen appears that says:  Kernel_data-Inpage-Error and then advises me to remove any new hardware or software.  When I hit enter it

  • Data Mapping Document

    Hi, I am part of a Data Migration project involves source system (SAP). And target Systems (peopleSoft And JDEdwards). now we want to do Data Mapping for these Source And Target Systems. Any Body Provide me with some Data Mapping Documents How to map

  • AABC PIP11.2: Payment reversal customization

    HI AIA gurus I want to know why payment reversal feature is not included in AIA AABC PIP 11.2 payment flows as OOTB feature? Also, please let me know if there are any recommendations for this customization. Regards Arun

  • Xmlgen and java version

    trying to figure out which jars need to be in my classpath. Using 1.4.2 I get 911@file:/C:/sgml/NISO/2005/05Std/dtbook121a.dtd generating document #1 Exception in thread "main" java.lang.NoClassDefFoundError: org/w3c/dom/ranges/Do cumentRange at java