Downloading custom fields to CRM from R/3

Hi All,
    i have already downloaded condition tables; accesses sequences; condition types; pricing procedures of R3 to CRM using DNL_CUST_CNDALL.
      Now i find some condition tables in CRM have blank fields. These CRM fields are not mapped with R3 fields due to some reasons, i don' know.
      i am trying to map them and populate the CRM missing fields in the condition record.
      I have maintained V_CND_MAP_CNVFLD table and see them populated in CND_MAPM_CNV_FLM. I have run the custom download object YDNL_CUST_A655 once again and find them green status in R3AM1.
        Can anyone please help, with the process that i have to do next, to bring in the missing fields.
Thanks in anticipation of the much needed help.
With regards
Keerthi

Z fields will be available in BAPIMTCS structure, if you create Z fields through EEWB. I believe, you have done the enhancements using the EEWB.In that case after the enhancements you are supposed to generate all the services of the Bdoc through the transaction smoggen.
Also you need to enhance the adapter module accordingly so that the data is filled into the BAPIMTCS structures properly. Also you can create some data for these Z fields and check, if the MBdocs have the corresponding data.
I hope by Default the Z custom data is avilabe in BAPIMTCS. The function module CRM_UPLOAD_TRIGGER calls the FM COM_BUPA_MAIN_INBOUND for data posting.This in turn calls the FM PI_BP_PROXY_BAPI_CUSTOMER where the actal data is mapped to the tables. You need to find the necessary Fields in R/3 for the Z fields to be populated .This is done in this function modules and check for user exits in PI_BP_GET_AND_MAP_KUNNR_RI'(called in PI_BP_PROXY_BAPI_CUSTOMER) where you can map to the R/3 fields.

