Type conflict with ASSIGN in program in Release time(ESS)

Hi All,
On clicking on the link "Release Working Time Data" from EP While releasing working time below exception is being thrown.
com.sap.tc.webdynpro.modelimpl.dynamicrfc.WDDynamicRFCExecuteException: Type conflict with ASSIGN in program SAPLHRXSS_CAT_WEBDYNP., error key: RFC_ERROR_SYSTEM_FAILURE
     at com.sap.tc.webdynpro.modelimpl.dynamicrfc.DynamicRFCModelClassExecutable.execute(DynamicRFCModelClassExecutable.java:101)
     at com.sap.xss.hr.cat.release.blc.FcCatRelease.rfcExecute(FcCatRelease.java:494)
     at com.sap.xss.hr.cat.release.blc.FcCatRelease.rfcDoInit(FcCatRelease.java:424)
     at com.sap.xss.hr.cat.release.blc.FcCatRelease.onInit(FcCatRelease.java:377)
     at com.sap.xss.hr.cat.release.blc.wdp.InternalFcCatRelease.onInit(InternalFcCatRelease.java:274)
     at com.sap.xss.hr.cat.release.blc.FcCatReleaseInterface.onInit(FcCatReleaseInterface.java:194)
     at com.sap.xss.hr.cat.release.blc.wdp.InternalFcCatReleaseInterface.onInit(InternalFcCatReleaseInterface.java:166)
     at com.sap.xss.hr.cat.release.blc.wdp.InternalFcCatReleaseInterface$External.onInit(InternalFcCatReleaseInterface.java:258)
     at com.sap.pcuigp.xssfpm.wd.FPMComponent$FPM.attachComponentToUsage(FPMComponent.java:922)
     at com.sap.pcuigp.xssfpm.wd.FPMComponent$FPM.attachComponentToUsage(FPMComponent.java:891)
     at com.sap.pcuigp.xssfpm.wd.FPMComponent$FPMProxy.attachComponentToUsage(FPMComponent.java:1084)
     at com.sap.xss.hr.cat.release.vac.entry.VcCatReleaseEntry.onInit(VcCatReleaseEntry.java:270)
     at com.sap.xss.hr.cat.release.vac.entry.wdp.InternalVcCatReleaseEntry.onInit(InternalVcCatReleaseEntry.java:174)
     at com.sap.xss.hr.cat.release.vac.entry.VcCatReleaseEntryInterface.onInit(VcCatReleaseEntryInterface.java:189)
Pls help to resolve the isuue
Thanks,
JB

Hard closed

