In Vacany requisition-error "Recruiter is missing" appear after all are set

Hi,
When a the Line Manager or Supervisor is trying to complete a VR form in portal it is saying " Recruiter is missing " in. I have checked the Account assignment feature (which is defined correctly) and also the recruiter maintianed for that PSA ( it is also maintianed correclty),even the employee who is occupying the position ( for which the position is going to get vacant) and his IT0001 and his Sueprvisor's everything is correct. But still this error "Recruiter is missing" appears in the form.
Any settings have been missed. Please provide your inputs.
Thanks,
Selva

Hello Selva,
The Recruiter dropdown values are determined as follows:              
- In the customizing table EREC_GENERAL, the 'Recruiter Logic Type'  must be set to "Manual entry by the Manager".                                                                               
- The Administrators table (T526) must be configured. The Recruiter  User IDs (USRID) are taken from the Administrators
table (T526) where  the 'Group' (WERKS) value corresponds to either:                      
(a) the Administrator Group (TCLAS) value determined by Feature PINCH (default value 'APPL'), or                                      
(b) the Administrator Group (SBMOD) value assigned to the  Hiring Manager's Infotype 0001.                                       
- In the E-Recruiting system, the Recruiter User ID must fulfill the prerequisites for a Recruiter user, such as:                                
(a) It must be assigned to the same pernr as in the HR/MSS system, in the case of a standalone E-Recruiting system.                               
(b) It must have the correct user profile for a Recruiter.                  
e.g. SAP_RCF_RECRUITER                                                      
(c) It must  have a Candidate Object assigned to it.                        
(d) It must have a valid email address defined.                             
Regards
Pooja

