EREC:  EHP4  -  Create Requisition (Authorization)

Hello to all,
in our new EHP4 System we are getting everytime the error "You are not authorized to execute this application" when we want to create a new requisition in portal.
Where we get the message:
1) Erecruiting Administrator > Requisition Management > "You are not authorized to execute this application"
2) Recruiter > Requisitions > Create or create by position > "You are not authorized to execute this application"
3) Recruiter > Candidates > Candidate search > "You are not authorized to execute this application"
In SICF - default_host > sap > bc > webdynpro > sap   we have activated all Services like ERC_A_*
In SFW5 - we have activated HCM_ERC_CI_1;HCM_ERC_CI_2; HCM_ERC_CI_3
Using the new roles SAP_RCF_RECRUITER_ERC_CI_2 (Recruiter) and      SAP_RCF_REC_ADMIN_ERC_CI_2 (Rec Admin)
ERECRUIT Version 604 Level 8
But with all these definitions it is still not working
Can anybody help on this problem.
Thanks & Best Regards
Michael

Hello to all,
thank you very much for your help !!
I found the reason for that authorization problem, I have to create an Business Partner
for each user in eRec.
That I have done with the program hr_sync_person or report hralxsync (both do the same).
Prerequisition, the integration between Organizational Management and SAP Business Partner must be active.
Have a look in:  SAP HelpPortal unter http://help.sap.com -> Documentation -> mySAP ERP -> mySAP ERP 2005 ->  Integration zum SAP-Geschäftspartner.
Change System Switch T77S0:   HRALX/HRAC, HRALX/OBPON, HRALX/PBHR
Thank you for your help and have a nice day.
Best regards
Michael

