Question about Balanced Scorecard Structure

Hi,
I have to build a scorecard based on the following elements :
4 perspectives
Let's say for perspective 1, 2 strategic objectives, 3 objectives and to 5 measures.
Example :
- Financial perspective
      - strategic objective "Control SG&A costs"
                 - objective "Control IT project cost"
                           - Measure 1, Measure 2
                 - objective "Control HR cost"
                           - Measure 1, Measure 2
I don't konw how to do it because BSC provides perspectives elements, objectives and measures. So, I miss one element to build as the client wants it.
Do you have an idea to do it ?
Thanks in advance

hi
Balanced Score Card has to be configured as follows:
First You have to Define Strategy
For Example Strategy : Revenue Growth
For this particular strategy u can have 4 perspectives
1. Financial Perspective
2. Customers Perspective
3. Internal Process
4. Learning & Growth
For Financial Perspective: You can have different Objectivees
eg for objectives:1. New Revenue Sources
                        2. Increase Profitablilty thru Premium Brands
Next For each objective u can have measures and initiatives
For eg: for increase Profitablity thru Premium Brands
Measures: Profit, Revenues
Initiatives: Allocate Budget For Advertisement , Promotinal Activity etc.
So Overall the sequence will be First : Strategy
and For Each Strategy u will have different Perspectives and for each perspective different objectives and for each objectives u will assign different measures and initiatives.
Objective will pertain to repective perspective only.
For each initiative u hv to assign respective incharge and budget to be alloted.
tx
srin

