Deletion without archiving is not allowed in the production client

Hi Gurus!
I have a new problem with regards deleting products in the Production system in CRM. I can't seem to delete the product in Production Box using this report(COM_PRODUCT_DELETE_SINGLE). It gives me this error: 'Deletion without archiving is not allowed in the production client' I'm doing this to solve my issue with regards some of the products not having any Sales and Distribution Data. The steps i did below worked in QA box.
These are the steps i did in the QA box to delete the product:
1) I've deleted the products that has no sales data using the report COM_PRODUCT_DELETE_SINGLE. I went to COMMPR01 to tag the said products with a status 'To Archive' then saved it before I triggered this report.
2) I've registered it first in the table COMC_PR_TOOL_REG and filling up the necessary parameters
3) After Deleting the said products in CRM, I logged into R/3 to access the material (MM02). I just changed the sales text and saved it to trigger the replication in CRM.
When I checked the product in CRM, it worked. The Sales and Distribution Data is already shown.
Now I have a new problem with regards this procedure. I can't seem to delete the product in Production Box using this report. It gives me this error: 'Deletion without archiving is not allowed in the production client'
I have already followed the same procedure as to what I did in the QA box but for some reason it didn't work in the Production Box.
Could anyone please help me with this. Thanks!
Thanks & Regards
Nathan

I was able to solve the problem.
In Report COM_PRODUCT_DELETE_SINGLE,there is a special check in order for the productive system detection.
The logic in this program has a perform check_authority which will automatically produce the error and prevents you from deleting a product in the production system.
Solution:
I copied the program COM_PRODUCT_DELETE_SINGLE to new one ZCOM_PRODUCT_DELETE_SINGLE then I placed a comment on the PERFORM check_authority.