Similar Messages

  • Type conflict with ASSIGN in program CL_WD_ADOBE_SERVICES==========CP

    I am trying to display an interactive Adobe Form in the webdynpro for abap.
    But i'm getting this error:
    The following error text was processed in system AED : Type conflict with ASSIGN in program CL_WD_ADOBE_SERVICES==========CP .
    The error occurred on application server AIERD_AED_00 and in work process 1 .
    The termination type was: RABAX_STATE
    The ABAP call hierarchy was:
    Method: NODE_2_DDIC of program CL_WD_ADOBE_SERVICES==========CP
    Method: DATASOURCE_2_FM_PARAMS of program CL_WD_ADOBE_SERVICES==========CP
    Method: CREATE_PDF_DDIC of program CL_WD_ADOBE_SERVICES==========CP
    Method: CREATE_PDF of program CL_WD_ADOBE_SERVICES==========CP
    Method: IF_NW7_VIEW_ELEMENT_ADAPTER~SET_CONTENT of program /1WDA/CADOBE==================CP
    Method: IF_NW7_VIEW_ELEMENT_ADAPTER~SET_CONTENT of program /1WDA/CADOBE==================CP
    Method: IF_NW7_VIEW_ELEMENT_ADAPTER~SET_CONTENT of program /1WDA/C8STANDARD==============CP
    Method: IF_NW7_VIEW_ELEMENT_ADAPTER~SET_CONTENT of program /1WDA/C8STANDARD==============CP
    Method: IF_NW7_VIEW_ELEMENT_ADAPTER~SET_CONTENT of program /1WDA/C7STANDARD==============CP
    Method: IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT of program CL_WDR_VIEW_ADAPTER===========CP
    Is there any problem with some Adobe config or somewhere a mistake in my code.

    Follow this thread
    [Displaying a Smartform as PDF in WDA;
    Thanks
    Siva

  • Type conflict with ASSIGN in BADI for Virtual Key Figures

    We get the below error dump in ST22 when executing BEx queries that contain virtual key figures.
    error message - 'Type conflict with ASSIGN in
    program "ZCL_IM_THR_RSR_OLAP_BADI======CP".'
    We have a BADI implementation that calculates few virtual key figures included in some infocubes & multiproviders. The error would arise if we execute two queries (containing common Virtual Key figures) one after the other without closing the first query.
    We found a note "Note 1237689 - Virtual chars. and key figures in input-ready querys" that could be relevant to our issue and wanted to apply this note but unfortunately the note is only applicable to SAPKW70016 to SAPKW70018 and we are support pack 15.
    Can you please advise what the problem could be/suggest corrections for the same.

    Hi Kulmohan,
    Did you fix your issue? We are facing the same issue. Could you please let me know if you have any solution for this issue,
    Thank you,
    Mike

  • Type conflict with ASSIGN in assoc with CL_ABAP_TABLEDESCR

    Hello Xperts,
    over the functionalities within CL_ABAP_TABLEDESCR I have added two fields to an ITAB.
      "thismanpo   type  /bic/oiblmansec1,
      gs_comp-name  = 'THISMANPO'.
      gs_element ?= cl_abap_elemdescr=>describe_by_name( '/bic/oiblmansec1' ).
      gs_comp-type ?= cl_abap_elemdescr=>get_p( p_length = gs_element->length
                                      p_decimals = gs_element->decimals ).
      APPEND gs_comp TO gt_components.
    So far so good. Furthermore I have declared the following:
      field-symbols:
        <f_thismanpo_ref>       type  /bic/oiblmansec1,
    The problem occurs at the statement:
        assign component:
          'THISMANPO'  of structure <f_ref_data> to <f_thismanpo_ref>,
    >ASSIGN_TYPE_CONFLICT
    > You attempted to assign a field to a typed field symbol,
    > but the field does not have the required type.
    The other field (which works fine!!!):
      "thiscostpo  type  /bic/oiblcopem1
      gs_comp-name  = 'THISCOSTPO'.
      gs_element ?= cl_abap_elemdescr=>describe_by_name( '/bic/oiblcopem1' ).
      gs_comp-type ?= cl_abap_elemdescr=>get_p( p_length = gs_element->length
                                      p_decimals = gs_element->decimals ).
      APPEND gs_comp TO gt_components.
      field-symbols:
        <f_thiscostpo_ref>      type  /bic/oiblcopem1,
        assign component:
          'THISCOSTPO' of structure <f_ref_data> to <f_thiscostpo_ref>,
    The difference between the two fields is:
    /bic/oiblcopem1 is CURR DEC 17 2
    /bic/oiblmansec1 is FLTP 16 16
    I have also tried:
          'THISMANPO'  of structure <f_ref_data> to <f_thismanpo_ref> CASTING,
    but then get the dump:
    > In the current program "ZCL_RSPLF_CCM_CALIB_CALC======CP", an error occurred
    > when setting the
    >field symbol "<F_THISMANPO_REF>" with ASSIGN or ASSIGNING (maybe in the
    > combination with
    > the CASTING addition).
    >
    >When converting the base entry of the field symbol "<F_THISMANPO_REF>" (number
    > in base
    >table: 34334), it was found that the target type requests a memory
    >alignment of 8.
    >
    >However, the source data object has an invalid memory alignment, that is
    > an alignment not divisible by 8.

    Since /bic/oiblmansec1 is Floating, you need to use the method GET_F, not GET_P
    " /bic/oiblmansec1 is FLTP 16 16
    gs_element ?= cl_abap_elemdescr=>describe_by_name( '/bic/oiblmansec1' ).
    gs_comp-type ?= cl_abap_elemdescr=>get_F( ).
    Regards,
    Naimesh Patel

  • Dump while testing Function- Dynamic type conflict when assigning reference

    Hi Gurus,
    I have the following checked and activated-
    - Function with 1 Ruleset
    - The Ruleset containing couple of DBlookup expressions
    - Value range
    - Decision Table
    - Decision tree,
    - Procedure call
    After I give test data while Simulating the function, I get this dump-
    Short text
        Dynamic type conflict when assigning references
    What happened?
        Error in the ABAP Application Program
        The current ABAP program "CL_FDT_DB_LOOKUP==============CP" had to be
         terminated because it has
        come across a statement that unfortunately cannot be executed.
    Have I missed something? We are on SAPKA70207.

    Hi Carsten,
    I couldn't find an OSS note featuring-
    "MOVE_CAST_ERROR" "CX_SY_MOVE_CAST_ERROR"
    "CL_FDT_DB_LOOKUP==============CP" or "CL_FDT_DB_LOOKUP==============CM01K"
    "BUILD_WHERE_CLAUSE_LIMIT"
    Raised OSS note.

  • Dynamic type conflict when assigning references - Dump

    Hi All,
    I am getting the dump "Dynamic type conflict when assigning references". In my application I have used a table control inside which I have  input field, text view and text edit.
    I guess the text edit is creating the issue. The error analysis report is below :
    If anyone have any idea about the issue, please help.
    Error analysis
        An exception occurred that is explained in detail below.
        The exception, which is assigned to class 'CX_SY_MOVE_CAST_ERROR', was not
         caught in
        procedure "IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT" "(METHOD)", nor was it
         propagated by a RAISING clause.
        Since the caller of the procedure could not have anticipated that the
        exception would occur, the current program is terminated.
        The reason for the exception is:
        It was tried to assign a reference to a rereference variable using the
        'CAST' operation ('?=' or 'MOVE ?TO').
        However, the current content of the source variable does not fit into
        the target variable.
        source type: "\CLASS-POOL=/1WDA/L0STANDARD\CLASS=CL_TEXT_EDIT"
        target type: "\INTERFACE=/1WDA/VTABLE_CELL_EDITOR"
    Information on where terminated
        Termination occurred in the ABAP program "/1WDA/L3STANDARD==============CP" -
         in "IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT".
        The main program was "SAPMHTTP ".
        In the source code you have the termination point in line 2290
        of the (Include) program "/1WDA/L3STANDARD==============CCIMP".
        The termination is caused because exception "CX_SY_MOVE_CAST_ERROR" occurred in
        procedure "IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT" "(METHOD)", but it was
         neither handled locally nor declared
        in the RAISING clause of its signature.
        The procedure is in program "/1WDA/L3STANDARD==============CP "; its source
         code begins in line
        2034 of the (Include program "/1WDA/L3STANDARD==============CCIMP ".
    2265       if va__CONTENT_READONLY is bound and
    2266          va__CONTENT_READONLY->IFUR_NW5__CONTROL~_IID <> ifur_nw5_invisible=>_iid_invisible.
    2267         IFUR_NW5_SAPTABLECELL~HASCONTENT = abap_true.
    2268       else.
    2269         IFUR_NW5_SAPTABLECELL~HASCONTENT = abap_false.
    2270       endif.
    2271     endif.
    2272
    2273 *    >> ProvideCONTENT
    2274
    2275     IF mv_CONTENT_READONLY <> va__CONTENT_READONLY.
    2276       finalize_adapter( mv_CONTENT_READONLY ).
    2277       mv_CONTENT_READONLY ?= va__CONTENT_READONLY.
    2278     ENDIF.
    2279
    2280 *   >> property-Aggregation mv_CONTENT_EDITABLE
    2281     DATA va__CONTENT_EDITABLE TYPE REF TO /1WDA/VTABLE_CELL_EDITOR. "#EC NEEDED
    2282 *   >> UCA STANDARD|TABLE_CELL|CONTENT_EDITABLE
    2283     data adp_uielement type ref to /1WDA/VUIELEMENT. "#EC NEEDED
    2284     if mv_CONTENT_READONLY is not bound and
    2285        mv_WD_TABLE_CELL_EDITOR is bound.
    2286           va__CONTENT_EDITABLE ?= mv_CONTENT_EDITABLE.
    2287     IF va__CONTENT_EDITABLE is bound and va__CONTENT_EDITABLE->m_view_element = mv_WD_TABLE_
    2288     ELSE.
    2289
    >>>>>     va__CONTENT_EDITABLE ?= create_by_view_element(
    2291                          view_element = mv_WD_TABLE_CELL_EDITOR
    2292                          parent       = me
    2293     ).

    Hi Everyone,
    Thanks for your replies.
    We raised an OSS call for the same and got the below response.
    Dear Customer,
    I've analized your actual problem and found out that you are using a notallowed combination of text edit as cell editor within table for
    clasical Web Dynpro ABAP rendering. The text edit as cell editor work in701 releases when the lightspeed rendering is enabled. However in case
    that you want to used
    lightspeed rendering, I would suggest to upgrade on a higher
    SP level than SP4 as for technical reason we can only deliver
    corrections for Unified Rendering first from SP04.

  • SC BRF WF Dynamic type conflict when assigning references

    I have activated the process controlled workflow framework and
    activated the SAP provided SC BC set. When I try to create shoppping
    cart(while save or check) I get the following short dump.
    The URL
    https://usil0c20.ca.com:8343/sap/bc/webdynpro/sapsrm/wda_l_fpm_gaf was
    not called due to an error.
    Note
    The following error text was processed in the system CS2 : Dynamic type
    conflict when assigning references
    The error occurred on the application server usil0c20_CS2_00 and in the
    work process 0 .
    The termination type was: RABAX_STATE
    The ABAP call stack was:
    Method: INIT_BRF_TRACE of program /SAPSRM/CL_WF_BRF_MSG=========CP
    Method: CONSTRUCTOR of program /SAPSRM/CL_WF_BRF_MSG=========CP
    Method: INITIALIZE_BRF_MSG of program /SAPSRM/CL_WF_BRF_MSG=========CP
    Method: /SAPSRM/IF_WF_RULE_CONNECTOR~EVALUATE of
    program /SAPSRM/CL_WF_BRF_CONNECTOR===CP
    Method: /SAPSRM/IF_WF_RULE_CONNECTOR~EVALUATE of
    program /SAPSRM/CL_WF_SCHEME_PROVIDER=CP
    Method: GET_SCHEME of program /SAPSRM/CL_WF_SCHEME_PROVIDER=CP
    Method: GET_PROCESS_SCHEME of program /SAPSRM/CL_WF_CONFIGURATION===CP
    Method: CREATE_PROCESS_LEVEL_SEQUENCE of
    program /SAPSRM/CL_WF_CONFIGURATION===CP
    Method: CREATE_PROCESS_INSTANCE of
    program /SAPSRM/CL_WF_PROCESS_MANAGER=CP
    Method: CREATE_PROCESS_FORECAST of
    program /SAPSRM/CL_WF_APV_FACADE======C

    Hi,
    The dump either happens because the BRF Object SRM_WF is missing in the system or
    in  the object SRM_WF at BRF the correct trace class /SAPSRM/CL_WF_BRF_TRACE is not used on it.
    thus please check.
    Thanks,
    Melina

  • ErroruFF1A Dynamic type conflict when assigning references

    hi all,
    I have one node ,name is :forloop
    under this node ,there is a attribute ,its type is string ,its name is attf
    now ,I write code as below in action,but it show a error" Dynamic type conflict when assigning references "
    someone can tell me the reason?thanks
    data :
            for_loop type ref to if_wd_context_node,
            t_var type standard table of string.
        append 'a' to t_var.
        append 'b' to t_var.
        append 'c' to t_var.
        for_loop = wd_context->get_child_node( name = wd_this->wdctx_forloop ).
       for_loop->bind_elements( t_var ).
    thanks

    Hi,
       The problem is the internal table you are using is not match with the attribute u created.
    Node name :  forloop
             Cardinality : 0-n.
             selection   : 0-1       
    attr name   :  attf
    Use the below code.
      DATA forloop TYPE REF TO if_wd_context_node.
      DATA t_var TYPE table of wd_this->element_forloop.
      data : wa_tar like line of t_var.
      wa_tar-attf = 'a'.
      append wa_tar to t_var.
      wa_tar-attf = 'b'.
      append wa_tar to t_var.
        wa_tar-attf = 'c'.
      append wa_tar to t_var.
    navigate from <CONTEXT> to <FORLOOP> via lead selection*
      forloop = wd_context->get_child_node( name = wd_this->wdctx_forloop ).
    forloop->bind_elements(  EXPORTING
        new_items            = t_var
    Regards.
    Ragu.
    Edited by: Ragu Prasad on Feb 6, 2009 10:39 AM

  • Error Dynamic type conflict when assigning references in EHP4

    Hi Experts,
    We are facing problem while customizing application wizard in EHP4.
    Based on our requirement, we need to create one more tab named "Notes" to add instructions for applicants while applying for Job. It contains only instruction. To achieve this, we have done below set up.
    1. We have created new WD component (WD window), OTR Alias
    2. Created one more additional steps in T77RCF_RM_STEP called "Notes" and maintained step 1 information
    3. In table T77RCF_RM_SEQ, under Application wizard (employee), we have added notes in sequence 1.
    Now our new tab "Notes" is reflecting in application wizard. But while cliking on send application, we are getting error "The following error text was processed in the system GEG : Dynamic type conflict when assigning references".
    Error Details:-
    u2022     The following error text was processed in the system GEG : Dynamic type conflict when assigning references
    u2022     The error occurred on the application server sapgeg_GEG_59 and in the work process 0 .
    u2022     The termination type was: RABAX_STATE
    u2022     The ABAP call stack was:
    Can anybody guide what we are doing wrong?
    It would be great help.
    Regards,
    purnima

    Hi Rajasekhar,
         Facing the same issue, can you please let me know how you solved the above issue.
    Best Regards,
    Laxman

  • RFx Q&A dump SRM 7- Dynamic type conflict when assigning references Q&A

    Hello,
    We are on SRM 7.0 SP05. When adding a question via the Q&A 'chat' functionality on a published RFx the EP shows the following error: 'Dynamic type conflict when assigning references Q&A'.
    Could somebody test if this issue is also occuring on their system?
    Anybody has a clue what's causing this?
    Kind regards,
    Tim

    Hello Jay,
    Loggings show the following:
    15:18:49 DIA  000 100 NLPURCOR                AB  0 Run-time error "MOVE_CAST_ERROR" occurred
    15:18:50 DIA  000 100 NLPURCOR                AB  1 > Short dump "100324 151849 dmzsv719 b_SRM_00 " generated

  • Assign Type conflict with field symbols

    I have two tables tab1 & tab2, want to assign field values from tab1 to tab2 suing field symbols. Deatils are :
    TYPES: BEGIN OF ty_tab1,
        item1   TYPE char20,
        item2   TYPE char20,
        val1 type i,
        val2 type i,
    END OF ty_tab1,
    BEGIN OF ty_tab2,
        item1 TYPE char20,
        item2 TYPE char20,
    END OF ty_tab2.
    DATA: it_tab1 TYPE TABLE OF ty_tab1,
                it_tab2 TYPE TABLE OF ty_tab2.
      FIELD-SYMBOLS <fs_tab1> TYPE ty_tab1.
                     <fs_tab2t> type ty_tab2.
      LOOP AT it_tab1 assigning <fs_tab1>.
        READ TABLE it_tab2  assigning <fs_tab2> WITH KEY item1 = <fs_tab1>-item1
                                                                                    item2 = <fs_tab1>-item2.
        IF sy-subrc EQ 0.
          ASSIGN COMPONENT 'ITEM1' OF STRUCTURE <fs_tab1> TO <fs_tab2>.
         ASSIGN COMPONENT 'ITEM2' OF STRUCTURE <fs_tab1> TO <fs_tab2>.
        endif.
    endloop.
    Getting error msg
    You attempted to assign a field to a typed field symbol, but the field does not have the required type.         
    whats the reason of error.
    Edited by: Matt on May 27, 2011 8:59 AM - added  tags

    Taken from example dump
    A new value is to be assigned to the field "...", although this field is
    entirely or partly protected against changes.
    The following are protected against changes:
    - Character literals or numeric literals
    - Constants (CONSTANTS)
    - Parameters of the category IMPORTING REFERENCE for functions and
    methods
    - Untyped field symbols not yet assigned a field using ASSIGN
    - TABLES parameters if the actual parameter is protected against changes
    - USING reference parameters and CHANGING parameters for FORMs, if the
    actual parameter is protected against changes and
    - Accesses using field symbols if the field assigned using ASSIGN is
    protected (or partially protected, e.g. key components of an internal
    table with the type SORTED or HASHED TABLE) against changes
    - Accesses using references, if the field bound to the reference is
    protected (or partially protected) against changes
    - External write accesses to READ-ONLY attributes,
    - Content of a shared object area instance accessed using a shared lock
    (ATTACH_FOR_READ).
    You likely fall in one of these cases. Check each and if still unsure please share your code so we can reproduce the error.
    Regards
    Marcin

  • Conflict with font management program

    Hello,
    When I open Dreamweaver I get an endless stream of messages saying that there is a problem with the fonts.  They keep on coming and I have to force quit Dreamweaver, turn of Extensis, and then start up Dreamweaver again.  Please see the attached screen shot.
    My system is Mac OS 10.4.11, and for the past 4 years I've been using Extensis Suitcase to manage my fonts.
    Is there a way to avoid this conflict?  Maybe it's a matter of setting a preference somewhere?  And is there a better font management program?  I'd like to avoid shelling out more $$$ on new software, if possible.
    Thanks for the help!

    Here's a thread that might help:
    http://forums.adobe.com/thread/223254

  • Dynamic type conflict when assigning references

    Hi All,
    I have tried to call the URL,but it was not called due to the following error,could u plz help me in this
    The termination type was: RABAX_STATE
    The ABAP call stack was:
    Method: GET_ITEM_TYPE of program /1BCWDY/I3G4WYSTK8YREBVBBXMC==CP
    Method: IF_COMPONENTCONTROLLER~GET_ITEM_TYPE of program /1BCWDY/I3G4WYSTK8YREBVBBXMC==CP
    Method: PRE0EJHV2JXJD3DF47PXY1KJP2ND of program /1BCWDY/I3G4WYSTK8YREBVBBXMC==CP
    Method: IF_VI_RES_MAIN~COMPONENT_NAVIGATION of program /1BCWDY/I3G4WYSTK8YREBVBBXMC==CP
    Method: ON_START_RES_MAIN of program /1BCWDY/I3G4WYSTK8YREBVBBXMC==CP
    Method: IF_WDR_VIEW_DELEGATE~WD_INVOKE_EVENT_HANDLER of program /1BCWDY/I3G4WYSTK8YREBVBBXMC==CP
    Method: INVOKE_EVENTHANDLER of program CL_WDR_DELEGATING_VIEW========CP
    Method: FIRE_EVENT of program CL_WDR_COMPONENT==============CP
    Method: IFWDR_INTERNAL_API~RAISE_EVENT of program SAPLWDR_RG_PROXY_FACTORY
    Method: IF_COMPONENTCONTROLLER~FIRE_ON_START_RES_MAIN_EVT of program /1BCWDY/I3G4WYSTK8YREBVBBXMC==CP
    If the termination type was RABAX_STATE, then you can find more information on the cause of the termination in the system STD in transaction ST22.
    If the termination type was ABORT_MESSAGE_STATE, then you can find more information on the cause of the termination on the application server stdmain_STD_57 in transaction SM21.
    If the termination type was ERROR_MESSAGE_STATE, then you can search for more information in the trace file for the work process 0 in transaction ST11 on the application server stdmain_STD_57 . In some situations, you may also need to analyze the trace files of other work processes.
    If you do not yet have a user ID, contact your system administrator.
    Regs,
    Surendra.
    Edited by: Konduru Surendra on Jan 9, 2008 11:58 AM

    Hi ,
      there is some problem in a method GET_ITEM_TYPE when a call is made ...check this method.....set breakpoint in this method .. and debug it..
    Regards
    Yash

  • Dynamic type conflict when assigning references - dump in HR forms

    Hello Experts,
      When User(Manager) trying to initiate HR eForm in MSS getting dump for all the his reportees. This dump is persisting only Production system and for only one User. Could you please check the attached dump in and kindly assist me.
    Regards,
    Rajasekhar

    Hi Rajasekhar,
         Facing the same issue, can you please let me know how you solved the above issue.
    Best Regards,
    Laxman

  • Personal Profile service for Brazil - Type Conflict for infotype 0002

    Hello All,
    We are enabling personal profile service for Brazil. And we did all the required configuration for that.
    When I access the personal info service I can see the overview page with personal data. But when I click on display link, I get the error message saying -
    Type conflict with ASSIGN in program CL_HRPA_UI_CONVERT_0002_BR
    Is there any configuration missing?
    Thanks,
    Bhushan

    Short text
        Type conflict with ASSIGN in program "CL_HRPA_UI_CONVERT_0002_BR====CP".
    What happened?
        Error in the ABAP Application Program
        The current ABAP program "CL_HRPA_UI_CONVERT_0002_BR====CP" had to be
         terminated because it has
        come across a statement that unfortunately cannot be executed.
    What can you do?
        Note down which actions and inputs caused the error.
        To process the problem further, contact you SAP system
        administrator.
        Using Transaction ST22 for ABAP Dump Analysis, you can look
        at and manage termination messages, and you can also
        keep them for a long time.
    Error analysis
        You attempted to assign a field to a typed field symbol,
        but the field does not have the required type.
    How to correct the error
        Adapt the type of the field symbol to the type of the field or use an
        untyped field symbol or use the "CASTING" addition.
        If the error occures in a non-modified SAP program, you may be able to
        find an interim solution in an SAP Note.
        If you have access to SAP Notes, carry out a search with the following
        keywords:
        "ASSIGN_TYPE_CONFLICT" " "
        "CL_HRPA_UI_CONVERT_0002_BR====CP" or "CL_HRPA_UI_CONVERT_0002_BR====CM003"
        "IF_HRPA_UI_CONVERT_STANDARD~OUTPUT_CONVERSION"
        If you cannot solve the problem yourself and want to send an error
        notification to SAP, include the following information:
        1. The description of the current problem (short dump)
           To save the description, choose "System->List->Save->Local File
        (Unconverted)".
        2. Corresponding system log
           Display the system log by calling transaction SM21.
           Restrict the time interval to 10 minutes before and five minutes
        after the short dump. Then choose "System->List->Save->Local File
        (Unconverted)".
        3. If the problem occurs in a problem of your own or a modified SAP
        program: The source code of the program
           In the editor, choose "Utilities->More
        Utilities->Upload/Download->Download".
    Line  SourceCde
        6   DATA: attributes           TYPE hrpad_field_attribute_tab.
        7   DATA: l_object_key         TYPE hcm_object_key.
        8   DATA: l_subrc              TYPE sysubrc.
        9
       10   FIELD-SYMBOLS <r0002_br>   TYPE hcmt_bsp_pa_br_r0002.
       11   FIELD-SYMBOLS <p0002_br>   TYPE p0002.
       12   FIELD-SYMBOLS <p0625>      TYPE p0625.
       13
       14   is_ok = if_hrpa_ui_convert_standard~true.
       15   ASSIGN screen_structure    TO <r0002_br>.
       16   l_object_key = <r0002_br>-object_key.
       17   MOVE-CORRESPONDING pnnnn TO super_screen_ref.
       18
       19   CALL METHOD super->if_hrpa_ui_convert_standard~output_conversion
       20     EXPORTING
       21       screen_structure_name = a_super_screen_structure_main
       22       pnnnn                 = pnnnn
       23       message_handler       = message_handler
       24       field_metadatas       = field_metadatas
       25     IMPORTING
       26       screen_structure      = super_screen_ref
       27       is_ok                 = is_ok
       28       field_attributes      = field_attributes.
       29
       30   MOVE-CORRESPONDING super_screen_ref TO screen_structure.
       31
       32   CASE a_super_screen_structure_main.
       33     WHEN 'HCMT_BSP_PA_XX_R0002'.
       34       ASSIGN pnnnn                  TO <p0002_br>.
       35       ASSIGN screen_structure       TO <r0002_br>.
    >>>>>       ASSIGN pnnnn2                 TO <p0625>.
       37       MOVE-CORRESPONDING <p0002_br> TO <r0002_br>.
       38       MOVE-CORRESPONDING <p0625>    TO <r0002_br>.

Maybe you are looking for

  • Iphoto 6 doesn't work

    I've made several books (8-10) using iphoto 5 with no problems. iphoto six has failed every time I've tried it with 2 books printed with no cover or inside typing and two books rejected (unprintable) at the web site. The failure is evident when previ

  • Install Flash Player in Acrobat Reader XI

    Hi all, I've several users facing a problem in Reader XI when reading PDF with RMA. When they open the PDF, a yellow bar appears at the top saying "To view the Flash technology content in this PDF file, please install the required version of Flash Pl

  • Details section repeating same data

    I have created a report using Crystal Reports 2008 that uses a group.  The details section of the group is repeating the data 11 times when it should only print it out once, before moving on to the next group. When I copy the SQL query out of Crystal

  • I can't put videos onto my iPod

    I have the videos in a play list called videos, and when i try to upload them, it says upload complete but when i go to find them on my iPod or in my list of songs on my iPod in iTunes, they aren't there. I'm doing everything the manuals say to do bu

  • When I open iPhoto, it tells me I need to upgrade my library, but then spins on "examining photo library" and never does anything.  Help!

    iPhoto library stuck on "examining photo library." The library is stored on my external Time Machine and is quite large.  When I use the upgrade software, it tells me the library is already upgraded, but iPhoto will not read it as such.  I have let i