Logistic minimum from BAPI_PO_CREATE

Hi experst.
I've got problem.
As we know when in ME21 we want to create PO and if some supplier has got minimum logistic, ME21 can throw specified message.
Problem is, that I am creating PO from BAPI_PO_CREATE, so how can I get same info in FM.?
Thanks as usuall.
Danielek.

Yes Soumyaprakash .
Problem is, that FM will create PO ...
Edited by: Danielek on Sep 7, 2009 3:33 PM

Similar Messages

  • Return the Minimum from two tables in a Union

    Hello
    I have written a simple union query from our dialler service which has 2 tables, in inbound and an outbound table. A lead can show in any table depending how they came through to an agent and they can also show in both tables.  I need to return the
    the first instance in the calltime column from both tables but also return all the other information.  I'm expecting multiple entries for the minimum calltime which is fine, I will be using a lookup in excel to extract the time.  Just to make matters
    a little more difficult i'm having to use the OPENQUERY function because its within MYSQL.
    SELECT O.Lead, O.DataList, O.[CallTime] AS 'CallDate', O.[Status], O.Uniqueid, O.Campaign, O.number, O.Advisor, 'Outbound' AS CallType
    FROM OPENQUERY (dialler, 'SELECT * FROM dialler_outbound_data') O
    WHERE O.CallTime >= '2014-12-01'
    UNION
    SELECT I.Lead, I.DataList, [CallTime] AS 'CallDate', I.[Status], I.Uniqueid, I.Campaign, I.Number, I.Advisor, 'Inbound' AS CallType
    FROM OPENQUERY (dialler, 'SELECT * FROM dialler_inbound_data') I
    WHERE I.CallTime >= '2014-12-01'
    Can anyone help please?
    Many Thanks
    Rich

    Hi Rich,
    The use of the ROW_NUMBER function as mentioned and temp tables should do the trick.  See the code below...hope this helps.
    SELECT ROW_NUMBER() OVER(ORDER BY O.[CallTime]) as 'Occurrance'
    ,O.Lead
    ,O.DataList
    ,O.[CallTime] AS 'CallDate'
    ,O.[Status]
    ,O.Uniqueid
    ,O.Campaign
    ,O.number
    ,O.Advisor
    ,'Outbound' AS CallType
    INTO #TEMP1
    FROM OPENQUERY (dialler, 'SELECT * FROM dialler_outbound_data') O
    WHERE O.CallTime >= '2014-12-01'
    SELECT ROW_NUMBER() OVER(ORDER BY I.[CallTime]) as 'Occurrance'
    ,I.Lead
    ,I.DataList
    ,[CallTime] AS 'CallDate'
    ,I.[Status]
    ,I.Uniqueid
    ,I.Campaign
    ,I.Number
    ,I.Advisor
    ,'Inbound' AS CallType
    INTO #TEMP2
    FROM OPENQUERY (dialler, 'SELECT * FROM dialler_inbound_data') I
    WHERE I.CallTime >= '2014-12-01'
    INSERT INTO #FINAL
    SELECT * FROM #TEMP1
    UNION
    SELECT * FROM #TEMP2
    SELECT * FROM #FINAL AS F WHERE F.Occurrance = 1
    I'm new to this so if this helps, I could use your vote. 
    Thanks,
     Zach

  • Return Minimum from Nested Table and Include

    Hello -
    Complete noob to the SQL world but trying :)
    I know I can do this in multiple tables, but trying to do it all in one pull...I have data that is counting the number of employees by ID number across several years....(2011 - 2014) - I am using a nested Query to get my origin info, and trying to replicate
    the minimum initial year across each row in the return......
    I am returning minimum per year found, when what I want is minimum across all years for each account
    My data looks as such :
    Initial   
    YR
    candidate_account_num
    segment
    sector
    subsector
    NumEngage
    2011
    2011     
    000001987
    MM
    West  
                             1
    2012
    2012
    000001987
    MM
    West  
                             6
    2013
    2013
    000001987
    MM
    West  
                             1
    What I want it to show is :
    Initial   
    YR
    candidate_account_num
    segment
    sector
    subsector
    NumEngage
    2011
    2011     
    000001987
    MM
    West  
                             1
    2011
    2012
    000001987
    MM
    West  
                             6
    2011
    2013
    000001987
    MM
    West  
                             1
    2011 is the lowest year for that account num of the three instances....
    Thanks so much for any insight....
    Select
    min
    (A.YR)
    as Initial
    ,A.YR
    ,A.candidate_account_num
    ,A.segment
    ,A.sector
    ,A.subsector
    ,A.NumEngage
    From
    (select
    year(producing_date)
    as YR
    ,candidate_account_num
    ,segment
    ,sector
    ,subsector
    ,count(soy_id_nr)
    as NumEngage
    from csinternalstaging.dbo.tmp_Producingsolutions
    where producing_date
    >='1/1/2011'
    and segment not
    in ('INTL')
    group by
    year(producing_date)
    ,candidate_account_num
    ,segment
    ,sector
    ,subsector
    A
    group
    by
    YR
    ,candidate_account_num
    ,segment
    ,sector
    ,subsector
    ,NumEngage
    order by
    candidate_account_num,
    yr

    select
           Min(year(producing_date)) OVER(PARTITION
    BYcandidate_account_num,
    segment, sector,
    subsector) as
    Initial
               ,year(producing_date)asYR
    ,candidate_account_num
    ,segment
    ,sector
    ,subsector
    ,count(soy_id_nr)
    as NumEngage
    from csinternalstaging.dbo.tmp_Producingsolutions
    where producing_date
    >='1/1/2011'
    and segment not
    in ('INTL')
    group by
    year(producing_date)
    ,candidate_account_num
    ,segment
    ,sector
    ,subsector

  • Set whitebalance to a minimum, from inside ACR itself (ie preset)

    Hi there
    I'm a web/mobile developer but have never scripted in Photoshop much... and I don't want to learn what I don't have to
    What I want: when i'm in Bridge -> ACR going through 500 images, I use a preset to set things (ie. get an image style). Now, I find that some of my cameras often have a white balance that is too cool... so, I want a "preset" (or script? or whatever I can click / batch / use from ACR or Bridge easily) that can leave the white balance as it is, UNLESS it is under some minimum I specify (ie. 4400), in which case it is raised to that minimum.
    I know it probably sounds weird but it would save me a lotta time..
    thanks for any help

    I had an even better idea: adjust the minimum according to the time of day. Example: 12noon photo should have minimum white-balance of 4900, a photo taking at 8pm should have a minimum white balance of 5500.
    OK just point me in the write direction and i'll start

  • Migrate users from FND_USER to OID

    We are planning to authenticate Oracle apps users against OID and have installed a 9iAS Portal 1.0.2.2.2 environment with 11.5.7 and OID for this purpose.
    We need to migrate user information (username and password as a minimum) from FND_USER to OID. Is there a recommended way of doing this? Can the encrypted password in FND_USER be moved directly across to OID?
    Any help much appreciated.

    If your source and target servers can have access to each other use dipassistant utility to migrate all users with passwords to new server.
    Use this article for details.
    http://www.oracle.com/technology/obe/obe_as_10g/im/ads_import/import.htm

  • DreamColor Monitor from PC via VGA: Color-Space & Settings?

    Context:
    Premiere CC on a WIndows 7 laptop with an external DreamColor monitor connected via VGA port (for convenience rather than bit depth).
    What color space is appropriate in the DreamColor settings, i.e. what is the VGA likely to be supplying?   DreamColor's config options are: [ Full | AdobeRGB | Rec.601 | sRGB | Rec.709 | DCI P3 Emulation ].  I'm guessing sRGB, but is that reasonable e.g. is it the Adobe kind?

    Several questions spring to mind ... first, are you calibrating this with an actual "real" calibration tool, such as the i1Display units, anything? Because ... if the answer is no ... well, the output isn't set to any particular "there" before you even start, is it?
    Next ... what are you going to be outputting for? B-cast TV? Critical web use? Your own YouTube/Vimeo channel for the heck of it? Family records? Whatever is going to be the "heaviest" output (meaning demands on color space) sets the minimum from what your choices can offer. Critical web work or such, you would either want the Adobe RGB or the Rec.709 I would think. For just fun stuff, the sRGB would work ok.
    Fwiw ... Adobe RGB is a wider color space than "standard" sRGB. Rec.601 & Rec.709 are "broadcast" standards that include specialized base/gain/gamma settings. Rec.709 is the newer and far more common one of the two ... and it sets "black" as at value (in 8-bit terms) of 16 and "white" at 235. Data outside those values are used for technical purposes within the "system". Some modern video cams record in Rec.709, btw.

  • Logistic extraction 2lis_11_vahdr,2lis_11_vaitm

    Hi
    our logistic extractors are not turned active in R3 development from some time.
    bw development is also not loading Logistic information from last 6 months
    but since last couple weeks new Sales orders and billing documents are getting created with new documents.
    so i refered sdn and followed the steps.
    1. delete setup tables in transaction LBWG
    2. FILL up setup tables using  SBIW -->Settings for Application-Specific Data Sources ->Logistics --> Managing Extract Structures->Initialization -->Filling in the Setup Table --> choose Application -- >Setup of Statistical Data-->SD Sales order perform setup
    3. this filled up setup tables....
    now if i do rsa3 and enter 2lis_11_vaitm i still cant see the records that were created in last month
    i can only see records that are created last year and year before....
    question--   i can still see the records in transaction VA03
    how do i solve this??

    First of all delete the setup table if already filled for application 11 and if there is entry in LBWQ delte that also you will get something like MCEX11 in LBWQ and corresponding entries in RSA7 if any exist. Now go to LBWE and acitvate the data sources you want in your case 2lis_11_vahdr,2lis_11_vaitm. Now fill the setup table for SD-Sales Orders - Perform Setup.
    After filling of setup table check the entries in RSA3, also you need to run init infopackage to get the deltas in LBWQ and then in RSA7. For pulling data from LBWQ to RSA7 you have to schedule the job using job control in LBWE.
    Hope you will get the desired results.
    Assign point if useful.

  • 2 Questions from an amateur crystal developer...

    Post Author: robert_macnair
    CA Forum: Formula
    Hi all,
    Ive got a couple of questions as im just starting out with Crystal.
    I have a dataset returning Investors, their commitment amounts, the tax code and their contacts. My problem is that for each contact, a new row is created in the DB, the one investor will appear 4 times if they have 4 contacts. e.g.
    Closing Date: 01 Sep 2007
    Investor 1           £1,000,000           1234          Contact 1
    Investor 1           £1,000,000           1234          Contact 2
    Investor 1           £1,000,000           1234          Contact 3
    Investor 1           £1,000,000           1234          Contact 4
    What we need to do is get all the values on the one line, with the contact concatenated together e.g.
    Closing Date: 01 Sep 2007
    Investor 1           £1,000,000           1234          Contact 1, Contact 2, Contact 3 and Contact 4
    Please notice that the contacts are first separated by comma's, and then for the last one it is an 'and'
    How would this be done in a formula? I am currently grouping in Closing Date, but can group on investor as there are multiple investors per closing date, and im sure crystal needs to know which investor to use to concatenate the contacts.
    My second question is how do I summarize the commitment values. As their are multiple rows returned for each investor (due to the contacts), it sums up the same value multiple times, even when I want it just summed once. For example:
    Investor 1           £1,000,000           1234          Contact 1
    Investor 1           £1,000,000           1234          Contact 2
    Investor 2           £3,000,000           1234          Contact 1
    Investor 3           £2,500,000           1234          Contact 1
    The sum of this is currently £4,000,000, but i want it to be £3,000,000 as Investor 1 only has 1 commitment amount, not 2.
    Hope all of this makes sense, if it doesnt i can clarify further.
    Thanks in advance.
    Rob.

    Post Author: bettername
    CA Forum: Formula
    Huzzah for lazy!  You could have assigned the output of that formula to a variable, and then just displayed the variable in the group footer... saves a bit of processing time/memory I suppose, but we've all got super-quick PC's, right?
    just change end of the existing formula in the group header to:
    ...groupcounter:=groupcounter+1;
    stringvar thegrouptext:=grouptextsuffix" Closing Date";
    and in the group footer have simply:
    whileprintingrecords;
    stringvar thegrouptext
    Anyways... that last problem.  Yeah, it's calculating a grand total so you can display it at the end of the report.  If you just want the total for the group, place the field into the group footer, or just add in a summary/formula to calculate the minimum from the group:
    minimum(,)
    Actually, now I've tought for a second, if you stuck that on the end of the existing formula, that'd work - it'd add to the grand total, then display the group total. Unsuppress it if it's already suppressed!

  • BAPI_PO_CREATE to BAPI_PO_CREATE1; how to?

    Hello gurus,
    I'm working on an old custom interface FM (on a backend system) which substancially acts as a "wrapper" for the BAPI_PO_CREATE.
    In details, the code processes an input, does some check on some conditions, then launch the BAPI_PO_CREATE fm in order to create a Purchase order. This is used to interface a third party system with SAP backends.
    Now, the aim is to substitute the call to the BAPI_PO_CREATE (obsolete) with BAPI_PO_CREATE1. As far as I've seen, the latter allows to manage more data and also structures and types used are different from the older one.
    So I wonder and ask if there's a sort of howto or standard FM to manage data conversion in order to successfully swap the call from BAPI_PO_CREATE with a newer call of BAPI_PO_CREATE1.
    I searched a bit on the forum and web but didn't find anything related to this task
    Thanks in advance for your help.

    Hello there
    sorry for the late, I had a previous task to work to so that I had the chance to test your purposed solution only on friday..
    I have to say, Martin's suggestion goes quite fine; I used the standard EHSWA_112_PO_BAPI_CONVERT (curiosity: what are the EHSWA* FM for?) to convert some input structures from BAPI_PO_CREATE to BAPI_PO_CREATE1.
    Some other structures use the same data type on both BAPI so they don't need - apparently - specific conversion.
    And here comes the trouble: while older BAPI_PO_CREATE worked before, the newly interfaced BAPI_PO_CREATE1 doesn't work, as expected, because some little adjustments need to be done.
    The one I'm facing now is how to adapt the EXTENSIONIN structure, which contains custom field values. I noticed in debug the routine that moves extensionin to the data structure of the bapi looks for the structure name BAPI_TE_MEPOHEADER, which is different from the structure used in the older bapi (BAPI_TE_PO_HEADER).
    So, a preliminary task is to substitute in the EXTENSIONIN table the structure names, in order to adapt them to the new BAPI.
    Tried in debug, but seems there are other problems and... since I don't know specifically how this extensionin structure works and what's the correct way of converting them for the new BAPI, is there any guide/document that could help me understanding how mapping is done ? Or the only way is to debug the stuff?
    Thanks in advance for yout help

  • Minimum of a char

    Hi All
    How can I get the miminum of a characteristic in a query eg: minimum from a list of item # (4702, 4703 ...)
    Thanks

    If the Lag values are always going to be a number, then you can try the following:
    Create a formula variable based on Lag (so that the char values become numbers). The use this in a simple Formula (like multiply by 1) . Then based on this KF, create a condition for say Bottom N (where N=1).
    Have not tried this myself, but hope it helps....
    Message was edited by: Bhanu Gupta

  • Vendor Down Payment Request on WBS (F-47)

    Dear Fellows:
    I have came across a problem that while creating a Vendor Down Payment request (T.code: F-47) on WBS, my system is not stoping me over budget exhaust. I have Budget of 100  and i create request for 101, system allows it and post the document.
    Vice Versa if i create a Vendor Down Payment request over Commitment iten, then system check the budget and generates message.
    any good solution to it would highly be appreciable.
    Regards.

    Hi,
    The budget availability check is done only against the assigned values and
    Following entried does not contribute to the Assigned value
        V: Value type not relevant (<> Act./Plan/Stat.Act./Stat.Plan/Commt)
        D: Delivery
        S: Settlement to object with no budget control
        R: Revenue cost element
        C: Cost element is exempt cost element
        M: Minimum from actual + commitment and plan per order value update
        P: Plan value is not on apportioned order / network
        B: Plan Costing Single Position
        S: Funds Commitment in Balance
    So the down payment is not covered for the calculation of the assigned value.
    Hence no check is carried out for the Availability check.
    hope its useful.
    Reward points if useful.
    Thanks..

  • Battery Replacement Zen Stone Plus

    Li-Poly batteries last approximately 3 years after manufacturing (charged or not). So if your Zen Stone ceases to function and it has not been abused, it'ss likely a dead ? no longer can be charged - battery.
    I purchased a battery (actually 3 to meet their $ minimum) from allbattery.com? Polymer Li-Ion Battery 3.7V 240mAh. Order it with NO PCB option. $3.99 each plus shipping. After they arri'ved, I note the brand name is ?Tenergy. Original battery specs from Creative are 280mAh, a nominal difference. Specifications I didn?t have were charging requirements, but I?m happy to report they recharge seemingly identical from the Creative OEM batteries.
    <table cellspacing="0" cellpadding="0[/img]<tr><td>This battery replacement takes some skill and is, obviously at your own risk. Suggest examining ribbon cable prior to ordering batteries. My unit is a Zen Stone Plus with Speaker.
    </td></tr></table>?
    BATTERY REPLACEMENT:
    Run Exacto knife or small utility knife around sides and end NOT including end opposite display (or you will cut through a ribbon cable) penetrating no more than 0.075 (/6th inch) to split case of Zen Stone. It may be necessary to insert small jeweler?s screwdriver directly at corners to gently pry, releasing positioning studs. If you?re lucky, you won?t break off studs, but if you do, don?t worry they are mostly for alignment purposes.
    Lift off control pad (volume up down, fast forward, reverse, center select button) Remove two Phillips screws holding pc board to bottom case and lift edge of pc board with small screwdriver under USB port.
    Hinge pc board up with headphone jack on top and lift up battery with screwdriver.
    Examine ribbon cable, which is folded around control board and sandwiched between control board and pc mother board. If cable is torn (or cut) you?ll probably have to throw Zen Stone in trash as this cable may be impossible to repair.
    Remove white tape from top of battery and unsolder + and ? connectors
    Tint ribbon cables with solder (I used a little solder paste to get solder to stick), the solder in wires, paying attention to + and ? terminals. Be very careful not to touch the ribbon cables together or solder on a metal surface.
    Cut a piece of electrician tape and wrap around ribbon cables and soldering joints.
    You can test your Zen Stone prior to assembly.
    Reassemble in reverse order using a pin, tooth pick or small paper clip and clear silicone caulk around edges. Wrap elastics around unit holding upper and lower case together while caulk dries.
    <span style="font-family: "Times New Roman"; font-size: 2pt; mso-fareast-font-family: 'Times New Roman'; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-SA;">?
    <span style="font-family: "Times New Roman"; font-size: 2pt; mso-fareast-font-family: 'Times New Roman'; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-SA;">?
    <span style="font-family: "Times New Roman"; font-size: 2pt; mso-fareast-font-family: 'Times New Roman'; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-SA;">Sorry this board does not support pictures

    &Hi,
    Thanks for creating this guide. This forum does support pictures, click on Insert/edit image to insert an image. Take note that only urls are accepted so images have to be hosted on an external image hosting site like tinypic. Oh and welcome to the Creative Forums.

  • ExecTask - java.io.EOFException: Unexpected end of ZLIB input stream

    BOXI 3.1 FP 7 deployed on AIX environment with all the lang packs. Trying to install SP2 on AIX, when it comes to deploying the war files, AnalyticalReporting, the install encounters error. This error appears to be with size of the war file.  Anyone came across this issue?
    2010-03-30 10:10:00,633   Target - Target "expand_and_package" started.
    2010-03-30 10:10:00,634   Delete - Deleting directory /export/home/Business_Objects/global/deployment/workdir/tomcat55/resources/web/AnalyticalReporting
    2010-03-30 10:10:00,798    Mkdir - Created dir: /export/home/Business_Objects/global/deployment/workdir/tomcat55/resources/web/AnalyticalReporting
    2010-03-30 10:10:00,828    Mkdir - Created dir: /export/home/Business_Objects/global/deployment/workdir/tomcat55/resources/AnalyticalReporting
    2010-03-30 10:19:32,016 *ExecTask - java.io.EOFException: Unexpected end of ZLIB input stream
    2010-03-30 10:19:32,016 ExecTask -      at java.util.zip.InflaterInputStream.fill(InflaterInputStream.java(Compiled Code))
    2010-03-30 10:19:32,017 ExecTask -      at java.util.zip.InflaterInputStream.read(InflaterInputStream.java(Compiled Code))
    2010-03-30 10:19:32,017 ExecTask -      at java.util.zip.ZipInputStream.read(ZipInputStream.java(Compiled Code))
    2010-03-30 10:19:32,017 ExecTask -      at sun.tools.jar.Main.extractFile(Main.java(Compiled Code))
    2010-03-30 10:19:32,017 ExecTask -      at sun.tools.jar.Main.extract(Main.java(Compiled Code))
    2010-03-30 10:19:32,025 ExecTask -      at sun.tools.jar.Main.run(Main.java:228)
    2010-03-30 10:19:32,025 ExecTask -      at sun.tools.jar.Main.main(Main.java:944)
    2010-03-30 10:19:32,051 ExecTask - Result: 1
    2010-03-30 10:19:32,162     Echo - Adding 'webiApplet/**' to the content to bundle with AnalyticalReporting's war file
    2010-03-30 10:19:32,302      Jar - error while reading original manifest: Error opening zip file /export/home/Business_Objects/global/deployment/workdir/tomc
    at55/application/AnalyticalReporting.war
    2010-03-30 10:19:35,354      Jar - Building jar: /export/home/Business_Objects/global/deployment/workdir/tomcat55/application/AnalyticalReporting.war
    2010-03-30 10:20:29,036      Zip - Building zip: /export/home/Business_Objects/global/deployment/workdir/tomcat55/resources/AnalyticalReporting.zip
    2010-03-30 10:23:58,561    Mkdir - Created dir: /export/home/Business_Objects/global/deployment/workdir/tomcat55/resources/web/AnalyticalReporting/WEB-INF
    2010-03-30 10:23:58,564     Copy - Copying 1 file to /export/home/Business_Objects/global/deployment/workdir/tomcat55/resources/web/AnalyticalReporting/WEB-I
    NF
    2010-03-30 10:23:58,597   Delete - Deleting directory /export/home/Business_Objects/global/deployment/workdir/tomcat55/resources/AnalyticalReporting
    2010-03-30 10:35:00,636   Target - Target "expand_and_package" finished.

    Hi,
    Don't know which of this factors solved the problem:
    1. Error server:
    AIX 5.2
    jdk 1.3.17 (minimum from docu: 1.3.11)
    $ORACLE_HOME wasn't in the begining of $PATH
    2. success server:
    AIX 5.3
    jdk 1.4.02
    $ORACLE_HOME is now in the begining of $PATH
    cheers Lao De

  • Set default value with mouse click?

    Hi guys,
    I'm new enough to LabVIEW, and indeed this forum, so I hope you can help. I'm guessing it's a simple problem, but I can't figure out how to do it.
    I've got a cRIO taking in 4 analog voltages. Each voltage is from a linear potentiometer which is measuring suspension displacment on a Formula Student race car.
    I have a simple formula set up to convert input voltage to displacment. I've set up a table of inputs which allows me to set maximum, minimum,(from previous sensor calibration) and "stationary" value of each sensor.
    The "stationary" value is what the sensor should be reading when the car is stopped. This is then used as a baseline for either positive or negative displacments.
    My problem is that each time a different driver gets in the car, the susspension is adjusted, or fuel is added, the "stationary" value will be different. I then have to manually set the stationary value back to whatever the current value is when the car is stopped, press "make current value default", and save the VI before continuing.
    What I would like, is a "calibrate" button which I can press that sets the "stationary" value to whatever the current input voltage is. This way, I wouldn't have to reset 4 values each time the car is modified.
    If you have any ideas on how to do this, please let me know.
    I'll attach my VI once I get back to the laptop where it is saved!
    Thanks,
    Kevin Irving
    Solved!
    Go to Solution.

    Kevin,
    As you have discovered you cannot change the default values on a running VI.
    The best way to do what you want is to use a configuration file.  There is a set of VIs specifically designed for that purpose on the File I/O palette.  When the user presses the "calibrate" button, the values are saved to the file. When the program starts it reads the file and sets the controls to the values in the file.  You can even keep different sets for each driver, if the data is consistent enough.
    Read the detailed help files for the configuration VIs and look at the examples.  These will show you how to get started.
    Lynn

  • Adobe Premiere Elements 7 With Worthless Error Messages.

    I have been a programmer since 1984, and if I saw a programmer in my team wrote these worthless error messages, I would go into my office and kill myself.
    I Googled them, and I found them discussed; but the responses were of no use to me, mostly.
    1. The error message I got that brought me to the edge of a cliff is: "Sorry, a serious error has occurred that require Adobe Premiere Elements to shutdown. We will attempt to save your current project."
    Then it crashed.
    When I was taking Operating Systems in my computer science class, a crash means you will get no more than 60 (out of 100). At IBM, a crash is always a SEVerity 1 issue. There is no way around it. Crash means the program is worthless.
    I Googled it, and Adobe suggested it could be some drivers using virtual audio. I uninstalled everything I could find, and this problem is not going away. I looked at the sound device configuration, and it's using physical audio, not virtual audio.
    I uninstalled Premiere Elements 7 five times and reinstalled them. They still failed. Finally, I reinstalled it at a different location, and it managed to "Found default catalog. Trying to open the  default catalog." Then crashed.
    If I wanted to use the default catalog, I would have said so. If I knew where they are, I would have set them on fire.
    Anyway, I have a project due this afternoon, and I am stuck with these worthless Adobe Premiere Elements 7 error messages. No wonder Steve Jobs banned Adobe Flash. They are pretty worthless.
    Sorry I am so upset, because none of you need to read my frustration; but I am up to my neck with Adobe. Once I get my project done, and I am switching to SONY Vegas.
    But, for now, would someone tell me how to get rid of these problems so I can get the video edited? Thank you.

    I noticed these errors were reported years ago, and Adobe has done NOTHING to improve it.
    Go back to my little list of how problems, crashes and errors sort out. That was how it was way back with Premiere programs, and how it still sorts out.
    Even the patch for PrE 8 was mainly to get it functioning with nVidia and ATI graphics cards. Yes, those "fixes" probably straddle the line between Bugs and system, with a nod towards Bugs. I know that Adobe takes their Bugs very seriously, and work overtime trying to find fixes for those, that do exist. Though it took a bit of time, as they gathered info, still Adobe had a patch, and that is rare for PrElements, due to the normal lifespan of that program.
    I provide some of the same answers today, that I did years ago, to fix the problems. In nearly every case, things sort out per that list. As "system" is both #1 and is also by far the largest segment of causes, that is where I begin looking. With PC's, there are myriad configurations, and most are not suited for video editing. Too many load up their e-machine and expect to edit HD material. Obviously, that is not the case here, but there could still be equipment incompatibilities, or just some tweaking needed. I see similar in the PrPro forum, as the Mac-users put the program on their MacBook Pros, with one tiny HDD, and a very weak CPU, and things go horribly wrong. If PrE was ported for the Mac, we'd have the same issues here. Usually, my first question will be about the I/O sub-system, i.e. the HDD's, their size, speed, free space, controller type and how they are allocated. Video editing is highly I/O intensive, and most computers are not even close to being able to efficiently handle it. I recommend a minimum of 3x SATA, physical HDD's, and suggest that they be setup to spread the I/O workload over all three. Some manage with a 2x I/O, but that is below MY minimum, and is the real minimum from Adobe. A single HDD I/O is just going to cause bottlenecks, and there is no way around that.
    Once, it was more the domain of the PC, that one had system issues, as Mac's were so limited and controlled. Now, as they have gained the ability to expand beyond the absolute control of Apple, those users are finding out that systems DO matter.
    Notice #2 - Assets. Not all AV material is meant to be edited. Some, like AVCHD (a consumer format) will require a pro-level computer, just to get smooth playback! The second most common issue is trying to edit material that has something like the Xvid, or DivX CODEC.
    Number 3 - Project, is very important too. One must match their Project Preset to their source footage. If not, then there will be problems. The failure to do this match is one of the biggest causes of issues, though usually not crashes, or hangs.
    Number 4 - OE, is when a user decides to push a button, and expects something else to happen, and often because that's how it worked in another program. Many argue with me that #2 and #3 are OE too, but I am much more lenient, than they are.
    Then, there ARE the Bugs. PrPro CS4 had a bunch. CS4.1 fixed a few, but broke some other things. It was not until CS4.2, that things got corrected, mostly, with that version. Then, CS5 hit, and seems quite good, but has a few Bugs too. Some were left over from CS4. A new update for CS5 is coming, and soon. Will it also fix those lingering Bugs? Only time will tell. Will it be a perfect program? Doubtful, but I'll bet that it'll be a "better" program.
    Think back to when you started programming. You were writing apps. for the majority of the install-base. However, what happened if the user had Extended Memory? What happened if they had Expanded Memory? What happened if they had both, and a software manager to handle those? Most still had 640KB. By that time, I had 2GB, though my MoBo could only handle 1GB with the managers. How could you write for me? I was 1:1000000, or maybe even less. I had to do my programming on the fly, and often had boot discs for different programs. It's not that much different now, except that I would not be such a rarity any more, but hardly mainstream.
    I'll bet that we can sort much out, by tackling the "Big 3," and then working down, if necessary.
    I like doing test Projects, keeping things simple, and testing as we make them more complex. That helps isolate the issues in most cases. In another thread, the poor user says that all Project Presets, all formats and all Export setting yield issues. My first thought is to isolate on one Project Preset, one set of Assets, and see if it's a system issue.
    Sometimes it's easy, and that is good, 'cause the user gets to editing and not fritzing so much. Just nailed one in Encore, but the poster gave me all the data necessary, and my memory did not fail me (maybe it was not "wine-thirty yet?). One post, and one correct answer. Life is good. Sometimes, it takes days, and many posts, to narrow things down. In but a few, there is an answer. In those (like the PGC error in Encore) one never does really solve the issue, and the only hope is to get the OP to start over, do everything by the book, and hope for the best, this time around.
    Good luck, and be assured - I do feel your pain. If I have not had one of THOSE error messages, believe me, I have read of them too many times.
    Hunt

Maybe you are looking for

  • Automatically payment block is picked up

    Hi I made some partial payment to Customer in F-28. Remaining amount was kept in "Residual" At that time, new document was generated. The new document generated already had payment block. I have not given this block. It automatically picked up the pa

  • FM or Table to get the BP ID of Root org unit

    Hello All We are triggering code from ECC which replicates Ship to Address to SRM. We want to know an FM or Table which will provide us with the BP # of the root org unit. ( Purchasing company) It is preferable if we don't have to hard code this. Tha

  • Flash CS4 ACE exam by Pearson VUE

    I just took the exam yesterday and failed I ran into one question which I can't find an answer for. Can someone please help me. The question is: What do you need to have for a Motion Tween? A) 1 Keyframe B) 2 Keyframes Now I did not know how to answe

  • How to port forward with Modem and Router

    I have a Linksys AM300 Modem and a Linksys WRT610N router.  I want to forward ports for Call of Duty Modern Warfare 2 and STEAM. How do I port forward when I have 2 devices and how can I test that it is working? 

  • Creation of Server Farm for SAP B1

    Can SAP B1 support Server Farm (can be use more than one server). if it possibe how can i get document about thios Thanks Ashish