Similar Messages

  • EREC: From MSS Requisition request is not coming in Recruter UWL.

    hello everyone,
    we are creating Requisition request in MSS. But Request is not reaching Recruter UWL.
    We tried to find so many ways to solve this problem. We got to know that there is problem in workflow.
    we are getting follwoing error.
    Object CL_HRASR00_WF_COMPONENTS method DATAMAPPING cannot be executed
    we tried to resolve follwoing error but no success.
    finally we got reason behind this issue, workflow is using one standard auth table "t5asrauthmethod"
    with follwoing parameters
    Application=EREC
    Activity=R
    Content Type= p
    Content Group =
    and there is no entry corresponding to this, and finally we are getting error.
    please let me know which authorization object or role we have to add so that we should nt get this error.
    Thanks in advance
    jayesh Talreja

    Hello jayesh Talreja,
    I checked up in our standard system, there this entries were maintained, So please maintain the same as below:
    Client Appl.   Activity                                        Auth_Method
    004   EREC        A                                                      3
    004   EREC        D                                                      2
    004   EREC        P                                                      3
    004   EREC        R                                                      3
    004   EREC        S                                                      3
    004   EREC        W                                                      3
    004   EREC        X                                                      3
    This should be helpful.
    Best Regards,
    Deepak...

  • Problem in MSS - Create Requisition

    Hi All,
    We implementing E Recruitment on EHP4 sp4. we are facing a strange issue in the MSS-Create requisition request scenario.
    We are using standard HCM process HR_MSSRCF_REQUISITION.
    MSS user is able to create a requisition and send to his manager for approval. His manager can also approve it. But once the requisition is finally approved, the recruiter cannot see
    the requisition in the recruiter dashboard
    We have checked the workflow log, its finishing without errors.The e-rec infotype table HRP5131 does not have any new entries for Otype NB, But Manager can see his requisitions from MSS-Requisition Overview iview as completed.
    Pls let me know if any config is missing? Do we need to run any background job to update the e-rec tables? There's no error message in any stage of process..still recruiters can't see the new requisition.
    Regards,
    Smit

    Dear Smit,
    We are implementing E-recruitment in our Project. We are facing problems with Manger creating requisition page. Its always displaying NO data available.
    Can you please let us know if any configuration is to be done for it?
    Thanks a lot in advance,
    Regards,
    Sai

  • Create Requisition Request - MSS (Start Process Grey Out-No Data available)

    Hello All
    We are using SRQ2 extended requesition request. Currentlt i am on Devlopment system and just want to see the standard requistion request from MSS so that later i can make a Z copy and customize
    Now when i logged in as a Manager and click on the "Create Requisition Request" from recruiting role it's opening and showing me the Start Process window and everything is non editable and showing me that No Data Avaialble
    Is there any config missing for this
    Also when is see the SRQ2 from SPRO "Define Own Scenarios for Request to Change Master Data" node i made the SRQ2  application as H and aslo tried. But nothing useful.
    Can any one tell me any configuration missing or any other things

    Solved.
    Problem was in MSS the Ehp4 links for erecruiting refers to SRQ3. So i had to pull the iviews from MSS 1.31 BP which will be Webdynpro Java

  • Error while creating Requisition

    Hi experts,
    I am getting this error from RFC while creating requisition in portal for multiple line items.
    Screen output without connection to user., error key: RFC_ERROR_SYSTEM_FAILURE
    I have used standard BAPI: BAPI_REQUISITION_CREATE for creating the requisition in portal.
    It works fine for a single line item but does not work multiple line items.I have checked the JCOs.It is correct.
    Please suggest.
    Thanks,
    Rajani

    hi!
    After importing structures to the model in webdynpro and mapping it to the corresponding field in the table of webdynpro screen, you should go through this code in on clicking of an event or triggering of a button event
       public void executePurchaseRequisitionCreate( )
        //@@begin executePurchaseRequisitionCreate()
              try {
                   for (int i = 0;
                        i < wdThis.wdGetContext().nodeTableNode().size();
                        i++) {
                             Bapiebanc re = new Bapiebanc();
                        IPublicPurchaseRequisitionCustomCotroller.ITableNodeElement tn =
                             wdThis
                                  .wdGetContext()
                                  .nodeTableNode()
                                  .getTableNodeElementAt(
                                  i);
                        re.setPreq_Item(tn.getPreq_Item());
                        re.setMaterial(tn.getMaterial());
                        re.setUnit(tn.getUnit());
                        re.setQuantity(tn.getQuantity());
                        re.setDeliv_Date(tn.getDeliv_Date());
                        re.setPlant(tn.getPlant());
                        re.setPur_Group(tn.getPur_Group());
                        re.setDoc_Type(tn.getDoc_Type());
                        re.setPurch_Org(tn.getPurch_Org());
                        re.setDes_Vendor(tn.getDes_Vendor());
                        re.setStore_Loc(tn.getStore_Loc());
                        //                    wdContext
                        //                         .currentBapi_Requisition_Create_InputElement()
                        //                         .modelObject()
                        //                         .addRequisition_Items(re);
                        wdContext
                             .nodeBapi_Requisition_Create_Input()
                             .currentBapi_Requisition_Create_InputElement()
                             .modelObject()     
                             .addRequisition_Items(re);
                   //execution of Bapi
                   wdThis
                        .wdGetContext()
                        .currentBapi_Requisition_Create_InputElement()
                        .modelObject()
                        .execute();
              } catch (Exception ex) {
                   msgMgr =
                        (MessageManager) wdThis
                             .wdGetAPI()
                             .getComponent()
                             .getMessageManager();
                   msgMgr.reportException("Error from bapi: " + ex.toString(), true);
                   ex.printStackTrace();
              wdContext.nodeOutput().invalidate();
              wdContext.nodeRequisition_Items().invalidate();
        //@@end

  • Problem in Create Requisition Request E-recruitment

    Hi,
    I have configured the standard workflow WS45600028 for the E-recruitment process in HR administration services and able to trigger the workflow successfully when I create requisition in the portal.
    But the workflow fails at the first step 'Import the form data' since the method CL_HRASR00_WF_COMPONENTS-->DATAMAPPING)raises an exception when there are no entries in table T5ASRSCENARIOS.
    The case configuration is absolutely fine but yet am unable to figure out why any entries aren't created in the table T5ASRSCENARIOS.
    How the first entries are created in table T5ASRSCENARIOS? Is it through customising?
    Quick response will be highly appreciated.
    Thanks,
    Roopesh

    Inputs will be highly appreciated.
    Thanks,
    Roopesh

  • MSS-Create Requisition Request -Error in Adobe Form

    Hi all,
    We are trying to configure MSS -> create requisition request using standard adobe form ISR_MSSRCF_SRQ3.
    We have configured standard HCM process HR_MSSRCF_REQUISITION for it. When entering all
    the mandatory fields in the form and clicking on 'check and send' , it displays an error
    "you must enter a requisition title'
    although we have already entered req. title in the field.
    Anyone faced this issue before?
    Please provide your inputs...

    What was the solution finally? Would be glad if you could share.
    Many thanks.

  • Process group R001 does not exist Error in MSS in Create Requisition Reques

    Hi All
    In MSS Under Recruiting we have a link called Requisition Request under this we haveCreate Requisition Request.
    On clicking on this link Create Requisition Request link
    i am getting "Process group R001 does not exist "
    Pls provide me your input
    Regards
    Karthi D.

    Hi
    Any updates on this
    Regards
    Karthi D.

  • Process group R001 does not exist in MSS for Create Requisition Request.

    Hi All
    In MSS Under Recruiting we have a link called Requisition Request under this we have Create Requisition Request.
    On clicking on this link Create Requisition Request link
    i am getting "Process group R001 does not exist "
    Pls provide me your input
    Regards
    Karthi D.

    A "Process Group" is part of HCM Processes and Forms....it is how you define which processes can be started/initiated by which Processor Roles. This is done under the configuration under HCM Processes and Forms which is within "HR Administrative Services" (HRAS). In your case, the "manager" processor role would have that process available as part of their process group. Check there.

  • Error in MSS-Create Requisition Request, form ISR_MSSRCF_SRQ3

    Hi,
    We are trying to configure MSS app, create requisition request using standard adobe form ISR_MSSRCF_SRQ3.
    We have configured standard HCM process HR_MSSRCF_REQUISITION for it. When entering all
    the mandatory fields in the form and  clicking on 'check and send' , it displays an error
    "you must enter a requisition title'
    although we have already entered req. title in the field.
    Anyone faced this issue before?
    Please provide your inputs...
    regards,
    Smit

    Hello smit ,
              You can find out the enhancement ( BADI defnition  ) that corresponds to MSS Requisition request .
    Debugging the same will let you know why the error is coming .
                            You could also be due to config done under MSS -> recruitment.
    hope this helps.
    thanks,sahiba

  • How to hide "Create Requisition Request" link in MSS

    Hi All
    How to hide "Create Requisition Request" link which is in Recruiting services in MSS?
    Rgrds
    Sri

    Hello,
    Create Requisition Request is triggered by Home Page framework service MSS_HCM_RECRUITING_NEWREQ_REQUEST.
    In order to deactivate it, in customizing:
    SPRO-IMG:
    Cross-Application Components
      Homepage Framework
        Services
          Assign Services to Subareas
    On the entry :
    MSS_HCM_RC_REQREQUEST     MSS_HCM_RECRUITING_REQ_STATUS_OV     20
    You can set the position as blank, so it will not show up. You can also delete this entry.
    Regards,
    Bentow.

  • E-REC EHP5 - Prerequisites for MSS user for Create Requisition request

    We are implementing E-REC EHP5.  As a MSS user when line manager tries to create requisition request on portal, although it takes on a new page called "Stat Processes" we are getting error "no data available" and hence can not proceed on that page. We have assigned R3 role "SAP_RCF_REQUISITION_REQUESTER" to the line manager and on portal we have assigned him MSS user role. 
    Is there any other prerequisite for the said functionality of Create Requisition request.

    Hi,
    In the IMG, navigate to :
    Personnel Management -> HR Administrative Services -> Configuration of Forms/Processes -> Process Configuration
    -> IMG activity "Test Process"
    Enter the process name "HR_MSSRCF_REQUISITION" and execute (F8). You should see the form scenario data in table view. Use the F4 help in the "Field Value" column for those entries where the "Value Help" column is checked. You should get a pop-up with the field values. If not you need to make sure that HR_MSSRCF_REQUISITION iis linked to form scenario S_HRMSSRCF_REQUISITION in table T5ASRPRSCFORM. Also make sure that you have the last SP for the ERP common parts BP 1.51 installed in your portal. Finally assign role SAP_RCF_RECRUITER_ERC_CI_2 and SAP_RCF_MANAGER to your recruiter.
    Hope it helps,
    Kind Regards
    Christine

  • Create Requisition Request

    Hi everybody!
    We are trying to find the way to complete the iimplementation for  the process of the iView Create Requisition Request. Does somebody have a customizing manual for the ECC System?
    Thanks in advance.
    Jesús.

    Dear Jesus,
    can you be more specific?
    For while you can try the google search bellow:
    http://www.google.com/search?q=site%3Asap.comcustomizingECC+System
    Please remember to evaluate the replays, this incentive the SDN to keep growing,
    regards,
    Fabio
    Edited by: Fabio Sarmento on Feb 16, 2011 3:11 PM

  • Is there any API's to create requisitions?

    Hi
    Is there any API's to create requisitions?
    Appreciated quick reply
    Regards,
    Ramesh.

    I am currently using a Sinetfactory thirdparty package from JScape for the Secure FTP functionality(FTP over SSH). But Sinetfactory package tranfer rate is much slower than the manual sftp(command-line run in linux server for manual ftp using ssh).
    Since it is very slower than ordinary sftp(ftp over ssh), I thought of using other thirdparty FTP package which supports FTP using ssh port. Can anyone please suggest me a thirdparty package which will has the sftp functionality and with better transfer rate.

  • Job is missing for the Position while creating Requisition in E-recruitment

    Hi Gurus,
    I have a situation when I create new job requisition on the ESS. When I select the vacant position while creating requisition, the org unit text box is populated automatically but not the Job text box. The is relationship between Position - Org unit and Position - Job is maintained in SAP recruitment system. can anyone help me get the Job Text box also filled just as Org Unit text box.
    Thank you

    There is a note 1818432 for this issue.

Maybe you are looking for

  • Launch PB in CS5 and get "The operation could not be completed."

    I had been using the PB plug-in previously and it worked fine.  Since that time, I have installed no new hardware or drivers but have installed Topaz Adjust 4 filter.  Now, when I have an image opened in PS CS5 and I click Filters -> Pixel Bender ->

  • TS1930 How to import photos and videos from an iPod touch to a Macbook Pro

    I can't figure out how to do it....I've read so many answers to my question and none of them seem to work.

  • Error while passing table from R/3 to XI

    Hi All I am trying to send data from R/3 to XI using a Remote function module. I have done the following. 1. Created a RFC connection (type T), assigned a program ID and checked the Registered the program. 2. Created a communication channel as Sender

  • Can't get a preview of the whole page

    BrowserLab only gives me a preview of two thirds of the page. I've tried to adjust the number of seconds to delay before taking the screenshot and it did help but still the bottom part of the page is cut off. I'm using Windows XP Chrome v.22 Any sugg

  • Connect to macbook

    How do I connect my iPad (retina display) with my MacBook? My MacBook I guess is too old to suppport iCloud. So I have connected them through the cable.. The iPad is charging up, but I cannot tranfer any file Please let me know how can I do this.. Th