Syntax error in Start Routine routine 9998 in transformation

Hi Guyz,
I am getting the below error while doinf the syntax check in start routine in one of the transformation in BW production after the failed TR movement
E:In PERFORM or CALL FUNCTION "ROUTINE_9998", the actual parameter
"SOURCE_PACKAGE" is incompatible with the formal parameter
"DATA_PACKAGE".
but for the same transformation in quality its showing  no syntax errors found.
its an odd behaviour.
please guide with ur expertise.
cheerz,
raps.

Hi,
Check the note 1052648. it says that:
Start routine:
           In the start routine, all the fields from the source are always available.
During the migration, a type '_ty_t_SC_1_full' is generated in '2nd part global'. Since Note 1325124, this type has been adjusted when the field list is changed. In the past, a change to the field list caused syntax errors of the type:
For update rules:
                    E: For PERFORM or CALL FUNCTION "ROUTINE_9998", the actual parameter "SOURCE_PACKAGE" is not compatible with the formal parameter "DATA_PACKAGE".
For transfer rules:
                    E:For PERFORM or CALL FUNCTION "STARTROUTINE", the actual parameter "SOURCE_PACKAGE" is not compatible with the formal parameter "DATAPAK".
           If this error continues to occur, go to the solution section to correct it.
           Solution:
           This error should now be automatically corrected with Note 1325124. Access the incorrect start routine in change mode. The type '_ty_s_SC_1_full' is then automatically adjusted to the source structure. If this does not work, you should use the tool 'RSTRAN_MIGRATION_CHECK' (described in Note 1369395) to check and possibly repair the transformation in question.
           If this error still occurs, you can correct it manually as follows:
           Copy the field list of the type     '_ty_s_SC_1' from the 'private section' of the CLASS lcl_transform DEFINITION (you can find this when you scroll up in the routine editor of the start routine) to the type '_ty_s_SC_1_full' of '2nd part global'.
Regards,
Anil Kumar Sharma .P

