I enhanced structure CRMT_ACS_I_COM,how can I finish MTP?

Hi expers,I created a field catalog(SPRO,Customer Relationship Management->Basic Functions->Pricing->Define Settings for Pricing->Maintain Field Catalog),and then the system created a field in structure CRMT_ACS_I_COM.
When I executed MTP from the quality system to the production system,error occured.
Below are the messages:
Diagnosis Generation was terminated. There are still messages on the database that were saved with the current structure of the generated working set. These are examples of messaging BDocs with errors that were temporarily saved on the database. The generation can change the strucure of the working set. Further processing of the saved BDoc instances is no longer possible afterwards.
I checked SAP note  423096,but I'm still not sure how can I  handle these BDOCs.
Can anybody give me a detail instruction??
Thanks.
Jerry

Hi Jerry,
as described by the note you need to either reprocess those BDocs (probably you need to remove root causes of the errors first, why did those BDocs remain unprocessed?) or if you are sure, that the BDocs can be delted without any data loss you could delete them. Only if there are no pending BDocs the generation of the structure will be possible.
Best Regards,
Michael

Similar Messages

  • HT1925 When I try to uninstall apple updater I get a message that says " The feature you are trying to use is on a network resource that is unavailable." I dont understand this. How can I finish uninstalling the apple update program?

    When I try to uninstall apple updater I get a message that says " The feature you are trying to use is on a network resource that is unavailable." I dont understand this. How can I finish uninstalling the apple update program?

    (1) Download the Windows Installer CleanUp utility installer file (msicuu2.exe) from the following Major Geeks page (use one of the links under the "DOWNLOAD LOCATIONS" thingy on the Major Geeks page):
    http://majorgeeks.com/download.php?det=4459
    (2) Doubleclick the msicuu2.exe file and follow the prompts to install the Windows Installer CleanUp utility. (If you're on a Windows Vista or Windows 7 system and you get a Code 800A0046 error message when doubleclicking the msicuu2.exe file, try instead right-clicking on the msicuu2.exe file and selecting "Run as administrator".)
    (3) In your Start menu click All Programs and then click Windows Install Clean Up. The Windows Installer CleanUp utility window appears, listing software that is currently installed on your computer.
    (4) In the list of programs that appears in CleanUp, select any Apple Software Update entries and click "Remove", as per the following screenshot:
    (5) Quit out of CleanUp, restart the PC and try another iTunes install using an iTunesSetup.exe (or iTunes64Setup.exe) downloaded from the Apple Website:
    http://www.apple.com/itunes/download/
    Does it go through properly this time?

  • I'm importing more than 1800 photos, and it got stuck with 382 photos left to be imported. How can I finish the import completely?

    I'm importing more than 1800 photos, and it got stuck with 382 photos left to be imported. How can I finish the import completely?

    What version of iPhoto?
    Are these photos different in any way? Black and White, for instance?
    Regards
    TD

  • I have some unfinished projects in an old iMovie format. How can I finish them using the new iMovie? When I open them it says it doesn't support powerPC format

    I have some unfinished project in an old iMovie format. If I try to import them to the new iMovie to finish them it says I can't because it does not support powerPC formats. How can I save them???

    Right click on the icon and choose "Show Package Contents".
    Drill down through the folders to find your original source clips (probably .dv files). Drag them to a new Desktop folder to import them into iMovie.

  • Disk Utilities can not repair my disk - invalid node structure. How can I repair my disk? I have restarted with the CD.

    Hi,
    How can I repair my hard disk. Computer Starts up and then shuts down.
    I've started up with the CD and disk utilities can not fix the disk, invalid node error.
    How can I fix my disk?
    I need to get to the file on the hard disk.
    Thanks
    Peter

    With Disk Warrior can I start with a CD/DVD and get at the files on the hard disk?
    With apple disk utilites I can not see my files that are on the hard disk.
    If I could get at my files I could back them up and reformat my hard disk.

  • How can I finish the last step in the 2 Day Plus Appl Express Developer

    Hi,
    I try to follow doing the steps the Chapter 8 How to Upload and Download Files in an Application of the 2 Day Plus Application Express Developer, after I had finished
    the input to Oracel XE (all steps in this chapter and the procedure in 'Downloading Documents from the Custom Table'), I open the "run Page 1 icon" , the procedure seems no running and cause the error 'Page cannot be found'.
    I doubt the type is wrong or correct "#OWNER#.download_my_file?p_file=#ID#".
    Are there any one can tell me ?
    Regards,
    Simon Wong
    Message was edited by:
    user505611

    Simon,
    here is the full example. Please follow the steps closely. Input exactly what is written in bold characters (without the line numbers though).
    Here we go (in a dos command box):
    C:\WINDOWS\system32>sqlplus system@xe
    SQL*Plus: Release 10.2.0.1.0 - Production on Sun Aug 13 12:48:24 2006
    Copyright (c) 1982, 2005, Oracle.  All rights reserved.
    Connected to:
    Oracle Database 10g Express Edition Release 10.2.0.1.0 - Production
    *** Show more detailed error information in the browser ***
    SQL> exec dbms_epg.set_dad_attribute('APEX', 'error-style', 'DebugStyle');
    PL/SQL procedure successfully completed.Now try to run the following url in the browser: http://127.0.0.1:8080/apex/hr.hello_world
    This will give you the following error message:
    hr.hello_world: PROCEDURE DOESN'T EXIST
      DAD name: apex
      PROCEDURE  : hr.hello_world
      URL        : http://XDB HTTP Server:8080/apex/hr.hello_world
      PARAMETERS :
      ===========Now continue with the sqlplus - session :
    *** Switch session to user HR to create procedure hello world ***
    SQL> alter session set current_schema=HR;
    Session altered.
    SQL> CREATE OR REPLACE procedure hello_world
    2 is
    3 begin
    4 htp.p('hello world');
    5 end;
    6 /
    Procedure created.
    *** check to see whether the procedure was created properly ***
    SQL>   desc hr.hello_world;
    PROCEDURE hr.hello_world
    *** grant execute on procedure to account ANONYMOUS ***
    SQL> begin
    2 execute immediate 'grant execute on hello_world to anonymous';
    3 end;
    4 /
    PL/SQL procedure successfully completed.
    *** Switch to user FLOWS_020100 ***
    SQL> alter session set current_schema=FLOWS_020100;
    Session altered.
    *** for testing, disable the security mechanism ***
    SQL> CREATE OR REPLACE function wwv_flow_epg_include_mod_local(
    2 procedure_name in varchar2)
    3 return boolean
    4 is
    5 begin
    6 return true;
    7 end;
    8 /
    Function created.Running the url again should work now, the security mechanism is disabled.
    If this works, we can enable the security mechanism again:
    *** now create the function again, checking for the proper procedure name ***
    SQL> CREATE OR REPLACE function wwv_flow_epg_include_mod_local(
    2 procedure_name in varchar2)
    3 return boolean
    4 is
    5 begin
    6 if upper(procedure_name) in ('HR.HELLO_WORLD') then
    7 return true;
    8 else
    9 return false;
    10 end if;
    11 end;
    12 /
    Function created.
    *** remove the debugging information ***
    SQL> exec dbms_epg.delete_dad_attribute('APEX', 'error-style')
    PL/SQL procedure successfully completed.You don't need to restart any services inbetween the outlined steps and you shouldn't have to change any security settings in your browser. It is all done in the database.
    If it still doesn't work, please post your error messages from the browser here.
    Regards,
    ~Dietmar.

  • LabVIEW 7.1: menu driven event structure question: How can I cause an event case to fire when either a boolean object or a menu item is selected without polling?

    I am using an event structure to eliminate the overhead associated with polling from the GUI. I have build cases associated with each front panel button, and would like to programmatically generate a menu for the vi, adding each selection from the menu to its associated case. However adding a "user event" to a case that is already associated with a front panel button does not seem to allow the selection of the associated user event. Do I have to register each option on the custom menu? Should I programmatically generate the menu and use the same array to register the choices? Are there any examples out there
    that would help me?
    Thanks!!!!
    Steve

    Hello:
    I visited the forum for the purpose of getting some ideas on user
    events architecture. Well, I have to finished standalone working
    modular VI codes one which works as a standalone local control and
    one  which works on a remote communications mode. Now these 
    codes in themselves has event driven capabilities my problem is I
    needed to create another topmost layer VI that will be capable of
    switching between these remote and local operating mode - which I was
    thinking also to be event driven. This maybe a poor idea but I tried
    anyway. Is the User Event loop can be nested? Meaning an event within
    an event thing?
    Regards,
    Berns B.
    Bernardino Jerez Buenaobra
    Senior Test and Systems Development Engineer
    Test and Systems Development Group
    Integrated Microelectronics Inc.- Philippines
    Telephone:+632772-4941-43
    Fax/Data: +632772-4944
    URL: http://www.imiphil.com/our_location.html
    email: [email protected]

  • TS1702 Unable to download application? How can I finish updating my apps

    I finished downloading iTunes files, but still can't update apps on apple store, what else can I do?

    1. Check iTunes and see if you have a pending/stalled download e.g. Podcast, Books, Music, Movies or iTune U. Finish off the download and you should be able to update.
    2. Check for Updates (bottom right) in iTune. When download is completed, sync to iPad.
    http://i1224.photobucket.com/albums/ee374/Diavonex/8afe4ddede4f4fabb4e819174239d df4.jpg

  • I just made an new Itunes account and cannot get past the accepting terms and conditons page to use the Itunes store how can i finish and redeem my code

    I cannot use Itunes store to redeem my gift card because it says that my apple id has not been used in the Itunes store yet.  When I click review i then clicked continue and everytime that I agree to the terms and policies on the second page it just sends me back to the top of the page and doesnt allow me to go any farther in the itunes store process any idea of how to get this to work?

    Have you done as the message tells you and contacted iTunes Support ? If not (these are user-to-user forums) :
    - go to http://www.apple.com/support/itunes/ww
    - click on your country's flag
    - click on the Contact Support at the bottom of the left-hand column
    - click on Contact iTunes Store Support on the right-hand side of the page
    - then Purchases, Billing & Redemption

  • How can I finish installing Digital Editions 1.7.2, and save my library and annotations?

    In order to migrate my library from my old PC, the first thing I did was to install Digital Editions version 1.7.2  on my new PC. I couldn't install version 3 right away because then I'd lose thousands of annotations. I have to figure out what additional steps are needed to complete the migration and in what order.
    I will copy all files in the \My Digital Editions directory from the old PC to the new PC. I also have to be sure the new PC can find my PDF files and notes in the directories on my new PC. This requires editing the MANIFEST XML file to change  the PDF directory locations. I hope that's the only XML editing I need to do, since I don't know XML.
    I understand from another user (sjpt) that I may need to "deregister ADE on the new machine (ctrl-shift-D) and then reregister it." That may be due to Digital Rights Management. So I will activate my new computer with Digital Editions using an ID. I expect to do that step last, since I have just a few books with DRM.
    I plan to perform these steps in the order I've described them.  I think I've identified all the steps needed to get Digital Editions 1.7.2 working. I'd welcome advice from other users who have experience in migrating their libraries. Thanks
    P.S. Documentation on Digital Editions seems pretty minimal, so I'm wondering if Adobe is phasing out the product.

    You can start by asking in the Digital Editions forum, Adobe Digital Editions. This is the Reader one.

  • When backing up iTunes, how can I finish out a CD that's not quite full?

    I have a CD that still has about 200mb of room, but iTines wants me to insert a completely blank one. Is there a way to get it to finish up the one that is not quite full?
    Also, while I'm here, I'd really like to burn the files onto DVDs since they hold more info, but it keeps telling me the disc is not blank when it most definitely is. Is there a way to resolve this?

    iTunes doesn't offer the same burning features as programs like Nero, etc. If you want to add another session to already-burned CDs, assuming the discs haven't been "closed" already by iTunes, then I would simply recommend using another burning application.

  • How can I finish downloading a gifted album?

    A few months ago I gifted an album to my sister. She was able to download the first song, but none of the other songs downloaded. She has used her account without trouble to download tv shows, other music, etc... When I use the "check for purchases" option I am given a message stating that the store is currently unavailable and to try again later. Yet, as I stated earlier, she is still able to download new music with no difficulty. Does anybody have any ideas about how I should proceed?
    p.s. I did gift the entire album - I checked in my purchase history
    p.p.s. She no longer has the email that notified her of the gift.
    Thanks!
    Powerbook G4   Mac OS X (10.3.9)  

    See if this helps:
    http://www.apple.com/support/itunes/store/download/
    Regards,
    Colin R.

  • I have a VI with a while loop controlled by "stop" button. How can I finish the running of this VI in a another VI programmablly.

    I mean I want to control the "start" and "stop"
    of a VI with another VI.
    Thanks

    1... Change your slave VI to stop on the button OR a global boolean variable.
    2... When your slave VI does stop, set the global variable to FALSE (ready for next time).
    3... Set the global to TRUE from the master controlling VI, on button click, or whatever is supposed to stop the slave.
    Steve Bird
    Culverson Software - Elegant software that is a pleasure to use.
    Culverson.com
    Blog for (mostly LabVIEW) programmers: Tips And Tricks

  • Update stuck at 35%, how can I finish the update

    Anyone else getting stuck at 35%? It's been there for weeks!

    Hi
    Quick questions :
    1. When last it was working fine?
    2. What were the last changes you applied to the muse file?
    3. Are you getting any error?
    4. Could you please test if you are able to publish with a new site to business catalyst? Also check if you are able to export the html to a local folder on your computer.
    Looking forward to your reply, along with the same please share screenshot demonstrating the issue you facing.

  • How can I pass data generated in a SubVI inside a Case Structure out of the Case Structure?

    Hello,
    I am using a USB 2701 to control a heater.  I have three SubVIs that are all working properly on their own.  I'd like to use an Enum to select which of the SubVIs is running at a given time.  The problem is that no data is passing out of the case structure.  How can I pass the temperatures and heater outputs acquired by the SubVIs to the main VI?  I've attached my some of my code below.  I can't attach more than 3 files, but you can see how the main VI is configured.  Like I said, the SubVIs are working individually, so you shouldn't really need to look at them.
    Thank you,
    CJones581
    Attachments:
    RampHeater6-21-07.vi ‏305 KB
    69_Heater_Case.vi ‏23 KB
    HeaterTCD6-21-07.vi ‏210 KB

    CJones,
    You might check a couple of things.
    Your HeaterTCD... VI has a While loop with a stop button condition.  HeaterTCD pass out values only when it finishes running.  If it doesn't pop open the front panel (which usually doesn't happen when running a SubVI) you could run into a stuck loop because you don't have access to the Stop button.  This could appear in the form of no data being passed out (because the SubVI never stops running).  The primary VI opens the HeaterTCD VI, starts it, and waits for the VI to finish and pass final values .
    Secondary note: Unless you want your SubVI panel (which probably isn't open when running the main VI) to update continuously, consider moving your Temperature Graph and Temperature oC indicators outside the while loop.  Pass final values to them via a tunnel, since the main VI will only read their values after the loop finishes running, anyway.
    It might help to add error management to HeaterTCD like you have for RampHeater.  If you connect error lines with Error Outs to your main VI, that will help tell if there is an error somewhere that is preventing info output.
    RampHeater SubVI has the same issue with the stop button.  It is also probably getting stuck in the While loop waiting for a manual push of that SubVI's Stop button.
    An easy way to test this would be to set up a logic circuit so that when the While loop iteration counter reaches a certain number, it registers True and sends it to the conditional.  I know this isn't what you want to do long-term, but if that lets your SubVI return outputs it means that the SubVI was just never stopping.
    Hope that helps.
    David C, Applications Engineering
    David C
    Applications Engineering

Maybe you are looking for

  • Usb not recognized by windows

    Hello!! First of all, excuse me for my bad english, i'm really french! I've got a big problem with my ipod shuffle! When I want to connect it to my pc, windows tell me that he doesnt recognize the "périphérique" USB. I've tried many solutions that I'

  • Can I replace my new macbook I got on Tuesday because of a scratch?

    I know Apple has a 14 day return policy, but my grandma bought this macbook for me to start college off. Anyways I found a big scratch about one inch in length, on the bottom of my macbook. This is the mid-2014, 13.3 inch macbook pro retina display w

  • Strategy plan: deletion of shortest cycle & determination of call horizon

    Dear colleagues, I'm facing a weird situation on a strategy plan: Initially I had following packages assigned in the task list: 1, 3 & 12 months. There have also been calls for the 1 month package. In the meanwhile I have deleted the 1 month package

  • Store image from a "for" structure

    Hey everybody ! For a project, i need to take four different images and compare them later. So I've made a structure "for" to enable me to change parameters for each image. My problem is I don't really understand the way "autoindexation" works. When

  • Event for browse button for fileupload control

    I'm creating an application, where I need to check which file is choosen for the file-upload. Depending on the file upload, 2 other fields will be filled in because the filename is concerning a certain standard. Can I do this with javascript for exam