Some interview Question?

hello all, as this forum has many brilliant minds, i have some interview question, if you mind please let me know the answer....
q1. default level at which validation accurs?
q2. in which case property pallet display **** as a property value, what its meaning?
q3. best way to ensure that item can not accept query criteria?
q4. what is the use of key-other trigger?
q5. what is the use of forms module validation unit. if it is set to form then data block pre-text-item trigger at point will raise?
i tried but did not find any relevant answer.

Hi yash...
q1. default level at which validation accurs?Well, the default level is where ur trigger exist ( Form Level ,Block Level or Item Level )
q2. in which case property pallet display **** as a property value, what its meaning?Conceal ; it means hiding displaying data and it is almost used in password text item.
q3. best way to ensure that item can not accept query criteria?Well, actually i don't have any forms now but u could try it urself item property > query criteria (any related query allowed property ) >NO
q4. what is the use of key-other trigger?A Key-Others trigger fires when an operator presses the associated key.
A Key-Others trigger is associated with all keys that can have key triggers associated with them but are not currently defined by function key triggers (at any level).
A Key-Others trigger overrides the default behavior of a Runform function key (unless one of the restrictions apply). When this occurs, however, Oracle Forms still displays the function key's default entry in the Keys screen.
Hope this helps...
Good Luck :)
Regards,
Amatu Allah.