Similar Messages

  • Error while transporting Transformation: Syntax error in Start Routine

    Hi Everyone,
    I'm facing a strange problem during transporting one of the Business Content cubes from Dev. to Quality.
    I'd activated the DSO 'Purchase Order Items (0PUR_O01)' and its entire data flow from the 4 datasources 2LIS_02_CGR, 2LIS_02_SCN, 2LIS_02_SGR, and 2LIS_02_ITM from BC. Then I migrated the Transfer/Update rules to transformations and the DataSources to BI7 DataSource. So far so good. The migration was successful and all the objects were activated.
    Now when I transport the same to Quality, the import fails with return code 8 and the error message says:
    'Start of the after-import method RS_TRFN_AFTER_IMPORT for object type(s) TRFN (Activation Mode)'
    'Start Routine: Syntax error in routine'
    I verified that the transformation where the error orrured was the one from InfoSource Z2LIS_02_ITM to DSO 0PUR_O01. I went and checked the start routine and it did indeed have a syntax error:
    'In PERFORM or CALL FUNCTION "ROUTINE_9998", the actual parameter SOURCE_PACKAGE" is incompatible with the formal parameter DATA_PACKAGE". '
    But when I check in the Dev. system, there is no syntax error for the same routine. Later, I tried to transport only the said transformation by re-activating it in Dev, and again I got the same error.
    I have no idea why I'm getting a syntax error in the start routine when there are non in the Dev. system. Also none of the coding is customised, it was only the BC code, migrated to a transformation.
    Any suggestions on the steps I could take to transport the transformation to my quality system?
    Thanks,
    Ram

    Hi Ajay, Shanthi, svu and Ray
    I do indeed have a start routine in my transformation and it was migrated from a 3.x update rule to a BI 7 transformation routine.
    The migration was successful and the Start Routine has NO syntax errors in the start routine in the Dev. system. I only encounter the error while transporting it to the Quality system. I cannot modify the code in the Quality system because it is non-changelable and there is no point in trying to change the code in Dev. because there are no errors over there.
    I've also made sure that I've transported all the necessary objects required by the transformations to quality. The routine does not perform a lookup, it simply deletes some records from the data package based on the processkey value (which is itself present in the data package).

  • Syntax error in start routine

    Dear All,
    I have activated the infocube 0sd_c03 with grouping "in data flow before" and the infocube is activated with datasources
    2LIS_11_VAITM
    2LIS_11_VAHDR
    2LIS_12_VCITM
    2LIS_12_VCHDR
    2LIS_13_VDITM
    2LIS_13_VDHDR in 3.x where as
    TRCS 2LIS_13_VDITM -> CUBE 0SD_C03 in transformation with DTP.
    when I activate the transformation I get error as mentioned below:
    Start Routine: Syntax error in routine and in the start routine when I check the details of the error is
                      E:In PERFORM or CALL FUNCTION "ROUTINE_9998", the actual parameter
                               "SOURCE_PACKAGE" is incompatible with the formal parameter
                                   "DATA_PACKAGE".
    If source pakage is replaced by data package the system message is data_package is not available.
    What do I do to resolve this issue.
    KS

    hi,
    There is a structral diffrence between SOURCE_PACKAGE and DATA_PACKAGE
    so you need to change tys_SC_1_full
    go through the below links for similar problem
    Re: 0IC_C03: 2LIS_03_BF Transformation Start Routine Activation error
    Re: 2LIS_03_BF transformation problem

  • Getting syntax error while executing keyfigure routine BI 7.0

    Hello,
    I am writing a very simple keyfigure routine to calculate sales revune using sales quantity and sales price, I am getting error as follows
    - I am in 'Rules Details' screen and I have selected 'Routine' as the rule type. I enter the following code in routine
         RESULT = SOURCE_FIELDS_RULE-/BIC/IO_VB_QU *
         SOURCE_FIELDS_RULE-/BIC/IO_VB_PRC .
    - I hit the check button on the routine page, it says no syntax errors
    - Now I am back in the 'Rules Details' page and I hit the 'Check' button it gives me the following error
    Rule(target IO_VB_REV, group: Standard Group): Syntax error in routine
    Please tell me what is wrong. what should i check

    Hi Vaibhav,
    Here are the details
    - I am loading data from flatfile to an Infocube with 3 keyfigures: IO_VB_PRC (Sales Price) , IO_VB_QU (Sales Quantity), IO_VB_REV (Sales Revune). Getting values for IO_VB_QU and IO_Vb_PRC from flatfile and calculating for IO_VB_REV using routine
    - I created Transformations, and under  Rule Group: Standard Group box I see 'X' sign against 'IO_VB_REV' field, meaning not mapped to any datasource field
    - In rules detail screen, I add two source fields of Rule , IO_VB_QU and IO_VB_PRC. I see IO_VB_REV already added under 'Target fields of Rule' section
    - I then add the only following line to routine
    RESULT = SOURCE_FIELDS_RULE-/BIC/IO_VB_QU *    SOURCE_FIELDS_RULE-/BIC/IO_VB_PRC .
    Clicking on check button it gives no syntax error message. I save and exit back to Rule Details page.
    - I specify 'USD' as the Conversion Type and then click on check button it initially gives me 'Incorrect Input'  written in an information message box and then error that Syntax error in routine
    Let me know what is that I am missing
    Thanks for helping

  • Start Routine: Syntax error in routine 2LIS_03_BF Transformations

    Hi experts,
    I enhanced the 2lis_03_bf data source, and replicated the data source in bw system, i have mapped the transformations and when i try to activate the transformations it is giving the below error.
    Start Routine: Syntax error in routine
    when i check the start routine it is giving the  below error message.
    E:In PERFORM or CALL FUNCTION "ROUTINE_9998", the actual parameter
    "SOURCE_PACKAGE" is incompatible with the formal parameter
    "DATA_PACKAGE".
    please provide me the solution.
    Regards
    venuscm

    Hi Venu,
    This seems to me like you have earlier migrated the update rules to transformations. We did the same earlier and faced issues whenever we add new fields/infoobjects. The error message was different, if i remember correctly.
    We had to add the new field/infoobject added, to the structure '_ty_s_*****' that exists at the top of the start routine code. This was one disadvantage of migration of rules.

  • Data Source 0HR_PA_0 Syntax Error in the start routine while activating

    Hi All,
    I have migrated the Business content for the data source 0HR_PA_0
    While activating the transformation-2 there is errors like:
    Start Routine: Syntax error in routine
    Rule (target: 0HDCNT_LAST, group: 01 Standard Group): Syntax error in routine
    Rule (target: 0AGE_KYF, group: 01 Standard Group): Syntax error in routine
    .................... etc
    I need help to resolve this issue.
    Thanks & Regards,
    Savitha

    Hello Jurgita,
    When Data Source was migrated the codes related to COMM_STRUCTURE was missing in the start routinue.
    Following codes (in bold) with regard to COMM_STRUCTURE added and then got activated
    4.     *--
    5.         COMM_STRUCTURE   type tys_sc_1__rule_25,
    6.         l_subrc          type sy-tabix,
    7.         l_abort          type sy-tabix,
    8.         ls_monitor       TYPE rsmonitor,
    9.         ls_monitor_recno TYPE rsmonitors.
    10.     
    11.       REFRESH:
    12.         MONITOR.
    13.     
    14.     * Runtime attributs
    15.         SOURCE_SYSTEM  = p_r_request->get_logsys( ).
    16.         move-corresponding SOURCE_FIELDS to COMM_STRUCTURE.
    17.     
    18.     *  Migrated update rule call
    19.       Perform routine_0011
    20.       using
    21.         COMM_STRUCTURE
    22.       CHANGING
    Regards,
    Savitha
    Edited by: Savitha  Ravi on Jun 19, 2009 6:34 AM

  • Syntax error in routine

    Hi Gurus,
        I have added new fields in ODS  and Cube.While activating transformation I am getting the following error : 'Start routine:Syntax error in routine'Please let me know how to trouble shoot the same.
    Regards
    Hasini

    Hi Pallavi,
    Pls gothroug the Routine:
    MONITOR_RECNO.
    Runtime attributs
        SOURCE_SYSTEM  = p_r_request->get_logsys( ).
    Migrated update rule call
      Perform routine_9998
      TABLES
        SOURCE_PACKAGE
      CHANGING
        l_abort.
    *-- Convert Messages in Transformation format
        LOOP AT MONITOR_RECNO INTO ls_monitor_recno.
          move-CORRESPONDING ls_monitor_recno to MONITOR_REC.
          append monitor_rec to MONITOR.
        ENDLOOP.
        LOOP AT MONITOR INTO ls_monitor.
          move-CORRESPONDING ls_monitor to MONITOR_REC.
          append monitor_rec to MONITOR.
        ENDLOOP.
        IF l_abort <> 0.
          RAISE EXCEPTION TYPE CX_RSROUT_ABORT.
        ENDIF.
    $$ end of routine - insert your code only before this line         -
      ENDMETHOD.                    "start_routine
          Method inverse_start_routine
    E:In PERFORM or CALL FUNCTION "ROUTINE_9998", the actual parameter
    SOURCE_PACKAGE" is incompatible with the formal parameter
    "DATA_PACKAGE".
    Regards
    Hasini

  • Syntax Error in Routine while Activating Transformation

    Dear All,
    I am activating whole scenario for 0SD_C03. we have made transformation for 2lis_11_vaitm, during installation we get below errors:
    - Rule (target: 0SUBTOT_1S, group: 01 Standard Group): Syntax error in routine
    -Rule (target: 0NET_VAL_S, group: 01 Standard Group): Syntax error in routine
    -Rule (target: 0PROD_CATEG, group: 01 Standard Group): Syntax error in routine
    I really appreciate your any input for this.
    Thanks & Regards,
    Darshan

    Hi,
    I hope there is inbalance in between SOURCE Datapackage and Target Datapackage. So in the start routines pls check it and it not found then add in DATA_PACKAGE...
    Check with ABAPer
    under ,
    TYPES:
          BEGIN OF tys_TG_1_full,
            SUBTOT_1S           TYPE /BI0/OISUBTOT_1S,
    and also you can fin dsimilar kind of threads in SDN.
    Re: Syntax Error in Routine while Activating Transformation
    Re: Issue while creating Transformation from Update rule.
    Re: 0IC_C03 activation of Transformation rule ends with ERROR
    Re: Error in activation of transformation
    Thanks
    Reddy

  • Syntax error during transport on valid transfer routines

    Dear All,
    We have some routines in a tranfer structure that are valid and working just fine in DEV.  But when we transport them to QA we get the following error message :-
    Start of the after-import method for object type R3TR ISTS (Activation Mode)                
    Transfer structure 6DB_V_BW_EPISODE_AD activated under the name 6DB_V_BW_EPISODE_AD         
    It is not necessary to copy dependent objects for transfer structure 6DB_V_BW_EPISODE_AD    
    Syntax error in transfer routine for InfoObject OPEN_DAT                                    
    Activating Transfer Rules 6DB_V_BW_EPISODE_AD ...                                           
    47 Transfer Rule(s) of the transfer structure 6DB_V_BW_EPISODE_AD removed from control table
    53 InfoObject(s) of the transfer structure 6DB_V_BW_EPISODE_AD removed from control table   
    Formulas have been saved                                                                    
    Syntax error in transfer routine for InfoObject OPEN_DAT
    If we remove all the routines the activation works just fine even though our routines are valid and working just fine in DEV.
    Can anyone explain this as this is becoming quite urgent now ?
    Thanks in advance.
    Craig

    Hi Oliver
    I work with Craig. In response to your question, what he means is that all objects independantly have been transported ok, apart from the transfer rules. If you look at the table RSTSRULES you will see a column called CONVROUT_L.
    In our Dev system this field contains the BW generated rule code. Eg.
    45GEGC5I66GA9Z5G4KFDDRIK4 against the Transfer structure. When the after import process runs, it uses the contents of this table together with the contents of the RSAABAP table which contains the code and creates the transfer rule program.
    In RSAABAP we have the following code for CODEID '45GEGC5I66GA9Z5G4KFDDRIK4'
    DATA: l_s_errorlog TYPE rssm_s_errorlog_int.
    CHECK NOT &TS&-opened_date IS INITIAL.
    IF &TS&-opened_date < '19000101'.
    &RS& = '19900101'.
    ELSEIF &TS&-opened_date > '29990101'.
    &RS& = '19900101'.
    ELSE.
    &RS& = &TS&-opened_date.
    ENDIF.
    returncode <> 0 means skip this record
    &RE& = 0.
    abort <> 0 means skip whole data package !!!
    &AB& = 0.
    In our QA system the column is blank because of the wierd Syntax problem when generating the program, therefore the transfer rules dont get activated.
    As you can see there is no problem with the ABAP.
    Regards
    Mark

  • Error in start routine

    Hello All,
    I am trying to activate a couple transformations for cubes in purchasing. I am getting the error in start routine. I checked the start routine.
    E:In PERFORM or CALL FUNCTION "ROUTINE_9998", the actual parameter
    "SOURCE_PACKAGE" is incompatible with the formal parameter
    "DATA_PACKAGE"
    I did see a couple threads in sdn regarding this. But wanted to make sure if those thing sapplyin my case. I am new to SAP BW hence want to make sure before touching the code.
    Can someone help me resolve this soon?
    Thanks,
    Dee.

    Hello Rakesh,
    METHODS
          start_routine
            IMPORTING
              request                  type rsrequest
              datapackid               type rsdatapid
            EXPORTING
              monitor                  type rstr_ty_t_monitors
            CHANGING
              SOURCE_PACKAGE              type tyt_SC_1
            RAISING
              cx_rsrout_abort.
        METHODS
          inverse_start_routine
            IMPORTING
              i_th_fields_outbound         TYPE rstran_t_field_inv
              i_r_selset_outbound          TYPE REF TO cl_rsmds_set
              i_is_main_selection          TYPE rs_bool
              i_r_selset_outbound_complete TYPE REF TO cl_rsmds_set
              i_r_universe_inbound         TYPE REF TO cl_rsmds_universe
            CHANGING
              c_th_fields_inbound          TYPE rstran_t_field_inv
              c_r_selset_inbound           TYPE REF TO cl_rsmds_set
              c_exact                      TYPE rs_bool.
    ENDCLASS.                    "routine DEFINITION
    $$ begin of 2nd part global - insert your code only below this line  *
    *The above part is in gray and i cannot change it.
      MONITOR_RECNO.
    Runtime attributs
        SOURCE_SYSTEM  = p_r_request->get_logsys( ).
    Migrated update rule call
      Perform routine_9998
      TABLES
        SOURCE_PACKAGE
      CHANGING
        l_abort.
    *-- Convert Messages in Transformation format
        LOOP AT MONITOR_RECNO INTO ls_monitor_recno.
          move-CORRESPONDING ls_monitor_recno to MONITOR_REC.
          append monitor_rec to MONITOR.
        ENDLOOP.
        LOOP AT MONITOR INTO ls_monitor.
          move-CORRESPONDING ls_monitor to MONITOR_REC.
          append monitor_rec to MONITOR.
        ENDLOOP.
        IF l_abort <> 0.
          RAISE EXCEPTION TYPE CX_RSROUT_ABORT.
        ENDIF.
    I dont know abap..can you please guide me with this

  • Syntax error  while executing Key Figure routine

    Hello,
    I am posting my question again, as I have not got any solution. Please help it will be really appreciated. Here's the description
    I am loading data from flatfile to an Infocube with 3 keyfigures: Sales Price , Sales Quantity, Sales Revune. Getting values for Sales Price and Salea Quantity  from flatfile and calculating for Sales Revunue IO_VB_REV using routine
    - I created Transformations, and under Rule Group: Standard Group box I have not mapped IO_VB_REV  any datasource field and see 'X' sign against the field.
    - In rules detail screen, I add two source fields of Rule , IO_VB_QU and IO_VB_PRC. I see IO_VB_REV already added under 'Target fields of Rule' section
    - I then add the only following line to routine
    RESULT = SOURCE_FIELDS_RULE-/BIC/IO_VB_QU * SOURCE_FIELDS_RULE-/BIC/IO_VB_PRC .
    - Clicking on check button it gives no syntax error message. I save and exit back to Rule Details page.
    - For IO_VB_REV field If I select any of 2 options i.e. Fixed Unit or No conversion it gives me a dump. So I select 'from conversion' option. In that case I enter USD against 'Conversion Type' field. It gives me information box popup with 'Incorrect Input Message'
    - When check button hit on 'Rule Details' page, it gives me error message ' Syntax error in routine '
    Why is it giving me syntax error, inspite of the fact that I get 'no syntax error' message on routine page. Also why am I getting short dumps on changing Conversion Type

    Hi Olivier,
    I really thank you for ur efforts in helping me solving this problem. Below is complete description of KF defined,
    1. Created InfoObjects for Sales Quantity, Sales Price, Sales Revunue
    Definition of <b>Sales Quantity</b>
    Name: IO_VB_QU
    Type/Data Type : Quantity
    Data Type: QUAN - Quantity field, points to unit field with format UN
    Currency / unit of measure
    Unit / Currency: 0UNIT
    Definition of <b>Sales Price</b>
    Name: IO_VB_PRC
    Type/Data Type : Amount
    Data Type: CURR - Currency field, stored as DEC
    Currency / unit of measure
    Fixed Currency: USD
    Definition of <b>Sales Revunue</b>
    Name: IO_VB_REV
    Type/Data Type : Amount
    Data Type: CURR - Currency field, stored as DEC
    Currency / unit of measure
    Fixed Currency: USD
    2. As the data is being read from flatfile, created DataSource with fields for Sales ID, Sales Price, Sales Quantity. As I am reading unit for quantity from file (has values EA,BOX,CSE), I have a corresponding field UNIT in DataSource. No field for Sales Revunue.
    3. I use 'Create Transformation' functionality to automatically create transformations.
    4. Rule Details page of each of 3 KFs has following values
    <b>Rule Details page of Sales Quantity</b>
    Rule Type: Direct Assignment
    Aggregation : Summation
    Target Unit: 0UNIT
    Unit: from Source
    Source Unit: UNIT
    Source Fields of Rule: /BIC/IO_VB_QU, UNIT
    Target Fields of Rule: 0UNIT, IO_VB_QU
    <b>Rule Details page of Sales Price</b>
    Rule Type: Direct Assignment
    Aggregation : Maximum
    Fixed Target Currency : USD
    Currency: No Conversion
    Source Fields of Rule: /BIC/IO_VB_PRC
    Target Fields of Rule:  IO_VB_PRC
    <b>Rule Details page of Sales Revunue</b>
    Rule Type: Routine   
    Aggregation : Summation
    Fixed Target Currency : USD
    Currency: from Conversion
    Conversion Type: ??????.....(I entered USD it gives me Incorrect Input message)
    Source Fields of Rule: /BIC/IO_VB_PRC, /BIC/IO_VB_QU, UNIT
    Target Fields of Rule:  IO_VB_REV
    I have this line is the routine 
    RESULT = SOURCE_FIELDS_RULE-/BIC/IO_VB_QU *   SOURCE_FIELDS_RULE-/BIC/IO_VB_PRC.
    Let me know if u need any other info......
    I really appreciate u trying  to help me
    Vidya

  • Syntax error in Transformation routine

    Hi Folks,
    We are In SP 17.
    I have migrated standard 0bpartner_attr transfer rules to a transformation with syntax errors.
    I have a routine for a gender, Valid From and Valid To its giving the following erorr.
    E:Field "TRAN_STRUCTURE-VALID_FROM" is unknown. It is neither in one of
    the specified tables nor defined by a "DATA" statement. "DATA"
    statement.
    the following is the routine code for Gender.
    PROGRAM trans_routine.
          CLASS routine DEFINITION
    CLASS lcl_transform DEFINITION.
      PUBLIC SECTION.
    Attributs
        DATA:
          p_check_master_data_exist
                TYPE RSODSOCHECKONLY READ-ONLY,
    *-    Instance for getting request runtime attributs;
        Available information: Refer to methods of
        interface 'if_rsbk_request_admintab_view'
          p_r_request
                TYPE REF TO if_rsbk_request_admintab_view READ-ONLY.
      PRIVATE SECTION.
        TYPE-POOLS: rsd, rstr.
      Rule specific types
        TYPES:
          BEGIN OF tys_SC_1,
         Field: XSEXM Male.
            XSEXM           TYPE C LENGTH 1,
         Field: XSEXF Female.
            XSEXF           TYPE C LENGTH 1,
         Field: XSEXU Unknown.
            XSEXU           TYPE C LENGTH 1,
         Field: RECORD.
            RECORD           TYPE RSARECORD,
          END   OF tys_SC_1.
        TYPES:
          BEGIN OF tys_TG_1,
         InfoObject: 0GENDER Gender.
            GENDER           TYPE /BI0/OIGENDER,
          END   OF tys_TG_1.
    $$ begin of global - insert your declaration only below this line  -
    ... "insert your code here
    $$ end of global - insert your declaration only before this line   -
        METHODS
          compute_0GENDER
            IMPORTING
              request                  type rsrequest
              datapackid               type rsdatapid
              SOURCE_FIELDS              type tys_SC_1
            EXPORTING
              RESULT                   type tys_TG_1-GENDER
              monitor                  type rstr_ty_t_monitor
            RAISING
              cx_rsrout_abort
              cx_rsrout_skip_record
              cx_rsrout_skip_val.
        METHODS
          invert_0GENDER
            IMPORTING
              i_th_fields_outbound         TYPE rstran_t_field_inv
              i_r_selset_outbound          TYPE REF TO cl_rsmds_set
              i_is_main_selection          TYPE rs_bool
              i_r_selset_outbound_complete TYPE REF TO cl_rsmds_set
              i_r_universe_inbound         TYPE REF TO cl_rsmds_universe
            CHANGING
              c_th_fields_inbound          TYPE rstran_t_field_inv
              c_r_selset_inbound           TYPE REF TO cl_rsmds_set
              c_exact                      TYPE rs_bool.
    ENDCLASS.                    "routine DEFINITION
    $$ begin of 2nd part global - insert your code only below this line  *
    $$ end of rule type
        TYPES:
          BEGIN OF tys_TG_1_full,
         InfoObject: 0BPARTNER Business Partner.
            BPARTNER           TYPE /BI0/OIBPARTNER,
         InfoObject: 0BP_ACTITL1 First Academic Title.
            BP_ACTITL1           TYPE /BI0/OIBP_ACTITL1,
         InfoObject: 0BP_ACTITL2 Second Academic Title.
            BP_ACTITL2           TYPE /BI0/OIBP_ACTITL2,
         InfoObject: 0BP_BTHNAME BP: Person's Name at Birth.
            BP_BTHNAME           TYPE /BI0/OIBP_BTHNAME,
         InfoObject: 0BP_CAT Business Partner Category.
            BP_CAT           TYPE /BI0/OIBP_CAT,
         InfoObject: 0BP_CONS Business Partner (Consolidated/Cleansing).
            BP_CONS           TYPE /BI0/OIBP_CONS,
         InfoObject: 0BP_CONTACT BP: Contact Permission.
            BP_CONTACT           TYPE /BI0/OIBP_CONTACT,
         InfoObject: 0BP_EXTERN BP Number in External System.
            BP_EXTERN           TYPE /BI0/OIBP_EXTERN,
         InfoObject: 0BP_FSTNAME BP: Person's First Name.
            BP_FSTNAME           TYPE /BI0/OIBP_FSTNAME,
         InfoObject: 0BP_GROUP Business Partner Grouping.
            BP_GROUP           TYPE /BI0/OIBP_GROUP,
         InfoObject: 0BP_GRPNAM1 BP: Name 1 (Group).
            BP_GRPNAM1           TYPE /BI0/OIBP_GRPNAM1,
         InfoObject: 0BP_GRPNAM2 BP: Name 2 (Group).
            BP_GRPNAM2           TYPE /BI0/OIBP_GRPNAM2,
         InfoObject: 0BP_GRPTYPE BP: Group Type.
            BP_GRPTYPE           TYPE /BI0/OIBP_GRPTYPE,
         InfoObject: 0BP_LSTNAME BP: Person's Surname.
            BP_LSTNAME           TYPE /BI0/OIBP_LSTNAME,
         InfoObject: 0BP_MAR_STA BP: Marital Status.
            BP_MAR_STA           TYPE /BI0/OIBP_MAR_STA,
         InfoObject: 0BP_MDLNAME BP: Person's Middle Name or Second First
    *Name.
            BP_MDLNAME           TYPE /BI0/OIBP_MDLNAME,
         InfoObject: 0BP_SECNAME BP: Person's Second Surname.
            BP_SECNAME           TYPE /BI0/OIBP_SECNAME,
         InfoObject: 0CHANGEDBY Changed by.
            CHANGEDBY           TYPE /BI0/OICHANGEDBY,
         InfoObject: 0CH_AT Time of Last Change.
            CH_AT           TYPE /BI0/OICH_AT,
         InfoObject: 0CH_ON Last changed on.
            CH_ON           TYPE /BI0/OICH_ON,
         InfoObject: 0CREATEDBY Name of person who created the object.
            CREATEDBY           TYPE /BI0/OICREATEDBY,
         InfoObject: 0CREATEDON Date on which the record was created.
            CREATEDON           TYPE /BI0/OICREATEDON,
         InfoObject: 0CREA_TIME Time Created.
            CREA_TIME           TYPE /BI0/OICREA_TIME,
         InfoObject: 0GENDER Gender.
            GENDER           TYPE /BI0/OIGENDER,
         InfoObject: 0LEGALFORM Legal Status of Organization.
            LEGALFORM           TYPE /BI0/OILEGALFORM,
         InfoObject: 0NAME_ORG1 BP: Organization Name 1.
            NAME_ORG1           TYPE /BI0/OINAME_ORG1,
         InfoObject: 0NAME_ORG2 BP: Organization Name 2.
            NAME_ORG2           TYPE /BI0/OINAME_ORG2,
         InfoObject: 0NAME_ORG3 BP: Organization Name 3.
            NAME_ORG3           TYPE /BI0/OINAME_ORG3,
         InfoObject: 0NAME_ORG4 BP: Organization Name 4.
            NAME_ORG4           TYPE /BI0/OINAME_ORG4,
         InfoObject: 0NATION Nationality.
            NATION           TYPE /BI0/OINATION,
         InfoObject: 0TITLE_SPPL Name Supplement, for example, Noble Title
            TITLE_SPPL           TYPE /BI0/OITITLE_SPPL,
         InfoObject: 0BP_TYPE Partner:Partner Type.
            BP_TYPE           TYPE /BI0/OIBP_TYPE,
         InfoObject: 0GN_PAR_SSY Source System of a Partner.
            GN_PAR_SSY           TYPE /BI0/OIGN_PAR_SSY,
         InfoObject: 0LOGSYS Source System.
            LOGSYS           TYPE RSDLOGSYS,
         InfoObject: 0RECORDMODE BW Delta Process: Record Mode.
            RECORDMODE           TYPE RODMUPDMOD,
         InfoObject: 0BP_GUID GUID of Business Partner.
            BP_GUID           TYPE /BI0/OIBP_GUID,
         InfoObject: 0BPDATEFROM GP Attributes Valid from.
            BPDATEFROM           TYPE /BI0/OIBPDATEFROM,
         InfoObject: 0BPDATETO GP Attributes Valid to.
            BPDATETO           TYPE /BI0/OIBPDATETO,
         Field: RECORD Data record number.
            RECORD           TYPE RSARECORD,
          END   OF tys_TG_1_full.
    Additional declaration for transfer rule interface
      DATA:
        g_t_errorlog TYPE rssm_t_errorlog_int,
        RECORD_ALL   LIKE SY-TABIX.
    global definitions from transfer rules
    DATA: gs_cob_pro TYPE rsd_s_cob_pro,
          gt_viobj   TYPE rsd_t_viobj,
          gs_viobj   TYPE rsd_s_viobj.
    DATA:   l_s_errorlog TYPE rssm_s_errorlog_int,
            l_text TYPE string.
    FORM compute_BPDATEFROM
       CHANGING
        RESULT         TYPE tys_TG_1_full-BPDATEFROM
        RETURNCODE     LIKE sy-subrc
        ABORT          LIKE sy-subrc
      RAISING
        cx_sy_arithmetic_error
        cx_sy_conversion_error.
      INCLUDE rs_bct_bupa_form_valid_from.
    ENDFORM.                    "BPDATEFROM
    FORM compute_BPDATETO
       CHANGING
        RESULT         TYPE tys_TG_1_full-BPDATETO
        RETURNCODE     LIKE sy-subrc
        ABORT          LIKE sy-subrc
      RAISING
        cx_sy_arithmetic_error
        cx_sy_conversion_error.
      INCLUDE rs_bct_bupa_form_valid_to.
    ENDFORM.                    "BPDATETO
    FORM compute_GENDER
       CHANGING
        RESULT         TYPE tys_TG_1_full-GENDER
        RETURNCODE     LIKE sy-subrc
        ABORT          LIKE sy-subrc
      RAISING
        cx_sy_arithmetic_error
        cx_sy_conversion_error.
    INCLUDE rs_bct_bupa_form_gender.
    ENDFORM.                    "GENDER
    FORM compute_GN_PAR_SSY
       CHANGING
        RESULT         TYPE tys_TG_1_full-GN_PAR_SSY
        RETURNCODE     LIKE sy-subrc
        ABORT          LIKE sy-subrc
      RAISING
        cx_sy_arithmetic_error
        cx_sy_conversion_error.
    INCLUDE rs_bct_bupa_form_gn_par_ssy.
    ENDFORM.                    "GN_PAR_SSY
    $$ end of 2nd part global - insert your code only before this line   *
          CLASS routine IMPLEMENTATION
    CLASS lcl_transform IMPLEMENTATION.
      METHOD compute_0GENDER.
      IMPORTING
        request     type rsrequest
        datapackid  type rsdatapid
        SOURCE_FIELDS-XSEXM TYPE C LENGTH 000001
        SOURCE_FIELDS-XSEXF TYPE C LENGTH 000001
        SOURCE_FIELDS-XSEXU TYPE C LENGTH 000001
       EXPORTING
         RESULT type tys_TG_1-GENDER
        DATA:
          MONITOR_REC    TYPE rsmonitor.
    *$*$ begin of routine - insert your code only below this line        *-*
      Data:
        l_s_error_log    type rssm_s_errorlog_int,
        l_subrc          type sy-tabix,
        l_abort          type sy-tabix,
        ls_monitor       TYPE rsmonitor,
        ls_monitor_recno TYPE rsmonitors.
    REFRESH:
      monitor,
      monitor_recno.
    Migrated transfer rule call
      Perform compute_GENDER
        CHANGING
          RESULT
          l_subrc
          l_abort.
    *-- Convert Messages in Transformation format
        LOOP AT G_T_ERRORLOG INTO l_s_error_log.
          move-CORRESPONDING l_s_error_log to MONITOR_REC.
          append monitor_rec to MONITOR.
        ENDLOOP.
        IF l_subrc <> 0.
          RAISE EXCEPTION TYPE cx_rsrout_skip_val.
        ENDIF.
        IF l_abort <> 0.
          RAISE EXCEPTION TYPE CX_RSROUT_ABORT.
        ENDIF.
    $$ end of routine - insert your code only before this line         -
      ENDMETHOD.                    "compute_0GENDER
          Method invert_0GENDER
          This subroutine needs to be implemented only for direct access
          (for better performance) and for the Report/Report Interface
          (drill through).
          The inverse routine should transform a projection and
          a selection for the target to a projection and a selection
          for the source, respectively.
          If the implementation remains empty all fields are filled and
          all values are selected.
      METHOD invert_0GENDER.
    $$ begin of inverse routine - insert your code only below this line-
    ... "insert your code here
    $$ end of inverse routine - insert your code only before this line -
      ENDMETHOD.                    "invert_0GENDER
    ENDCLASS.                    "routine IMPLEMENTATION
    let me know how to correct the above code.
    thanks

    Hi,
    the field tran_structure is no more available. The name changed to source_fields. Additionally there is no datapak available. It is now source_fields_table. You might need to use field symbols to access the fields.
    regards
    Siggi

  • Syntax error in Update Routine

    Dear All,
    While trying to update infoobject /BIC/ZGROSSPRI in an ODS in BI through an update routine, a syntax error is thrown when I am defining a variable of type  tys_TG_1-/BIC/ZGROSSPRI.
    For instance,
    DATA: VALUE TYPE tys_TG_1-/BIC/ZGROSSPRI.
    The error is :
    E:Field "_ty_s_TG_1-/BIC/ZGROSSPRI" is unknown. It is neither in one of the
    specified tables nor defined by a "DATA" statement. "DATA" statement.
    Below given is the code which I am using for the same. Kindly advise how to correct this error.
    Moderator message - Please respect the 2,500 character maximum when posting. Post only the relevant portions of code
    Edited by: Suneeth Sebastian on Apr 7, 2010 4:11 PM
    Edited by: Rob Burbank on Apr 7, 2010 1:19 PM

    Dear All,
    While trying to update infoobject /BIC/ZGROSSPRI in an ODS in BI through an update routine, a syntax error is thrown when I am trying to define a variable of type tys_TG_1-/BIC/ZGROSSPRI. How is it possible to define a variable of type target field(Infoobject) ?
    For instance,
    DATA: VALUE TYPE tys_TG_1-/BIC/ZGROSSPRI.
    The error is :
    E:Field "_ty_s_TG_1-/BIC/ZGROSSPRI" is unknown. It is neither in one of the
    specified tables nor defined by a "DATA" statement. "DATA" statement.
    tys_TG_1-/BIC/ZGROSSPRI is already defined in the Class section as below
    TYPES:
          BEGIN OF tys_TG_1,
         InfoObject: ZGROSSPRI Gross Price in Statistical Currency.
            /BIC/ZGROSSPRI           TYPE /BIC/OIZGROSSPRI,
          END   OF tys_TG_1.

  • Routine AFPEIM encountered an error while starting concurrent manager STAND

    hi,
    Today i have done cloning and clone completed successfully. but CM is not comming up. I found the following errors in the concurrent log. Any hints on this.
    ==========================================
    Starting INVTMRPM Concurrent Manager : 28-FEB-2012 13:33:48
    CONC-SM TNS FAIL
    Routine AFPEIM encountered an error while starting concurrent manager INVTMRPM with library /eqaappl/drqaebiz/appl/inv/11.5.0/bin/INCTM.
    Check that your system has enough resources to start a concurrent manager process. Contact your system administrator : 28-FEB-2012 13:33:48
    Starting INVTMRPM Concurrent Manager : 28-FEB-2012 13:33:48
    CONC-SM TNS FAIL
    Routine AFPEIM encountered an error while starting concurrent manager INVTMRPM with library /eqaappl/drqaebiz/appl/inv/11.5.0/bin/INCTM.
    Check that your system has enough resources to start a concurrent manager process. Contact your system administrator : 28-FEB-2012 13:33:48
    Starting INVTMRPM Concurrent Manager : 28-FEB-2012 13:33:48
    CONC-SM TNS FAIL
    Routine AFPEIM encountered an error while starting concurrent manager INVTMRPM with library /eqaappl/drqaebiz/appl/inv/11.5.0/bin/INCTM.
    Check that your system has enough resources to start a concurrent manager process. Contact your system administrator : 28-FEB-2012 13:33:48
    Starting INVTMRPM Concurrent Manager : 28-FEB-2012 13:33:48
    CONC-SM TNS FAIL
    Routine AFPEIM encountered an error while starting concurrent manager INVTMRPM with library /eqaappl/drqaebiz/appl/inv/11.5.0/bin/INCTM.
    Check that your system has enough resources to start a concurrent manager process. Contact your system administrator : 28-FEB-2012 13:33:48
    Starting INVTMRPM Concurrent Manager : 28-FEB-2012 13:33:48
    CONC-SM TNS FAIL
    Routine AFPEIM encountered an error while starting concurrent manager INVTMRPM with library /eqaappl/drqaebiz/appl/inv/11.5.0/bin/INCTM.
    Check that your system has enough resources to start a concurrent manager process. Contact your system administrator : 28-FEB-2012 13:33:48
    Starting PODAMGR Concurrent Manager : 28-FEB-2012 13:33:48
    CONC-SM TNS FAIL
    Routine AFPEIM encountered an error while starting concurrent manager PODAMGR with library /eqaappl/drqaebiz/appl/po/11.5.0/bin/POXCON.
    Check that your system has enough resources to start a concurrent manager process. Contact your system administrator t : 28-FEB-2012 13:33:49
    Starting PODAMGR Concurrent Manager : 28-FEB-2012 13:33:49
    CONC-SM TNS FAIL
    Routine AFPEIM encountered an error while starting concurrent manager PODAMGR with library /eqaappl/drqaebiz/appl/po/11.5.0/bin/POXCON.
    Check that your system has enough resources to start a concurrent manager process. Contact your system administrator t : 28-FEB-2012 13:33:49
    Starting PODAMGR Concurrent Manager : 28-FEB-2012 13:33:49
    CONC-SM TNS FAIL
    Routine AFPEIM encountered an error while starting concurrent manager PODAMGR with library /eqaappl/drqaebiz/appl/po/11.5.0/bin/POXCON.
    Check that your system has enough resources to start a concurrent manager process. Contact your system administrator t : 28-FEB-2012 13:33:49
    Starting RCVOLTM Concurrent Manager : 28-FEB-2012 13:33:49
    CONC-SM TNS FAIL
    Routine AFPEIM encountered an error while starting concurrent manager RCVOLTM with library /eqaappl/drqaebiz/appl/po/11.5.0/bin/RCVOLTM.
    Check that your system has enough resources to start a concurrent manager process. Contact your system administrator : 28-FEB-2012 13:33:49
    Starting RCVOLTM Concurrent Manager : 28-FEB-2012 13:33:49
    CONC-SM TNS FAIL
    Routine AFPEIM encountered an error while starting concurrent manager RCVOLTM with library /eqaappl/drqaebiz/appl/po/11.5.0/bin/RCVOLTM.
    Check that your system has enough resources to start a concurrent manager process. Contact your system administrator : 28-FEB-2012 13:33:49
    Starting RCVOLTM Concurrent Manager : 28-FEB-2012 13:33:49
    CONC-SM TNS FAIL
    Routine AFPEIM encountered an error while starting concurrent manager RCVOLTM with library /eqaappl/drqaebiz/appl/po/11.5.0/bin/RCVOLTM.
    Check that your system has enough resources to start a concurrent manager process. Contact your system administrator : 28-FEB-2012 13:33:49
    Starting INVMGR Concurrent Manager : 28-FEB-2012 13:33:49
    CONC-SM TNS FAIL
    Routine AFPEIM encountered an error while starting concurrent manager INVMGR with library /eqaappl/drqaebiz/appl/inv/11.5.0/bin/INVLIBR.
    Check that your system has enough resources to start a concurrent manager process. Contact your system administrator : 28-FEB-2012 13:33:49
    Starting INVMGR Concurrent Manager : 28-FEB-2012 13:33:49
    CONC-SM TNS FAIL
    Routine AFPEIM encountered an error while starting concurrent manager INVMGR with library /eqaappl/drqaebiz/appl/inv/11.5.0/bin/INVLIBR.
    Check that your system has enough resources to start a concurrent manager process. Contact your system administrator : 28-FEB-2012 13:33:49
    Starting INVMGR Concurrent Manager : 28-FEB-2012 13:33:49
    CONC-SM TNS FAIL
    Routine AFPEIM encountered an error while starting concurrent manager INVMGR with library /eqaappl/drqaebiz/appl/inv/11.5.0/bin/INVLIBR.
    Check that your system has enough resources to start a concurrent manager process. Contact your system administrator : 28-FEB-2012 13:33:49
    Starting INVMGR Concurrent Manager : 28-FEB-2012 13:33:49
    CONC-SM TNS FAIL
    Routine AFPEIM encountered an error while starting concurrent manager INVMGR with library /eqaappl/drqaebiz/appl/inv/11.5.0/bin/INVLIBR.
    Check that your system has enough resources to start a concurrent manager process. Contact your system administrator : 28-FEB-2012 13:33:49
    Starting INVMGR Concurrent Manager : 28-FEB-2012 13:33:49
    CONC-SM TNS FAIL
    Routine AFPEIM encountered an error while starting concurrent manager INVMGR with library /eqaappl/drqaebiz/appl/inv/11.5.0/bin/INVLIBR.
    Check that your system has enough resources to start a concurrent manager process. Contact your system administrator : 28-FEB-2012 13:33:50
    Starting TDSMGR Concurrent Manager : 28-FEB-2012 13:33:50
    CONC-SM TNS FAIL
    Routine AFPEIM encountered an error while starting concurrent manager TDSMGR with library /eqaappl/drqaebiz/appl/fnd/11.5.0/bin/FNDLIBR.
    Check that your system has enough resources to start a concurrent manager process. Contact your system administrator : 28-FEB-2012 13:33:50
    Starting TDSMGR Concurrent Manager : 28-FEB-2012 13:33:50
    CONC-SM TNS FAIL
    Routine AFPEIM encountered an error while starting concurrent manager TDSMGR with library /eqaappl/drqaebiz/appl/fnd/11.5.0/bin/FNDLIBR.
    Check that your system has enough resources to start a concurrent manager process. Contact your system administrator : 28-FEB-2012 13:33:50
    Starting TDSMGR Concurrent Manager : 28-FEB-2012 13:33:50
    CONC-SM TNS FAIL
    Routine AFPEIM encountered an error while starting concurrent manager TDSMGR with library /eqaappl/drqaebiz/appl/fnd/11.5.0/bin/FNDLIBR.
    Check that your system has enough resources to start a concurrent manager process. Contact your system administrator : 28-FEB-2012 13:33:50
    Starting XDP_MANAGER Concurrent Manager : 28-FEB-2012 13:33:50
    CONC-SM TNS FAIL
    Routine AFPEIM encountered an error while starting concurrent manager XDP_MANAGER with library /eqaappl/drqaebiz/appl/fnd/11.5.0/bin/FNDLIBR.
    Check that your system has enough resources to start a concurrent manager process. Contact your system administr : 28-FEB-2012 13:33:50
    Starting XDP_MANAGER Concurrent Manager : 28-FEB-2012 13:33:50
    CONC-SM TNS FAIL
    Routine AFPEIM encountered an error while starting concurrent manager XDP_MANAGER with library /eqaappl/drqaebiz/appl/fnd/11.5.0/bin/FNDLIBR.
    Check that your system has enough resources to start a concurrent manager process. Contact your system administr : 28-FEB-2012 13:33:50
    Starting XDP_MANAGER Concurrent Manager : 28-FEB-2012 13:33:50
    CONC-SM TNS FAIL
    Routine AFPEIM encountered an error while starting concurrent manager XDP_MANAGER with library /eqaappl/drqaebiz/appl/fnd/11.5.0/bin/FNDLIBR.
    Check that your system has enough resources to start a concurrent manager process. Contact your system administr : 28-FEB-2012 13:33:50
    Starting XDP_MANAGER Concurrent Manager : 28-FEB-2012 13:33:50
    CONC-SM TNS FAIL
    Routine AFPEIM encountered an error while starting concurrent manager XDP_MANAGER with library /eqaappl/drqaebiz/appl/fnd/11.5.0/bin/FNDLIBR.
    Check that your system has enough resources to start a concurrent manager process. Contact your system administr : 28-FEB-2012 13:33:50
    Starting XDP_MANAGER Concurrent Manager : 28-FEB-2012 13:33:50
    CONC-SM TNS FAIL
    Routine AFPEIM encountered an error while starting concurrent manager XDP_MANAGER with library /eqaappl/drqaebiz/appl/fnd/11.5.0/bin/FNDLIBR.
    Check that your system has enough resources to start a concurrent manager process. Contact your system administr : 28-FEB-2012 13:33:50
    Starting STANDARD Concurrent Manager : 28-FEB-2012 13:33:50
    CONC-SM TNS FAIL
    Routine AFPEIM encountered an error while starting concurrent manager STANDARD with library /eqaappl/drqaebiz/appl/fnd/11.5.0/bin/FNDLIBR.
    Check that your system has enough resources to start a concurrent manager process. Contact your system administrato : 28-FEB-2012 13:33:50
    Starting STANDARD Concurrent Manager : 28-FEB-2012 13:33:50
    CONC-SM TNS FAIL
    Routine AFPEIM encountered an error while starting concurrent manager STANDARD with library /eqaappl/drqaebiz/appl/fnd/11.5.0/bin/FNDLIBR.
    Check that your system has enough resources to start a concurrent manager process. Contact your system administrato : 28-FEB-2012 13:33:51
    Starting STANDARD Concurrent Manager : 28-FEB-2012 13:33:51
    CONC-SM TNS FAIL
    Routine AFPEIM encountered an error while starting concurrent manager STANDARD with library /eqaappl/drqaebiz/appl/fnd/11.5.0/bin/FNDLIBR.
    Check that your system has enough resources to start a concurrent manager process. Contact your system administrato : 28-FEB-2012 13:33:51
    Starting STANDARD Concurrent Manager : 28-FEB-2012 13:33:51
    CONC-SM TNS FAIL
    Routine AFPEIM encountered an error while starting concurrent manager STANDARD with library /eqaappl/drqaebiz/appl/fnd/11.5.0/bin/FNDLIBR.
    Check that your system has enough resources to start a concurrent manager process. Contact your system administrato : 28-FEB-2012 13:33:51
    Starting STANDARD Concurrent Manager : 28-FEB-2012 13:33:51
    CONC-SM TNS FAIL
    Routine AFPEIM encountered an error while starting concurrent manager STANDARD with library /eqaappl/drqaebiz/appl/fnd/11.5.0/bin/FNDLIBR.
    Check that your system has enough resources to start a concurrent manager process. Contact your system administrato : 28-FEB-2012 13:33:51
    Starting STANDARD Concurrent Manager : 28-FEB-2012 13:33:51
    CONC-SM TNS FAIL
    Routine AFPEIM encountered an error while starting concurrent manager STANDARD with library /eqaappl/drqaebiz/appl/fnd/11.5.0/bin/FNDLIBR.
    Check that your system has enough resources to start a concurrent manager process. Contact your system administrato : 28-FEB-2012 13:33:51
    Starting STANDARD Concurrent Manager : 28-FEB-2012 13:33:51
    CONC-SM TNS FAIL
    Routine AFPEIM encountered an error while starting concurrent manager STANDARD with library /eqaappl/drqaebiz/appl/fnd/11.5.0/bin/FNDLIBR.
    Check that your system has enough resources to start a concurrent manager process. Contact your system administrato : 28-FEB-2012 13:33:51
    Starting STANDARD Concurrent Manager : 28-FEB-2012 13:33:51
    CONC-SM TNS FAIL
    Routine AFPEIM encountered an error while starting concurrent manager STANDARD with library /eqaappl/drqaebiz/appl/fnd/11.5.0/bin/FNDLIBR.
    Check that your system has enough resources to start a concurrent manager process. Contact your system administrato : 28-FEB-2012 13:33:51
    Starting STANDARD Concurrent Manager : 28-FEB-2012 13:33:51
    CONC-SM TNS FAIL
    Routine AFPEIM encountered an error while starting concurrent manager STANDARD with library /eqaappl/drqaebiz/appl/fnd/11.5.0/bin/FNDLIBR.
    Check that your system has enough resources to start a concurrent manager process. Contact your system administrato : 28-FEB-2012 13:33:51
    Starting STANDARD Concurrent Manager : 28-FEB-2012 13:33:51
    CONC-SM TNS FAIL
    Routine AFPEIM encountered an error while starting concurrent manager STANDARD with library /eqaappl/drqaebiz/appl/fnd/11.5.0/bin/FNDLIBR.
    Check that your system has enough resources to start a concurrent manager process. Contact your system administrato : 28-FEB-2012 13:33:51
    Starting STANDARD Concurrent Manager : 28-FEB-2012 13:33:51
    CONC-SM TNS FAIL
    Routine AFPEIM encountered an error while starting concurrent manager STANDARD with library /eqaappl/drqaebiz/appl/fnd/11.5.0/bin/FNDLIBR.
    Check that your system has enough resources to start a concurrent manager process. Contact your system administrato : 28-FEB-2012 13:33:51
    Starting STANDARD Concurrent Manager : 28-FEB-2012 13:33:51
    CONC-SM TNS FAIL
    Routine AFPEIM encountered an error while starting concurrent manager STANDARD with library /eqaappl/drqaebiz/appl/fnd/11.5.0/bin/FNDLIBR.
    Check that your system has enough resources to start a concurrent manager process. Contact your system administrato : 28-FEB-2012 13:33:51
    Starting STANDARD Concurrent Manager : 28-FEB-2012 13:33:51
    CONC-SM TNS FAIL
    Routine AFPEIM encountered an error while starting concurrent manager STANDARD with library /eqaappl/drqaebiz/appl/fnd/11.5.0/bin/FNDLIBR.
    Check that your system has enough resources to start a concurrent manager process. Contact your system administrato : 28-FEB-2012 13:33:52
    Starting STANDARD Concurrent Manager : 28-FEB-2012 13:33:52
    CONC-SM TNS FAIL
    Routine AFPEIM encountered an error while starting concurrent manager STANDARD with library /eqaappl/drqaebiz/appl/fnd/11.5.0/bin/FNDLIBR.
    Check that your system has enough resources to start a concurrent manager process. Contact your system administrato : 28-FEB-2012 13:33:52
    Starting STANDARD Concurrent Manager : 28-FEB-2012 13:33:52
    CONC-SM TNS FAIL
    Routine AFPEIM encountered an error while starting concurrent manager STANDARD with library /eqaappl/drqaebiz/appl/fnd/11.5.0/bin/FNDLIBR.
    Check that your system has enough resources to start a concurrent manager process. Contact your system administrato : 28-FEB-2012 13:33:52
    Starting STANDARD Concurrent Manager : 28-FEB-2012 13:33:52
    CONC-SM TNS FAIL
    Routine AFPEIM encountered an error while starting concurrent manager STANDARD with library /eqaappl/drqaebiz/appl/fnd/11.5.0/bin/FNDLIBR.
    Check that your system has enough resources to start a concurrent manager process. Contact your system administrato : 28-FEB-2012 13:33:52
    Starting STANDARD Concurrent Manager : 28-FEB-2012 13:33:52
    CONC-SM TNS FAIL
    Routine AFPEIM encountered an error while starting concurrent manager STANDARD with library /eqaappl/drqaebiz/appl/fnd/11.5.0/bin/FNDLIBR.
    Check that your system has enough resources to start a concurrent manager process. Contact your system administrato : 28-FEB-2012 13:33:52
    Starting STANDARD Concurrent Manager : 28-FEB-2012 13:33:52
    CONC-SM TNS FAIL
    Routine AFPEIM encountered an error while starting concurrent manager STANDARD with library /eqaappl/drqaebiz/appl/fnd/11.5.0/bin/FNDLIBR.
    Check that your system has enough resources to start a concurrent manager process. Contact your system administrato : 28-FEB-2012 13:33:52
    Starting STANDARD Concurrent Manager : 28-FEB-2012 13:33:52
    CONC-SM TNS FAIL
    Routine AFPEIM encountered an error while starting concurrent manager STANDARD with library /eqaappl/drqaebiz/appl/fnd/11.5.0/bin/FNDLIBR.
    Check that your system has enough resources to start a concurrent manager process. Contact your system administrato : 28-FEB-2012 13:33:52
    Starting STANDARD Concurrent Manager : 28-FEB-2012 13:33:52
    CONC-SM TNS FAIL
    Routine AFPEIM encountered an error while starting concurrent manager STANDARD with library /eqaappl/drqaebiz/appl/fnd/11.5.0/bin/FNDLIBR.
    Check that your system has enough resources to start a concurrent manager process. Contact your system administrato : 28-FEB-2012 13:33:52
    Starting STANDARD Concurrent Manager : 28-FEB-2012 13:33:52
    CONC-SM TNS FAIL
    Routine AFPEIM encountered an error while starting concurrent manager STANDARD with library /eqaappl/drqaebiz/appl/fnd/11.5.0/bin/FNDLIBR.
    Check that your system has enough resources to start a concurrent manager process. Contact your system administrato : 28-FEB-2012 13:33:52
    Starting STANDARD Concurrent Manager : 28-FEB-2012 13:33:52
    CONC-SM TNS FAIL
    Routine AFPEIM encountered an error while starting concurrent manager STANDARD with library /eqaappl/drqaebiz/appl/fnd/11.5.0/bin/FNDLIBR.
    Check that your system has enough resources to start a concurrent manager process. Contact your system administrato : 28-FEB-2012 13:33:52
    Starting STANDARD Concurrent Manager : 28-FEB-2012 13:33:52
    CONC-SM TNS FAIL
    Routine AFPEIM encountered an error while starting concurrent manager STANDARD with library /eqaappl/drqaebiz/appl/fnd/11.5.0/bin/FNDLIBR.
    Check that your system has enough resources to start a concurrent manager process. Contact your system administrato : 28-FEB-2012 13:33:53
    Starting STANDARD Concurrent Manager : 28-FEB-2012 13:33:53
    CONC-SM TNS FAIL
    Routine AFPEIM encountered an error while starting concurrent manager STANDARD with library /eqaappl/drqaebiz/appl/fnd/11.5.0/bin/FNDLIBR.
    Check that your system has enough resources to start a concurrent manager process. Contact your system administrato : 28-FEB-2012 13:33:53
    Starting STANDARD Concurrent Manager : 28-FEB-2012 13:33:53
    CONC-SM TNS FAIL
    Routine AFPEIM encountered an error while starting concurrent manager STANDARD with library /eqaappl/drqaebiz/appl/fnd/11.5.0/bin/FNDLIBR.
    Check that your system has enough resources to start a concurrent manager process. Contact your system administrato : 28-FEB-2012 13:33:53
    Starting PASMGR Concurrent Manager : 28-FEB-2012 13:33:53
    CONC-SM TNS FAIL
    Routine AFPEIM encountered an error while starting concurrent manager PASMGR with library /eqaappl/drqaebiz/appl/pa/11.5.0/bin/PALIBR.
    Check that your system has enough resources to start a concurrent manager process. Contact your system administrator to : 28-FEB-2012 13:33:53
    Process monitor session ended : 28-FEB-2012 13:33:53
    ==========================================
    i have done already steps mentioned in 1312632.1 but nor worked for me.
    also i ran below command and output is as follows.
    SQL> select CONCURRENT_QUEUE_NAME
    from FND_CONCURRENT_QUEUES
    where CONCURRENT_QUEUE_NAME like 'FNDSM%';
    2 3
    CONCURRENT_QUEUE_NAME
    FNDSM_DRQAEBS
    SQL>
    Version details are 11.5.10.2 and DB is 11g.
    Regards
    DBA.

    Hi;
    Please see:
    R12 instance Concurrent manager  and host status is showin as down
    Regard
    Helios

  • Primitive APAB editor in start/end routines in transformations

    When editing or viewing ABAP code in BI transformations, for example in a start routine, the editor that opens is very primitive compared to the normal SE38 editor. Some of the limitations include:
    The editor window doesn't cover the whole screen with seemingly no way to increase its size.
    The syntax check doesn't show on which line syntax errors are located.
    There is no option to perform a extended program check.
    There is no way to insert break-points (other than with the ABAP keyword of course)
    These limitations are present regardless of whether i choose the new front-end editor, the old front-end editor or the back-end editor. We're running SAP Netweaver 2004s.
    It is of course possible to create a program in SE38 and copy-paste your start routine code to see the code using the "real" editor, but this is very tiresome and time consuming. Is there a way to make this editor look and behave like the normal editor? I have looked through the setting options an searched SDN without finding a way.

    Hi,
    This is just the settings you need to change to open the start,end, and characteristics routine using the old editor you are comfortable with. No need to go to se38 and check copy the program.
    Go to se38->Utilities->settings->abap editor->editor tab->select the old abap editor.
    To specifically put break point in transformations (start routine..end routine..)..goto transformation (RSA1) and then display the transformation.
    Then goto extra (menu)->generated program. search for start_routine (method now) and put break point in the desired place.
    Then from the DTP enable all 4 break points..in tranformation (this will come when u cange it to debug mode simulation). And u can debug the transformation.
    The new editor is a good handy one. But take some time to get acquented to it. After you may start liking it :).
    Cheers,
    -J

Maybe you are looking for

  • Help me find out the error in my first hello application

    Hello every body !!!! I am new to JEE.I am competent on JDK and also have worked on Tomcat JSP,servlet. But i am having problem running my first JEE programme. I have Sun Java System Application Server 9.1 with NetBeans 6 on WinXP. I have used NetBea

  • Driver issue on bootcamp now

    I have bootcamp on my mac and am having a driver issue.  When I switch from mac side to bootcamp, I have to uninstall and reinstall driver to get on internet. Wondering if I did something to cause this issue? can't seem to fix.  Was working previousl

  • Summary says 8 GB of photos but where?

    The summary of the iPod says there are 8GB of photos but I do not know where these photos are located on the iPod. Can anyone tell me where it is? I want to backup them and delete them out of the iPod. I couldn't find it.

  • User Exits for MM01 & MM02 transaction

    Hi SDN, Is there any user exit available for Change, create Material so that i can update some materail related data. Regards, Rahul

  • [SOLVED]Radeon R9 280x Glamor problems (video tearing, error messages)

    When switching from Catalyst to xf86-video-ati, a few problems occurred. I tried to enable EXA rendering by setting the option in my Xorg.conf, but I got the message that EXA isn't supported on my card and that Glamor will be used. I'm fine with usin