Similar Messages

  • Impdp triggers always give error ORA-04071:missing BEFORE, AFTER or INSTEAD

    Hello,
    I am using 11g impdp to create a test system.
    I use this cmd to import
    impdp 'SYS/xxxxx@PWRFUN AS SYSDBA' dumpfile=PWRPROD.DMP logfile=PWRFUNimportPROD.log SCHEMAS=pwrplant TABLE_EXISTS_ACTION=REPLACE
    Then I get this error for all the triggers
    ORA-39083: Object type TRIGGER failed to create with error:
    ORA-04071: missing BEFORE, AFTER or INSTEAD OF keyword
    Failing sql is:
    CREATE TRIGGER "PWRPLANT"."APPROVAL_STEPS_HISTORY" PS_HISTORY
    BEFORE UPDATE OR INSERT ON PWRPLANT.APPROVAL_STEPS_HISTORY
    FOR EACH ROW
    BEGIN    :new.user_id := USER;    :new.time_stamp := SYSDATE; END;
    As you can see, the trigger does contain the word "before".
    When I remove " "PWRPLANT"."APPROVAL_STEPS_HISTORY" " and run the trigger below, it compiles correctly. Why is this, and how do I make my impdp to run correctly?
    CREATE TRIGGER PS_HISTORY
    BEFORE UPDATE OR INSERT ON PWRPLANT.APPROVAL_STEPS_HISTORY
    FOR EACH ROW
    BEGIN    :new.user_id := USER;    :new.time_stamp := SYSDATE; END;

    same error, thanks for your attemp
    Error starting at line 1 in command:
    CREATE TRIGGER "PWRPLANT"."APPROVAL_STEPS_HISTORY" PS_HISTORY
    BEFORE UPDATE OR INSERT ON PWRPLANT.APPROVAL_STEPS_HISTORY
    REFERENCING new AS new
    FOR EACH ROW
    BEGIN :new.user_id := USER; :new.time_stamp := SYSDATE; END;
    Error report:
    ORA-04071: missing BEFORE, AFTER or INSTEAD OF keyword
    04071. 00000 - "missing BEFORE, AFTER or INSTEAD OF keyword"
    *Cause:    The trigger statement is missing the BEFORE/AFTER/INSTEAD OF clause.
    *Action:   Specify either BEFORE, AFTER or INSTEAD OF.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Inapropriate apps appear after updates are done

    I need help! I was looking through my son's (11) iPod touch recently and there were apps on there that were not purchased. My kids don't know the iTunes password, so all purchases have to be approved by me or my husband. These apps seemed to appear after an update was done. They are NOT appropriate for an 11 year old.  I can't simply delete them because when you press and hold the icon, no 'X' appears for these apps. I'm very concerned that some apps in iTunes are not legit because this doesn't seem right. Can anyone help me remove them???

    - The App and iTunes store is ste up so that there is a ten minute window to download something after the passwared for an update or purchse has been made.  From your dscription, it appeared that that happened.
    - It also appears that you have restrictions set that prohibit deleting apps.  Go to Setings>General>Restrictions.  You have to enter the passcode to change them.
    - Look at the apps on the iPod.  if there is one named Cycia, it means that the iPod had been jailbroken and that apps can be installed by means other than the App store.

  • Appear after all buttons clicked

    OK, I have a relatively easy question for you guys. I have a slide with four persistent buttons on it and I want a link to the next slide to appear after the four buttons have been clicked. What confuses me, however, is that I'm not sure where to put the "Advance to Next Slide" button on the timeline.
    I'm assuing that the problem is that I have all the buttons set to pause at the same time, but I'm not sure what the alternative would be.
    I've attached pictures of my slide and timeline below. Any feedback you could give me would be much appreciated. Thanks.

    OK Walter, then you really need advanced actions for the buttons. Noellet gave some ideas but it will not work if the user can click multiple times on each button, sorry Noellet. I will try to explain why: in your scenario the Next button will also appear if the user clicked four times on the same button
    Walter, you need to create one user variable for each button, I will label them v_one, v_two, v_three, v_four.  You do not need to give those variables a start value at all. They will be set to 1, when the corresponding button is clicked the first time. You will need a conditional advanced action for each button, and as Noellet correctly pointed out, the 'Next' button has to be initially invisible.
    Each conditional advanced action will have to do several things, showing the text caption and hiding all other text captions, set the value of its variable to 1, check the value of all the user variables and if they are all=1 the next button will be made visible. Easiest way will be to create indeed a counter variable as well v_counter.
    Would use 2 decisions: first will be a mimick of a standard action, second will be a really conditional action. For the first button, where the Text Caption is TC1 this will be:
    First decision: IF 1 = 1     (will always be true, so THEN actions will always be executed
                        THEN      Show TC1
                                       Hide TC2
                                       Hide TC3
                                       Hide TC4
                                       Assign v_one with 1
                                       Expression v_counter = v_one + v_two
                                       Expression v_counter = v_counter + v_three
                                       Expression v_counter = v_counter + v_four                    need 3 expressions to calculate v_counter
                                       Assign rdcmndGotoFrame with rdinfoCurrentFrame      to rewind the playhead
    Second decision  IF v_counter = 4
                             THEN  Show BtNext      shows the Next button
                             ELSE  Continue
    Did not try it out, let me know if it works, logic is OK
    Lilybiri

  • Where do CardDAV details appear after they are entered?

    I used the System Preferences | Mail etc to enter CardDAV details for my google contacts, however when the details were not listed in the Accounts screen (there is an entry for the gmail account including email and calendar, but contacts are not included as an option and the CardDav account is not separately listed), I thought I must not have entered correctly and reentered them.  Now the contacts appear to be syncing twice...  I need to find the place on the Mac Air where I can edit (delete) CardDav accounts (at least one of the entries!). 
    Any help gratefully received.

    Hello Joanne195,
    Take a look at this article named Address Book 6.x: Sync contacts with Google Contacts found here http://support.apple.com/kb/ph4625.
    You can sync contacts in your address book with your Google Contacts. If you sync your address book with multiple Mac computers, use just one of those computers to sync with Google Contacts. You can’t sync contacts from a CardDAV, Exchange, or Yahoo! account with Google Contacts.
    Important: If syncing with Google Contacts is turned on when you add an iCloud account, the syncing option is turned off. It’s recommended to keep it turned off while you’re using the iCloud Contacts service.
    Choose Address Book > Preferences, click Accounts, choose On My Mac in your list of accounts, and then click Account Information.
    Select the “Synchronize with Google” checkbox.
    Read the advisory information and then click Agree to continue.
    Enter your Google account name (such as [email protected] or, for Google Apps customers, [email protected]) and password, and then click OK.
    You can sync only one Google account.
    When the account name and password you entered are confirmed, the dialog disappears. You can close Address Book preferences now if you want. Contacts will be synced automatically at a regular interval.
    All the best,
    Sterling

  • Error message "The Printhead appears to be missing, not detected, or incorrectly installed"

    HP Officejet Pro 8600 e-All-in-One Printer - N911a
    I've had this printer for awhile and it has worked perfectly. 
    Just out of nowhere...
    I'm getting an error message that says "The Printhead appears to be missing, not detected, or incorrectly installed" . A short animation plays but i can't figure out what it's tell me to do.
    Please help!

    Hi @AjoyBrooks,
    Welcome to the HP Forums! 
    I see that you are getting the Error message, "The Printhead appears to be missing, not detected, or incorrectly installed." On your HP Officejet 8600. I am sorry that this has occured, but I am happy to help!
    Please take a look through this printhead guide. A 'Missing or Failed Printhead' Error Message Displays on the Printer after Installing a New Printhe....
    Hope this guide helps, and please let me know if you have any further issues!
    RnRMusicMan
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" to say “Thanks” for helping!

  • Can't get error message to stop appearing, missing font...

    I just updated to osx 10.5, and ilife 09 at the same time. I'm working in iWeb, and my previous sites have imported fine, and are uploading great, but I keep getting a message that I'm missing a font. Every time I click on a different page in my site I get the message, and even after I click continue and click on another page then come back, I get the same annoying message. The font is ArialMT and it seems to be the font that is the default for the template called "white".
    My question is how do I get the error message to stop appearing. I would replace the font but I do not have it. Does anyone know how to fix this problem?

    I have Arial Rounded MT Bold in my fonts list but not in my fonts folder. Its copyright © 1993, Monotype Typography ltd. It appears to be a Microsoft font. I must trash it in case it pollutes my Mac!
    Its sitting in a CD artwork folder and I must have imported it from somewhere at some time.
    Have you tried deleting the iWeb preference file - Home Folder/Library/Preferences/com.apple.iWeb.plist and restarting your Mac to see if that will fix it.
    The default font in iWeb is Arial Regular.

  • Error while accesing requisition from recruiter role in portal

    Dear Experts ,
    When we are trying to access *requisition in recruiter role in portal it is showing you are not authorized to perform this applcation. Can you pleae suggest me what will be the problem.
    For clarity we are having EHP4 , and the portal nw7.1 , we have assigned SAP _ALL to the user we are testing and in portal we had assigned super admin , recruiter , recrutiment administrator.
    Quick reply is highly appreciable.
    Thanks & Regards,
    Ravi

    Dear Bala ,
    Thanks for your support the erro got resolved actually the candidate has not been maintained , after doing that in weekend it got resolved.
    Thanks
    Ravi vemuri.

  • ERROR: ORACLE prepare error: ORA-00936: missing expression

    Hello,
    I am required to run "pass-through" Oracle SQL, to extract data from tables into SAS for processing and manipulation. My code (attached) reads and writes (executes) but with zero records to test first. I cannot get past the Prepare Error.
    The query is very much like other queries that seem to work, but I cannot get past this prepare error. I have no other access to individauls with adequate knowledge of PL SQL, and as a last stop hoped others in the forum could quickly spot the source of errror.
    Thanks very much in advance for any assistance.
    Jeff
    1 ;*';*";*/;quit;run;
    2 OPTIONS PAGENO=MIN;
    3 %LET _CLIENTTASKLABEL=%NRBQUOTE(rx_biplr_v3_2);
    4 %LET _EGTASKLABEL=%NRBQUOTE(rx_biplr_v3_2);
    5 %LET _CLIENTPROJECTNAME=%NRBQUOTE();
    6 %LET _SASPROGRAMFILE=;
    7
    8 ODS _ALL_ CLOSE;
    NOTE: Some of your options or statements may not be supported with the Activex or Java series of devices. Graph defaults for these
    drivers may be different from other SAS/GRAPH device drivers. For further information, please contact Technical Support.
    9 OPTIONS DEV=ACTIVEX;
    10 FILENAME EGHTML TEMP;
    NOTE: Writing HTML(EGHTML) Body file: EGHTML
    11 ODS HTML(ID=EGHTML) FILE=EGHTML ENCODING='utf-8' STYLE=EGDefault
    11 ! STYLESHEET=(URL="file:///C:/Program%20Files/SAS/Shared%20Files/BIClientStyles/EGDefault.css")
    11 ! ATTRIBUTES=("CODEBASE"="http://www2.sas.com/codebase/graph/v91/sasgraph.exe") NOGTITLE NOGFOOTNOTE GPATH=&sasworklocation
    11 ! ;
    12
    13 %gaccessible;
    14 /********************************************************/
    15 * RX_BIPLR_V3.SAS ;
    16 /********************************************************/
    17
    18 dm 'log;clear;out;clear';
    19 options linesize =120;
    20 Option obs=0 NoReplace;
    21
    22 ****************************************************************************************;
    23 *Date Programmer Reviewed By WHAT WAS DONE;
    24 *----- -------------- ------------ -----------------------------------------;
    25 *2005 David Boyd Program creation for test population;
    26 *;
    27 *02/06/2006 Ivon Jones Modified to include total population;
    28 *;
    29 *07/20/2006 Ivon Jones Identified data elements for exclusion;
    30 * or inclusion for consolidation with ;
    31 * Robin's report;
    32 *;
    33 *08/18/2006 Ivon Jones Updated the Specific Therapeutic Classes;
    34 * 10-2009 J Shaf - modified to extract actual or potential Bipolar Dx from UBH and Medical Claims;
    35 ****************************************************************************************;
    36
    37
    38
    39 *%let allclmorgn = ('M','A') ; /* all claims origin code */
    40 %let begdate='01SEP2009'd;
    41 %let enddate='30SEP2009'd;
    42 %let q = %str(%') ;
    43
    44
    45 data _null_ ;
    46 call symput('fdos',put(intnx('month',"&begdate"d,-27,'beginning'), date9.) ) ;
    47 call symput('ldos',put(intnx('month',"&enddate"d,-0,'ending'), date9.) ) ;
    48 run ;
    NOTE: DATA statement used (Total process time):
    real time 0.00 seconds
    2 The SAS System 11:44 Friday, October 30, 2009
    cpu time 0.01 seconds
    49
    50
    51
    52 **************************************************************;
    53 * ??Use the data _null_ step to create a macro variable for the ;
    54 * year and month based on the ldos macro variable in the data ;
    55 * step above?? ;
    56 **************************************************************;
    57
    58
    59 data _null_ ;
    60 if month("&ldos"d) < 10
    61 then call symput('yr_mo',compress(year("&ldos"d) || '0' || month("&ldos"d) ) ) ;
    62 else call symput('yr_mo',compress(year("&ldos"d) || month("&ldos"d) ) ) ;
    63 run ;
    NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column).
    61:39 61:64 62:39 62:57
    NOTE: DATA statement used (Total process time):
    real time 0.00 seconds
    cpu time 0.00 seconds
    64
    65 *%put &biplr_dx;
    66 %put &begdate ;
    '01SEP2009'd
    67 %put &enddate ;
    '30SEP2009'd
    68 %put &fdos ;
    01JUN2007
    69 %put &ldos ;
    30SEP2009
    70 %put &q ;
    71
    72
    73 libname biplr'/home/jshafi01/projects/adhoc/biplr_dprsn/data';
    NOTE: Libref BIPLR was successfully assigned as follows:
    Engine: V9
    Physical Name: /home/jshafi01/projects/adhoc/biplr_dprsn/data
    74 libname rosdwp oracle user="&oracle_user." pass="&oracle_pass." buffsize=32767 path='rosdwp';
    NOTE: Libref ROSDWP was successfully assigned as follows:
    Engine: ORACLE
    Physical Name: rosdwp
    75
    76 data work.biplr_up_v1;
    77 attrib mbr_id length=$26;
    78 set biplr.biplr_ubh_med_v1;
    79 run;
    NOTE: There were 0 observations read from the data set BIPLR.BIPLR_UBH_MED_V1.
    NOTE: The data set WORK.BIPLR_UP_V1 has 0 observations and 1 variables.
    NOTE: DATA statement used (Total process time):
    real time 0.01 seconds
    3 The SAS System 11:44 Friday, October 30, 2009
    cpu time 0.00 seconds
    80
    81 proc contents;
    82 run;
    NOTE: PROCEDURE CONTENTS used (Total process time):
    real time 0.03 seconds
    cpu time 0.03 seconds
    83
    84 proc datasets
    85      library = rosdwp nolist;
    86      delete biplr_up_v1;
    87 quit;
    NOTE: Deleting ROSDWP.BIPLR_UP_V1 (memtype=DATA).
    NOTE: PROCEDURE DATASETS used (Total process time):
    real time 3.74 seconds
    cpu time 0.03 seconds
    88
    89 proc datasets
    90      library=work nolist;
    91      copy out = rosdwp move;
    92      select biplr_up_v1 ;
    93 quit;
    NOTE: Moving WORK.BIPLR_UP_V1 to ROSDWP.BIPLR_UP_V1 (memtype=DATA).
    NOTE: SAS variable labels, formats, and lengths are not written to DBMS tables.
    NOTE: There were 0 observations read from the data set WORK.BIPLR_UP_V1.
    NOTE: The data set ROSDWP.BIPLR_UP_V1 has 0 observations and 1 variables.
    NOTE: PROCEDURE DATASETS used (Total process time):
    real time 0.32 seconds
    cpu time 0.04 seconds
    94
    95
    96
    97 *****************************************************************************;
    98
    99 *execute(commit) by rosdwp
    100 ******************************************************************************;
    101
    102
    103 proc SQL noprint ;
    104 connect to oracle as rosdwp (user="&oracle_user." password="&oracle_pass" buffsize=32767 path='rosdwp'
    104 ! preserve_comments);
    105      execute(alter session set nls_date_format = 'ddmonyyyy') by rosdwp;
    106 CREATE table biplr_rx as
    107 SELECT
    108 mrb_id,
    109 pcp_spc,
    110 rx_date,
    4 The SAS System 11:44 Friday, October 30, 2009
    111 brand,
    112 generic,
    113 ahfs_cd,
    114 ahfs_dsc,
    115 lbl,
    116 strngth,
    117 unt,
    118 spc_tx_cls_cd,
    119 spc_tx_cls_dsc,
    120 gcn,
    121 rx_num,
    122 rx_ingrd,
    123 rx_paid,
    124 rx_cnt,
    125 rx_qty,
    126 rx_day
    127 FROM connection to rosdwp
    128 (SELECT
    129 mid.UNIQ_MBR_ID as mrb_id,
    130 pd.PRVDR_SPCLTY_DESC as pcp_spc,
    131 pcf.LAST_SRVC_DT as rx_date,
    132 dd.BRAND_NAME as brand,
    133 dd.GNRC_NAME as generic,
    134 dd.AHFS_THRPTC_CLS_CD as ahfs_cd,
    135 dd.AHFS_THRPTC_CLS_DESC as ahfs_dsc,
    136 dd.LABEL_NAME as lbl,
    137 dd.STRNGTH_NUM as strngth,
    138 dd.STRNGTH_UNIT_DESC as unt,
    139 dd.SPECF_THRPTC_CLS_CD as spc_tx_cls_cd,
    140 dd.SPECF_THRPTC_CLS_DESC as spc_tx_cls_dsc,
    141 dd.GCN_NUM as gcn,
    142 pcf.PRSCRPTN_NUM as rx_num,
    143 SUM(pcf.INGRDNT_AMT) as rx_ingrd,
    144 SUM(pcf.PD_AMT) as rx_paid,
    145 SUM(pcf.UNIT_SRVC_CNT) as rx_cnt,
    146 SUM(pcf.DSPNSD_QTY) as rx_qty,
    147 SUM(pcf.DAY_SUPLY_CNT) as rx_day
    148 FROM
    149 PHRMCY_CLM_FACT pcf,
    150 MBR_ID_DMNSN mid,
    151 DRUG_DMNSN dd,
    152 PRVDR_DMNSN pd,
    153           biplr_up_v1
    154 WHERE
    155 (
    156 (biplr_up_v1.mbr_id = MBR_ID_DMNSN.UNIQ_MBR_ID) And
    157 (PHRMCY_CLM_FACT.FINL_CLM_KEY = PHRMCY_FINL_CLM_DMNSN.FINL_CLM_KEY) AND
    158 (PHRMCY_CLM_FACT.MBR_KEY = MBR_ID_DMNSN.MBR_KEY) And
    159 (PHRMCY_CLM_FACT.BNFT_KEY = MBR_BNFT_DMNSN.BNFT_KEY) And
    160 (PHRMCY_CLM_FACT.DRUG_KEY = DRUG_DMNSN.DRUG_KEY) And
    161 (PHRMCY_FINL_CLM_DMNSN.CLM_ORGN_CD IN ('M','A')) AND
    162 (PHRMCY_CLM_FACT.LAST_SRVC_DT BETWEEN between &q.&fdos.&q and &q.&ldos.&q)
    163      )
    164 Group By
    165 mid.UNIQ_MBR_ID ,
    166 pd.PRVDR_SPCLTY_DESC ,
    167 pcf.LAST_SRVC_DT ,
    168 dd.BRAND_NAME ,
    5 The SAS System 11:44 Friday, October 30, 2009
    169 dd.GNRC_NAME ,
    170 dd.AHFS_THRPTC_CLS_CD ,
    171 dd.AHFS_THRPTC_CLS_DESC ,
    172 dd.LABEL_NAME ,
    173 dd.STRNGTH_NUM ,
    174 dd.STRNGTH_UNIT_DESC ,
    175 dd.SPECF_THRPTC_CLS_CD ,
    176 dd.SPECF_THRPTC_CLS_DESC ,
    177 dd.GCN_NUM ,
    178 pcf.PRSCRPTN_NUM
    179 );
    ERROR: ORACLE prepare error: ORA-00936: missing expression. SQL statement: SELECT mid.UNIQ_MBR_ID as mrb_id,
    pd.PRVDR_SPCLTY_DESC as pcp_spc, pcf.LAST_SRVC_DT as rx_date, dd.BRAND_NAME as brand, dd.GNRC_NAME as generic,
    dd.AHFS_THRPTC_CLS_CD as ahfs_cd, dd.AHFS_THRPTC_CLS_DESC as ahfs_dsc, dd.LABEL_NAME as lbl, dd.STRNGTH_NUM as
    strngth, dd.STRNGTH_UNIT_DESC as unt, dd.SPECF_THRPTC_CLS_CD as spc_tx_cls_cd, dd.SPECF_THRPTC_CLS_DESC as
    spc_tx_cls_dsc, dd.GCN_NUM as gcn, pcf.PRSCRPTN_NUM as rx_num, SUM(pcf.INGRDNT_AMT) as rx_ingrd, SUM(pcf.PD_AMT)
    as rx_paid, SUM(pcf.UNIT_SRVC_CNT) as rx_cnt, SUM(pcf.DSPNSD_QTY) as rx_qty, SUM(pcf.DAY_SUPLY_CNT) as rx_day
    FROM PHRMCY_CLM_FACT pcf, MBR_ID_DMNSN mid, DRUG_DMNSN dd, PRVDR_DMNSN pd, biplr_up_v1 WHERE (
    (biplr_up_v1.mbr_id = MBR_ID_DMNSN.UNIQ_MBR_ID) And (PHRMCY_CLM_FACT.FINL_CLM_KEY =
    PHRMCY_FINL_CLM_DMNSN.FINL_CLM_KEY) AND (PHRMCY_CLM_FACT.MBR_KEY = MBR_ID_DMNSN.MBR_KEY) And
    (PHRMCY_CLM_FACT.BNFT_KEY = MBR_BNFT_DMNSN.BNFT_KEY) And (PHRMCY_CLM_FACT.DRUG_KEY = DRUG_DMNSN.DRUG_KEY) And
    (PHRMCY_FINL_CLM_DMNSN.CLM_ORGN_CD IN ('M','A')) AND (PHRMCY_CLM_FACT.LAST_SRVC_DT BETWEEN between '01JUN2007'
    and '30SEP2009') ) Group By mid.UNIQ_MBR_ID , pd.PRVDR_SPCLTY_DESC , pcf.LAST_SRVC_DT , dd.BRAND_NAME ,
    dd.GNRC_NAME , dd.AHFS_THRPTC_CLS_CD , dd.AHFS_THRPTC_CLS_DESC , dd.LABEL_NAME , dd.STRNGTH_NUM ,
    dd.STRNGTH_UNIT_DESC , dd.SPECF_THRPTC_CLS_CD , dd.SPECF_THRPTC_CLS_DESC , dd.GCN_NUM , pcf.PRSCRPTN_NUM.
    NOTE: PROC SQL set option NOEXEC and will continue to check the syntax of statements.
    180 execute (drop table biplr_up_v1) by rosdwp;
    NOTE: Statement not executed due to NOEXEC option.
    181 disconnect from rosdwp;
    NOTE: Statement not executed due to NOEXEC option.
    182 quit;
    NOTE: The SAS System stopped processing this step because of errors.
    NOTE: PROCEDURE SQL used (Total process time):
    real time 0.14 seconds
    cpu time 0.03 seconds
    183
    184

    Hello Again ,
    Wish Oracle was a bit more informative. Am using a SAS Institute Product called Enterprise Guide. A "hot fix" was installed to address an issue that the product appears unable to save the latest version of edited code changes (hence " BETWEEN between" remaining even after a prior edit). In any case, with the change, am now receiving this error:
    " ERROR: ORACLE prepare error: ORA-00904: "PHRMCY_CLM_FACT"."LAST_SRVC_DT": invalid identifier". (Log file appears below)
    -The error remains, regardless of whether one uses "pass through" code to pass the date range to Oracle (which looks ok from the log output below I believe), or if I hard code the date range into the PL SQL query itself.
    -The Prepare error always appears at end of the inner SELECT.
    -The Prepare error remains, with or without the GROUP BY clause.
    Is there anything else here I am missing? Someone suggested a reserve word - but from other ANSI SQL versions, I do not see that is the case. I have consulted SAS Tech Support and SAS List Serve at University of GA. but nothing definitive from these sources. Have requested facility to be able to run Oracle directly, outside this SAS Institute product - in process.
    Any suggestions are greatly appreciated. Thanks to everyone very much.
    Jeff
    14 /********************************************************/
    15 * RX_BIPLR_V3.SAS ;
    16 /********************************************************/
    17
    18 dm 'log;clear;out;clear';
    19 options linesize =120;
    20 Option obs=0 NoReplace;
    21
    22 ****************************************************************************************;
    23 *Date       Programmer         Reviewed By     WHAT WAS DONE;
    24 *-----      --------------     ------------    -----------------------------------------;
    25 *2005 D. Boyd Program creation for test population;
    26 *;
    27 *02/06/2006 I. Jones Modified to include total population;
    28 *;
    29 *07/20/2006 I. Jones Identified data elements for exclusion;
    30 * or inclusion for consolidation with ;
    31 * Robin's report;
    32 *;
    33 *08/18/2006 I Jones Updated the Specific Therapeutic Classes;
    34 * 10-2009 J Shaf - modified to extract actual or potential Bipolar Dx from UBH and Medical Claims;
    35 ****************************************************************************************;
    36
    37
    38
    39 *%let allclmorgn = ('M','A') ; /* all claims origin code */
    40 %let begdate='01SEP2009'd;
    41 %let enddate='30SEP2009'd;
    42 %let q = %str(%') ;
    43
    44
    45 data null ;
    46 call symput('fdos',put(intnx('month',"&begdate"d,-27,'beginning'), date9.) ) ;
    47 call symput('ldos',put(intnx('month',"&enddate"d,-0,'ending'), date9.) ) ;
    48 run ;
    2 The SAS System 12:46 Monday, November 2, 2009
    NOTE: DATA statement used (Total process time):
    real time 0.00 seconds
    cpu time 0.00 seconds
    49
    50
    51
    52 **************************************************************;
    53 * ??Use the data null step to create a macro variable for the ;
    54 * year and month based on the ldos macro variable in the data ;
    55 * step above?? ;
    56 **************************************************************;
    57
    58
    59 data null ;
    60 if month("&ldos"d) < 10
    61 then call symput('yr_mo',compress(year("&ldos"d) || '0' || month("&ldos"d) ) ) ;
    62 else call symput('yr_mo',compress(year("&ldos"d) || month("&ldos"d) ) ) ;
    63 run ;
    NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column).
    61:39 61:64 62:39 62:57
    NOTE: DATA statement used (Total process time):
    real time 0.00 seconds
    cpu time 0.01 seconds
    64
    65 *%put &biplr_dx;
    66 %put &begdate ;
    '01SEP2009'd
    67 %put &enddate ;
    '30SEP2009'd
    68 %put &fdos ;
    01JUN2007
    69 %put &ldos ;
    30SEP2009
    70 %put &q ;
    71
    72
    73 libname biplr'/home/jshafi01/projects/adhoc/biplr_dprsn/data';
    NOTE: Libref BIPLR was successfully assigned as follows:
    Engine: V9
    Physical Name: /home/jshafi01/projects/adhoc/biplr_dprsn/data
    74 libname rosdwp oracle user="&oracle_user." pass="&oracle_pass." buffsize=32767 path='rosdwp';
    NOTE: Libref ROSDWP was successfully assigned as follows:
    Engine: ORACLE
    Physical Name: rosdwp
    75
    76 data work.biplr_up_v1;
    77 attrib mbr_id length=$26;
    78 set biplr.biplr_ubh_med_v1;
    79 run;
    NOTE: There were 0 observations read from the data set BIPLR.BIPLR_UBH_MED_V1.
    NOTE: The data set WORK.BIPLR_UP_V1 has 0 observations and 1 variables.
    NOTE: DATA statement used (Total process time):
    real time 0.00 seconds
    cpu time 0.01 seconds
    80
    81 proc contents;
    82 run;
    NOTE: PROCEDURE CONTENTS used (Total process time):
    real time 0.02 seconds
    cpu time 0.02 seconds
    83
    84 proc datasets
    85      library = rosdwp nolist;
    86      delete biplr_up_v1;
    87 quit;
    NOTE: Deleting ROSDWP.BIPLR_UP_V1 (memtype=DATA).
    NOTE: PROCEDURE DATASETS used (Total process time):
    real time 0.61 seconds
    cpu time 0.01 seconds
    88
    89 proc datasets
    90      library=work nolist;
    91      copy out = rosdwp move;
    92      select biplr_up_v1 ;
    93 quit;
    NOTE: Moving WORK.BIPLR_UP_V1 to ROSDWP.BIPLR_UP_V1 (memtype=DATA).
    NOTE: SAS variable labels, formats, and lengths are not written to DBMS tables.
    NOTE: There were 0 observations read from the data set WORK.BIPLR_UP_V1.
    NOTE: The data set ROSDWP.BIPLR_UP_V1 has 0 observations and 1 variables.
    NOTE: PROCEDURE DATASETS used (Total process time):
    real time 0.15 seconds
    cpu time 0.04 seconds
    94
    95
    96
    97 *****************************************************************************;
    98
    99 *execute(commit) by rosdwp
    100 ******************************************************************************;
    101
    102
    103 proc SQL noprint ;
    104 connect to oracle as rosdwp (user="&oracle_user." password="&oracle_pass" buffsize=32767 path='rosdwp'
    104 ! preserve_comments);
    105      execute(alter session set nls_date_format = 'ddmonyyyy') by rosdwp;
    106 CREATE table biplr_rx as
    107 SELECT
    108 mrb_id,
    109 uniq_mbr_id,
    110 pcp_spc,
    111 rx_date,
    112 brand,
    113 generic,
    114 ahfs_cd,
    115 ahfs_dsc,
    116 lbl,
    117 strngth,
    118 unt,
    119 spc_tx_cls_cd,
    120 spc_tx_cls_dsc,
    121 gcn,
    122 rx_num,
    123 rx_ingrd,
    124 rx_paid,
    125 rx_cnt,
    126 rx_qty,
    127 rx_day
    128 FROM connection to rosdwp
    129 (SELECT
    130 mid.UNIQ_MBR_ID as uniq_mrb_id,
    131 blpr.mrb_id.mbr_id,
    132 pd.PRVDR_SPCLTY_DESC as pcp_spc,
    133 pcf.LAST_SRVC_DT as rx_date,
    134 dd.BRAND_NAME as brand,
    135 dd.GNRC_NAME as generic,
    136 dd.AHFS_THRPTC_CLS_CD as ahfs_cd,
    137 dd.AHFS_THRPTC_CLS_DESC as ahfs_dsc,
    138 dd.LABEL_NAME as lbl,
    139 dd.STRNGTH_NUM as strngth,
    140 dd.STRNGTH_UNIT_DESC as unt,
    141 dd.SPECF_THRPTC_CLS_CD as spc_tx_cls_cd,
    142 dd.SPECF_THRPTC_CLS_DESC as spc_tx_cls_dsc,
    143 dd.GCN_NUM as gcn,
    144 pcf.PRSCRPTN_NUM as rx_num,
    145 SUM(pcf.INGRDNT_AMT) as rx_ingrd,
    146 SUM(pcf.PD_AMT) as rx_paid,
    147 SUM(pcf.UNIT_SRVC_CNT) as rx_cnt,
    148 SUM(pcf.DSPNSD_QTY) as rx_qty,
    149 SUM(pcf.DAY_SUPLY_CNT) as rx_day
    150 FROM
    151 PHRMCY_CLM_FACT pcf,
    152 MBR_ID_DMNSN mid,
    153 DRUG_DMNSN dd,
    154 PRVDR_DMNSN pd,
    155      BIPLR_UP_V1 blpr
    156 WHERE
    157 (BIPLR_UP_V1.mbr_id = MBR_ID_DMNSN.UNIQ_MBR_ID) And
    158 (PHRMCY_CLM_FACT.FINL_CLM_KEY = PHRMCY_FINL_CLM_DMNSN.FINL_CLM_KEY) AND
    159 (PHRMCY_CLM_FACT.MBR_KEY = MBR_ID_DMNSN.MBR_KEY) And
    160 (PHRMCY_CLM_FACT.BNFT_KEY = MBR_BNFT_DMNSN.BNFT_KEY) And
    161 (PHRMCY_CLM_FACT.DRUG_KEY = DRUG_DMNSN.DRUG_KEY) And
    162 (PHRMCY_FINL_CLM_DMNSN.CLM_ORGN_CD IN ('M','A')) AND
    163 (PHRMCY_CLM_FACT.LAST_SRVC_DT BETWEEN &q.&fdos.&q and &q.&ldos.&q)
    164 );
    ERROR: ORACLE prepare error: ORA-00904: "PHRMCY_CLM_FACT"."LAST_SRVC_DT": invalid identifier. SQL statement: SELECT
    mid.UNIQ_MBR_ID as uniq_mrb_id, blpr.mrb_id.mbr_id, pd.PRVDR_SPCLTY_DESC as pcp_spc, pcf.LAST_SRVC_DT as
    rx_date, dd.BRAND_NAME as brand, dd.GNRC_NAME as generic, dd.AHFS_THRPTC_CLS_CD as ahfs_cd,
    dd.AHFS_THRPTC_CLS_DESC as ahfs_dsc, dd.LABEL_NAME as lbl, dd.STRNGTH_NUM as strngth, dd.STRNGTH_UNIT_DESC as
    unt, dd.SPECF_THRPTC_CLS_CD as spc_tx_cls_cd, dd.SPECF_THRPTC_CLS_DESC as spc_tx_cls_dsc, dd.GCN_NUM as gcn,
    pcf.PRSCRPTN_NUM as rx_num, SUM(pcf.INGRDNT_AMT) as rx_ingrd, SUM(pcf.PD_AMT) as rx_paid, SUM(pcf.UNIT_SRVC_CNT)
    as rx_cnt, SUM(pcf.DSPNSD_QTY) as rx_qty, SUM(pcf.DAY_SUPLY_CNT) as rx_day FROM PHRMCY_CLM_FACT pcf,
    MBR_ID_DMNSN mid, DRUG_DMNSN dd, PRVDR_DMNSN pd, BIPLR_UP_V1 blpr WHERE (BIPLR_UP_V1.mbr_id =
    MBR_ID_DMNSN.UNIQ_MBR_ID) And (PHRMCY_CLM_FACT.FINL_CLM_KEY = PHRMCY_FINL_CLM_DMNSN.FINL_CLM_KEY) AND
    (PHRMCY_CLM_FACT.MBR_KEY = MBR_ID_DMNSN.MBR_KEY) And (PHRMCY_CLM_FACT.BNFT_KEY = MBR_BNFT_DMNSN.BNFT_KEY) And
    (PHRMCY_CLM_FACT.DRUG_KEY = DRUG_DMNSN.DRUG_KEY) And (PHRMCY_FINL_CLM_DMNSN.CLM_ORGN_CD IN ('M','A')) AND
    (PHRMCY_CLM_FACT.LAST_SRVC_DT BETWEEN '01JUN2007' and '30SEP2009').
    NOTE: PROC SQL set option NOEXEC and will continue to check the syntax of statements.
    165 execute (drop table biplr_up_v1) by rosdwp;
    NOTE: Statement not executed due to NOEXEC option.
    166 disconnect from rosdwp;
    NOTE: Statement not executed due to NOEXEC option.
    167 quit;
    NOTE: The SAS System stopped processing this step because of errors.
    NOTE: PROCEDURE SQL used (Total process time):
    real time 0.24 seconds
    cpu time 0.02 seconds
    168
    Edited by: user12142482 on Nov 2, 2009 4:02 PM

  • HP Officejet Pro 8610 - Error Code: " 0xc19a0013" (missing or failed printhead)

    I purchased the printer (HP Officejet Pro 8610 e-All-in-one printer) in January, 2015.  The printer functioned properly - copy, fax, and scan, until two days ago.  Now, it does not print at all.  Received an error code: "0xc19a0013" (Missing or Failed Printhead).  An expanded version of the error code reads:  "The Printhead appears to be missing, not detected, or incorrectly installed.  Error Code: 0xc19a0013.   The printer uses a removable printhead, HP Ink Cartridges 950 (black) and  951(cmy).  I have used HP Support Troubleshooting recommendations: all software and firmware for this printer is installed; the HP ink cartridges are not low or empty; removed the ink cartridges from the printhead and reinstalled them.
    There are multible steps in the troubleshooting recommendation, but I stopped at removing the printhead.  Because of my technical inexperience, and there were too many ceveats (beware, caution, proper reinstallation, and etc.)  with removing the printhead that could cause greater problems.  So, I stopped at removing and cleaning the printhead.  Also, used the HP Printer Scan Doctor for assistance. The tool for cleaning the printhead doesn't work.   What troubles me most with the 0xc19a0013 error code is its explanation: The printhead appears to be missing, not detected, or incorrectly installed.  I can use all the help I can get to understand what is going on with the error code that I have received, and how to resolve the malfunctioning printer.
    This question was solved.
    View Solution.

    Contact HP technical support at 800-474-6836 for more options.
    If you live outside the US/Canada Region, please click the link below to get the support number for your region. 
    Country-language selector.
    Please mark the post that solves your issue as "Accept as Solution".
    If my answer was helpful click the “Thumbs Up" on the left to say “Thanks”!
    I am not a HP employee.

  • FR Formula Yields #ERROR when adding #MISSING & #MISSING

    I have reports recently migrated from FR 11.1.1.3 to 11.1.2.2, and the reports are showing the #ERROR message in report formula that showed #MISSING in version 11.1.1.3.
    The FR Formula is adding 2 rows with #MISSING & #MISSING in all the columns.
    It appears the FR version 11.1.2.2 resolves #MISSING plus #MISSING as #ERROR when version 11.1.1.3 yields #MISSING.
    The workaround is to substitute a character for #ERROR, but it could be a huge job updating many reports.
    Is this a known bug? Is there a global fix? Any ideas?
    Edited by: user13388407 on Feb 21, 2013 2:51 PM

    --This is a known bug and we got a response from Oracle on it today.
    "The behavior was indeed changed because the previous results in 11.1.1.3 version were incorrect.
    There has been a bug raised for this issue and development team confirmed it. The bug details - Bug 12956217: FORMULA CELLS RETURNING #ERROR RATHER THAN #MISSING.
    And the development has also added new server-side property named MissingValuesAreZeroInFormulas in the 11.1.2.x versions, It determines how to treat #Missing values during the evaluation of grid formulas and calculations. This property is similar to the existing MissingValuesAreZeroInFormulasInHFM property except that it applies to all datasources (not just HFM-based grids).
    The new MissingValuesAreZeroInFormulas can have the following values:
    * A value of false (or 0) means that #Missing values are not the same as zero.
    * A value of true (or 1) means that #Missing values are treated as zero.
    The default value is false (i.e. #missing values are not treated as zero).
    Kindly try to use the new server-side property if it suits your FR reports. And it is available in the FRconfig.cmd (.sh)."

  • Error opening document: missing file

    I have a Pages template that has started opening up with the following error box:
    The following errors occurred while trying to open this document:
    Missing file: businesscircles_logosgrey.pdf
    When I hit "continue", the document (template) opens up fine and appears to be missing nothing. I've searched my computer for the missing file and it doesn't exist (and I have no recollection of why I'd insert a pdf into a template anyway...)
    Within Pages I've clicked in View>Show Invisibles, thinking that might reveal something. It didn't.
    Any ideas? Thanks!
    PS I am running Pages 2.0

    Hello,
    I had this problem a while ago with an old version 1.x file when open it in Pages 2. After some examination, it seems to appear with placeholder objects mainly (like the image you are writing about). But this was the only time I encountered the problem.
    Argelius,
    try to copy the image from the business letter template with this steps:
    1) Click on the Pages app icon with holding the control key down and choose the item "Show the Package Content" of the appearing menu.
    2) Navigate to the business letter template "Contents/Resources/<YourUsedLanguage>.lproj/Templates/ISO/Stationery/" (or "Traditional" instead of "ISO" if you are using Legal and no DIN letter sizes).
    3) Do "Show the Package Content" on the letter icon and you will see a new window with all the content of the letter.
    4) Search for the image and copy it.
    5) Show your own letter document (the document should be closed in Pages), with which the error appears, and show the package content.
    6) Paste the image into the package folder.
    Now the error message should not appear by opening the document. Search your document if the logo image is placed in it. If yes, have a look at the menu "Format/Advanced/" if the image is marked as a placeholder image. Deactivate this and than delete the image. Save the document (perhaps as a duplication) and close it. See if the problem is gone by open the new document again.

  • The following javascript error(s) occured: missing before statement

    dear sir
    would u help solve my problem, please???
    i can not operate my dreamweaver, because when i operate it always appears the statement as follow;
    the following javascript error(s) occured:
    set FSO
    missing before statement
    i have used your suggestions to delete file cache in my configuration folder but still not works and also recreate the folder but it's still not work
    please help????
    tx

    --- Pada Ming, 16/1/11, SnakEyez02 <[email protected]> menulis:
    Dari: SnakEyez02 <[email protected]>
    Judul: the following javascript error(s) occured: missing before statement
    Kepada: "bayhaki halmahera" <[email protected]>
    Tanggal: Minggu, 16 Januari, 2011, 12:42 AM
    Visit the following KB article for the complete details on all steps.  Deleting the preferences/configuration is only one possible step.
    http://kb2.adobe.com/cps/405/kb405604.html

  • Migrating from Sql server get SQL Error: ORA-00936: missing expression

    All,
    I'm migrating from Sql Server to oracle 10g and I'm getting a
    "SQL Error: ORA-00936: missing expression" error
    when the following create table statement is executed. It appears 10g does not like the CREATE DEFAULT xxxx as xxx syntax. Any ideas??
    CREATE TABLE EnvCapitalOtherCostAtom (
    EnvID CHAR(36) NOT NULL,
    CapitalID CHAR(36) NOT NULL,
    Seq FLOAT DEFAULT
    CREATE DEFAULT D_Set_To_Zero
         AS 0
    NOT NULL,
    AtomID CHAR(36) DEFAULT
    CREATE DEFAULT D_NewGUID
         AS newid
    NOT NULL,
    AtomName VARCHAR2(100) NOT NULL,
    AtomName_dqa NUMBER(5,0) DEFAULT
    CREATE DEFAULT D_DQA_Dflt
         AS 10
    NOT NULL,
    CreatedOnTimeStamp TIMESTAMP(6) NOT NULL,
    LastEditedOnTimeStamp TIMESTAMP(6) NOT NULL,
    TFDubh_dqa NUMBER(5,0),
    record_flags NUMBER(5,0) DEFAULT
    CREATE DEFAULT D_Record_Flags
         AS 0
    NOT NULL,
    record_dqa NUMBER(5,0) DEFAULT
    CREATE DEFAULT D_Record_DQA
         AS 30
    NOT NULL
    );

    Hi Chris,
    not sure SQL Server accepts the syntax you provided either. Even more I have checked MSDN(http://msdn2.microsoft.com/en-us/library/ms173565.aspx) and they recommend:
    Avoid using CREATE DEFAULT in new development work, and plan to modify applications that currently use it. Instead, use default definitions created using the DEFAULT keyword of ALTER TABLE or CREATE TABLE. CREATE DEFAULT will be removed in a future version of Microsoft SQL Server.
    In Oracle you should do the same either use DEFAULT in CREATE TABLE statement or in ALTER TABLE, have a look at http://download.oracle.com/docs/cd/B19306_01/appdev.102/b14251/adfns_constraints.htm#sthref626 for more details.
    The proper Oracle syntax for your DDL should be something like:
    CREATE TABLE EnvCapitalOtherCostAtom (
    EnvID CHAR(36) NOT NULL,
    CapitalID CHAR(36) NOT NULL,
    Seq FLOAT DEFAULT 0 NOT NULL,
    AtomID CHAR(36) DEFAULT SYS_GUID() NOT NULL,
    AtomName VARCHAR2(100) NOT NULL,
    AtomName_dqa NUMBER(5,0) DEFAULT 10 NOT NULL,
    CreatedOnTimeStamp TIMESTAMP(6) NOT NULL,
    LastEditedOnTimeStamp TIMESTAMP(6) NOT NULL,
    TFDubh_dqa NUMBER(5,0),
    record_flags NUMBER(5,0) DEFAULT 0 NOT NULL,
    record_dqa NUMBER(5,0) DEFAULT 30 NOT NULL
    );

  • SCCM 2012 PXE setup error PXE-E7B - Missing MTFTP Server IP Address

    Have just configured PXE on our new SCCM 2012 server.  Seems like it should be simple to setup.  66/67 options are setup as is IPhelper.
    When PXE booting a client it hangs at the DHCP prompt and then throws the following error:
    PXE-E7B - Missing MTFTP Server IP Address
    Any ideas what the problem might be?
    Thanks

    PXE is enabled on DP and WDS service running fine.  There are both 32 and 64 PXE enabled boot images uploaded on DP. When trying to PXE boot a VM on the same subnet as the SCCM 2012 server you see entries in the smspxe.log.  The PXE doesn't
    work because there's no DHCP scope available, but you can see PXE reacting and it throws a different error PXE-E52: No DHCP offers were received.  When you try PXE booting on a different subnet nothing appears in smspxe.log, as you say it's like it's
    not seeing the PXE traffic at all.
    Network guys have confirmed IP helper setup for old and new SCCM servers.  Discard, echo, and 4001 access allowed. 

Maybe you are looking for

  • How to change the initial page without open safari

    Hi everybody, I have problems opening my safari because of the plugin silverlight. I defined a tvair.swisscom.ch page as initial and it makes an error open it. it means that my safari doesn't work at all. i want to know if somebody knows how to chang

  • Information for GR in particular PO

    Hi Gurus, Is there any report, in which system will give the GR No. and Posting date in a list of POs.? Means, i will give some PO Nos in selection parameters and i want if GR is done, then system should show me the gr no. and posting date. Please te

  • Cant accept creatoive cloud invitation

    When i cick on accept invite the the email it takes me to a page to log in. I try to log in with the account specidied but ui get an error Your email address has not been verified. Click hereto send an email with verification instructions. When i cli

  • Every time I try to import video to the app, it crashes. Any help?

    This has been happening for months now and I have been waiting for an update to fix it, thinking it was an app-wide problem, but no such update has come. I have no idea what to do at this point and am just becoming increasingly frustrated with the en

  • Type tool problem

    Somehow the type tool in CS6 has set itself to vertical. I have to change it to horizontal every time I use it, which takes a lot of time when I'm making a document with dozens of type layers. I've tried right-clicking on the "T" in the tool bar and