Similar Messages

  • Add ECC Custom Fields in CRM Web UI ERP Order item

    hi all,
    i have to Add ECC Custom Fields in CRM Web UI ERP Order item .
    I have :
    -  add the field on Web UI Screen.
    -  add the field on structure  TDS_item_COMV  and  TDS_item_COMC in ecc
    -  insert record for field on LORD_MAPPING table
    -  implemented badi BADI_LORD_DO_PA BADI_LORD_GET_INPUT_MODE.
    -  implemented method GET_I_S_STRUCT on crm with  :
    CASE COMPONENT.
        WHEN 'ZZSPOND'.
          RV_DISABLED = ABAP_False.
    endcase.
    - on method  do_prepare_output i have change value of fields with code :
    lr_loop = typed_context->erpadmini->collection_wrapper->get_first( ).
    WHILE lr_loop IS BOUND.
    posnr = lr_loop->get_property_as_string( iv_attr_name = 'POSNR' ).
    Does the current item has to be set for "Sponda Idraulica"?
    READ TABLE Z5CL_GSA_TOOL0001=>GT_ITEMS_SPOND INTO ls_spond
                                  WITH KEY posnr = posnr.
    IF sy-subrc = 0.
    lr_loop->set_property_as_string( iv_attr_name = 'ZZSPOND' iv_value = 'X' ).
    DATA : V_X TYPE STRING.
    V_X = lr_loop->get_property_as_string( iv_attr_name = 'ZZSPOND' ).
    ENDIF.
    lr_loop = typed_context->erpadmini->collection_wrapper->get_next( ).
    ENDWHILE.
    I can't change the field  value  because it is "not changeble"  .
    Can you help me ?
    Thanks in advance.

    Hi Celi,
    I have created some fields at header level of ERP Order, and the user is available to change them, replicating the information to SAP ECC (using interface LORD II). 
    All sales item information is treated using RFC ERP_LORD_GET_ITEM_MULTI, available in SAP ECC. 
    Please check the following point:
    If those structures below were expanded with your custom fields:
    SAP CRM:
    CRMST_L2_ITEM_COMV
    CRMST_L2_ITEM_COMC
    CRMTT_ADMINI_ERPIL
    CRMTT_ADMINI_I_ERPIL
    SAP ECC:
    TDS_RFC_ITEM_COMV
    TDS_RFC_ITEM_COMC
    Please check if for your scenario is necessary to implement the enhancement BADI_LORD_DO_PAI method ADD_SUPPLY_LIST. The code below works for header level.
      DATA: ls_supply TYPE tds_field_supply.
      IF iv_object_id EQ 'HEAD'.
        IF iv_module EQ 'VBAK_BEARBEITEN'.
          ls_supply-field = 'ZZCCINS'.
          APPEND ls_supply TO ct_supply.
          ls_supply-field = 'ZZCCNUM'.
          APPEND ls_supply TO ct_supply.
          ls_supply-field = 'ZZCCNAME'.
          APPEND ls_supply TO ct_supply.
          ls_supply-field = 'ZZAUNUM'.
          APPEND ls_supply TO ct_supply.
        ENDIF.
      ENDIF.
    I hope it helps!
    Kind Regards!

  • Enhance Standard Info Structure SAP_CRM_ACT to add custom fields in CRM Activity archive Search

    Hi All,
    We have a requirement where we need to enhance CRM UI archive search with custom fields for CRM activity Object CRM_ACT_ON. As per my analysis Standard Archive Search for activity Uses info structure SAP_CRM_ACT for searching archived data.
    But when we are trying to add custom fields into above field catalog, it is treated as modification. But Modification is not allowed in our landscape.
    Standard infostructure is harcoded in SAP standard method ARCHIVING_READ of class CL_CRM_REPORT_ACC_DYNAMIC which is called as part of the process. So we are not able to go ahead with custom info structure.
    Can you please le me know if there are any alternative way to meet above requirement or I have missed any steps.
    Thanks & Regards,
         Sujit

    Hello Thomas,
    Maybe this link can help.
    add new field to search criteria and result.
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/f0747ac2-ffd9-2910-de9a-8a3dc44da8b4?QuickLink=index&overridelayout=true&12966506314316
    Search Options - Knowledge Management - SAP Library
    regards,
    Grace

  • Replication of custom-fields in BP from CRM to ECC

    Hello all,
    I have created additonal attributes for a Business Partner in CRM7.0 (ZZKATR1 and ZZKATR2) using the tool AET.
    In ECC I've added these attributes to tabel KNA1 using an append structure.
    The replication of the BP from CRM to ECC is already working fine.
    So when I change a standard field this is replicated succesfully.
    Only now I want to enhance this replication with these additional attributes (custom-fields ZZKATR1 and ZZKATR2).
    So they also appear in ECC in table KNA1.
    Can anyone tell me how this is done? And what steps I have to take?
    Thanks a lot.
    Marco

    Hello Marco,
    Please see note 736595 and also the links below explaining the scenarios.
    http://wiki.sdn.sap.com/wiki/display/CRM/EnhancingtheCRMMiddlewareExample2
    /people/vikash.krishna/blog/2009/07/21/exchange-ecc-customer-master-standard-field-with-the-crm-z-fields-ecc--crm
    I hope this helps.
    Kind regards,
    Vanessa

  • BP Custom Field replication - CRM to ECC

    Hello Developers,
    I have added custom fields to the CRM BUT000 (Business Partner) table, using AET.  Now,  I need to replicate these custom fiields to ECC.  We have configured, and are successfully replicating the standard BP fields from CRM to ECC.  However, the new AET custom fields are not replicating. 
    Can you please help me by identifying BADIs, Enhancements, or User Exits where I can insert the required code in order to accomplish this custom field replication, on both the CRM and ECC sides of this replication?  Is there a document that describes what is required? 
    We are running ECC 6.0, and CRM 7.0. 
    Thanks for your help!
    Duane

    Hi Brian,
    Thanks for your help.  I have resolved this, and the information that you provided was helpfutul.
    I had to create a function module in ECC, modeled after the SAP provided sample FM SAMPLE_INTERFACE_DE_BALE.   In addition to this, I had to configure entries in the standard SAP tables TBE24 and TBE34 (event DE_BALE), so that my new function module  would be  called. 
    Duane.

  • Reservations creation with customer fields in ECC from SRM does not work?

    Hi,
    I have to create reservations into backend system (ECC) from shopping cart creation in SRM 7.0.
    Reservation items contiain two customer fields.
    RESB is extended by adding an append structure that contains an include with the data structure of the two customer-specific fields.
    When reservation is created by BAPI_RESERVATION_CREATE1 function in ECC customer fields are filled.
    In SRM I use FILL_RS_INTERFACE1 method of BADI BBP_CREATE_BE_RS_NEW.
    When a shopping cart is created in SRM and then approved a reservation is created in ECC but customer fields are empty.
    Why?
    Thank you for your collaboration.
    Best regards.
    Al

    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/90bd6f78-bcce-2a10-17ac-a74187b924ea?quicklink=index&overridelayout=true
    Note 885458 - SRM partner maintenance: 'Add to invoicing party' is missing
    Note 1034662 - BBP_VENDOR_SYNC: Invoicing Party not getting changed
    in classic there may not be any issue since while creating a PO partner function automatically determined correctly int he ECC purchase order .
    In SRM , we might pulled only VN vendors.
    this could be one of the grey area in SRM Extended classic mode.
    check with SAP and update SAP comments / suggection here.
    Are PI  (invoice party) and VN ( real supplier) vendor number ranges same?
    Are many vendor VN and PI  different?
    Note 1022311 - SRM Integration: Partner at purchase order item level
    In Supplier Relationship Management (SRM), you can maintain partners at item level. During the replication into the ECC back end, this partner information is no longer available because there are no partners for the document item in the ECC back end.
    Other terms
    Business Add-Ins:
    ME_BAPI_PO_CUST, ME_PROCESS_PO_CUST, ME_GUI_PO_CUST, MB_MIGO_BADI, MRM_PARTNER_CHECK
    let us wait for others reply
    Muthu

  • Custom field in CRM ISA order header

    Hi,
    I was able to add a custom field in our CRM ISA B2B website order entry header following the instruction on the ISA_30..modification guide.
    Right now I am able to store that custom header field data in a table in CRM called CRM_ISA_ADD_DATA which is also specified in the guide.
    My question is how do I transfer this field to the actual CRM ISA Order Header text field so that it can be replicated to R/3? 
    Any suggestions would be appreciated.
    Thanks,
    Prasoon

    Hi Hitesh,
    I am also looking for the solution for the same problem.
    I hope you have found the solution.
    If you have found the solution please let me know and help me how to do it.
    I really appreciate your help on this and I will assign you points for this.
    Thanks for your help.
    Ashish.

  • Adding custom fields to CRM Sales transactions

    What are the steps to add custom tab and fields to CRM transactions?
    By the way, we are on CRM 6.0 and are using SAPGUI.
    Thanks in advance
    Srini

    I tried using Easy Enhancement Workbench (EEWB) and was able to successfully generate the task under the project.
    But now I am getting short dumps in transaction CRMD_ORDER. Snap shot of the error is below.
    What happened?
        Error in the ABAP Application Program
        The current ABAP program "CL_EX_CRM_CUSTOMER_I_BADI=====CP" had to be
         terminated because it has
        come across a statement that unfortunately cannot be executed.
    Runtime Errors         MOVE_CAST_ERROR
    Except.                CX_SY_MOVE_CAST_ERROR
    Date and Time          01/26/2011 16:52:47
    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_EX_CRM_CUSTOMER_I_BADI~CRM_CUSTOMER_I_SET_TITLE" "(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=ZCL_IM_EEW_CUSTOMER_I01"
        target type: "\INTERFACE=IF_EX_CRM_CUSTOMER_I_BADI"
    Also, is there a clean way to back out these changes? Will deleting the project undo these changes?
    Thanks in advance
    Srini

  • EEWB enhancement -Zfields not visible in Customer Fields in CRM online

    Hi there,
    I've run an EEWB enhancement to add some new fields to Service Process - it seemed to work correctly
    and the fields have been correctly added to BTADMIN_H.
    I was also able to add them to WebUI screens (as was the requirement) and they function correctly.
    I then noticed that the fields are not available to view/edit in "Customer Fields" TAB in SAP online (CRMD_ORDER
    transaction), when I create a new service process(complaint).
    when I went to regenerate the EEWB, I noticed that many report/screen/table entries that normally appear on the log of data generated by the EEWB were missing (in comparison to previous EEWBs). I redid it a few times, but with no success.
    Any suggestions, please, on how to solve this?
    Thanks,
    David.

    Hi,
    That is because in EEWB you might have used some other object other than COMPLAINTS.
    If you want your field to come in GUI as well then may be you need to delete this EEWB extension and create a new one.
    Also check other Business Transaction like activity opportunity may be the that new field is coming in those transactions if you have choosen Bus. object as BUSINESS_ACTIVITY or BUSINESS_TRANSACTION in EEWB.
    Regards,
    Shobhit

  • Search Help functionality for Custom Field in CRM 6.0

    Hi,
    We have added custom field  PRODUCT_ID into component BT120H_CPL.  For this field, I need to provide search help in WebUI.  Can you please give some suggestion on the same.
    Regards,
    Ramki.

    Hi Ram,
                     Here is the sample code.
    Outbound plug:
    Global attribute : GR_CITYCODE_F4     Instance Attribute     Private     Type Ref To     IF_BSP_WD_POPUP
    data declaration
      DATA: LT_COL_DEF       TYPE TABLEVIEWCONTROLTAB,
            LS_COL_DEF       TYPE LINE OF TABLEVIEWCONTROLTAB,
            LV_REGION        TYPE REGIO,
            LV_COUNTRY       TYPE LAND1,
            LR_ENTITY_HEADER TYPE REF TO CL_CRM_BOL_ENTITY,
            LR_ENTITY_ADDR   TYPE REF TO CL_CRM_BOL_ENTITY.
      TRY.
          LR_ENTITY_HEADER ?= TYPED_CONTEXT->header->COLLECTION_WRAPPER->GET_CURRENT( ).
        CATCH CX_SY_MOVE_CAST_ERROR.
      ENDTRY.
      CHECK LR_ENTITY_HEADER IS BOUND.
      LR_ENTITY_ADDR ?= LR_ENTITY_HEADER->GET_RELATED_ENTITY( IV_RELATION_NAME = 'BuilStandardAddressRel' ).
        CHECK LR_ENTITY_ADDR IS BOUND.
    getting region and country
      CALL METHOD LR_ENTITY_ADDR->GET_PROPERTY_AS_VALUE
        EXPORTING
          IV_ATTR_NAME = 'REGION'
        IMPORTING
          EV_RESULT    = LV_REGION.
      CALL METHOD LR_ENTITY_ADDR->GET_PROPERTY_AS_VALUE
        EXPORTING
          IV_ATTR_NAME = 'COUNTRY'
        IMPORTING
          EV_RESULT    = LV_COUNTRY.
    appending citycode and description to internal table
      LS_COL_DEF-COLUMNNAME = 'ZZCITYCODE'.
      LS_COL_DEF-TITLE      = 'City Code'.
      APPEND LS_COL_DEF TO LT_COL_DEF.
      LS_COL_DEF-COLUMNNAME = 'TEXT'.
      LS_COL_DEF-TITLE      = 'Description'.
      APPEND LS_COL_DEF TO LT_COL_DEF.
      CLEAR: GT_CITYCODE[].
    fill the internal table  GT_CITYCODE whcih must appear in popup.
      FREE GR_CITYCODE_F4.
      GR_CITYCODE_F4 = COMP_CONTROLLER->WINDOW_MANAGER->CREATE_DECISION_POPUP( IV_TITLE             = 'City Code'
                                                                               IV_DESCRIPTION       = 'City Code'
                                                                               IV_VISIBLE_ROW_COUNT = 10
                                                                               IV_DISPLAY_TABLE     = GT_CITYCODE
                                                                               IV_VISIBLE_COLUMNS   = LT_COL_DEF ).
      GR_CITYCODE_F4->SET_ON_CLOSE_EVENT( IV_EVENT_NAME = 'CITYCODE_F4_SELECTED'
                                          IV_VIEW       = ME  ).
      GR_CITYCODE_F4->OPEN( ).
    on close event ****************************************************************
    where you can set the value of the  field *********************************
    METHOD EH_ONCITYCODE_F4_SELECTED.
    Added by wizard: Handler for event 'CITYCODE_F4_SELECTED'
    data declaration
      DATA: LR_OUTPUTNODE  TYPE REF TO CL_BSPWDCMP_BSPWDCOMPONEN_CN01,
            LR_ENTITY      TYPE REF TO IF_BOL_BO_PROPERTY_ACCESS,
            LR_HEADER      TYPE REF TO ZL_BP_HEAD_ACCOUNTDETAILS_CN00,
            LV_ROW_INDEX   TYPE STRING,
            LV_EVENT_NAME  TYPE STRING,
            LV_VALUE       TYPE STRING,
            LS_CITYCODE    TYPE ZTB0000A31PL2T .
      LR_OUTPUTNODE ?= GR_CITYCODE_F4->GET_CONTEXT_NODE( 'OUTPUTNODE' ).
      LV_ROW_INDEX = LR_OUTPUTNODE->GET_SELECTEDROWINDEX( ).
      LV_EVENT_NAME = LR_OUTPUTNODE->GET_EVENT_NAME( ).
      GR_CITYCODE_F4->CLOSE( ).
      IF LV_EVENT_NAME = 'OK'.
        LR_ENTITY ?= ME->TYPED_CONTEXT->HEADER->COLLECTION_WRAPPER->GET_CURRENT( ).
        READ TABLE GT_CITYCODE INTO LS_CITYCODE INDEX LV_ROW_INDEX.
        LR_HEADER ?= ME->TYPED_CONTEXT->HEADER.
        LR_HEADER->GS_CITYCODE_F4 = LS_CITYCODE.
        LV_VALUE = LS_CITYCODE-ZZCITYCODE.
      setting city code
        LR_ENTITY->SET_PROPERTY_AS_STRING( IV_ATTR_NAME = 'ZZCITYCODE'
                                           IV_VALUE     = LV_VALUE ).
      ENDIF.
    ENDMETHOD.
    Hope this helps.
    Regards,
    Ruby.

  • Updation of Custom fields in MBEWH from MBEW

    Hi ABAPpers,
    Can anyone give me any clarity  if I append same structure in both MBEW and MBEWH, then during the update will these custom fields also gets updated? Or do we have any other procedure to do this?
    Edited by: VKUPPILI on Dec 9, 2011 1:17 PM

    Hi,
    The append field will be  the ZFILEDS that you add. Those will not get updated automatically but proper enhancements has be written to pass values to that field. The include where you can start to have a look is LMBMMF20 (FORM MBEW_UPDATE)..
    Hope that Helps
    Anirban M.

  • Custom fields not updaing from BADI implmentaion MB_BAPI_GOODSMVT_CREATE

    Dear All,
    I am using BAPI_GOODSMVT_CREATE for creating GRN.For some custom fields in append structure of MSEG( Material document ), i have implemented BADI MB_BAPI_GOODSMVT_CREATE. PAssing custom fields in Extension of BAPI...
    But still values are not getting reflected in Material Document.
    Please suggest me , if i am missing any step.
    regards,
    subhash karidhal

    Hi
    I have added key fields BLNR(document no)  Itemno and  custom zfieldsv in MSEG into my new BAPI structure ZMSEG_BAPI.
    Now i am trying to pass values to those zfields using VALUEPART1 and update the MSEG table using BADI method EXTENSIONIN_TO_MATDOC
    since I am creating document using BAPI_GOODSMVT_CREATE i will not have key field values of document number and item no to pass in Valuepart1 field.
    Can you pls confirm should i have to pass blank valuesfor key field in valuepart1. just wondering how the key fields n BAPI structure will related with MSEG Table.
    Regard
    Chandra
    Edited by: princeck on Sep 26, 2011 3:17 AM

  • How to Make One custom field unique apart from Userkeys defined by Oracle?

    Hi,
    I have one requirement to make a a number field to be unique at Account level. I know as per Siebel on Demand Account Name & Location combination is using as UK. But as per my requirement, i want to restrict user to not entering duplicate value in a defined custom field. How can we achieve this.
    All helpful suggestions are welcome..
    Regards,
    Subbu

    No, you cant create unique custom fields... I know, it's terrible.

  • Excel Reporting using Custom Field as parameter from PWA 2013

    Hi,
    Iam trying to create a report in Excel 2013 ,using ODATA feed.  I am connecting to the Project Web App instance and I am able to get datas from various entities like Project ,Resource etc.
    Worklocation is a custom attribute belonging to Resource Entity in PWA.If I want to create a report which shows a list of resources in a particular work location  by providing work location as parameter/filter , how  can I do that ?
     I tried creating a pivot table with all required entities but when I am adding Work Location as filter , the drop down does not show all the locations available as Work location in PWA. Instead, it just shows the corresponding worklocation belonging
    to the resources avaialble in the data section.
    Is there any way to filter say,resources based on all the available worklocations?
    Can someone help me please?
    Thanks,
    Mridhula

    Hi,
    Iam trying to create a report in Excel 2013 ,using ODATA feed.  I am connecting to the Project Web App instance and I am able to get datas from various entities like Project ,Resource etc.
    Worklocation is a custom attribute belonging to Resource Entity in PWA.If I want to create a report which shows a list of resources in a particular work location  by providing work location as parameter/filter , how  can I do that ?
     I tried creating a pivot table with all required entities but when I am adding Work Location as filter , the drop down does not show all the locations available as Work location in PWA. Instead, it just shows the corresponding worklocation belonging
    to the resources avaialble in the data section.
    Is there any way to filter say,resources based on all the available worklocations?
    Can someone help me please?
    Thanks,
    Mridhula

  • Custom fields mapping issue of sales order replication from R/3 to CRM

    Hello Experts,
    I have to replicate sales orders from R/3 to CRM system (Initial and Delta)
    The issue is I have custome fields in R/3 which are maintained in custom table(Z table) in R/3.
    We added those custom fields in CRM customer_i table to synchronise with R/3 data.
    To MAP R/3 custom fields to CRM custom fields, i have the following customization.
    1. Added the custom function module in the event CRMO_200 and moved all the custom fields into interal table  IT_OTHER_INFO.
    2. The intrnal table IT_OTHER_INFO with data is passed into CRM standard function modules.
    3. But in CRM the BADI 'CRM_DATAEXCHG_BADI' implementation does not have the input parameter of internal table TI_OTHER_INFO.
    All my custom data is in internal table TI_OTHER_INFO.
    Please suggest where can i map this data to CRM enhanced fields.
    Regards,
    Umashankar.

    Hello Vanessa,
    Thank you so much for your reply.
    I went through the Note (1053817). It is good. I understand that the custom fields should enhance in the BAPE_VBAP in R/3.
    My Scenario:
    Goal: Orders replication from R/3 to CRM along with Custom fields.
    In R/3, all the custom fields are maintained in Z table (Not VBAK or VBAP).
    All these custom fields are belongs to Item level.
    In CRM, The custom fields are maintained in CRMD_CUSTOMER_I table though AET.
    I need to MAP these custom fields to CRM while order replication from R/3 to CRM.
    Regards,
    Umashankar.

Maybe you are looking for

  • Reporting Services will not automatically use a different replica for the report server databases when a failover occurs. How to overcome this issue

    Reporting Services offers limited support for using AlwaysOn Availability Groups with report server databases. The report server databases can be configured in AG to be part of a replica; however Reporting Services will not automatically use a differ

  • ADR session

    Hey- I'm about to do a quick and dirty ADR session for a friend of mine who's involved on making a feature film. My ideal setup is to set up a padded recording booth in the small closet near my workstation, while running a video output to a preview m

  • How do I get Logic to respond to Preferences, Audio, and Options?

    Every time I click on the below options I get that rainbow colored ball and Logic freezes up and does not respond. This all occurred after I accidentally pulled the plug on my Macbook while the battery was not in it. Logic was not able to shut down p

  • Regarding SECATT Tool

    Hi, I have a issue related to <b>SECATT</b> Transaction. Actual issue here is i need call <b>SECATT</b> TCODE From my program to execute my test scripts. <b>SECATT's</b> program is <b>SAPLECATT_MAIN</b> which is of type <b>function pool</b> how can i

  • Mac Book Pro 17 inch to 23 inch display blue screen freezes.

    Can any one help me, my mac book pro 17 is freezing when I connect it to my 23 inch apple cinema display. It works perfectly on stand alone, but once I connect the 23 cinema it toggels back and forth from blue screen on both screens then freezes, the