Similar Messages

  • Question about Java apps structure

    Hello guys,
    I'm a professional C++ programmer and I would like to start learning Java. I'm reading about Java from here and there and would like to ask you about how a java program is structured compared to C++.
    So in C++, I have main.cpp (or any other file name, doesn't matter), which contains a the main() function, and I have .h and .cpp class files that I instantiate (basically) in my main function to get my program to work.
    In Java, I'm confused and can't really find the "general" rule to how stuff are organised. I noticed that every class has a main function (why?), and there's no global scope. And "somehow", file names must exactly be equal to the class names.
    The question is: how are Java files of classes (and other stuff, if available) are arranged to create a program? What's the standard why? And How can I have many classes together in a single main()?
    Thank you for any efforts :-)
    Edited by: 927494 on 13.04.2012 07:02
    Edited by: 927494 on 13.04.2012 09:10

    Thank you guys for the replies. I still have some more doubts :-)
    Do I have to have a file for the implementation and a file for the definitons, like cpp and header files? or just everything inside the class?
    Why does Netbeans fail to compile when I change the class name? what should I change with the class name in general to have it compile correctly? From what I understand till now, the top level class's name (the class with the main() function that's gonna be executed) has to be equal to the file name (and I got that this is the sufficient condition for the app to compile), while the same file can have more classes if I wish. Did I get that right?
    I don't know if I get that right too, we pass only a SINGLE class/file to the compiler, and it automatically resolves ALLLL the included files automatically, unlike C++, where all cpp files have to be passed to the compiler/makefile to create object files, and then the executable is created after linking all those object files with the libraries together. i.e.: Java doesn't really need a makefile because making is really simple with only 1 filename. True?

  • Question about the sequence structure

    Hi,
    If we want to get best performance when programming a sequence of functions or calculations, we should choose 'Stacked sequence structure' or 'Flat sequence structure'? or they have the same performance?
    Thanks.

    To the best of my knowlege there is no performance hit, the "Flat sequence structure" was a fairly recent addition to try and overcome one (of many) complaints about sequence structures in general, that stacked sequences obscure what is happening in the code. If the various sections of your calculation or functions have data dependency, i.e. the output of a calculation is fed into the subsequent calculation or function, then a sequence structure is probably not needed as, with data flow, the calculation that is "dependent" won't executed until all its inputs requirements are satified. If the "functions" are in the form of sub-vi's the method that is more "proper" is to inforce a dependency between subsequent vi's. This can be as simple as adding error in and out controls to the sub-vi's, even if they are only passed through the vi without actually performing an error function. This allows you to wire them together in the execution order that is required. Doing this on some of the early "built-in" functions that have remained in LabVIEW (the original timer functions) sometime requires putting a wrapper around them to make them sub-vi's with error passing, but in the latest versions of LabVIEW the compiler seems to do a good job of minimizing any performance hits this might appear to cause.
    Putnam Monroe
    LabVIEW Evangelist since 1992
    Putnam
    Certified LabVIEW Developer
    Senior Test Engineer
    Currently using LV 6.1-LabVIEW 2012, RT8.5
    LabVIEW Champion

  • Question about InDesign File Structure

    I had an interview Friday for a design job and they asked me to send them a stripped InDesign file without photos or anything, just a file so they can check out the structure of the file and see how I set up my files.
    1. What is good file structure?
    2. What do you suppose they're looking for?
    3. What should I send them?
    Thanks!

    I would provide the following:
    Bleed setup     (Usually  specified as .125 inches for commercial print)
    Layer Stacking Order (Z order)     (To see if you know how a  document flattens)
    Margins and Columns     (Mainly for Multi-Column Documents)
    Page  Setup     (Whether Facing Pages or Single Page spreads are needed)
    I  would start with 3 layers listed how they appear in the Layer Pallete:
    Text     (This  remains on top to counteract the affects of transparency)
    Images     (This layer used for all images or type with  transparecy effects)
    Background     (I create a bleed size rectangle with a fill  and stroke of none as a default)
    If including text:
    Provide an example of:
    Character and Paragraph Styles
    Nested Styles
    BONUS: Grep Styles
    I would also make a mixed ink group of some sort and dieline utilizing a spot color and overprint.
    It might impress them if you included Rich Black where needed.
    All of these would show them your mastery of Indesign and Print Design

  • I HAVE A QUESTION ABOUT USING CASE STRUCTURE

    Can I compute a percentage using case structure?
    In the following query below, I have been able to use CASE STRUCTURE to add to a counter when days were between 0 and 30, or when days were between 31 and 60 or when days were between 61 and 90 or when days were between 91 and 9999. I have also been able to get a GRAND TOTAL of all days between 0 and 9999. This is done in the LAST ITEM of the SELECT STATEMENT. The FIRST ITEM of the SELECT STATEMENT counts rows of records being processed. I want to take the LAST ITEM of the SELECT STATEMENT and MULTIPLY it by 100 and then DIVIDE it by the FIRST ITEM of the SELECT STATEMENT to get a percentage. I know that you can do this with numeric fields in a file but is there a way to do this in CASE STRUCTURE with calculated totals?
    SELECT
    count(distinct v.rowid) v_cnt,
    SUM(CASE WHEN(V.LCL_ER_RECV_DT - ADD_MONTHS(V.IND_ER_PER_END_DT,3)) BETWEEN 0 AND 30 THEN 1
    ELSE 0
    END) one_mo,
    SUM(CASE WHEN(V.LCL_ER_RECV_DT - ADD_MONTHS(V.IND_ER_PER_END_DT,3)) BETWEEN 31 AND 60 THEN 1
    ELSE 0
    END) two_mo,
    SUM(CASE WHEN(V.LCL_ER_RECV_DT - ADD_MONTHS(V.IND_ER_PER_END_DT,3)) BETWEEN 61 AND 90 THEN 1
    ELSE 0
    END) three_mo,
    SUM(CASE WHEN(V.LCL_ER_RECV_DT - ADD_MONTHS(V.IND_ER_PER_END_DT,3)) BETWEEN 91 AND 9999 THEN 1
    ELSE 0
    END) three_pl_mo,
    SUM(CASE WHEN(V.LCL_ER_RECV_DT - ADD_MONTHS(V.IND_ER_PER_END_DT,3)) BETWEEN 0 AND 9999 THEN 1
    ELSE 0
    END) TOT
    FROM NCOER V, NCOER_IN_ERROR NIE, NCOER_ERROR NE, ALL_CMD_VIEW ACV
    WHERE V.MIL_CMD_ASGN_CD IN ('FC')
    and v.lcl_er_form_cd = '4'
    and acv.cmd_cd = v.mil_cmd_asgn_cd
    and nvl(acv.lcl_code_stat,'N') = 'Y'
    and NVL(v.lcl_omit_from_stats_ind,'N') <> 'Y'
    AND V.PSC_CD IN ('FS10')
    AND (V.LCL_ER_RECV_DT >= '01-MAR_2007' AND V.LCL_ER_RECV_DT <= '31-MAR-2007')
    AND V.IND_SSN = NIE.IND_SSN(+)
    AND V.IND_ER_PER_END_DT = NIE.IND_ER_PER_END_DT(+)
    AND V.LCL_ER_RECV_DT = NE.LCL_ER_RECV_DT(+)
    AND V.IND_SSN = NE.IND_SSN(+)
    AND V.IND_ER_PER_END_DT = NE.IND_ER_PER_END_DT(+)
    AND V.LCL_ER_RECV_DT = NE.LCL_ER_RECV_DT(+)

    Solution for you:
    SELECT
    COUNT(V_CNT) PROCESS_RECORD,
    SUM(CASE WHEN(PROCESS_MONTHS) BETWEEN 0 AND 30 THEN 1
    ELSE 0
    END) ONE_MO,
    SUM(CASE WHEN(PROCESS_MONTHS) BETWEEN 31 AND 60 THEN 1
    ELSE 0
    END) TWO_MO,
    SUM(CASE WHEN(PROCESS_MONTHS) BETWEEN 61 AND 90 THEN 1
    ELSE 0
    END) THREE_MO,
    SUM(CASE WHEN(PROCESS_MONTHS) BETWEEN 91 AND 9999 THEN 1
    ELSE 0
    END) THREE_PL_MO,
    SUM(CASE WHEN(PROCESS_MONTHS) BETWEEN 0 AND 9999 THEN 1
    ELSE 0
    END) TOT,
    (SUM(CASE WHEN(PROCESS_MONTHS) BETWEEN 0 AND 9999 THEN 1
    ELSE 0
    END) *100/COUNT(V_CNT)) TOT_PER
    FROM
    (SELECT     V.ROWID V_CNT, V.LCL_ER_RECV_DT - ADD_MONTHS(V.IND_ER_PER_END_DT,3) PROCESS_MONTHS
    FROM     NCOER V, NCOER_IN_ERROR NIE, NCOER_ERROR NE, ALL_CMD_VIEW ACV
    WHERE     V.MIL_CMD_ASGN_CD IN ('FC')
    AND     V.LCL_ER_FORM_CD = '4'
    AND     ACV.CMD_CD = V.MIL_CMD_ASGN_CD
    AND     NVL(ACV.LCL_CODE_STAT,'N') = 'Y'
    AND     NVL(V.LCL_OMIT_FROM_STATS_IND,'N') <> 'Y'
    AND     V.PSC_CD IN ('FS10')
    AND     (V.LCL_ER_RECV_DT >= '01-MAR-2007' AND V.LCL_ER_RECV_DT <= '31-MAR-2007')
    AND     V.IND_SSN = NIE.IND_SSN(+)
    AND     V.IND_ER_PER_END_DT = NIE.IND_ER_PER_END_DT(+)
    AND     V.LCL_ER_RECV_DT = NE.LCL_ER_RECV_DT(+)
    AND     V.IND_SSN = NE.IND_SSN(+)
    AND     V.IND_ER_PER_END_DT = NE.IND_ER_PER_END_DT(+)
    AND     V.LCL_ER_RECV_DT = NE.LCL_ER_RECV_DT(+) )
    Regards,
    Rajs
    www.oraclebrains.com

  • Question about stacked sequence structure

    Hi,
    I made a numeric control outside a stacked sequence structure, and connect the control both to frame 1 and frame 2. In frame 2 there is a while loop structure. And now I start the labview program with the control A. Then, after frame 1 finished, frame 2 started, now I want to change the control to B and deliver B into frame 2. But the indicator in frame 2 shows that the control is still A. So I wonder how can I change the control and deliver it to the frame after the frame has started? Thank you!
    NI Software :  LabVIEW  version 7.1
    OS :  Windows XP
    Regards,
    jackauden

    Dataflow dictates what you are seeing. The control does not get read once the sequence starts. This is as expected.
    Some possible solutions:
    Just don't use stacked sequence! I don't and never feel limited by this choice.
    Create local variable of the control and read from it inside frame 2.
    Do you REALLY need a stacked sequence? Why???
    LabVIEW Champion . Do more with less code and in less time .

  • Some questions about cretion ORg structure in Expert Mode

    Hai,
       Request to kindly clarify my queries
      1.  How to give relationship between positions& also between org unit in Expert mode?
      2.  what exactly should i select from job catalouge inorder to define the relation.
      3.where can i check my specified relation?
      4. Is there any  difference between Reporting & Relationship?
      regards
      Dileep

    Hi,
    1. Go to Expert mode, po13, enter the Position id and click the Object infotype, then click the button change, then you can change the name of the Position.
    2. Under the Expert Mode.
    3. Yes, ofcourse, then only the corresponding position will inherit the task.
    4. Select the Job from the Expert Mode, select the relationship infotype and select the task.
    5. under the Expert mode to add the task to the catalog.
    6. Object Description is IT1002. Maintain that through Expert mode for your object.
    <b>Reward</b> points are always appreciated and will motivate to contribute.
    Good Luck
    Om

  • Re: Questions about Plan structure

    Reply-To: "Duncan Kinnear" <[email protected]>
    Q. if you have an Employee class with related EmployeeSubordinate and
    EmployeeSalaryHistory classes, should these all be in the same plan?
    A It is better to have them in the same plan.It depends on the design
    you have
    Q Why should the Managers be separated from their business classes?
    A Managers are usually service objects which might require different
    resources.
    These managers when deployed might be required by several other
    applications.
    Seperating them as a different plan will help in just using one
    installed partition to be
    Used by different applications (refer about Reference Partition)
    Q If you have the Database managers separate, what scope does each DB
    manager cover?
    A It is better to have the DB managers in user scope.
    It depends on the numbers of users, u have for the system.
    Since u are talking about 100 tables. It's a huge system.
    It also depends on the user licenses u have for the backend.
    Take care that u use proper load balancing of DB Managers for the
    system.
    Krishna CVSR
    GoldStone Softech Inc
    >
    Hi there,
    We are in the middle of designing the structure of a new system.
    I have read/heard that it is best to break down the plans into the
    following categories:
    Business Classes
    Managers/Services
    Clients
    I have a few questions about this structure:
    Should related business classes be grouped together in Plans? E.g. if
    you have an Employee class with related EmployeeSubordinate and
    EmployeeSalaryHistory classes, should these all be in the same plan?
    Why should the Managers be separated from their business classes?
    E.g. if there is an EmployeeMgr service which deals with anything to do
    with the Employee business class, why separate them in different
    plans? If you need the manager to access the class, you will always
    need both.
    Some of the Forte documentation talks about "Policy" managers and
    "Database" managers. How do the functions of these managers differ
    for a simple CRUD (Create Read Update Delete) class?
    If you have the Database managers separate, what scope does each
    DB manager cover? I.e. do you have one for the entire database (over
    100 tables in our case), or do you break it down by sub-system?
    Thanks in advance for any answers.
    Cheers,
    Duncan Kinnear,
    McCarthy and Associates, Email: [email protected]
    PO Box 764, McLean Towers, Phone: +64 6 834 3360
    Shakespeare Road, Napier, New Zealand. Fax: +64 6 834 3369
    Providing Integrated Software to the Meat Processing Industry for over 10 years
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>
    Get Your Private, Free Email at http://www.hotmail.com
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

    Reply-To: "Duncan Kinnear" <[email protected]>
    Q. if you have an Employee class with related EmployeeSubordinate and
    EmployeeSalaryHistory classes, should these all be in the same plan?
    A It is better to have them in the same plan.It depends on the design
    you have
    Q Why should the Managers be separated from their business classes?
    A Managers are usually service objects which might require different
    resources.
    These managers when deployed might be required by several other
    applications.
    Seperating them as a different plan will help in just using one
    installed partition to be
    Used by different applications (refer about Reference Partition)
    Q If you have the Database managers separate, what scope does each DB
    manager cover?
    A It is better to have the DB managers in user scope.
    It depends on the numbers of users, u have for the system.
    Since u are talking about 100 tables. It's a huge system.
    It also depends on the user licenses u have for the backend.
    Take care that u use proper load balancing of DB Managers for the
    system.
    Krishna CVSR
    GoldStone Softech Inc
    >
    Hi there,
    We are in the middle of designing the structure of a new system.
    I have read/heard that it is best to break down the plans into the
    following categories:
    Business Classes
    Managers/Services
    Clients
    I have a few questions about this structure:
    Should related business classes be grouped together in Plans? E.g. if
    you have an Employee class with related EmployeeSubordinate and
    EmployeeSalaryHistory classes, should these all be in the same plan?
    Why should the Managers be separated from their business classes?
    E.g. if there is an EmployeeMgr service which deals with anything to do
    with the Employee business class, why separate them in different
    plans? If you need the manager to access the class, you will always
    need both.
    Some of the Forte documentation talks about "Policy" managers and
    "Database" managers. How do the functions of these managers differ
    for a simple CRUD (Create Read Update Delete) class?
    If you have the Database managers separate, what scope does each
    DB manager cover? I.e. do you have one for the entire database (over
    100 tables in our case), or do you break it down by sub-system?
    Thanks in advance for any answers.
    Cheers,
    Duncan Kinnear,
    McCarthy and Associates, Email: [email protected]
    PO Box 764, McLean Towers, Phone: +64 6 834 3360
    Shakespeare Road, Napier, New Zealand. Fax: +64 6 834 3369
    Providing Integrated Software to the Meat Processing Industry for over 10 years
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>
    Get Your Private, Free Email at http://www.hotmail.com
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

  • Basic questions about NWDI structure

    Hello All,
    I have read some materials about the Java development process within SAP J2EE engine.
    Here I just want to confirm with you some knowledge points and ask some questions about the configuration of NWDI before proceeding Java development.
    1. There are four systems within SAP Java landscape, the first one is the developer's own PC, on which there should be installed SAP Workplace (actually is a small J2EE engine and the NW developer studio), am I understanding right?
    2. Where should the DTR CBS CMS and SLD be installed? on the Consolidation Server? or the TEST Server? or the Production server? or totally on another standalone server?
    3. Within one Track (four system), how many DTR server, CBS Server and SLD server should be installed?  Does it only need one for each?(All the four system connect to the same DTR/CBS/SLD server?)
    4. Can DTR Server, CBS Server and SLD Server be installed on the same host? or should they be installed on separate hosts?
    Thank you very much in advance.
    Best regards,
    Nick

    The introduction of this demo contains a nice overview of the system landscape with NWDI, which should answer most of your questions:
    http://www.sdn.sap.com/irj/scn/elearn?rid=/library/uuid/c0b1f2c8-54e0-2910-9ab3-b85f15093655
    Here's the main page for NWDI here on SDN:
    SAP NetWeaver Development Infrastructure (NWDI)

  • Question about program structure.

    hi, I am trying to write a GUI program like MSN messenger. right now, I am really confused about my program structure.
    Should I put all the things in one class or separate them into GUI class, services class..etc? for example, right now, I have a class responsible for connecting to the server. Should I put it into the GUI class as a nested class or .......? Basically, what is the best structure for GUI program?

    new_java-sun wrote:
    thank you very much. Do you know why the mvc pattern is called mvc pattern instead of DGC(data-gui-controller) pattern?Because a view need not be a GUI, or even a UI, and a model need not be data

  • SEM-CPM Balanced Scorecard and time-variant results/scores

    Hi everyone!
    I have successfully created a basic Balanced Scorecard with SAP SEM 4.0. By configuring the "Value Fields" and using "Formula Result-Score Assignment", I have specified which results are equivilant to what score. As an example, a have defined that a process cycle time of 25 minutes is equivilant to a score value of 85 (out of 100) and a process cycle time of 20 minutes is equivilant to a score value of 100.
    Since I want to use my Balanced Scorecard for strategic planning (along with SEM/BW-BPS), I want these result-score assignments to vary of the upcoming period. As an example, in 6 months time a process cycle time of 20 minutes should be a score of 100 (as above). But since I want to improve my operational performance, in 12 months time a cycle time of 17 should be 100 (as my process cycle time should have improved by then). In other words, my planning targets should be dynamic (depending on time) and not only static (always the same).
    My question is now, how can I define different Result-Score Assignment (in other words: goals/targets) for different time horizons? Can I do that with integrating SEM/BW-BPS?
    Best regards,  Daniel

    Leelananda and others PLEASE NOTE!
    This original post was in 2006 and Jason does NOT seem to be an active member. His member email bounces so he will not receive any alerts about updates to this post.
    SEM-BSC is a product that has been sunset. The current SAP product for using the Balanced Scorecard is SAP BusinessObjects Strategy Management, (SSM).
    I would be happy to provide information about SSM if you would like. Contact me directly.
    Regards,
    Bob

  • SEM Balanced Scorecard - Trends

    Hi Guys
    I have been asked by a client about Trend Indicators in Scorecard. At the moment the Trend Indicator appears against each measure and indicates the trend period-on-period, but is there a way we can have Trend Indicators for the top-level status or score eg. Strategy or Perspective via the Analysis View?
    Thanks
    Scott

    Dear Sir,
    I invite you to participate in the study of exploring factors for implementing a balanced ScoreCard(BSC). I would like to inform you that my questionnaire is still active and you can find the on-line page on:
    http://www.labunix.uqam.ca/~jd091305
    Please complete the questionnaire and if you have any follow-up questions do not hesitate to contact me. An executive report will be sent electronically to all respondents at the end of this project.
    I am deeply grateful to all of you who already responded. Your participation is of great value to the advancement of my knowledge.
    Cordially
    Malika Hadj henni
    Candidate for Masters in Management Information Systems
    UQAM- Université du Québec à Montréal
    E-mail : [email protected]

  • Balanced scorecard: blueprint doc

    Hi,
    Pls share balanced scorecard blueprint/scooping documents..
    thanks,
    RP

    Good day Kumar,
    I am not sure if I understand your question, so I have several responses.
    The Balanced Scorecard is a performance management methodology. An organization first needs to have a developed strategic plan with objectives, the projects to reach those objectives, and the indicators to monitor that shows whether you are reaching those goals.
    If more information about this area is your question; looking for blueprints for a Balanced Scorecard, I would refer you to Paul Niven's book "Balanced Scorecard: Step by Step" or Bob Paladino's excellent "Five Key Principles of Corporate Performance Management". Both of these are great books for beginning the strategic planning process.
    Plus, there are numerous web sites by organizations and consultants promoting and assisting with Balanced Scorecard.
    If your question is about implementing a Balanced Scorecard in an SAP technology environment, I have two additional responses. First, if you are using SAP SEM, there is a very good book by SAP Press called "CPM and Balanced Scorecard with SAP"  by Dr. Marco Sisfontes-Monge. You can find it at sappress. com.
    If you are using the new SAP Strategy Management (SSM) piece, you can access a number of documents on the Best Practices section, (assuming you are registered)
    http://help.sap.com and click on the Best Practices tab. Here is a direct address for the SAP Strategy Management Best Practices section:
    http://help.sap.com/bp_smv2007/SSM_US/HTML/index.htm
    Did this answer you question?
    Bob

  • Oracle Balanced Scorecard

    Hi,
    I just newbie with oracle application. Today i need to install this application to the Red Hat Enterprise 5AS. So, my question is:
    1. Is there any pre-requisite that i need to download?
    2. If i not download all pre-requisite can that application running with problem?
    3. Is there any ftp that available to download pre-requisite?
    4. Is there any documentation provide for installation and configuring this s/w in Linux?
    Thans and regards,
    Zainal Abidin
    Edited by: Banie on Jan 13, 2009 12:01 AM

    Hi,
    this forum is about Installation of Oracle Beehive, the next-generation collaboration offering of Oracle.
    Oracle Balanced Scorecard sounds like something completely different, so you might want to post your questions somewhere else.
    /ernst

  • SEM Balanced Scorecard for HR

    Hi All,
    Has anyone implemented SEM Balanced scorecard for HR?
    I need information about the implementation of SEM Balanced scorecard for HR.
    Please help.

    Dear Sir,
    I invite you to participate in the study of exploring factors for implementing a balanced ScoreCard(BSC). I would like to inform you that my questionnaire is still active and you can find the on-line page on:
    http://www.labunix.uqam.ca/~jd091305
    Please complete the questionnaire and if you have any follow-up questions do not hesitate to contact me. An executive report will be sent electronically to all respondents at the end of this project.
    I am deeply grateful to all of you who already responded. Your participation is of great value to the advancement of my knowledge.
    Cordially
    Malika Hadj henni
    Candidate for Masters in Management Information Systems
    UQAM- Université du Québec à Montréal
    E-mail : [email protected]

