BP- Change Bapi error

Hi,
   I am trying to change some information of External BP Number using the Bapi (BAPIBUSISM007_CHANGE).It throwing the error (Customer number was not filled during external number assignment)..But I cant find out any field to pass External Number..... ( I have assing role ISM020 to the BP)....
Thanks
Sathish

Hi Daniela,
You can use CRM_MKTBP_ASSIGN_ATTRIBUT_TAB to assign mkt attributes, this function module will take care of commiting the bp as well. You will have to pass attribute set, business partner guids and attributes as shown below. Hope this helps
CALL FUNCTION 'CRM_MKTBP_ASSIGN_ATTRIBUT_TAB'
          EXPORTING
            iv_attribute_set = ls_mktbp_wrk-profile_template_id
            iv_commit        = 'X'
            iv_obtyp         = 'BUT000'
          TABLES
            it_partner       = lt_partner
            et_return        = lt_return
            it_attributes    = lt_attribute_line.
Regards,
Priyanka

Similar Messages

  • Change Bapi Wrapper

    when creating CHANGE bapi wrapper , is there any rule that should follows
    Except the rule define below, is there any rule/logic define  inside the function?
    Import – Structure to hold the BO header data being modified
    Tables – Table(s) to hold the list(s) of associated item data, which are used to replace (add/modify/delete) the item data
    “RETURN” as Export or Tables parameter
    i have read somewhere, that in the change bapi wrapper,i need to replace the existing rows...
    my problem is when i modify the value
    <b><u>0001</u> Abu   1 </b>
    change to
    <b><u>0001</u> Abu   2</b>
    after i sync
    <u>0002</u> Abu 1   <<---data is not modified and syncKey changed
    i new syncKey created and i check merep_10100 the old synckey eg: 0001 rows is deleted and new syncKey 0002 is created.
    Is this the change bapi wrapper logic error ?
    Message was edited by:
            yzme yzme
    Message was edited by:
            yzme yzme

    i think i have difficulties understand you  "raam"....
    can you explain more......
    the post that i post earlier is an example to make it simple for ppl to understand .
    the real data is down here.
    <b><u>Change Bapi Wrapper</u></b>
    FUNCTION zemi_am_p2p_v1.
    *"*"Local interface:
    *"  IMPORTING
    *"     VALUE(AM_DATA) LIKE  ZASTMS STRUCTURE  ZASTMS
    *"  EXPORTING
    *"     VALUE(RETURN) LIKE  BAPIRET2 STRUCTURE  BAPIRET2
    *"  TABLES
    *"      AM_DETAILS STRUCTURE  ZASTMS OPTIONAL
      DATA : v_date LIKE sy-datum,
             var1 LIKE  balm-msgv1,
             var2 LIKE  balm-msgv2.
      REFRESH : bdcdata, messtab.
      CLEAR : bdcdata, messtab, v_date.
    *v_msg,
      CONCATENATE am_data-anln1 am_data-werks am_data-stort sy-datum sy-uzeit INTO zztable-char100
      SEPARATED BY space.
      INSERT zztable.
      SELECT SINGLE * FROM anla WHERE anln1 = am_data-anln1
                                  AND bukrs = '1000'.
      SELECT SINGLE * FROM anlz WHERE anln1 = am_data-anln1
                                  AND bukrs = '1000'.
      SELECT SINGLE * FROM anlh WHERE anln1 = am_data-anln1
                                  AND bukrs = '1000'.
      CONCATENATE   anla-aktiv+6(02)  anla-aktiv+4(02) anla-aktiv(04) INTO v_date.
    call function 'ZBAPI_AM_P2P'
       exporting
         v_anln    = anla-anln1
         v_stort   = am_data-stort
          v_txt50   = anla-txt50
          v_anlhtxt = anlh-anlhtxt
          v_kostl   = anlz-kostl
          v_werks   = anlz-werks
          v_date    = v_date.
    *    importing
    *v_msg     = v_msg.
      APPEND am_data TO am_details.
    ENDFUNCTION.
    FUNCTION zbapi_am_p2p.
    *"*"Local interface:
    *"  IMPORTING
    *"     VALUE(V_ANLN) LIKE  ANLA-ANLN1 OPTIONAL
    *"     VALUE(V_STORT) LIKE  ANLZ-STORT OPTIONAL
    *"     VALUE(V_TXT50) LIKE  ANLA-TXT50 OPTIONAL
    *"     VALUE(V_ANLHTXT) LIKE  ANLH-ANLHTXT OPTIONAL
    *"     VALUE(V_KOSTL) LIKE  ANLZ-KOSTL OPTIONAL
    *"     VALUE(V_WERKS) LIKE  ANLZ-WERKS OPTIONAL
    *"     VALUE(V_DATE) LIKE  SY-DATUM OPTIONAL
    *"  EXPORTING
    *"     VALUE(V_MSG) TYPE  STRING
      DATA :  var1 LIKE  balm-msgv1,
              var2 LIKE  balm-msgv2.
      PERFORM open_group.
      PERFORM bdc_dynpro      USING 'SAPLAIST' '0100'.
      PERFORM bdc_field       USING 'BDC_OKCODE' '=MAST'.
      PERFORM bdc_field       USING 'ANLA-ANLN1' v_anln.
      PERFORM bdc_field       USING 'ANLA-ANLN2' '0'.
      PERFORM bdc_field       USING 'ANLA-BUKRS' '1000'.
      PERFORM bdc_dynpro      USING 'SAPLAIST' '1000'.
      PERFORM bdc_field       USING 'BDC_OKCODE' '=TAB02'.
      PERFORM bdc_field       USING 'ANLA-TXT50' v_txt50.
      PERFORM bdc_field       USING 'ANLH-ANLHTXT' v_anlhtxt.
      PERFORM bdc_field       USING 'ANLA-AKTIV' v_date.
      PERFORM bdc_dynpro      USING 'SAPLAIST' '1000'.
      PERFORM bdc_field       USING 'BDC_OKCODE' '=BUCH'.
      PERFORM bdc_field       USING 'ANLZ-KOSTL' v_kostl.
      PERFORM bdc_field       USING 'ANLZ-WERKS' v_werks.
      PERFORM bdc_field       USING 'ANLZ-STORT' v_stort.
      PERFORM bdc_dynpro      USING 'SAPLAIST' '3020'.
      PERFORM bdc_field       USING 'BDC_OKCODE' '=YES'.
      CALL TRANSACTION 'AS02' USING bdcdata MODE 'N'
                                            UPDATE 'S'
                                            MESSAGES INTO messtab.
      PERFORM close_group.
      READ TABLE messtab INDEX 1.
      MOVE messtab-msgv1 TO var1.
      MOVE messtab-msgv2 TO var2.
      CLEAR v_msg.
      CALL FUNCTION 'MESSAGE_PREPARE'
           EXPORTING
               language               = 'E'
                msg_id                 = messtab-msgid
                msg_no                 = messtab-msgnr
                msg_var1               = var1
                msg_var2               = var2
    *         MSG_VAR3               = ' '
    *         MSG_VAR4               = ' '
          IMPORTING
               msg_text               = v_msg
           EXCEPTIONS
                function_not_completed = 1
                message_not_found      = 2
                OTHERS                 = 3.
    ENDFUNCTION.
    <b><u>GetDetails Bapi Wrapper</u></b>
    FUNCTION ZBAPI_AM_DETAILS_V1.
    *"*"Local interface:
    *"  IMPORTING
    *"     VALUE(DATA_ANLN1) LIKE  ZASTMS-ANLN1 OPTIONAL
    *"  EXPORTING
    *"     VALUE(RETURN) LIKE  BAPIRET2 STRUCTURE  BAPIRET2
    *"     VALUE(AM_DATA) LIKE  ZASTMS STRUCTURE  ZASTMS
    *"  TABLES
    *"      AM_DETAILS STRUCTURE  ZASTMS OPTIONAL
      DATA : BEGIN OF it_return OCCURS 0,
       mandt like anla-mandt,
       bukrs LIKE anlz-bukrs,
       anln1 LIKE anlz-anln1,
       anln2 LIKE anlz-anln2,
       kostl LIKE anlz-kostl,
       werks LIKE anlz-werks,
       stort LIKE anlz-stort,
       txt50 LIKE anla-txt50,
       txa50 LIKE anla-txa50,
       END OF it_return.
      SELECT SINGLE * INTO CORRESPONDING FIELDS OF it_return
      FROM anla AS a INNER JOIN anlz AS b
      ON a~bukrs = b~bukrs AND
         a~anln1 = b~anln1 AND
         a~anln2 = b~anln2
      WHERE
      a~anln1 = DATA_ANLN1
    * AND   b~kostl = data-kostl
    * AND   b~anln1 = DATA_ANLN1
      AND   b~werks = '1000'
      AND   b~bukrs = '1000'
      and   b~bdatu = '99991231'.
    * AND   b~anln2 = data-anln2.
      APPEND it_return.
      SORT it_return BY anln1.
      DELETE ADJACENT DUPLICATES FROM it_return COMPARING ALL FIELDS.
      am_details[] = it_return[].
    ENDFUNCTION.
    <?xml version="1.0" encoding="utf-8" ?>
    - <MeRepApplication schemaVersion="1.1" id="ZAM_03" version="03">
      <Property name="CLIENT.BUILDNUMBER" />
      <Property name="C_APPLRESOLVE" />
      <Property name="DATA_VISIBLE_SHARED">X</Property>
      <Property name="E_APPLRESOLVE" />
      <Property name="FACADE_C_CLIENT">X</Property>
      <Property name="FACADE_E_CLIENT">X</Property>
      <Property name="HOMEPAGE.INVISIBLE" />
      <Property name="INITVALUE" />
      <Property name="RUNTIME">JSP</Property>
      <Property name="TYPE">APPLICATION</Property>
    - <SyncBO id="ZAM_03" version="1" type="twoWay" allowCreate="false" allowModify="true" allowDelete="false" reqDirectSync="true" downloadOrder="1">
    - <TopStructure name="TOP">
    - <Field name="SYNC_KEY" type="N" length="10" decimalLength="0" signed="false" isKey="true" isIndex="true">
      <Input type="create">false</Input>
      <Input type="modify">false</Input>
      </Field>
    - <Field name="ANLN1" type="C" length="12" decimalLength="0" signed="false" isKey="false" isIndex="false">
      <Input type="create">false</Input>
      </Field>
    - <ChildStructure name="010">
    - <Field name="SYNC_KEY" type="N" length="10" decimalLength="0" signed="false" isKey="true" isIndex="true">
      <Input type="create">false</Input>
      <Input type="modify">false</Input>
      </Field>
    - <Field name="BUKRS" type="C" length="4" decimalLength="0" signed="false" isKey="false" isIndex="false">
      <Input type="create">false</Input>
      </Field>
    - <Field name="ANLN1" type="C" length="12" decimalLength="0" signed="false" isKey="false" isIndex="false">
      <Input type="create">false</Input>
      </Field>
    - <Field name="ANLN2" type="C" length="4" decimalLength="0" signed="false" isKey="false" isIndex="false">
      <Input type="create">false</Input>
      </Field>
    - <Field name="KOSTL" type="C" length="10" decimalLength="0" signed="false" isKey="false" isIndex="false">
      <Input type="create">false</Input>
      </Field>
    - <Field name="WERKS" type="C" length="4" decimalLength="0" signed="false" isKey="false" isIndex="false">
      <Input type="create">false</Input>
      </Field>
    - <Field name="STORT" type="C" length="10" decimalLength="0" signed="false" isKey="false" isIndex="false">
      <Input type="create">false</Input>
      </Field>
      </ChildStructure>
      </TopStructure>
      </SyncBO>
      </MeRepApplication>

  • Sale Order change BAPI - Storage loc not updated

    Hi Everybody,
    Iam using "BAPI_SALESORDER_CHANGE", to change the sale order items.
    First iam calling above bapi with switch B, for new pricing & then second time for material change.
    When i change any material number, it is getting updated correctly.
    But the storage location, even though iam passing in the bapi it is not updated, & is blank - updation flag is also passed.
    When i execute sale order change again it is updated - ie, for any material change for first bapi call, storage loc is not updated - for 2nd bapi call storage loc is updation - for same input in both the cases.
    Is there any way to update the storage loc is first call of sales order change bapi.
    Below is the parameters iam passing in bapi :
    CALL FUNCTION 'BAPI_SALESORDER_CHANGE'
        EXPORTING
          SALESDOCUMENT      = LS_SALESDOCUMENT
          ORDER_HEADER_IN    = LT_HEADER_IN
          ORDER_HEADER_INX   = LT_HEADER_X
        TABLES
          RETURN                            = LT_RETURN
          ORDER_ITEM_IN               = LT_ITEMS
          ORDER_ITEM_INX             = LT_ITEM_X
          ORDER_CFGS_REF          = LT_CFGS_REF
          ORDER_CFGS_INST         =  LT_PARTS
          ORDER_CFGS_VALUE     = LT_VALUES
          ORDER_CFGS_BLOB        = LT_CUBLOB
          ORDER_CFGS_VK            = LT_CUVK
          ORDER_CFGS_REFINST   = LT_CUREF
          SCHEDULE_LINES            = LT_SCHEDULE_L
          SCHEDULE_LINESX         = LT_SCHEDULE_X
          ORDER_TEXT                   = LT_TEXT
          CONDITIONS_IN                = LT_CONDITION_L
          CONDITIONS_INX              = LT_CONDITION_X.
    Any help is appreciated.
    Regards,
    Nagarajan.J

    Hi,
    Storage location is updated only when same sale order bapi is called another time with required details.
    rgs,
    Nagarajan J

  • Database Connection Error:BAPI Error #0

    I have a problem when I preview a report in Crystal Reports 2008 using BW MDX Query I had recieved the following messages:
    1.Failed to retrieve data from database
    and then when I click ok
    2.Database Connection Error:BAPI Error #0
    Error occurred  when starting the parser:timeout during allocate / CPIC-CALL'ThSAPCMRCV'
    I copied the query of crystal report and I execute it inside the transaction of mdxtest
    SELECT  NON EMPTY EXCEPT([0CALMONTH].MEMBERS, {[0CALMONTH].[All]}) ON ROWS FROM [USD_SD_C0/RPT_1] SAP VARIABLES [!V000001] INCLUDING [0CALMONTH].[200401]
    I found the debugger had stopped in the line Break when I click on F8
    I recieve the following error
    Error occurred when starting the parser: timeout
    during allocate / CPIC-CALL: 'ThSAPCMRCV'
    Please anybody can help me

    Dear Ingo
    I had read this note
    I applied the following:
    1.I didn't found the lrfc32.dll in the windows/system32 in my BW server so I asked my basis administrator to upgrade the kernel
    2.after this step I didn't find it again so I had copied the file from the new kernel and copied it to system32 and sysWow
    3.I register successfuly the lrfc32.dll using the commanf regsvr c:/windows/system32/lfrc32.dll
    (note: this step didn't succeed until I had installed SAP GUI in BW server because as I observed that there is a need for C++ compiler which is installed by default when you install GUI)
    after all of this I cannot run any crystal report based on any BW query
    So Please anyboday can help

  • Credit card handling using sales order change BAPI

    Hi all,
      Currently, I am working on creating a custom BAPI for changing the sales order information. I am having a scenario where I need to handle multiple credit cards during the change of the sales order data. For example, if I have created a sales order  with a credit card A and a bill amount of 100. Now, in the change BAPI, I need to handle the situation like I would be getting two credit cards data out of which I need to Bill against credit card A with 200 and credit card B with 300. I need to see the entries in the sales order processing in the following fashion:
    During the creation:
    Credit card type    Credit card number    Maximum amount  Limit To
    AMEX                   A                             100                        Flag checked
    After performing change order:
    Credit card type    Credit card number    Maximum amount  Limit To
    AMEX                   A                             100                       Flag checked
    VISA                    B                              300                       Flag checked
    AMEX                   A                             100                       Flag checked
    Which implies that I am billing 200 against card A and 300 against card B.
    I want to acheive this functionality. Can any one throw some light in order to accomplish my task?
    Thanks in advance,
    From,
    Adithya

    i already used same But it's not working
    s_order_header_inx-updateflag = 'U'.
    Line items
      REFRESH: i_order_item_in, i_order_item_inx.
      LOOP AT t_data INTO wa_data.
        LOOP AT t_data_item INTO wa_data_item WHERE vbeln = wa_data-vbeln. .
    BAPISDITM
          i_order_item_in-itm_number = wa_data_item-posnr.
          i_order_item_in-profit_ctr = wa_data_item-profit_ctr.
    BAPISDITMX
          i_order_item_inx-itm_number = wa_data_item-posnr.
          i_order_item_inx-updateflag = 'U'.
          i_order_item_inx-profit_ctr = 'X'.
          APPEND: i_order_item_in, i_order_item_inx.
        ENDLOOP.
        CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
          EXPORTING
            input  = wa_data-vbeln
          IMPORTING
            output = wa_data-vbeln.
        CALL FUNCTION 'BAPI_SALESORDER_CHANGE'
          EXPORTING
            salesdocument     = wa_data-vbeln
            order_header_in   = s_order_header_in
            order_header_inx  = s_order_header_inx
            behave_when_error = 'P'
          TABLES
            return            = it_return
            order_item_in     = i_order_item_in
            order_item_inx    = i_order_item_inx.

  • Crystal reports and SAP BI--------BAPI error when executing the report

    Hi All,
    I am getting a problem accessing the data from the SAP BI system into the crystal reports.I created a report in CR2008 on a query built in SAP BI.When I execute this query,I am getting the following error.
    Database Connection Error:'BAPI Error #:0
    Error Occured when starting the parser:timeout during allocate / CPIC-CALL:'ThSAPCMRCV"
    CAN ANYBODY HELP ME OUT Please.
    Thanks,
    Kumar
    Edited by: Madan Koka on Dec 15, 2008 5:47 PM

    Hi,
    I have the same problem. I can create report in Crystal Reports on a query but can`t get data from BW.
    Thx in advance for help
    Jacek

  • How to change the error message Invalid login credentials

    Hi all,
    How to change the default error messages .
    1) In the Login page while giving wrong username or password .It showing
    Error message "Invalid login credentials".
    But requirement is change the above error message.
    2) I need to change the error message instead of "1 error has occureed"
    Thanks in Advance
    Sudhakar

    On the Login Page of the application create a 'Before Header' process with this code if  apex_application.g_notification ='Invalid Login Credentials' then
             apex_application.g_notification :='Your Altered Failed Login Message Here';
      end if;varad

  • Changing the error message

    Hi,
    <br />
    <br />How do I change the error message generated for a function such as an expired login.
    <br />
    <br /> <?php<br /> echo $tNGs->getErrorMsg();<br />?>
    <br />
    <br />Thanks
    <br />
    <br />Laurence

    Hi Laurence,
    ADDT´s error messages are spread across all those XYZ.res.php files located in the includes/resources folder -- and in your case it seems to be the file "tNG_pro.res.php" which provides the error messages related to the login.
    In here you´ll find two message variants : one for ADDT´s "development" mode, and the other for the "production" mode. As you most likely will not need to edit the "development mode" messages which are identified by a trailing "_D" in the variable name
    (e.g. BADWORDS_SQL_ERROR_D), you´ll just need to adapt the "production mode" messages
    (e.g. BADWORDS_SQL_ERROR)
    Cheers
    Günter Schenk
    Adobe Community Expert, Dreamweaver

  • CR2008 BAPI Error

    Hi,
    i am working the fist time with Crystal Reports 2008 and i dont get data from SAP BW Queries. I can connect to the SAP-System and build a report on the Design screen. But on the Preview screen i get the message "BAPI Error #:0 Fehler beim Start des Parser: timeout during allocate / CPIC-CALL: 'ThSAPCMRCV'". I dont know what to do.

    Hello Tim,
    Please post this query to the [Integration Kits - SAP |BusinessObjects Integration Kits;  forum:
    That forum is monitored by qualified technicians and you will get a faster response there.
    Also, all SAP queries remain in one place and thus can be easily searched in one place.
    Thanks a lot,
    Falk

  • Crystal Reports BAPI Error

    Hi,
    i am working the fist time with Crystal Reports 2008 and i dont get data from SAP BW Queries. I can connect to the SAP-System and build a report on the Design screen. But on the Preview screen i get the message "BAPI Error #:0 Fehler beim Start des Parser: timeout during allocate / CPIC-CALL: 'ThSAPCMRCV'". I dont know what to do.

    I had move this thread to the right forum. Sorry..
    [CR2008 BAPI Error;

  • Reset/change password error - cannot log in to builder - HELP!

    I'm encountering the same problem I described some time ago here: Reset/change password error - cannot log in to builder
    Briefly, the builder tells me I must change my password. When I attempt to do so, the password change page displays a null username, and tells me that my existing password is invalid. The same password failure occurs using the new password emailed to me by the "Rest password" function.
    I've cleared my browser cache, closed the browser, rebooted my client (WinXP), to no avail.
    Anyone able to help?
    Thanks
    jd

    Update:
    Workaround: log in using a different client machine.
    Scary.
    It looks the same problem reported, without response, here: Apex.oracle.com SaaS Login - Must Change Password.
    jd

  • BAPI Error Message Handling

    Hi Group,
    I am using BAPI ,How to display the BAPI  Error Message (eg:BAPIRET1) which is returning by BAPI

    HI ,
    ITS SIMPLE TRY THIS CODE
    AWARD PTS
    DATA: gt_ret     TYPE TABLE OF bapiret2,
               ls_ret    TYPE bapiret2,
    CALL FUNCTION 'BAPI_SALESORDER_CHANGE'
        EXPORTING
          salesdocument     = p_vbeln
          order_header_in   = gt_hdr
          order_header_inx  = gt_hdrx
        TABLES
          return            = gt_ret -
    >>>>.<b>IMPORTANT</b>
          order_item_in     = gt_itm
          order_item_inx    = gt_itmx
          schedule_lines    = gt_sched
          schedule_linesx   = gs_schedx
          order_text        = gs_stdtxt.
          PARTNERS          = gs_partner
      CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.
      LOOP AT gt_ret INTO ls_ret.
        WRITE:/ ls_ret-type.
        WRITE:/ ls_ret-message.
      ENDLOOP.

  • Programatically change the error message thrown by ADF Method validator

    Can I change an error message being displayed by an ADF Method Validator?
    The message of the method validator can be specified declaratively using the Wizard. But is there anyway I can programatically change it inside the body of the method validator?
    Inside a method validator i will check for about 5 conditions and each condition will have a separate error message to reflect the error correctly. I can't use a single message declared by the wizard.
    regards,
    Anton

    Hi,
    I think you should look at the follow links, hope they can
    help you
    http://blogs.technet.com/b/nexthop/archive/2013/02/19/using-iis-arr-as-a-reverse-proxy-for-lync-server-2013.aspx
    #Troubleshooting a 404.13 issue using IIS and Failed Request Tracing logs
    http://blogs.msdn.com/b/amb/archive/2012/10/10/troubleshooting-a-404-13-issue-using-iis-and-failed-request-tracing-logs.aspx

  • Attribute change run error in daily job (BI 7.0 SP 23)

    Hi All,
    We are facing an Attribute Change Run error in one of our daily batch job.we donnot see any locks in SM12.and a dump occurs in ST22.we also donnot have any master data load running at that time .We executed the the FM RSDDS_AGGR_MOD_CLOSE,but the Change run error occurs frequently .How to get the root cause of this issue as we donnot have any master data load running at that time.
    regards,
    maria

    If you are sure that your master data is 0MATERIAL then GOTO-RSA1>Tools in Top>Select Attribute Hiearchy Change Run>Select Info Object List>Select 0MATERIAL>Execute.Then message "Attribute/Hierarchy change run scheduled" will appear in the Tab on your User ID.Once its finished your masterdata is activated.
    For Activate Master Data we can do another method like "Right click on the particular Infoobject which need to activate and click "Activate Master Data".
    The above steps is for manual activation of master data changes..
    If you want to automaize the above steps "Need to add Attribute/Hierarchy Change Run" in the process chain.When execution of Processchain it will activate all the master data in the list one by one and also realign the Aggregates which using the master data objects.

  • SCCM 2012 Deploy --- Error = The software change returned error code 0x87D00324(-2016410844).

    Deployment to the client is successful but the error reported within Clients "SCCM Software Center"  
    The software change returned error code 0x87D00324(-2016410844).
    Also States on "Status" Past Due - Will be Retired"
    Can't figure this one out and I did some googling with no success in finding a solution?
    I am running an Adobe Flash install (.EXE)
    Any help or direction would be greatly appreciated
    RF

    Hi,
    Thank you for your response
    ""Wow6432Node is not valid on x86 systems."""
    Yes, that I am aware of that.....Windows on Windows, for running x86 apps on x64 Windows<o:p></o:p>
    When I first created the detection method I had only created the "WoW" Check
    for Flash value in the reg, which was running against both x86 & x64 Win 7
    systems, and forgot to include the x64 check/, either case, the error appeared
    on the WOW check. Presently I have 2 "Detection Clauses" one for x86
    and the second clause is x64 ( non WOW Path), and still receive the same erorrs
    on both x86 & x64 systems. ( and x64 system have both reg entries since Win 7 has both x86 & x64 versions of IE)
    Looking at the registry of an x64 Win 7 system I find the Adobe Flash registry entry is
    located in both Wow6432Node and also in the x64 sections of the reg.....<o:p></o:p>
    """"Also, why use the default value? I doubt there's anything in there (the default value is the
    value display in a key in regedit with the name of
    "@").""""<o:p></o:p>
    When Default Value is selected the boxes/options below that allow for more detailed
    information to be entered when performing the "reg check"? This is
    where I had been able to enter specific Build/Version to look for, Flash
    11.4.402.265, so that if it does not discover the build # it will proceed with
    the install.....<o:p></o:p>
    I figured having the option to check for Build/Version # would omit SCCM reinstalling on
    systems that have build 11.4.402.265 already?<o:p></o:p>
    From what I understand is that Adobe Flash x64 installs both versions x86 & x64 since Win 7 has both IE
    x86 & IE x64 bit versions by default, and this would explain the Wow6432Node reg
    entries and the true x64 reg entries in both locations when installing.
    Overall, I am thinking I may be heading in the wrong direction in resolving this, as x86 & x64 versions install on the systems, so this tells me it is detecting when / what needs to be installed, the issue seems to be how it reports back after installing......
    Looking further, I view the Content Status Page, and there reporting info in Asset Detail under [Success]  all others { / In Progresss / Error /Unknown } has no info......
    If this helps provide further details.....
    Thanks
    Regards,
    Ron
    RF

Maybe you are looking for