URGENT !! PeopleSoft ePerformance Query

1.Can we add more than one appraiser ( manager evaluation ) for a single document in peoplesoft 9.2 ? or is it only possible through nominate participant option.
2. We have a requirement that in case the approver of an ePerformance document is denies the  evaluation request then the approver himself should be able to edit the evaluation rating etc. ( same as manager evaluation in ePerformance)

Actually the fastest and most efficient way of doing will be adding the requested fields in the cube and load the data from DSO to cube, if the DSO is feeding data to the cube. If you don't want to go that route, then you need to include the DSO in your multiprovider and identify the fields you need, since all the cube fields are already in the DSO, then there is no need to keep the cube in the multiprovider. Now you will have one dso and one cube in the multiprovider and in identification you specify all the fields as it is in the cube you had removed.
Hope I am clear.
thanks.
Wond

Similar Messages

  • Queries regarding cloning document in PeopleSoft ePerformance 9.1

    We are using PeopleSoft ePerformance 9.1 and tools version is 8.52.15. Our client is using delivered system as it is and no customization.
    Question 1 : We have cloned the document from existing document but not finding the rating option for goals in cloned document. Our client has completed mid year document now they want to create year end document by using mid year document. We are not seeing the rating option for goals and behavior, so how client to enter the rating for each goals and behavior. Our client is planning to pass final performance rating from year end document to compensation. Can you please help us?
    Question 2: Our client did not include "Overall Summary Section" for capturing overall rating in the template definition but they have already created mid year document and completed. Now we modified the template by including ""Overall Summary Section" section and then tried to create year end document by cloning mid year document but Summary section row is not inserted in section table (EP_APPR_B_SEC) for new document. is it working correctly (template changes will not take and consider only base document properties while cloning the document) or we are missing something?
    Our client wants to complete year end process ASAP so it is very urgent and critical. Please help us to solve this issue and your help will be greatly appreciated.

    Unless you already have the installation files for HCM9.1 FP1, you can only download HCM9.1 FP2 from Oracle Software Delivery Cloud (edelivery).
    I would advise to upgrade to the highest available FP, this will save a lot of effort in patching the application.
    PeopleTools 8.52 is certified with HCM PF2.
    PeopleTools 8.52 is certified with Oracle Database 10.2.0.5.0 on Oracle Solaris on SPARC (64-bit) 10
    Hope this helps.
    Hakan

  • PeopleSoft Connected Query in XML Publisher Report - Error

    Hello - I'm getting this weird error when trying to run an XML Publisher report off a PeopleSoft Connected Query. The Connected Query runs fine to an XML File. Any ideas? The parent/child queries in the connected query don't use any prompts.
    PCodeWTL(1/3): Prompt Field Name is invalid because it exceeds the maximum allowed size of %1 (50,493)

    We encounter the same problem. Did you get the answer for this issue? Thanks in advance.

  • Trying to obtain and use PeopleSoft Open Query ODBC driver

    I've found architectural diagrams and descriptions of the PeopleSoft Open Query ODBC driver and am looking for where to download this driver from.
    Anyone know or have any experience in using it?
    Thanks,
    Bob Sleik

    Hello Bob,
    The "PeopleSoft Open Query ODBC driver"
    is delivered with PeopleTools.  Starting with PT8.50, this driver is installed by running PS_HOME\bin\client\winx86\psodbccrinst.exe, which spools a log to %TEMP%\psodbccrinst.log
    The psodbccrinst.log shows the files and registry updates involved.
    After installing, when you open the ODBC administrator, you'll see 'PeopleSoft PeopleTools' driver for your PeopleTools release.
    Kind Regards,
    -Kirsten Zurbrugg

  • URGENT : Challenge questions query: Oracle Access Manager 10g

    Hi all,
    This is a query regarding password challenge questions in Oracle Access Manager 10g. We have created password policies for a specific container in OID (say cn=xxx,cn=users,dc=oracle,dc=com) and it is working fine.
    In order to exclude certain set of users (say user ABC ) for password policies, we have set the obpasswordchangeflag to false for those users which are in same container for which password policy is created.
    When we try to login to the application with the user say ABC, I am not seeing any reset password page - I am happy till this point. However it is showing Configure Challenge questions page. Is there any way to bypass this page? Or is this the expected behavior?
    This is very urgent and prompt reply is very much appreciated.
    -Mahendra

    Hi Mahendra,
    This is expected behaviour. In order to exclude the password policy management for some certains user for particular domain/container. please add the below configuration parameter to your OAM10g password policy.
    Password Policy Filter Field     (!(|(cn=xxx)(cn=abc)))
    ----Ajay

  • URGENT !( jdbc query problem)

    Hi Forum
    i made an application which run on JRun server.
    In many of my jsps i used sql query like this:
    " select id, name, rollno from student where add = 'jj';"
    and retrieve the record from resultset like this:
    rs.getString("id");
    rs.getString("name");
    rs.getString("rollno");
    I got no error.
    BUT WHEN I RETRIEVE THE RECORDS LIKE THIS
    rs.getString("name");
    rs.getString("id");
    rs.getString("rollno");
    i got the error:
    java.sql.SQLException: [Oracle][ODBC]Invalid column number <1>.
    I can not understand what is the problem ?
    all the datatypes are correct.
    all coding is correct.
    and everything is correct.
    pls help me & suggest a solution.
    is there any problem of jdbc API OR of JRUN SERVER SETTINGS?
    thanks
    mail me at [email protected]
    Arvind Goel

    Here is a part of my code in which i got error:
    (all variables are defined)
    It is the working code. BUT when i change the sequence of retrieving fields as i select then problem occurs.
    pls help me, i need it urgently.
    if(st.equals("YES")){
              rs=stmt.executeQuery("select r.na_WPN, m.MK_WPN, m.tp_WPN, m.REC_NO, m.ISSUED, r.dte_del, r.ps from amm_issue r,armentry m where r.ent_srno=m.srno and r.ps='"+username+"' and m.issued='YES' ");
         else if(st.equals("NO")){
                        rs=stmt.executeQuery("select r.na_WPN, m.MK_WPN, m.tp_WPN, m.REC_NO, m.ISSUED, r.dte_del, r.ps from amm_issue r,armentry m where r.ent_srno=m.srno and r.ps='"+username+"' and m.issued='NO' ");
         else if(st.equals("BOTH")){
              rs=stmt.executeQuery("select r.na_WPN, m.MK_WPN, m.tp_WPN, m.REC_NO, m.ISSUED, r.dte_del, r.ps from amm_issue r,armentry m where r.ent_srno=m.srno and r.ps='"+username+"'");
    while(rs.next())
         String tp_wpn=rs.getString("na_WPN");
         String mk_wpn=rs.getString("MK_WPN");
         String no_wpn=rs.getString("tp_WPN");
         String rec_no=rs.getString("REC_NO");
         String issued=rs.getString("ISSUED");
         dte_del          =rs.getString("dte_del");
         ps=     rs.getString("ps");
              if(i==0){
              out.println("<tr><th>Police Station </th> <th>Type of Weapon</th><th>Make of Weapon</th><th>No of Weapon</th><th>Recipt No</th><th>Issued Status</th><th>Date of Receiving");
              }i++;
              out.println("<TR><td>"+ps+" <td>"+no_wpn+"      <td>"+mk_wpn+"</td> <td>"+tp_wpn+"</td> <td> "+rec_no+"</td><td>"+issued+"<td><center>"+dte_del+" </td>");
    thanx
    Arvind

  • URGENT: Error with query on MultiProvider

    Hi,
    I am designing a query on a MultiProvider that combines a cube and ODS. the common characterisitics in the cube & ODS are Material, fiscal period, country.
    I have 2 rows & 1 column and several free characterisitics (mostly navigational attributes of Material).
    Rows: KF1 (from cube) & KF2 (from ODS)
    Column: Fiscal Period
    I have done all the selections & Identification in the multiprovider and set the ODS for BW reporting.
    I am not able to get data from ODS with query on MultiProvider.
    And i need to add another row that calculates the product of KF1 & KF2. KF1 is sales quantity and KF2 is price identified uniquely by Material/Country combination. When we report at Country level wihtout any material selection the output revenue should be SUM of individual products between KF1 & KF2 (if there are 3 materials (A) sold that have a price of X and 2 materials (B) sold that have a price of Y, the answer should be 3X + 2Y instead of (32) * (XY)/2.
    and also i have geographical hierarchy for 0country which is used in ODS & cube. can i use the geographical hierarchy for ODS as well for aggregation of values?
    Regards
    Emil

    Hi, i have solved the issue by impementing an SAP note.
    and the issue is the in Query i need to calculate a key figure based on the other 2 key figures.
    KF3 = KF1 * KF2
    the only issue here is i need to find the KF1 for each material/country/fiscal period from cube 1 and KF2 for each material/country/fiscal period.
    and multiply and then aggregate according to the filter & selection conditions.
    can anyone let me know how to do it..
    its very urgent..
    thank you
    Emil

  • Urgent help required: Query regarding LC Variables

    Hi All
    Sometime earlier I was working on a performance issue raised by a customer. It was shell script that was taking almost 8-9 hrs to complete. During my research I came across a fact that there were some variables which were not set, the LC variables were impacting the sort funnel operations because of which the script was taking a long time to execute.
    I asked them to export the following commands, after which the program went on smoothly and finished in a couple of mins:
    export LC_COLLATE=en_US.ISO8859-1
    export LC_MESSAGES=C
    export LC_MONETARY=en_US.ISO8859-1
    export LC_MONETARY=en_US.ISO8859-1
    export HZ=100
    export LC_CTYPE=en_US.ISO8859-1
    export LANG=en_US.UTF-8
    Later I did recover that setting the LC_COLLATE to C, is not helping and the program was again taking a lot of time. Few questions that I want to ask are:
    1. Can someone please tell me, what each of these variable mean and how these values make a difference.
    2. When I exported LC_COLLATE=en_US.ISO8859-1, it worked fine, but when i tried with the defalut value LC_COLLATE=C, then why the program didnt work.
    As this issue is still going on, hence I would request All to provide their valuable inputs and let me know as much as possible.
    Appreciate your help in this regard.
    Thanks
    Amit
    Hi All
    A new development in this regard. The customer has send us a screen shot in which they were trying to export the locale variable using the commands which I have pasted above. I can see in the screen shot that while exporting LC_COLLATE and LC_TYPE, they get a message that ""ksh: export: couldn't set locale correctly"".
    Request everyone to please give their inputs as it's a bit urgent.
    Thanks for all the help in advance.
    Thanks
    Amit
    Some help required please...
    Edited by: amitsinhaengg on Jul 22, 2009 2:03 AM
    Edited by: amitsinhaengg on Jul 22, 2009 2:06 AM

    LC_CTYPE
    Controls the behavior of character handling functions.
    LC_TIME
    Specifies date and time formats, including month names, days of the week, and common full and abbreviated representations.
    LC_MONETARY
    Specifies monetary formats, including the currency symbol for the locale, thousands separator, sign position, the number of fractional digits, and so forth.
    LC_NUMERIC
    Specifies the decimal delimiter (or radix character), the thousands separator, and the grouping.
    LC_COLLATE
    Specifies a collation order and regular expression definition for the locale.
    LC_MESSAGES
    Specifies the language in which the localized messages are written, and affirmative and negative responses of the locale (yes and no strings and expressions).
    You can use command
    # locale -k LC_CTYPE
    to see more detail about each type.

  • Urgent Requirement-- ABAP Query

    Hi,
    I have a developed ABAP Query by the name "YCOPM_Bill_PUR".
    In this query, I have an additional field "indicator". For this field, there is some code written, wherein either of the values "N" or "O" are assigned to this "indiactor" field. Now, the query should generate the output, only when indicator = N i.e. only those records should be displayed in the output for which the indicator field has value 'N'.
    Records having indicator field value as "O", should not be displayed.
    I want to know the place where I can write this condition and keep a control on the records displayed in the output.
    Currently, the query output displays all records (irrespective of whether indicator = 'N' or 'O').
    I have added the field indicator on the selection screen.
    But, I want to know where can I write the condition :
    if indicator = 'N'.
    endif.
    In "SQ02", there would be some place where i can write the above condition so that the output is trigerred only for those particular records. If possible, please do let me know.
    In short, I need to know, where are the output fields getting populated and where can I write this code to control the output.
    Please help me out.
    Thanks & Regards,
    Tejas Savla

    Hi Pooja,
                  Thanks a lot for your quick reply.
    I have done the same . i.e. i have written the code for that particular field (indicator) in SQ02 and generated the infoset. Now, the correct value ('O' or 'N') gets assigned to the indicator field.
    But, my problem is different.
    I need to find the location, where the all the output(report output) fields are getting populated, so that I can place a condition on my additional field (indicator) and control the fields to be displayed in the output.
    In short, I need to know, if there exists a location where I can place a condition such as "Display the output, only if field indicator = 'O' ".
    I hope you got my query.
    Thanks in advance.
    Regards,
    Tejas Savla

  • Urgent: regarding insert query problem

    i have a one table say "item_master_old" its structure is like
    item_master_old (item_name, item_rate, item_qty, item_desc)
    second table say "item_master" its structure is like
    item_master(id, item_name, item_rate, item_qty, item_desc)
    i want to insert item_master_old values in item_master using the following insert query :
    insert into item_master ( (select nvl( max(id), 0) + 1 from item_master ),
    item_name,
    item_rate,
    item_qty,
    item_desc
    from
    item_master_old)
    but i update the id column with 1 in all column but i want the max(id) + 1
    how it can be possible ?
    Regards
    s

    try this!
    insert into item_master
    select (select nvl(max(id),0) from item_master)+rownum,
    item_name,  item_rate, item_qty, item_desc
    from item_master_old;
    "Not tested"Message was edited by:
    Jameel

  • Urgent: how to query/index xml files to retrieve information belonging to a section?

    os: linux
    db: oracle 9iR2
    Hi,
    how can I extract -> only <- the matching entry information from within a xml file, that belongs to the result of a query?
    For example, given the following xml:
    <QualifierRecordSet>
    <QualifierRecord QualifierType = "1">
    <QualifierUI>Q000002</QualifierUI>
    <QualifierName>
    <String>test1</String>
    </QualifierName>
    <DateCreated>
    <Year>1973</Year>
    <Month>12</Month>
    <Day>27</Day>
    </DateCreated>
    </QualifierRecord>
    <QualifierRecord QualifierType = "1">
    <QualifierUI>Q000003</QualifierUI>
    <QualifierName>
    <String>test2</String>
    </QualifierName>
    <DateCreated>
    <Year>1975</Year>
    <Month>10</Month>
    <Day10</Day>
    </DateCreated>
    </QualifierRecord>
    <QualifierRecordSet>
    I would like to query for '/QualifierRecordSet/QualifierRecord/QualifierName[String = "test2"]' and retrieve ONLY the second 'QualifierRecord' - entry, i.e.:
    <QualifierRecord QualifierType = "1">
    <QualifierUI>Q000003</QualifierUI>
    <QualifierName>
    <String>test2</String>
    </QualifierName>
    <DateCreated>
    <Year>1975</Year>
    <Month>10</Month>
    <Day10</Day>
    </DateCreated>
    </QualifierRecord>
    ...but not the' id' or 'name' of the xml-document(I have only one document).
    Thanks for your help in advance.
    Best Regards,
    Dan

    extract() would do what you want. But your whole approach of only have 1 document makes no sense when working with an XML database. See my reply to the other post for more reasons.

  • Urgent help in query

    i have a table having business_name,sales,SIC the data is shown below
    business_name sales sic
    xxx 30 1300
    yyy 45.5 2000
    zzz 65 8769
    i need to generate a report the number of business having sales between 0-50 and
    sic between 000-3000 and 3000-5000 and 5000-7000...
    like sales between 50-100 and having sic 000-3000 ,3000-5000...
    how to write this in query. could anybody please help me.
    0000-3000 3000-5000 5000-7000
    0-50
    50-100
    100-150

    i have a table having columns businessname,sales in millions and sic code.
    sic code ranges from 0000-9999
    i want to generate a report that how many businesses having a sales between
    0-50 and sic between0000-3000, and no of businesses having sales between
    0-50 and sic between 3000-5000 ,and sales0-50 and sic 5000-7000 son on
    and also
    Businesses have sales 50-100 and sic 0000-3000,3000-5000....
    the report should be like this
    SIC
    0000-3000 3000-5000 5000-7000
    SALES
    0-50 2 3 5
    50-100 9 1 8
    100-150 0 18 2

  • Urgent: Simple packages query.

    I have two .java files (Assign1.java, Support.java) in the same package (cis.unisa) and need an instance of Assign1 to access a class in Support.java (FileAccess). I thought this would be simple but not so far.
    I tried just FileAccess.method() but I get 'cannot resolve symbol. symbol: variable FileAccess' I've also tried unisa.cis.FileAccess.method() and importing unisa.cis.* but I get the same message in all. It seems as if it just can't find the FileAccess class but it is there.
    Any help would be greatly appreciated, A.S.A.P. thanks.

    Don't flag your question as urgent, even if it is for you. Claiming urgency is very likely to be counter-productive: most forum regulars will simply ignore such messages as rude and selfish attempts to elicit immediate and special attention.
    Besides, unless the entire Bolivian army is about to chase you over the edge of a cliff, your problem probably isn't as urgent as you think. :o)

  • Urgent - OIM 10g query

    How to get the process tasks for any user & IT Resource combination. e.g. if I want to know whether "Change Password" was initiated for the user for Active directory or not, how can I use the OIM APIs to find out the same.
    Please help. THis is very urgent.
    Thanks

    Or even if I get the Resource Profile for the user, it would be helpful.
    I need the "Resource Name" and "Description" column data from OIM Admin Console >>User Detail >> Resource Profile

  • Urgent-Problem in Query

    Hi Guys,
    I have some problem in this query...
    select decode(sign(1100-1000),-1, '-1',
    sign(1100-2000), +1, 'N. A.',
    sign(1100-1001), +1, 1100)
    from dual;
    If I use 800 instead of 1100 the query results fine but with 1100 instead of 800 I receive this message:
    sign(1100-2000), +1, 'N. A.',
    ERROR at line 2:
    ORA-01722: invalid number
    I will apprecieate if someone help me for solving this problem.
    Thanks in advance
    Bill
    null

    The last query mentioned by your works becuase of the following reason.
    Decode can be simplified as below.
    IF SIGN(800-1000) = -1 THEN
    RETURN(-1)
    ELSIF SIGN(800-1000) = SIGN(800-2000) THEN
    RETURN(+1)
    ELSIF SIGN(800-1000) = 'N.A.' THEN
    RETURN(SIGN(800 - 1001)
    ELSIF SIGN(800-1000) = +1 THEN
    RETURN(800)
    END IF
    This query executes because the first IF condition is satisifed and the query returns with -1.
    In other case the query goes on to execute the third IF condition and so the query fails.
    Hope this answers your question.
    Thanks,
    Gana

Maybe you are looking for

  • A better way to execute a series of external commands?

    Hi, Consider the code snippet... Process proc1 = rt.exec("Some external command"); Vector vecOutput = outputGobbler.getOutput() ; String[] strAlterCmds = new String[vecOutput.size()]; for ( int k = 0 ; k < vecOutput.size() ; k++ ) strAlterCmds[k] = n

  • Sharing my iTunes library with other computers on the network

    Hi Everybody, I have an external hard disk with about 125 gigs of music on it, and I've spent a year going through it and categorizing it, and rating the songs. The hard disk is plugged into my Aiport Extreme, and communicates with my iMac just fine.

  • InDesign CC 2014 won't download or install

    I'm running OS X 10.6.8 (Mountain Lion?) on a 2011 17" MacBook Pro. I have the Design Standard CC subscription. I'm getting InDesign CC 2014 Mac files from customers, and they won't open in InDesign CC. I would install InDesign CC 2014, but don't see

  • Question about plugging in an ajax progress bar component onto a black-box.

    Hello, I have the following problem: I want to integrate an ajax progress bar component to a j2ee application and I am in reference to the following pattern (https://bpcatalog.dev.java.net/nonav/ajax/progress-bar/design.html). It seems I need for the

  • Wince 6.0 image for software mfgtool

    HI, My problem is download the wince 6.0 image with the software Freescale Mfgtool . But if I download the wince image with the platfom builder, then download the wince image with Mfgtool. The download is OK. The Software mfgtool download the wince i