E-Recruiting -- DDL

In E-Recruiting, many DDL values has all countries, no. My customer like USA at the top of list. How others do it? Can you share your experience, best practice

I have solved this issue.
Pass the logon data to the service for the external candidate registration
Do the indexing and configuire the SES objects and index as well.
Configure the missing entries in the serach profile/templates

Similar Messages

  • EREC: What is new in SAP E-Recruitment 6.0 SP5, SP7 and SP8?

    Hi
    Does anyone know what are the features available or improved in SAP E-Recruitment 6.0 for Support Package 5,7 & 8?
    Regards
    Ridzuan
    Edited by: Ridzuan Mohsin on Nov 18, 2011 9:30 AM

    Hi Ridzuan,
    as the named support packages are already years old is your question actually about e-recruiting 600 or do you mean the support packages for an enhancement package (like EhP 3 or EhP 4) for the e-recruiting application.
    Rgds.
    Roman

  • Error while generating DDL commands using startSQLRepository for a new Repository

    Hi,
    I am trying to generate DDL Commands using startSQLRepository for my new repository SubashRepository so that I can use them to create new table structure.
    All the repository related changes looks good. i can see my repository in ACC
    When I run the command:
    startSQLRepository -m SupremeATG –repository /com/supreme/SubashRepository /com/supreme/subashRepository.xml -outputSQLFile C:/ATG/ATG9.3/SupremeATG/config/com/supreme/subashRepositoryDDL.txt
    I get following error:
    Table 'SUBASH_MEMBER' in item-descriptor: 'member' does not exist in a table space accessible by the data source.  DatabaseMetaData.getColumns returns no columns
    Note:
    * errors related to definition file were cleared as the same command threw relevant exception while trying to store a array property with out creating a multi table.
    * Now this is the only exception i see
    * Some DDL are getting generated in the output file, but those are related to inventory repository (I am not sure why this is happening as I have specifically gave the path to my definition file).
    Any help in resolving this is highly appreciated.

    Pl post in the ATG forum

  • Issue in Data transfers using ALE for E-Recruiting standalone system

    Dear Experts,
    We have an issue in data transfers using ALE. We are having standalone system where E-Recruiting is maintaind seperately and the version is EHP5.
    When we configured iDoc in Sandbox and its working fine. But when it comes to Dev and Quality servers this is not working fine.
    we have created iDocs using the following filters.
    For Object P: Infotypes 0000, 0001, 0002, 0003, 0006, 0024, 0105.
    For Objects O,S: 1032, Subtype: 0010
    For Object: 1001, Subtype: A003, A008, A012, B007
    For Object O: 1001, Subtype: A002, B002, B003, B012, Tyoe of related object: O,S
    For Objects: C, O, S, Subtype: 1000, 1002, 1028
    For Object:C, Subtype: 1001, Subtype: A007
    When we do the data transfers in Sandbox using PFAL it is transferring the data properly.
    But when we do the same iin Dev and Quality servers we are not able to do it and gettign 52, 51 errors.
    Here we are facing a strange issue. For some Users when we transfer data it is transferring data but with 52 error messgae.
    For some users I am getting 51 error where i could not transfer any data.
    For some users, when we tranfer O, S, and P related data is moving but getting mostly 52 error and all the relationships are not moving here for O,S and properly. But P related CP, BP and NA are getting created successfully.
    It is happening only in Dev and Quality server and that too some users are able to get transferred but not all.
    Where will be the issue? How can we resolve this?
    Any help will be appreciable.
    Thank you in advance.

    Hi Sekhar,
    Have a look over these threads.
    Errors in ALE data transfer to E-Recruiting.
    http://scn.sap.com/thread/1535402    
    BR,
    RAM.

  • Custom Application Configuration not pulling the data in E-Recruiting

    Hello,
    My requirement is to make some fields 'required', hide some buttons, change button texts & hide some columns in standard wd component (ERC_A_REQ_MGMT) delivered by SAP. So I created an application configuration and component configuration and did the layout customization. Now in the application I am passing this new configuration name with the parameter (sap-wd-configId)(......sap/bc/webdynpro/sap/erc_a_req_mgmt?sap-wd-configId=ZZERC_A_REQ_MGMT)
    As this is a portal environment, in LPD_CUST, In the application parameters, I've used this parameter (sap-wd-configId=ZZERC_A_REQ_MGMT). The custom application is displayed, however, the data is not being passed to this custom configuration, so when I open a exisiting requisition from dashboard, this is shown as empty screen (like a new requisition), but when I take off this parameter from the lpd_cust, the standard app is working fine. Can you please help me understand why the data is not being passed to the custom application configuration?
    Really appreciate your insights.
    Thank you.

    Hi,
    We faced the same issue in SAP E-recruiting EHP4 solution. The reason is, the configuration which is assigned statically in FPM editor is loaded after the OVERRIDE_EVENT_OIF and thus discards all context nodes which have been already initialized. Afterwards, the context node of has no value anymore and the field on UI doesnu2019t display anything.
    Remove the static component configuration in the FPM editor and use the following code in the wddoinit method of the view V_GEN_JOB_INFO. This assignment happens at the runtime.
      data: lo_api_controller          type ref to if_wd_component,
            lo_pers_manager            type ref to if_wd_personalization,
            ls_configuration           type wdy_config_key,
            lt_config_table            type wdy_config_table,
            ls_config_header           type wdy_config_header,
            lo_fpm                     type fpm_s_runtime_info,
            ls_fpm                     type fpm_s_runtime_info.
          lo_api_controller = wd_comp_controller->wd_get_api( ).
         lo_pers_manager = lo_api_controller->get_personalization_manager( ).
         lo_fpm = wd_comp_controller->go_fpm->get_runtime_info( ).
        ls_configuration-config_id    = u2018ZERU_REG_REQ_MGMT_UIu2019 u201C Your Component configuration name
        lo_pers_manager->load_config_by_key( ls_configuration ).
       Thanks,
       S Rajkumar.
    Edited by: Rajkumar S on Aug 24, 2010 7:54 AM

  • ORA-02021: DDL operations are not allowed on a remote database

    Hi,
    While creating a trigger to keep track of every deletion on a remote table, I am receiving this error.
    I am not using any DDL within my trigger.
    My trigger code is:
    CREATE OR REPLACE TRIGGER neeraj.iuc_trig
    before delete on neeraj_test@iuc
    for each row
    DECLARE .........................
    Here iuc is public database link.
    Any idea ?
    Regards,
    Neeraj

    Hi Neeraj,
    you cannot define a trigger on a remote table.
    why don't you define the trigger just directly on
    the remote db.
    You can define some insert/update ... operations
    on "your" db in your trigger.
    you need a db_link for that on your remote-db
    to your "original"-db
    update emp@orig_db ...
    Regards
    Schoeib
    Message was edited by:
    schoeib

  • XML to DDL

    HI
    I'm using DBMS_METADATA.GET_SXML to retreive the dll in xml. Its in XML becuase I need a way to process each table's column, constraints etc, inidividually and xml nodes helps do this. Once processed the node(s) need to be transformed back into ddl format. Tthere can be many variations with regards to the data content witin the nodes e.g. in the xml below "COUNTRY_ID" has a CONSTRAINT NOT NULL and "COUNTRY_NAME" with no CONSTRAINTS?, this indicates xslt has to be aware of these factors. Perhaps someone has a more efficient approach, any suggestions and tips will be helpful. Thanks
    <TABLE xmlns="http://xmlns.oracle.com/ku" version="1.0">
    <SCHEMA>HR</SCHEMA>
    <NAME>COUNTRIES</NAME>
    <RELATIONAL_TABLE>
    <COL_LIST>
    <COL_LIST_ITEM>
    <NAME>COUNTRY_ID</NAME>
    <DATATYPE>CHAR</DATATYPE>
    <LENGTH>2</LENGTH>
    <NOT_NULL>
    <NAME>COUNTRY_ID_NN</NAME>
    </NOT_NULL>
    </COL_LIST_ITEM>
              <COL_LIST_ITEM>
    <NAME>COUNTRY_NAME</NAME>
    <DATATYPE>VARCHAR2</DATATYPE>
    <LENGTH>40</LENGTH>
    </COL_LIST_ITEM>
    <PRIMARY_KEY_CONSTRAINT_LIST>
    <PRIMARY_KEY_CONSTRAINT_LIST_ITEM>
    <NAME>COUNTRY_C_ID_PK</NAME>
    <COL_LIST>
    <COL_LIST_ITEM>
    <NAME>COUNTRY_ID</NAME>
    </COL_LIST_ITEM>
    </COL_LIST>
    </PRIMARY_KEY_CONSTRAINT_LIST_ITEM>
    </PRIMARY_KEY_CONSTRAINT_LIST>
    <FOREIGN_KEY_CONSTRAINT_LIST>
    <FOREIGN_KEY_CONSTRAINT_LIST_ITEM>
    <NAME>COUNTR_REG_FK</NAME>
    <COL_LIST>
    <COL_LIST_ITEM>
    <NAME>REGION_ID</NAME>
    </COL_LIST_ITEM>
    </COL_LIST>
    <REFERENCES>
    <SCHEMA>HR</SCHEMA>
    <NAME>REGIONS</NAME>
    <COL_LIST>
    <COL_LIST_ITEM>
    <NAME>REGION_ID</NAME>
    </COL_LIST_ITEM>
    </COL_LIST>
    </REFERENCES>
    </FOREIGN_KEY_CONSTRAINT_LIST_ITEM>
    </FOREIGN_KEY_CONSTRAINT_LIST>

    Hi,
    Not sure what you're asking.
    Do you want to convert back the XML to DDL once you've made your changes?
    If so, the Metadata APIs already provide such functionality, provided the structure is still valid of course.
    For example :
    SQL> DECLARE
      2    -- handles
      3    h            number;
      4    th           number;
      5
      6    source_doc   XMLType := XMLType(dbms_metadata.get_sxml('TABLE', 'COUNTRIES', 'HR'));
      7    target_doc   XMLType;
      8
      9    ddl          clob;
    10
    11  BEGIN
    12
    13   -- this increases the length of VARCHAR2 columns by 10 :
    14   select xmlquery(
    15   'declare default element namespace "http://xmlns.oracle.com/ku"; (: :)
    16    copy $d := /TABLE
    17    modify (
    18      for $i in $d/RELATIONAL_TABLE/COL_LIST/COL_LIST_ITEM
    19      where $i/DATATYPE = "VARCHAR2"
    20      return replace value of node $i/LENGTH with xs:integer($i/LENGTH)+10
    21    )
    22    return $d'
    23    passing source_doc
    24    returning content
    25    )
    26    into target_doc
    27    from dual;
    28
    29    h := dbms_metadata.openw('TABLE');
    30    th := dbms_metadata.add_transform(h, 'SXMLDDL');
    31
    32    dbms_lob.createtemporary(ddl, false);
    33    dbms_metadata.convert(h, target_doc, ddl);
    34    dbms_metadata.close(h);
    35
    36    dbms_output.put_line(ddl);
    37    dbms_lob.freetemporary(ddl);
    38
    39  END;
    40  /
    CREATE TABLE "HR"."COUNTRIES"
       (    "COUNTRY_ID" CHAR(2) CONSTRAINT "COUNTRY_ID_NN" NOT NULL ENABLE,
            "COUNTRY_NAME" VARCHAR2(50),
            "REGION_ID" NUMBER,
            CONSTRAINT "COUNTRY_C_ID_PK" PRIMARY KEY
    ("COUNTRY_ID") ENABLE,
            CONSTRAINT "COUNTR_REG_FK" FOREIGN KEY ("REGION_ID")
             REFERENCES "HR"."REGIONS" ("REGION_ID") ENABLE
       ) ORGANIZATION INDEX NOCOMPRESS PCTFREE 10 INITRANS 2 NOLOGGING
    STORAGE( INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645
      PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT FLASH_CACHE DEFAULT CELL_FLASH_CACHE DEFAULT)
      TABLESPACE
    "EXAMPLE"
      PCTTHRESHOLD 50
    Procédure PL/SQL terminée avec succès.

  • DDL statements and dynamic  sql  in stored procedure

    I created a stored procedure to create and drop tables, using dynamic sql.
    When I try to do the inserts using dynamic sql, i.e
    v_string := 'INSERT statement';
    EXECUTE IMMEDIATE v_string;
    I get the following error message:
    ERROR at line 1:
    ORA-00942: table or view does not exist
    ORA-06512: at line 63
    Line 63 happens to be the line that the EXECUTE IMMEDIATE v_string; statement is in.
    I am able to describe the table that the inserts are being made into, so I know that the table exists.
    Any idea why I'm getting this error message would be appreciated.

    Yes I do and I have been able to create other tables using dynamic sql.
    The table that I am having problems with SELECTs data from another table to get its column values; within the SELECT statement, the CAST function is used:
    ie. CAST(CASE SUBSTR(CAST(E_MOD AS VARCHAR(7)),2,3)
    WHEN 'AAA' THEN 'A55'
    ELSE ............
    I get the following error message:
    ERROR at line 18: (this line starts the CAST statement)
    ORA-06550: line 18, column 13:
    PLS-00103: Encountered the symbol "AAA" when expecting one of the following:
    . ( * @ % & = - + ; < / > at in is mod not rem return
    returning <an exponent (**)> <> or != or ~= >= <= <> and or
    like between into using || bulk
    When I remove the quotes or add another single quote, the same error cascades to 'A55'.
    After doing the same for the next error, I get the error message below:
    ERROR at line 1: (this line has the EXECUTE IMMEDIATE statement)
    ORA-00936: missing expression
    ORA-06512: at line 6
    Any idea what the problem could be?
    Also is there another way to have DDL statements as stored procedures other than using dynamic sql or the DBMS_SQL package?

  • Large DDL causes ORA-06502 in several Applications

    I Created a Table with
    CREATE TABLE large_table (
    c001 VARCHAR(2) NOT NULL
    and added columns with
    ALTER TABLE large_table ADD c002 VARCHAR(2) NOT NULL;
    ALTER TABLE large_table ADD c060 VARCHAR(2) NOT NULL;
    The DDL of this table cannot be executed eg. in SqlDeveloper, sqlplus, ... and it cannot be imported from a dump with exp! Importing causes:
    Connected to: Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - 64bit Production
    With the Partitioning, OLAP and Data Mining options
    Export file created by EXPORT:V10.02.01 via conventional path
    import done in WE8ISO8859P15 character set and AL16UTF16 NCHAR character set
    . importing RLODEVEL's objects into RLODEVEL
    . importing RLODEVEL's objects into RLODEVEL
    IMP-00017: following statement failed with ORACLE error 604:
    "CREATE TABLE "LARGE_TABLE" ("C001" VARCHAR2(2) NOT NULL ENABLE, "C002" VARC"
    "HAR2(2) NOT NULL ENABLE, "C003" VARCHAR2(2) NOT NULL ENABLE, "C004" VARCHAR"
    "2(2) NOT NULL ENABLE, "C005" VARCHAR2(2) NOT NULL ENABLE, "C006" VARCHAR2(2"
    ") NOT NULL ENABLE, "C007" VARCHAR2(2) NOT NULL ENABLE, "C008" VARCHAR2(2) N"
    "OT NULL ENABLE, "C009" VARCHAR2(2) NOT NULL ENABLE, "C010" VARCHAR2(2) NOT "
    "NULL ENABLE, "C011" VARCHAR2(2) NOT NULL ENABLE, "C012" VARCHAR2(2) NOT NUL"
    "L ENABLE, "C013" VARCHAR2(2) NOT NULL ENABLE, "C014" VARCHAR2(2) NOT NULL E"
    "NABLE, "C015" VARCHAR2(2) NOT NULL ENABLE, "C016" VARCHAR2(2) NOT NULL ENAB"
    "LE, "C017" VARCHAR2(2) NOT NULL ENABLE, "C018" VARCHAR2(2) NOT NULL ENABLE,"
    " "C019" VARCHAR2(2) NOT NULL ENABLE, "C020" VARCHAR2(2) NOT NULL ENABLE, "C"
    "021" VARCHAR2(2) NOT NULL ENABLE, "C022" VARCHAR2(2) NOT NULL ENABLE, "C023"
    "" VARCHAR2(2) NOT NULL ENABLE, "C024" VARCHAR2(2) NOT NULL ENABLE, "C025" V"
    "ARCHAR2(2) NOT NULL ENABLE, "C027" VARCHAR2(2) NOT NULL ENABLE, "C026" VARC"
    "HAR2(2) NOT NULL ENABLE, "C028" VARCHAR2(2) NOT NULL ENABLE, "C029" VARCHAR"
    "2(2) NOT NULL ENABLE, "C030" VARCHAR2(2) NOT NULL ENABLE, "C031" VARCHAR2(2"
    ") NOT NULL ENABLE, "C032" VARCHAR2(2) NOT NULL ENABLE, "C033" VARCHAR2(2) N"
    "OT NULL ENABLE, "C034" VARCHAR2(2) NOT NULL ENABLE, "C035" VARCHAR2(2) NOT "
    "NULL ENABLE, "C036" VARCHAR2(2) NOT NULL ENABLE, "C037" VARCHAR2(2) NOT NUL"
    "L ENABLE, "C038" VARCHAR2(2) NOT NULL ENABLE, "C039" VARCHAR2(2) NOT NULL E"
    "NABLE, "C040" VARCHAR2(2) NOT NULL ENABLE, "C041" VARCHAR2(2) NOT NULL ENAB"
    "LE, "C042" VARCHAR2(2) NOT NULL ENABLE, "C043" VARCHAR2(2) NOT NULL ENABLE,"
    " "C044" VARCHAR2(2) NOT NULL ENABLE, "C045" VARCHAR2(2) NOT NULL ENABLE, "C"
    "046" VARCHAR2(2) NOT NULL ENABLE, "C047" VARCHAR2(2) NOT NULL ENABLE, "C048"
    "" VARCHAR2(2) NOT NULL ENABLE, "C049" VARCHAR2(2) NOT NULL ENABLE, "C050" V"
    "ARCHAR2(2) NOT NULL ENABLE, "C051" VARCHAR2(2) NOT NULL ENABLE, "C052" VARC"
    "HAR2(2) NOT NULL ENABLE, "C053" VARCHAR2(2) NOT NULL ENABLE, "C054" VARCHAR"
    "2(2) NOT NULL ENABLE, "C055" VARCHAR2(2) NOT NULL ENABLE, "C056" VARCHAR2(2"
    ") NOT NULL ENABLE, "C057" VARCHAR2(2) NOT NULL ENABLE, "C058" VARCHAR2(2) N"
    "OT NULL ENABLE, "C059" VARCHAR2(2) NOT NULL ENABLE, "C060" VARCHAR2(2) NOT "
    "NULL ENABLE) PCTFREE 10 PCTUSED 40 INITRANS 1 MAXTRANS 255 STORAGE(INITIAL"
    " 65536 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT) TABLESPACE "USERS"
    "" LOGGING NOCOMPRESS"
    IMP-00003: ORACLE error 604 encountered
    ORA-00604: error occurred at recursive SQL level 1
    ORA-06502: PL/SQL: numeric or value error: character string buffer too small
    ORA-06512: at line 25
    Import terminated successfully with warnings.
    I'm quite sure, this problem is well known, but I did not find a hint in metalink or the rest of the internet.

    Sorry, the example has not been tested well :(
    But I just had to duplicate the number of columns to get the error both in SqlDeveloper, SqlPlus and (still) imp. That sqlplus and imp have different limits in DDL-size confuses me even more :-/
    CREATE TABLE LARGE_TABLE (
    C001 VARCHAR2(2) NOT NULL , C002 VARCHAR2(2) NOT NULL , C003 VARCHAR2(2) NOT NULL , C004 VARCHAR2(2) NOT NULL ,
    C005 VARCHAR2(2) NOT NULL , C006 VARCHAR2(2) NOT NULL , C007 VARCHAR2(2) NOT NULL , C008 VARCHAR2(2) NOT NULL ,
    C009 VARCHAR2(2) NOT NULL , C010 VARCHAR2(2) NOT NULL , C011 VARCHAR2(2) NOT NULL , C012 VARCHAR2(2) NOT NULL ,
    C013 VARCHAR2(2) NOT NULL , C014 VARCHAR2(2) NOT NULL , C015 VARCHAR2(2) NOT NULL , C016 VARCHAR2(2) NOT NULL ,
    C017 VARCHAR2(2) NOT NULL , C018 VARCHAR2(2) NOT NULL , C019 VARCHAR2(2) NOT NULL , C020 VARCHAR2(2) NOT NULL ,
    C021 VARCHAR2(2) NOT NULL , C022 VARCHAR2(2) NOT NULL , C023 VARCHAR2(2) NOT NULL , C024 VARCHAR2(2) NOT NULL ,
    C025 VARCHAR2(2) NOT NULL , C027 VARCHAR2(2) NOT NULL , C026 VARCHAR2(2) NOT NULL , C028 VARCHAR2(2) NOT NULL ,
    C029 VARCHAR2(2) NOT NULL , C030 VARCHAR2(2) NOT NULL , C031 VARCHAR2(2) NOT NULL , C032 VARCHAR2(2) NOT NULL ,
    C033 VARCHAR2(2) NOT NULL , C034 VARCHAR2(2) NOT NULL , C035 VARCHAR2(2) NOT NULL , C036 VARCHAR2(2) NOT NULL ,
    C037 VARCHAR2(2) NOT NULL , C038 VARCHAR2(2) NOT NULL , C039 VARCHAR2(2) NOT NULL , C040 VARCHAR2(2) NOT NULL ,
    C041 VARCHAR2(2) NOT NULL , C042 VARCHAR2(2) NOT NULL , C043 VARCHAR2(2) NOT NULL , C044 VARCHAR2(2) NOT NULL ,
    C045 VARCHAR2(2) NOT NULL , C046 VARCHAR2(2) NOT NULL , C047 VARCHAR2(2) NOT NULL , C048 VARCHAR2(2) NOT NULL ,
    C049 VARCHAR2(2) NOT NULL , C050 VARCHAR2(2) NOT NULL , C051 VARCHAR2(2) NOT NULL , C052 VARCHAR2(2) NOT NULL ,
    C053 VARCHAR2(2) NOT NULL , C054 VARCHAR2(2) NOT NULL , C055 VARCHAR2(2) NOT NULL , C056 VARCHAR2(2) NOT NULL ,
    C057 VARCHAR2(2) NOT NULL , C058 VARCHAR2(2) NOT NULL , C059 VARCHAR2(2) NOT NULL , C060 VARCHAR2(2) NOT NULL ,
    C101 VARCHAR2(2) NOT NULL , C102 VARCHAR2(2) NOT NULL , C103 VARCHAR2(2) NOT NULL , C104 VARCHAR2(2) NOT NULL ,
    C105 VARCHAR2(2) NOT NULL , C106 VARCHAR2(2) NOT NULL , C107 VARCHAR2(2) NOT NULL , C108 VARCHAR2(2) NOT NULL ,
    C109 VARCHAR2(2) NOT NULL , C110 VARCHAR2(2) NOT NULL , C111 VARCHAR2(2) NOT NULL , C112 VARCHAR2(2) NOT NULL ,
    C113 VARCHAR2(2) NOT NULL , C114 VARCHAR2(2) NOT NULL , C115 VARCHAR2(2) NOT NULL , C116 VARCHAR2(2) NOT NULL ,
    C117 VARCHAR2(2) NOT NULL , C118 VARCHAR2(2) NOT NULL , C119 VARCHAR2(2) NOT NULL , C120 VARCHAR2(2) NOT NULL ,
    C121 VARCHAR2(2) NOT NULL , C122 VARCHAR2(2) NOT NULL , C123 VARCHAR2(2) NOT NULL , C124 VARCHAR2(2) NOT NULL ,
    C125 VARCHAR2(2) NOT NULL , C127 VARCHAR2(2) NOT NULL , C126 VARCHAR2(2) NOT NULL , C128 VARCHAR2(2) NOT NULL ,
    C129 VARCHAR2(2) NOT NULL , C130 VARCHAR2(2) NOT NULL , C131 VARCHAR2(2) NOT NULL , C132 VARCHAR2(2) NOT NULL ,
    C133 VARCHAR2(2) NOT NULL , C134 VARCHAR2(2) NOT NULL , C135 VARCHAR2(2) NOT NULL , C136 VARCHAR2(2) NOT NULL ,
    C137 VARCHAR2(2) NOT NULL , C138 VARCHAR2(2) NOT NULL , C139 VARCHAR2(2) NOT NULL , C140 VARCHAR2(2) NOT NULL ,
    C141 VARCHAR2(2) NOT NULL , C142 VARCHAR2(2) NOT NULL , C143 VARCHAR2(2) NOT NULL , C144 VARCHAR2(2) NOT NULL ,
    C145 VARCHAR2(2) NOT NULL , C146 VARCHAR2(2) NOT NULL , C147 VARCHAR2(2) NOT NULL , C148 VARCHAR2(2) NOT NULL ,
    C149 VARCHAR2(2) NOT NULL , C150 VARCHAR2(2) NOT NULL , C151 VARCHAR2(2) NOT NULL , C152 VARCHAR2(2) NOT NULL ,
    C153 VARCHAR2(2) NOT NULL , C154 VARCHAR2(2) NOT NULL , C155 VARCHAR2(2) NOT NULL , C156 VARCHAR2(2) NOT NULL ,
    C157 VARCHAR2(2) NOT NULL , C158 VARCHAR2(2) NOT NULL , C159 VARCHAR2(2) NOT NULL , C160 VARCHAR2(2) NOT NULL
    PCTFREE 10
    PCTUSED 40
    INITRANS 1
    MAXTRANS 255
    STORAGE(INITIAL 65536 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT)
    TABLESPACE USERS
    LOGGING
    NOCOMPRESS
    CREATE TABLE LARGE_TABLE (
    ERROR at line 1:
    ORA-00604: error occurred at recursive SQL level 1
    ORA-06502: PL/SQL: numeric or value error: character string buffer too small
    ORA-06512: at line 25

  • CP and BP is not being created in E-Recruitment after PFAL

    Dear Experts,
    I need your valuable insight into the below issue:
    We are implementing SAP E-Recruitment in our company and we have a stand alone system for e-rec, i.e. I2-B scenario. Release 604. 
    We defined the process model, filter groups as described in note and many threads here. We are able to transfer (distribute) objects O, S, C, Q and QK using PFAL. When I am trying to distribute object P (IT0000, 0001, 0002, 0006, 0009, 0105 and 1001), object P is getting created with PA infotypes but system does not create the CP, BP and NA objects in E-Rec. My understanding after reading the documentation and some threads on SCN is that system should create these objects (CP, BP and NA) on distributing Object P from ECC.
    Do we need to Run the HRALXSYNC program in E-Recruitment to create these objects? We thought of running this program as well but the Employee Check box in the selection screen of the program is disabled. Even after implementing BADI  HRALX_HRALXSYNC_BADI it remains disabled.
    Any sort of help would be greatly appreciated...
    Kind Regards
    Syed Aijaz

    Dear Salil,
    Thank you for the quick response.
    I had considered maintaing the number ranges for CP in E-Recruitment, but had two concerns/doubts about it:
    1. We have already generated CP in ECC for all Persons and the numbers are taken from an internal range Subgroup ($$$$) and CPs have their own IDs starting with 5XXXXXXX. Now if I maintain a number range in E-Rec, different from this, would that be an issue? I understand that we need to have the same CP ID in both the systems (ECC and E-Rec). Kindly clarify.
    2. We have not maintained any number ranges for other objects (O, S, C, Q, & QK) in E-Rec system. But system has created these objects in E-Recruitment on running PFAL.
    Currently we are doing all these settngs in Sandbox system only.
    Kindly advise....
    Thanks
    Edited by: meetaijaz on Feb 1, 2012 9:38 AM

  • Function Modules and non-PI services to create a front-end to E-Recruiting

    I have looked quite a bit throughout the forums and via Google and am having a hard time answering this question.  I'm positive I'm not the first to ask this.  Anyway, our business users are not too keen on the look and feel of the WebDynpros or BSP's that are available via the E-Recruiting system.  They would like to really change the look and feel of the application.  Is there any document discussing how to change the look and feel of the External Facing job board and application process?  I have not been able to find a cookbook or anything related to this. I could dig through a bunch of code and work my way back, but their has to be a better way. 
    I'm looking for either a how-to guide that discusses to what extent the look and feel of the screen can change and/or what are the services/function modules that are being used for the external candidate (create candidate, list jobs, show job details, apply for jobs, etc.). Any thoughts would be appreciated.
    Thanks.

    am not a techie so cannot answer your question in earnst but I know exactly how youfel about e-rec looka nd feel so adding my two pence:
    1. when discussing e-rec it is imp to mentione the version below version 6 it was bsp 6 onwardsit is webdynpro.
    2. before we discuss code changes, what is the extent of 'look and feel' change your clientwants? can that be addresed via the portal-theme by way of developing a flashy new css based theme? thatmakes life easy for everybody involved and also makes the entire nw portal flasy not just the outward facing job portal...  at a comparitively low cost...
    3. If the answer to abovepoint is a 'no' I guess the only option is to go-a-code-dredging,..
    good luck.

  • Recruitment - Applicant attachments to be transferred to PA

    Dear Experts,
    Im able to transfer Applicant data from recruitment to PA and EMployee ID is generated along with Infotypes updation.
    Now my query is Is there any option to transfer Applicants attachments also along with Applicants data transfer to PA in recruirment module??
    If so where to do settings.
    Thanks
    Ravi

    Hi,
    In SAP each module is a stand alone module.
    PBA7  and PBA8 are used for transferring of data from RC to PA.
    If you want to transfer any data from one module to other module is possible by using data carrier instruments with technical people help.
    Thanks,
    Venu

  • Follow-up Activities in Recruitment...

    Hi Experts,
    I have a query regarding 'Recruitment-PB60'. When I try to do 'Follow-up Activities', it is not working & giving me an error- 'Activity
    type 007 not maintained (Choose another Entry) & likewise Activity Type 018 & 016 not ..............'
    How would it be sorted out? Kindly explain.
    Thanks & Regards,
    Geeta Chaudhary.

    Hi,
    If you are hiring the applicant after completing  the Bulk processing PBA3.
    1. In PB60 you first select the Hire date from the planned activities and click on  Follow-up activities then from the pop p screen tick the completed activity as interview inv.
    In the next pop up complete activity select the activity type 016 interim reply.
    2. Next again select the hire date from the planned activity and go to edit and select created completed activity and select the activity type 014 Hiring date.
    Try to execute this and see.

  • Generate DDL formatting data incorrectly

    Greetings all,
    So I appear to have found the issue with my Generated DDL File. It is formatting the lines incorrectly and I have to manually go in and clean it up.
    For example:
    ALTER TRIGGER  "BI_MIMPBM_CA_GROUP_LKP" ENABLE;CREATE OR REPLACE TRIGGER  "BI_MIMPBM_CAT_LKP"
      before insert on "MIMPBM_CAT_LKP"              
      for each row 
    begin  
      if :NEW."CATID" is null then
        select "CAT_LKP_SEQ".nextval into :NEW."CATID" from dual;
      end if;
    end;Notice how the ENABLE;CREATE are on the same line. That throws an error. I am not sure why as I thought the ; ended a piece of code, but when I do a carriage return on it and then put it in, it works. I am using Application Express 4.0.2.00.07 and not sure if it is the application or something I am doing in the formatting of my code when I create anything.
    Is anyone else having this issue when generating DDL files? If so, is there a work around besides going through the whole script and adding carriage returns as necessary?
    Thanks
    Wally

    Is Page 5 of Data Modeling (How to generate DDL(sql) scripts to create a database) of any help?

  • Not able to generate DDL on new install of OEM Grid Control 10.2.0.5

    I upgraded grid control to 10.2.0.5 and can not get it to generate DDL.
    I click generate ddl and get the basic message 'Generate DDL has been submitted successfully. It could take a while to complete if the baseline version contains a large number of objects.'
    And it says that it is being generated in the DDL column but if you either let it sit there or click the refresh button, it will say Not Generated.
    Has anyone come across this and found a solution?
    This is on windows.

    Try this on your versionof 10.2.0.5:
    On the Dictionary Baseline Objects page,
    1. Select all the objects in Non-Schema Object Types
    2. Select objects types and the schemas to include     
    3. Select all the objects in Object Types
    4. Add your schemas
    This will succesfullly run.
    Now click on the Generated DDL and it will initially say 'Being Generated' in the DDL column.
    Either let it sit there or click the Refresh button and the status in the DDL column is now 'Not Generated'.

Maybe you are looking for

  • Premiere Elements 11 Audio & Video are not in sync

    I am using Premiere Elements 11 for editing sermons, and recently I have noticed that in all of the finalized videos the audio and video are out of sync about half-way through the sermon. I know it is not the DVDs since they have no issues when runni

  • Financial Reporting Exception - Error executing query: java.lang.Arithmetic

    Hi all, I'm using the Financial Reporting Studio 11.1.2.507 to develop a report to a planning application, so i'm using a planning connection to do it. This report involves some calcs and i have sure that is possible generate a divide by zero. But wh

  • ITunes 10.6 crashes when trying to play video full screen

    I haven't seen this particular issue among others' comments so- When switching from the normal video window to full screen while watching a podcast in my iTunes library, the program immediately crashes.  I've tried several different podcast, starting

  • Slow Rule Performance

    When i create a rule for incoming e-mails, it takes 1-2 minutes to update the server. I checked the rules quota limit via powershell and it is at max. 256kb. This is frustrating. I have 200 rules at the moment.  I am using office 365 with outlook 201

  • Don't know what kind of application I should use to make this kind of proj.

    I am going to make a project and I am not sure what kind of program would work for this document I want to make. The project I would like to make is of a type like a family tree, or a reverse sports playoff grid, where you start out with a few header