Similar Messages

  • SGA Size for 8.1.7.4 32 bit? , some Interview Questions

    Hi buddies,
    I got some interview questions, might be simple for geeks in DBA. I am in need of answers. Could anyone help me.
    Thanks,
    Raaj
    1) Does windows NT support direct I/O?
    Answer: Choose one of the answers that apply
    A: No, only AIO
    B: Yes, depending on hardware.
    C: Yes.
    D: No.
    2) Can you take a coldbackup from solaris and use it on windows NT?
    Answer: Choose one of the answers that apply
    A: Yes.
    B: Yes if RMAN backup performed from NT server.
    C: Yes, after running RMAN convert.
    D: No.
    3) All of the following will alter the number of checkpoints that occur in one hour on the database, except one. Which is it?
    Answer: Choose one of the answers that apply
    A: Decreasing tablespace size
    B: Decreasing size of redo log members
    C: Setting LOG_CHECKPOINT_INTERVAL greater than the size of the redo log file
    D: Setting LOG_CHECKPOINT_TIMEOUT to zero
    4) The DBA is attempting to back up the Oracle database control file. After
    issuing the ALTER DATABASE BACKUP CONTROLFILE TO TRACE command, where can the DBA find the backup control file creation materials Oracle created for him or her ?
    Answer: Choose one of the answers that apply
    A: USER_DUMP_DEST
    B: LOG_ARCHIVE_DEST
    C: CORE_DUMP_DEST
    D: BACKGROUND_DUMP_DEST
    5) What is the most important action a DBA must perform after changing the database from NOARCHIVELOG TO ARCHIVELOG?
    Answer: Choose one of the answers that apply
    A: Shutdown normal and restart the database
    B: Perform a full logical database backup
    C: Perform a full offline database backup
    D: Manually switch the log files
    6) Which of the following choices lists an ALTER USER option that can be executed by the user herself or himself?
    Answer: Choose one of the answers that apply
    A: DEFAULT TABLESPACE
    B: IDENTIFIED BY
    C: TEMPORARY TABLESPACE
    D: PROFILE
    7) You need to view the initialization parameter settings for your Oracle
    database. Which of the following choices does not identify a method
    you can use to obtain values set for your initialization parameters?
    Answer: Choose one of the answers that apply
    A: Issue SELECT * FROM DBA_PARAMETERS; from SQL*Plus
    B: Issue SELECT * FROM V$PARAMETER; from SQL*Plus
    C: Issue SHOW PARAMETERS from Server Manager
    D: Use OEM Instance Manager
    8) As a result of a media failure, the current online redo log group is corrupted, the database crashes, as the current online group is inaccessible. Which type of incomplete recovery are you most likely to perform ?
    Answer: Choose one of the answers that apply
    A: Change-based
    B: Time-based
    C: Recovery using a backup control file
    D: Cancel-based
    9) User SNOW executes the following statement: SELECT * FROM EMP. This
    statement executes successfully, and SNOW can see the output. Table
    EMP is owned by user REED. What object would be required in order for
    this scenario to happen ?
    Answer: Choose one of the answers that apply
    A: User SNOW would need the role to view table EMP.
    B: User SNOW would need the privileges to view table EMP.
    C: User SNOW would need a synonym for table EMP.
    D: User SNOW would need the password for table EMP.
    10) Which one of the following statements is true?
    Answer: Choose one of the answers that apply
    A: The request queue is common, and the response queue is different for all the dispatchers.
    B: The request queue and response queue are different for all the dispatchers.
    C: The request queue is different, and response queue is common for all the dispatchers.
    D: The request queue and response queue are common for all the dispatchers.
    11) What is the largest SGA size for 8.1.7.4 32 bit?
    Answer: Choose one of the answers that apply
    A: approximately 2GB
    B: approximately 3.5GB
    C: approximately 4GB
    D: approximately 8GB
    E: approximately 16GB
    12) The DBA is about to perform some administrative tasks. Specifying the
    OPTIMAL parameter has which of the following appropriate uses?
    Answer: Choose one of the answers that apply
    A: Limiting concurrent users
    B: Limiting concurrent transactions
    C: Limiting growth of rollback segments
    D: Limiting growth of tables
    13) If the DBA wants to find information about how often transactions are
    wrapping transaction information between multiple rollback segment
    extents, where would the DBA look to find that information?
    Answer: Choose one of the answers that apply
    A: DBA_ROLLBACK_SEGS
    B: V$ROLLSTAT
    C: V$ROLLNAME
    D: DBA_SEGMENTS
    14) You have 30 rollback segments in your database, for which
    TRANSACTIONS_PER_ ROLLBACK_SEGMENT is set to 49 and
    TRANSACTIONS is set to 1000. During periods of heavy usage, about how many rollback segments will be actively used by Oracle?
    Answer: Choose one of the answers that apply
    A: 50
    B: 60
    C: 20
    D: 30
    15) The DBA has a table created with the following statement:
    CREATE TABLE EMPL
    (EMPID NUMBER(10),
    LASTNAME VARCHAR2(40),
    RESUME LONG RAW);
    The DBA attempts to issue the following statement:
    ALTER TABLE EMPL
    ADD ( PERF_APPRAISE LONG);
    What happens?
    Answer: Choose one of the answers that apply
    A: The statement succeeds.
    B: The statement succeeds, but column is added as VARCHAR2.
    C: The statement fails.
    D: The statement adds a disabled constraint.
    16) The primary key of the EMP table has three columns, EMPID, LASTNAME,
    and FIRSTNAME. You issue the following SELECT statement:
    SELECT * FROM EMP WHERE LASTNAME = 'HARRIS' AND FIRSTNAME = 'BILLI'
    AND EMPID = '5069493';
    Where would you look to see if this query will use the index associated
    with the primary key?
    Answer: Choose one of the answers that apply
    A: DBA_IND_COLUMNS
    B: DBA_TAB_COLUMNS
    C: DBA_INDEXES
    D: DBA_CLU_COLUMNS
    17) You are configuring your index to be stored in a tablespace. Which of the
    following storage parameters are not appropriate for indexes?
    Answer: Choose one of the answers that apply
    A: OPTIMAL
    B: INITIAL
    C: PCTINCREASE
    D: NEXT
    18) You need to set up auditing in an order entry and product shipment
    application so that when the ORDER_STATUS column in the ORDERS
    table changes to ‘SHIPPED’, a record is placed in a special table associated
    with a part of the application that gives sales representatives a daily list
    of customers to call on a follow-up to make sure the customer is satisfied
    with the order. Which of the following choices represents the best way
    to perform this auditing?
    Answer: Choose one of the answers that apply
    A: Statement auditing
    B: Object auditing
    C: Audit by access
    D: Value-based auditing
    19) Information in the buffer cache is saved back to disk in each of the
    following situations except one. In which situation does this not occur?
    Answer: Choose one of the answers that apply
    A: When a time-out occurs
    B: When a log switch occurs
    C: When the shared pool is flushed
    D: When a checkpoint occurs
    20) In order to allow remote administration of users and tablespaces on an Oracle database, which of the following types of files must exist in the database?
    Answer: Choose one of the answers that apply
    A: Password file
    B: Initialization file
    C: Datafile
    D: Control file
    E: Nothing, SYSDBA privileges are not required for these actions.
    21) You are planning the storage requirements for your database. Which of the following is an effect of maintaining a high PCTFREE for a table?
    Answer: Choose one of the answers that apply
    A: Oracle will manage filling data blocks with new records more actively.
    B: Oracle will manage filling data blocks with new records less actively.
    C: Oracle will leave more space free in data blocks for existing records.
    D: Oracle will leave less space free in data blocks for existing records.
    22) You manage database access privileges with roles where possible.
    You have granted the SELECT_MY_TABLE role to another role, called
    EMP_DEVELOPER. To view information about other roles that may be
    granted to EMP_DEVELOPER, which of the following dictionary views
    are appropriate?
    Answer: Choose one of the answers that apply
    A: DBA_ROLE_PRIVS
    B: DBA_TAB_PRIVS
    C: USER_SYS_PRIVS
    D: ROLE_ROLE_PRIVS
    23) In order to set your SQL*Plus session so that your NLS_DATE_FORMAT
    information is altered in a specific way every time you log into Oracle,
    what method would be used?
    Answer: Choose one of the answers that apply
    A: Setting preferences in the appropriate menu option
    B: Creating an appropriate LOGIN.SQL file
    C: Issuing the ALTER USER statement
    D: Issuing the ALTER TABLE statement
    24) You create a sequence with the following statement:
    CREATE SEQUENCE MY_SEQ
    START WITH 394
    INCREMENT BY 12
    NOMINVALUE
    NOMAXVALUE
    NOCACHE
    NOCYCLE;
    Two users have already issued SQL statements to obtain NEXTVAL, and
    four more have issued SQL statements to obtain CURRVAL. If you issue a
    SQL statement to obtain the NEXTVAL, what will Oracle return?
    Answer: Choose one of the answers that apply
    A: 406
    B: 418
    C: 430
    D: 442

    1.-
    2.c
    3.a
    4.a
    5.c
    6.b
    7.a
    8.d
    9.b
    10.a -
    11.a
    12.c
    13.b
    14.d
    15.c
    16.a -
    17.a
    18.d
    19.c
    20.a
    21. -
    22.d
    23.b
    24.?
    hope it helps u.
    Thanks
    Kuljeet

  • Some interview questions help

    Hi friends i have some interview questions please give me good answers.thanks for advance.
    1.what is info provider?what is advantages and disadvantages?
    2.when your working process chains you set up 2 jobs ,one is 12 pm and anothet 3 am.when you come morning there is errors what is the first thing you do?
    3.in the info provider data is loaded in serial or parallel?
    4.when your working in reports there is 8 columns,but we have requirement of 10 columns how you can added it?
    5.what is integrating planning in BPS?
    If possible please send me good interview questions to my mail id.
    takecare
    bye
    habeeb
    [email protected]

    Please think when you were at the beginer stage.Yes, I guess setting up a second machine under your desk and spending the next - oh I don't know - 2 months fiddling around and trying out all kinds of things is really nothing that can be asked of anyone anymore today. </sarcasm>
    Mind you, my boss at the time did not find it funny that I just formatted a surplus workstation and monopolized it, but when I then took the first official training I had a whole stack of questions at the ready with which to hassle the teacher.
    Now you tell me: which approach enables you to learn and understand more and better?
    @rnm1978: +1!

  • About Some Interview Questions

    Hi Friends ,
    Here are the some questions which i was unable to answer ...
    pls give a reply for dis answers
    1. In direct input method the data is uploaded on application server in which of the following file .
    a.logical file b.physical file c. the data wil be uploaded in sxdb stucture on aplication server only d . none of above
    2.which of the following is not a technical setting of tranparent table .
    a.data class&size category b.buffering c.log data changes d.none
    3.which screen event is processed followed by error during program exection ?
    a.Pai Event b.Pbo Event c.Module d.includes
    4.which of the following represent tabel control ?
    a.variable b.constant c.internal tabel d.module
    5.which processor controls the flow ligic of ur online program?.
    a. abap processor b.list processor c.dynpro processor d.dispatcher.
    6 . In form builder wat is the purpose of using flow control ?
    1. Controlling text 2.controlling graphics & windows 3.controlling of table data 4.printing of pages & elements

    Hi Narayana,
    These are the answers, I agree with the above answers given ,and these are the answers for all of the questions,
    1. Logical file
    2. none
    3. PAI Event
    4. Internal Table
    5. DYNPRO Processor
    6. controlling of table data
    Hope this will help u a lot. If required I can provide a detail description of the answers. mail me regarding this.
    All the best for ur interviews.
    Reward if helpful.
    Regards

  • I need some interview Question

    Hi Masters,
    I am the ABAP/4 Consultant...I learn the SAP Netweaver XI. Now I am trying the Job in XI.I have 3 interviews in this week end... So please give the SAP Netweaver XI interview Point of Questions. Its is Very useful to me....
    Please Help me on this Area....
    Regards,
    SReddy

    Hey,
    Check it out... Mark it as helpful info...
    File to IDOC
    What are the configurations done on XI, on R3, on XI's SLD, what is the protocol used for File, Content Conversion, Serialization , etc
    File to JDBC
    What kind of JDBC action was performed, DB accesed, driver installed?, Synch call and asynch call, what actions can be perfromed, datatypes for JDBC and so on.
    RFC to file
    Configurations on XI, on R3, how was data sent to XI, what are the connections used, how was the IR and ID of XI configured, Synch call or asynch call, BPM or non BPM?
    BPM patterns,
    Anything related to BPM can be asked. What are the patterns, how do you implement a pattern, what are the step types,, etc
    -->Steps required to configure a scenario
    1. Interface Determination-- RB_SPLIT and RB_CLASSIC, condtional Interface Determination
    2. Receiver Determination -- Conditional Receiver Determination.
    3. Sender / Receiver Agreement-- Why doesnt IDOC and HTTP have a sender agreement, etc.
    Flow of how XI determines the configuration scenario
    >>Types of mapping
    1. Types of Java Mapping -- DOM and SAX Parser. Advantages and Disadvantages.
    2. XSLT mapping
    3. Graphical Mapping--
    Questions on context change, standard functions in XI etc.
    -->Qestions on adapters
    1. Which adpaters run on j2ee engine and which run on ABAP stack.
    2. Use of each adapter
    -->Qestions on Content conversion
    1. how and why is content conversion performed.
    -->Questions on BPM and the step types in BPM.
    1. Correlation
    2. synch/asynch bridge
    3. Collect pattern.
    4. For each and par for each in a block
    5. send synchronously and asynchronously.
    6. Step types in BPM.
    -->Questions on ALERTS.
    1. How do u define Alert Category, rules, etc.
    2. How do you test an Alert.
    3. Alerts in a BPM
    -->Architecture of XI
    1. How and what are the stacks available in XI
    2. Need for datatype, message type, message interface, message mapping, interface mapping, etc.
    3. Synch/ Asynch/ outbound/inbound/ abstract interfaces, etc.
    And many more...
    1. How do you monitor your messages in XI.
    2. What is the difference between the monitoring done on the RunTimeWorkBench and the one done using SXMB_MONI.
    3. What is End to End Monitoring, Performance Monitoring, Cache Montioring etc.
    4. What is a Business System, Technical System, Logical System, and other questions related to the System Landscape Directory (SLD ).
    And...
    -->Steps required to configure a scenario
    -->Types of mapping
    -->which all configurations you need to do in R/3
    for an Idoc to file scenario
    -->Questions regarding the interfaces you have worked on
    -->Qestions on adapters eg. Idoc , RFC etc
    -->How to configure JDBC Adapter(Sender & Receiver)
    -->Qestions on Content conversion
    -->Questions on BPM and the step types in BPM.
    -->Questions on ALERTS. How to configure Alerts, alert rules, etc.
    -->Architecture of XI.
    And ...
    Adapters:
    - Transport and Message Protocols for each of Sender/Receiver adapters. For File and JDBC adapters these protocols are different in the Sender/Receiver adapters.
    - Definiton of logical system, RFC destination, port etc
    BPM:
    - Types of Message and Process flow related steps
    - Exception handling
    - Corelation
    - Monitoring of BPM
    - Import/Export of process definitions with BPM
    - Synch/Asynch Bridge
    Cheers.,
    Esha

  • Some interview questions- pls answer which ever Question you know.

    Q1. Sales order with 10 items with different delivery dates? is it possible? where is the setting?
    Q2. How you deliver a sale order item to 2 ship-to parties?
    Q3. while sale order processing can we give separate partner function? Example?
    Q4. Damaged goods company dont want to take back/return; then how we 'compensate' customer?
    Q5. In sales order what is the difference between 'header detail tabs, and 'item detail tabs?
    Q6. What is the back ground for a Routine?
    Q6. What is the necessity to maintain 'Route determination'?
    Q7. In CIN-what is 'Reconcillation'?
    Q8. In CIN- why we use 'proforma invoice', why not 'commercial invoice?
    Q9. Difference between 'capital project and revenue project'?
    Q10. Where we maintain 'Material Cost'?
    Q11. Example for SAP system interacting with Non SAP system?
    Q12. When the system knows to take up- Backward scheduling or Forward scheduling?
    Q13. Of 10 items of a sales order need to bill only 1 item, where is the setting?
    Q14. Pricing -Is it possible to change 'Calculation type' during sales order processing?
    Q15. What triggers 'Item category'?
    Q16. In which step of LSMW - we can write a program?
    Q17. All pre-requisites/settings maintained, even Rebate is not working. Where we check?
    Q18. What transfers the Requirements in - sales order processing?
    Q19. Pricing- what pricing condition types related to Accounting?
    Q20. User exit for Sales order?
    Q21. For creating 'Sales organisation'- what criterion should follow?
    Q22. If in a sales order to enter 200 line items; to speed up entering line items; what we can do?
    Q23. Is 2 items of a sales order can be delivered from 2 different plants? If so, then, Number range of the Billing documents
            should be different from plant to plant, for that same sale order. where and how we maintain setting.
    Q24. Rebates- How we settle an agent (not a customer) in rebate process?
    Q25. CIN- use of 'Exice group'?
    Thanks in advance
    Arsh

    My dear friend,for  most of the questions you requested there are many threads with same topics, i suggest you to go thru existing threads and read library once and still if you find any question unanswered post it in forum.
    balu

  • Some Interview Questions Need ur answers

    Hi all,
    1.What is the difference bt Transaction ODS & Normal ODS.
    2.What is the major difference bt Transfer and Update Rules
    3.How do we enable the ODS As Delta Enabled. Is it require any special setting.
    4.What happens ,if the info cube only supports full update not delta update,how to load delta records to that cube
    5.what are the criterias has to be checked for developing info cubes
    6.What is the difference bt infoset query and BEX query.
    7.How the report will be generated by using infoset query
    My id - [email protected]
    Thanks
    Raja

    hi,
    pls refer to the following links.They contain a lot of information.
    1.What is the difference bt Transaction ODS & Normal ODS.
    http://help.sap.com/saphelp_nw04/helpdata/en/f9/45503c242b4a67e10000000a114084/content.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/c0/99663b3e916a78e10000000a11402f/content.htm
    2.What is the major difference bt Transfer and Update Rules
    http://help.sap.com/saphelp_nw04/helpdata/en/3f/0e503c3c0d563de10000000a114084/content.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/90/64553c845ba02de10000000a114084/content.htm
    3.How do we enable the ODS As Delta Enabled. Is it require any special setting.
    Answer:If you data source is delta enabled and the data target is ODS. You will receive Delta upadte.You can use the ODS as data source and transfer data to further data targets in Delta mode.In this case ODS change log table comes into picture.
    http://help.sap.com/saphelp_nw04/helpdata/en/bd/c627c88f9e11d4b2c90050da4c74dc/content.htm
    4.What happens ,if the info cube only supports full update not delta update,how to load delta records to that cube
    http://help.sap.com/saphelp_nw04/helpdata/en/8d/2b4e3cb7f4d83ee10000000a114084/content.htm
    5.what are the criterias has to be checked for developing info cubes
    http://help.sap.com/saphelp_nw04/helpdata/en/8d/2b4e3cb7f4d83ee10000000a114084/content.htm
    6.What is the difference bt infoset query and BEX query.
    http://help.sap.com/saphelp_nw04/helpdata/en/ed/084e3ce0f9fe3fe10000000a114084/content.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/ba/45583ca544eb51e10000000a114084/content.htm
    7.How the report will be generated by using infoset query
    http://help.sap.com/saphelp_nw04/helpdata/en/ed/084e3ce0f9fe3fe10000000a114084/content.htm
    hope it helps,
    regards,
    Parth.

  • Interview questions Doubts

    Hi friends,
    I got some interview questions please any body answer this questions,thanks for advance.
    What is table partition?
    2. What are the options available in transfer rule and when ABAP code is recquired during the transfer rule what important variables you can use?
    3. How would you optimize the dimensions?
    4. What are the conversion routines for units and currencies in the update rule?
    5. Can you make an infoobject as info provider and why?
    6. What are the steps to unload non cumulative cubes?
    7. Give step to step approach to archiving cubex.
    8. What are the load process and post processing.
    9. What are the data target administration task
    10. What are the parallel process that could have locking problems
    11. How would you convert a info package group into a process chain?
    12. How do you transoform Open Hub Data?
    13. What are the data loading tuning one can do?
    thanks for advance,
    bye
    habeeb

    sb92075 wrote:
    PC wrote:
    hi,
    Plz clear some doubts.In 1 interview below questions were asked to me..I would not work for any company where RBO was still be used.
    V9 Oracle was last version to include RBO & V9 has been obsoleted this whole Century.So, I should resign from my employer of 17 years because we still have a couple of applications that use RBO, I can just hear the exit interview now :-)
    In case you are wondering, one of the applications that uses RBO is on 10.2.0.3, and the other is 9.2.0.8
    John

  • Interview questions help

    Hi friends i have some interview questions please give me good answers.thanks for advance.
    1.what is info provider?what is advantages and disadvantages?
    2.when your working process chains you set up 2 jobs ,one is 12 pm and anothet 3 am.when you come morning there is errors what is the first thing you do?
    3.in the info provider data is loaded in serial or parallel?
    4.when your working in reports there is 8 columns,but we have requirement of 10 columns how you can added it?
    5.what is integrating planning in BPS?
    If possible please send me good interview questions to my mail id.
    takecare
    bye
    habeeb
    [email protected]

    Hi Habeeb,
    Please do not post the same questions multiple times:
    Some interview questions help

  • Interview Questions in PD

    Hi,
    I need some interview questions in PD. I have to be a panelist for PD. Please give me some questions along with answers in PD.
    Thanks and regards.

    Re: Support Question?
    it may be helpf ul
    and one more thing ur telling that u r the panelist and if the person going to come to interview is the member of this community means than wht will u do. so pls maintain some secrecy.
    pls ask ur collegues to collect the questinos and try to find out the answers by urself
    and always it is better to have a personal mailing not here but among ur collegues
    k
    sikindar
    if there is anything worng from my side pls excuse me

  • Interview questions?plz answer

    hi
    i have some interview questions;can anybody share with me?
    1.what is meant by static variable and static method with an example?what r the uses?;
    2.what r the uses of Interfaces over abstract class?
    3.Name two interfaces without method?
    4.what is meant by polymorphism?explain with an example?
    5.what is meant by deadlock?
    6.what is meant by time-slicing?
    7.how can u set input and output parameters using Callablestatement with an example?
    8.what is difference between throw and throws?

    hi
    i have some interview questions;can anybody share with
    me?
    1.what is meant by static variable and static method
    with an example?what r the uses?;A static variable changes rapidly. A static method changes methodically.
    2.what r the uses of Interfaces over abstract class?Interfaces used over abstract classes form a protective layer, insulating and encapsulating them from synchronization problems.
    3.Name two interfaces without method?Trick question. No interfaces have methods.
    4.what is meant by polymorphism?explain with an
    example?Men in Hawaii can marry more than one woman. Each wife does something different when the man asks her to give him some poi.
    5.what is meant by deadlock?Bob Marley's hair.
    6.what is meant by time-slicing?Time slicing is a technique for delaying an unpleasant task. A process can continue to put it off until later by slicing the remaining time in half.
    7.how can u set input and output parameters using
    Callablestatement with an example?You ought to know that. I'm not going to help you.
    8.what is difference between throw and throws?"Throw" is singular and used with one argument. "Throws" is plural and used with multiple arguments.
    Good luck.

  • Functional Consultant Interview Questions

    Hi,
    Can anyone please send me some interview questions nad materials related.
    Does anyone have questions that will cover a Functional Consultant Role.
    Thanks a lot,
    Murali
    <removed>

    Hi,
    I can tell you about my experience in different process.
    I usually have a first interview with the recruiter/agency this first interview is quite general, he usually review your CV, job history,... the recruiter ask you about your interest or motivation for that process, if you are willing to travel, reallocate, etc.. your salary expectations and your knowledge in the different modules. This is the easier interview and if everything is ok, the recruiter will tell you for next steps, probably about the project, the employer, etc...
    In the second interview normally is with the consultancy company, with the manager and an experience consultant that usually asks about technical questions, they ask for example, how to setup a dual accounting process with SLA in GL, which reports you would use to reconcille AP/AR and GL, how many segments do you need to setup in GL for a specific business situation, how to load assest in FA, which are de accounting steps from buy goods until you account the AP invoices,...
    In some cases you have also a final interview with customer just to get the final approval, but the really important one is the second interview.
    Good Luck ;-)
    xhuertax

  • Some problems in finding answers of interview questions Oracle SOA 11g

    hi
    These questions were asked from me in an interview. could someone please help me to get the answers?
    Q1: While using a file adapter if we have declared an elements schema length as 100 and file reading the file adapter that element contains 120 characters, then what will happen ? Is there any way to read that file?
    Q2: In a BPEL process there is a partner link which is invoked more than once in this BPEL. While creating assertions in Test suit for this composite how we will write assertions for this partener link?
    Q3: In a Flow activity if we have added 2 assign activities in each branch, then will we really have performance improvement as compared if we use them serially?
    Q4: In OSB how to restrict the no of messages coming to Proxy service?
    Q5: in OSB how to use dynamic URL of business service? (we will get to know the url at rum time or we have to create url at runtime)
    Q6: While using fault policy framework if have set the retry count as 3. Now when the retry count is exhausted then how this fault will be clost.faulted or open.faulted?
    Q7: can we have two service bindings in one composite if there is only one BPEL process in that composite?
    Q8: Q: If we need to validate any message in OSB after pipeline stage according to its destination
    thanks in advance

    John
    Please check these links and may answers some of your questions
    http://www.sap-img.com/business/sap-bw-interview-questions.htm
    http://www.techinterviews.com/?p=184
    http://rapidshare.de/files/3829216/Bw_Interview_Questions.pdf.html
    http://groups.ittoolbox.com/archives/archives.asp?l=sap-career&i=671624
    Hope this helps
    Thnaks
    Sat

  • I need some more interview question with answer on modeling,reporting.

    i need some more interview question with answer on modeling,reporting.

    Hi,
    You may find tons of topic about interview question. Please try to search forums before opening a post next time.Take a look at the link below.
    https://www.sdn.sap.com/irj/sdn/advancedsearch?cat=sdn_all&query=bwinterviewquestions&adv=true&adv_sdn_all_sdn_author_name=
    Regards,
    ®

  • Can anyone give me some realtime Interview questions on OBIEE

    Guide me with the Interview questions and answers?

    Reset your SMC.  If that doesn't do it, reset PRAM. 

Maybe you are looking for