Maybe you are looking for

  • PL SQL Grouping and Edit the Oldest Row in a Group

    Event Table CREATE TABLE "EVENT" ("EVENT_ID" VARCHAR2(36), "EVENTTYPE" VARCHAR2(110), "WHEN_OCCURRED" TIMESTAMP (6),"DESCRIPTION" VARCHAR2(255), "CURRENCY" VARCHAR2(3), "AMOUNT" NUMBER(38,8), "TRANSACTION_ID" VARCHAR2(255) ) Insert into EVENT (EVENT_

  • Simulate quadrature encoder output without hardware

    I am brand new to Labview and have not had any training other than youtube and this fine forum. I am a mechanic trying to solve a problem using labview. I am posting this new question because I don't have any hardware so I can't use the examples I've

  • Perl SAP::Rfc: how sets the export parameters correctly?

    Hi, we use SAP::RFC with Perl to read out some user details. We have a problem of reading the export parameter structure "address". Here is an example: #!/usr/bin/perl use strict; use SAP::Rfc; use Data::Dumper; my $rfc = new SAP::Rfc(             AS

  • Vix file in UI builder doesn't recieve data from Webservice application that communicates with SQL server database

    I have created Web service VI ("Prikaz insolacije.vi") which has two input string terminals (FROM / TO) for dates and two output terminals for data (1-D array) collected from database (MS SQL server). This VI communicates with database using function

  • Photos are corrupted on iphone.

    i recently replaced my iphone.  restore seems to have gone smoothly except that my photo folders are corrupted.  the camera roll and photo stream folders seem ok; all others behave as follows:  i open the folder, select a thumbnail, and the photo tha