Similar Messages

  • Junitreport 'redirect' is not allowed when the secure processing feature is set to true.

    junitreport 'redirect' is not allowed when the secure processing feature is set to true.
    Hello,
       I'm running flexunit4.1.0-8 and I have an ant script running the test suite.    I recently upgraded from FB 4 to 4.5 and now I'm getting
    failures on junitreports.  Here's the full error: 
    [junitreport] : Error! Use of the extension element 'redirect' is not allowed when the secure processing feature is set to true.
    [junitreport] Failed to process C:\TDMSE_2_6\tdmse\flex-test\flex_unit_reports\TESTS-TestSuites.xml
    BUILD FAILED
    C:\TDMSE_2_6\tdmse\build\flexunitbuild.xml:116: Errors while applying transformations: javax.xml.transform.TransformerException: java.lang.RuntimeException: Use of the extension element 'redirect' is not allowed when the secure processing feature is set to true.
    Here's the junitreport section:
    [code]
    <target name="flex-unit-execute-tdmse-test-runner"
                                  description="executes the test runner app">
              <flexunit swf="${FLEX_UNIT_TEST_HOME}/TDMSETestRunner.swf"
                                  toDir="${FLEX_UNIT_REPORTS_HOME}"
                                  haltonfailure="false"
                                  localTrusted="true"
                                  verbose="true"
                                  headless="false"/>
              <junitreport todir="${FLEX_UNIT_REPORTS_HOME}">
                        <fileset dir="${FLEX_UNIT_REPORTS_HOME}">
                                  <include name="Test-*.xml"/>
                        </fileset>
                        <report format="frames" todir="${FLEX_UNIT_REPORTS_HOME}/html"/>
              </junitreport>
    </target>
    [/code]
    And here's the full ant build:
    [code]
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE project>
    <!--
                             TDMS flex unit test suite
    $Author:: hermannee                                                            $
    $Revision:: 10963                                                              $
    $Date:: 2011-11-15 13:38:46 -0500 (Tue, 15 Nov 2011)                           $
    $URL:: svn://ehsntpvld03.niehs.nih.gov/dev/tdmse_test_suite/trunk/build/flexun#$
    -->
              <!-- **** ADD THIS TO tdmes/build/build.xml *************
              <property name="FLEX_UNIT_HOME" value="${tdmsedir}/../tdmse_test_suite" />
              <target name="run_flex_units">
                  <ant antfile="${FLEX_UNIT_HOME}/build/build.xml" />
              </target>
              ********************************************************* -->
    <project name="flexunitbuild" basedir="." default="flex-unit-start-test-runner">
              <tstamp>
                        <format property="build.date" pattern="MMMMM dd, yyyy" />
                        <format property="build.time" pattern="HH:mm:ss" />
              </tstamp>
              <property name="tdmsedir" value="${basedir}/.." />
              <property name="builddir" value="${tdmsedir}/../build" />
              <property name="FLEX_HOME" value="${builddir}/tools/flex-4.5.0" />
              <property name="PARSLEY_HOME" value="${builddir}/tools/parsley-2.4.0" />
              <property name="FLEX_UNIT_HOME" value="${tdmsedir}/flex-test" />
              <property name="FLEX_UNIT_LIBS_HOME" value="${builddir}/tools/flexunit-4.1.0-8" />
              <property name="FLEX_UNIT_REPORTS_HOME" value="${FLEX_UNIT_HOME}/flex_unit_reports" />
              <property name="FLEX_UNIT_TEST_HOME" value="${FLEX_UNIT_HOME}/flex_unit_tests" />
              <!-- ==== tasks ============================ -->
              <taskdef resource="flexTasks.tasks" classpath="${FLEX_HOME}/ant/lib/flexTasks.jar"/>
              <taskdef resource="flexUnitTasks.tasks" classpath="${FLEX_UNIT_LIBS_HOME}/flexUnitTasks-4.1.0-8.jar" />
              <!-- dev -->
              <echo>basedir: ${basedir}</echo>
              <echo>tdmsedir: ${tdmsedir}</echo>
              <echo>builddir: ${builddir}</echo>
              <echo>FLEX_HOME: ${FLEX_HOME}</echo>
              <echo>FLEX_UNIT_HOME: ${FLEX_UNIT_HOME}</echo>
              <echo>FLEX_UNIT_LIBS_HOME: ${FLEX_UNIT_LIBS_HOME}</echo>
              <echo>FLEX_UNIT_REPORTS_HOME: ${FLEX_UNIT_REPORTS_HOME}</echo>
              <!-- =================================
              target: run-tdmse-test  
              ================================= -->
              <target name="flex-unit-start-test-runner"
                                  description="clean, compile and run tdmse flexunit tests"
                                  depends="flex-unit-clean-tdmse-tests,
                                  flex-unit-tdmse-compile-test-suite,
                                  flex-unit-execute-tdmse-test-runner"/>
              <target name="flex-unit-clean-tdmse-tests" description="Cleans the FlexUnit test and reports directories">
                        <delete dir="${FLEX_UNIT_REPORTS_HOME}" failOnError="false"
                                            includeEmptyDirs="true" />
                        <mkdir dir="${FLEX_UNIT_REPORTS_HOME}" />
                        <delete dir="${FLEX_UNIT_TEST_HOME}" failOnError="false"
                                            includeEmptyDirs="true" />
                        <mkdir dir="${FLEX_UNIT_TEST_HOME}" />
              </target>
              <target name="flex-unit-tdmse-compile-test-suite">
                        <mxmlc file="${tdmsedir}/flex-src/TDMSETestRunner.mxml"
                                            output="${FLEX_UNIT_TEST_HOME}/TDMSETestRunner.swf">
                                  <load-config filename="${FLEX_HOME}/frameworks/flex-config.xml"/>
                                  <!-- ==== include tdmse resource bundles ====== -->
                <locale>en_US</locale>
                <source-path path-element="${tdmsedir}/flex-src/locale/{locale}" />
                <include-resource-bundles>COMMON</include-resource-bundles>
                <include-resource-bundles>OW</include-resource-bundles>
                <include-resource-bundles>PREF</include-resource-bundles>
                <include-resource-bundles>RD</include-resource-bundles>
                <include-resource-bundles>RG</include-resource-bundles>
                                  <!-- ==== compile parsley library ============= -->
                                  <compiler.library-path dir="${PARSLEY_HOME}" append="true">
                                            <include name="parsley-flex4-2.4.0.swc" />
                                            <include name="spicelib-flex-2.4.0.swc" />
                                  </compiler.library-path>
                                  <!-- ==== compile all tdmse flex-src ========== -->
                                  <source-path path-element="${tdmsedir}/flex-src" />
                                  <source-path path-element="${tdmsedir}/flex-test" />
                                  <!-- ==== compile all flexunit swc's ========== -->
                                  <compiler.library-path dir="${FLEX_UNIT_LIBS_HOME}" append="true">
                                            <include name="*.swc"/>
                                  </compiler.library-path>
                                  <!-- ==== compile all flexunit swc's ========== -->
                                  <compiler.library-path dir="${FLEX_UNIT_LIBS_HOME}/mocklibs" append="true">
                                            <include name="*.swc"/>
                                  </compiler.library-path>
                                  <compiler.verbose-stacktraces>true</compiler.verbose-stacktraces>
                                  <compiler.headless-server>true</compiler.headless-server>
                        </mxmlc>
              </target>
              <target name="flex-unit-execute-tdmse-test-runner"
                                            description="executes the test runner app">
                        <flexunit swf="${FLEX_UNIT_TEST_HOME}/TDMSETestRunner.swf"
                                            toDir="${FLEX_UNIT_REPORTS_HOME}"
                                            haltonfailure="false"
                                            localTrusted="true"
                                            verbose="true"
                                            headless="false"/>
                        <junitreport todir="${FLEX_UNIT_REPORTS_HOME}">
                                  <fileset dir="${FLEX_UNIT_REPORTS_HOME}">
                                            <include name="Test-*.xml"/>
                                  </fileset>
                                  <report format="frames" todir="${FLEX_UNIT_REPORTS_HOME}/html"/>
                        </junitreport>
              </target>
              <!-- ======================================================== -->
    </project>
    [/code]
    I haven't seen much info about this problem anywhere on google except for this forum post:
    http://forums.adobe.com/thread/740146
    Thanks for any help!

    If you include the xalan.jar library to the build.xml execution classpath everything works!!!!!!.
    I hope it will be userfull.

  • The value 4010 39 99 is not allowed for the field MARC-STEUC/BAPI_MARC-CTR

    Hi all,
    BAPI' BAPI_MATERIAL_SAVEDATA' throws error the below error while creating material.
    'The value 4010 39 99 is not allowed for the field MARC-STEUC/BAPI_MARC-CTRL_CODE'
    Any idea abt this error.
    Regards,
    Thiyagu

    Hi,
    As this BAPI is triggered from external sytem that by client in production environment , I would not be able to dig it further.
    Thats why I asked if anybody confronted the same error previously.
    Thanks for suggestion.

  • BAPI CASESERVICE CREATEMULT - Alternative price not allowed for the service

    Hi,
    I am using .Net Connector to connect to BAPI. I am developing a .Net order processing application and intend to send the order information to SAP using BAPI_CASESERVICE_CREATEMULT.
    However, I keep getting the error message "An alternative price is not allowed for the service..". The service id is already setup at SAP and I am not sending any price information. I am only sending quantity. The DIFF_PRICE is set to 0.
    Any advice? I appreciate your help.

    Hi,
    I am using .Net Connector to connect to BAPI. I am developing a .Net order processing application and intend to send the order information to SAP using BAPI_CASESERVICE_CREATEMULT.
    However, I keep getting the error message "An alternative price is not allowed for the service..". The service id is already setup at SAP and I am not sending any price information. I am only sending quantity. The DIFF_PRICE is set to 0.
    Any advice? I appreciate your help.

  • The value  is not allowed for the field Cross-plant CM

    Hello All
    When i copy material in refernce to existin gone. I am getting this message
    "The value  is not allowed for the field Cross-plant CM"
    I am not putting any thing in this Basic-view Cross-plant CM, but still getting this message.
    Any help will be good...Thanks in advance...

    Hi,
    Please check the check box in front of the field config material is checked?
    If so then this material is configurable material
    A material that can have different variants.
    For example, a car can have different paint, trim, and engines.
    Configurable materials have a super bill of material (BOM) that contains all the components for producing every variant of the material. Similarly, they have a super task list that contains all the operations. When a material is configured, only the components and operations needed for a variant are selected.
    Please check
    BR
    Diwakar

  • The value 1 is not allowed for the field variace key

    Hi experts,
               When i was creating material master i was getting the status message as "the value 1 is not allowed for the field variance key" , but its stopping there its not moving out of that screen and creating the material record. When i see this field in the material master configuration its an optional field. Can you give me suggestions, where it can go wrong.
    Thanks & Regards,
    Ravi.

    Hi
    Can u tell me the field name . I cant get that field ref key. In which view does it come.
    Reg
    Raja

  • The update operation is not allowed in the current state of the request

    When users have logged a request through the service manager 2012 portal and they go back in to add user input they sometimes receive a message that says " The update operation is not allowed in the current state of the request." The state of the
    request has not changed it is still Active and has not breached its service level .
    I can't seem to find any information about this error and don't know how to troubleshoot it. Any help and advice would be appreciated.
    Thanks
    Sarah

    ok, so they're adding user comments after creating the service request. looks like this:
    the first thing to check is that the user is added to the default, un-scoped "End User" security role, or the custom end user security role they are added to has a scope that includes all work items. The "user input" field adds a user comment related
    to the SR, so the ability to create user comments is required to use this field.

  • This construct is not allowed as the origin of an assignment

    Please help..
    create or replace package testins as
    x number;
    y number;
    z number;
    end;
    create or replace procedure p5 as
    begin
    for i in 1..5 loop
    testins.x(i):=i;
    testins.y(i):=i+1;
    testins.z(i):=i+2;
    end loop;
    execute immediate
    'begin
    forall i in 1..:n
    insert into test (a,b,c) values
    (testins.x(i),
    testins.y(i),
    testins.z(i));
    end;' using 5;
    end;
    Error:
    *4/1 PLS-00308: this construct is not allowed as the origin of an assignment*
    *4/1 PL/SQL: Statement ignored*
    *5/1 PLS-00308: this construct is not allowed as the origin of an assignment*
    *5/1 PL/SQL: Statement ignored*
    *6/1 PLS-00308: this construct is not allowed as the origin of an assignment*
    *6/1 PL/SQL: Statement ignored*

    Hi,
    try this ...
    create or replace procedure p5 as
    begin
      for i in 1 .. 5 loop
        testins.x := i;
        testins.y := i + 1;
        testins.z := i + 2;
      end loop;
      execute immediate 'begin
    for i in 1..n
    loop
    insert into test (a,b,c) values
    (testins.x,
    testins.y,
    testins.z);
    end loop;
    end;'
        using 5;
    end p5;You have the package variables as numbers, not collections which is why you cannot use them with an array index viz.
    testins.x(i):=i;Hope it is clear.
    PS : code not tested

  • Manual value adjustments are not allowed in the year of settlement

    Hello Experts ,
    We have an AUC which has a value of 683,969.70 .  Now we have an unplanned depreciation  of 82,500.00-  which is yet to be posted .
    My user wants to run AIBU to do an AUC settlement for the same asset .
    However it is giving the following error .
    Manual value adjustments are not allowed in the year of settlement
    Message no. AW609
    Diagnosis
    It is not possible for technical reasons to settle an asset under construction (802438 0) with manual value adjustments in the year of settlement.
    Procedure
    Reverse the manual value adjustments in the year of settlement. Post them directly to the settlement receivers.
    Please advice what needs to be done .
    Regards
    Anirban

    Hi:
            By standard AUC assets are never subject to any kind of depreciation. They are assigned 0000 deo key in OAYZ . This is the cause of the error you are facing. Reverse unplanned depreciation and then settle it.
    Regards

  • The client connection is not allowed on the internal edge of the Access Edge Server

    We are trying to setup Lync 2013 Edge Server, we have a setup as described below
    Real IPs for Lync Edge/WebConf/AV
    NAT of real IPs through Firewall Juniper to FE IP
    Topology with NAT (Firewall IP) IP enabled
    Certificates for with SAN for sip.acme.com etc (Both certs are Client Server Auth Templates from Internal MS CA)(Trusted) on Edge
    Route  192.215.0.0 255.255.255.0 gateway (=firewall internal ip address)
    But when external user connects and we are tracing the connection we are getting below error and lync client is 
    not able to connect.
    TL_INFO(TF_CONNECTION) [1]0AD8.0C30::09/07/2014-08:11:13.091.0000000f
    (SIPStack,SIPAdminLog::WriteConnectionEvent:SIPAdminLog.cpp(454))[4150361027] $$begin_recordSeverity: information
    Text: TLS negotiation started
    Local-IP: 192.215.0.xxx:5061 (Edge IP)
    Peer-IP: 192.215.0.xxx:1835 (Firewall IP)
    Connection-ID: 0x1100
    Transport: TLS 
    $$end_record
    TL_ERROR(TF_CONNECTION) [0]0AD8.0638::09/07/2014-08:12:45.279.0000005d (SIPStack,SIPAdminLog::WriteConnectionEvent:SIPAdminLog.cpp(389))[4150360514] $$begin_record
    Severity: error
    Text: The client connection is not allowed on the internal edge of the Access Edge Server
    Peer-IP: 192.xxx.0.xxx:1322 (firewall ip)
    Transport: TLS
    Result-Code: 0xc3e93d6b SIPPROXY_E_CONNECTION_INTERNAL_FROM_CLIENT
    $$end_record

    Hi pshetty,
    Check the following blog to deploy your Edge Server:
    http://jsilverdrake.blogspot.se/2012/04/publishing-lync-with-forefront-tmg-part_25.html
    Note: Microsoft is providing this information as a convenience to you. The sites are not controlled by Microsoft. Microsoft cannot make any representations regarding the quality, safety, or suitability of any software or information found there. Please make
    sure that you completely understand the risk before retrieving any suggestions from the above link.
    You need to create persistent static routes on the internal interface to all internal networks.
    Regards,
    Lisa Zheng
    Lisa Zheng
    TechNet Community Support

  • How to Uninstall Yosemite?  System does not allow Erase the HD, nor does it allow re-install of original O/S Disc (10.6.7).  I want Mavericks or even Lion Back.   Thanks.

    How to Uninstall Yosemite?  System does not allow Erase the HD, nor does it allow re-install of original O/S Disc (10.6.7).  I want Mavericks or even Lion Back.   Thanks.

    Start with reinstalling Snow Leopard:
    Clean Install of Snow Leopard
    Be sure to make a backup first because the following procedure will erase
    the drive and everything on it.
         1. Boot the computer using the Snow Leopard Installer Disc or the Disc 1 that came
             with your computer.  Insert the disc into the optical drive and restart the computer.
             After the chime press and hold down the  "C" key.  Release the key when you see
             a small spinning gear appear below the dark gray Apple logo.
         2. After the installer loads select your language and click on the Continue
             button. When the menu bar appears select Disk Utility from the Utilities menu.
             After DU loads select the hard drive entry from the left side list (mfgr.'s ID and drive
             size.)  Click on the Partition tab in the DU main window.  Set the number of
             partitions to one (1) from the Partitions drop down menu, click on Options button
             and select GUID, click on OK, then set the format type to MacOS Extended
             (Journaled, if supported), then click on the Apply button.
         3. When the formatting has completed quit DU and return to the installer.  Proceed
             with the OS X installation and follow the directions included with the installer.
         4. When the installation has completed your computer will Restart into the Setup
             Assistant. After you finish Setup Assistant will complete the installation after which
             you will be running a fresh install of OS X.  You can now begin the update process
             by opening Software Update and installing all recommended updates to bring your
             installation current.
    Download and install Mac OS X 10.6.8 Update Combo v1.1 Access the App Store to download Mountain Lion or Yosemite. Mavericks is no longer available since the release of Yosemite. If you purchased Mountain Lion from the App Store, then you can redownload it via your Purchases page in App Store. If not, then you will need to purchase it from Apple;
    Purchase a redemption code at the Online Apple Store: OS X Mountain Lion. Mountain Lion is $19.99 plus tax. Use the code to redeem a download of Mountain Lion from the App Store. The file is quite large, over 4 GBs, so allow some time to download. It would be preferable to use Ethernet because it is nearly four times faster than wireless.

  • Field exit showing---not allowed to change cross client customizing

    hi all ,
    when im trying to activate field exit . Its showing---not allowed to change cross client customizing.
    how to correct that.
    thanks in advance.
    sg

    hi SG,
       first and foremost thing while using field exit is, ask your basis person to include the parameter abap/fieldexit = Y in your instance profile.
    Otherwise u can't use the field exits.
    Regards....
    Arun.
    Reward points if useful.

  • Error: Control parameters are not maintained in the current client

    Hi,
    We have recently installed IDES IS-H 6.04 - HEALTH CARE. In the SAP easy access menu when I go to Hospital>>Basic data administration>>Hospital structure>>Organizational Structure>>Organizational Unit>>Create it throws the following error message
    "Control parameters are not maintained in the current client"
    Any help on this would be greatly appreciated. I can't move ahead without getting to create an OU.
    Warm Regards,
    Prasoon Singh

    Hi Prasoon
    Are you starting from scratch?
    Was the client created after the activation of IS-H?
    For new installation I always recommend to activate the industry solution in client 000 and then to create the new clients as copy of 000.  It will bring you the configuration of the Institution 0001. If not, it's very hard to do all the customizing, specially the SD ones.
    It seams that you have nothing configured, try to do the copy, if not, probably an entry in transaction ON05 is missing.
    I hope it helps
    With best regards
    Matías

  • Siebel Charts gets generated but does not display in the Web client

    Siebel Chart is getting generated in NetChart4.6\Server\root\projects\Siebel.chart folder. However does not display on the Web client
    There is either no error displayed on the front end...
    Also note that Charts is installed on Windows environment and Siebel Server is installed on Linux Server

    Dear User,
    Thanks for using Oracle communities.
    Does this happens in dedicated client as well?
    We would need to have traffic captured when you are actually executing actions. The tools like fiddler etc will help here to track the traffic.
    I would suggest you open SR with MOS since it will need some analysis on network trace like fiddler. You can refer this thread in SR as well, so that once issue gets resolved thread will get updated with solution which will benefit others.
    Best Regards,
    Chetan

  • Apps that were deleted and now DO NOT appear on the iPad when you install them

    I am posting this because I didn't find it on a search and here is how I fixed it.  Also people shouldn't have to pay APPLE SUPPORT if Apple CAN'T fix the problem.
    Device: iPad 1
    Version: Current
    Scenerio:  Some apps were deleted as well as some magazine subscriptions in iBooks.  I went to the App Store and installed the apps again and what would happen is they appear on the screen with the loading/install bar, but then would disappear. When I would tried to sync the iPad I would see the apps on the iTunes screen, but they still don't appear on the iPad screen.  I tried restoring a back up and nothing happened.  No Restrictions were set.  I called Apple support and they couldn't fix it, on top of that they charged me $20 for tech support event though the problem was never fixed (thats ridiculous APPLE, especially the fact that you didn't fix my problem).
    ****prior to doing the RESET, figure out a way to MANUALLY back up all your Notes, Reminders, Contacts etc.  All music and photos are on the computer so thats saved.
    Fix:  I went to General Settings and select "Erased All Content and Settings".  This reset the iPad as if it were brand new.  I did the basic setup and was able to go to the App Store and see the "Purchased Apps".  I was able to RE-install them again without any problems.  I DID NOT RESTORE FROM A BACK UP.  I had emailed all my Notes and Reminders prior to doing this and manually keyed them all back in.

    If the apps will not sync to the iPad go to Settings>General>Restrictions and make sure that you did not restrict installing of apps.
    Go to your home screen on the iPad. Swipe to the right. Type in the name of one of the apps in the search field at the top and see if it appears in the search.

Maybe you are looking for