NF-e NOVA BADI J_1BNF_ADD_DATA

Bom dia Pessoal.
Alguém ja implementou a nova BADI de persistência J_1BNF_ADD_DATA, onde substitui os métodos FILL_HEADER e FILL_ITEM da BADI CL_NFE_PRINT.
Gostaria de saber como estão tratando os campos não disponibilizados nas estruturas de modificação existentes na nova BADI, método ADD_DATA.
Como por exemplo: NATOP (Natureza da Operação), onde é necessário incluir um texto específico para nota fiscal de estorno, conforme ato COTEPE nº 33/2008 (DOU 01.10.2008).
descrição da Natureza da Operação (campo natOp) = “999 - Estorno de NF-e não cancelada no prazo legal”;
E ainda,
aonde fazemos os tratamentos para os grupos de impostos do ICMS40, ICMS51, ICMS60, etc, solicitados pela versão 3.10 da NF-e, onde precisamos informar em alguns casos: motivo da desoneração, valor do ICMS Desonerado, etc.
Obrigado.
José Claudio

Oi José
Você chegou a olhar as notas mais rescentes?
A nova badi foi criada sem muito dos campos que existiam na badi antiga mas isso foi mudando ao longo do tempo a medida que as empresas foram implementando.
Tratativa na badi para ICMS desonerado e diferido pelo que vi está previsto para o SP18.
Abraço
Eduardo Chagas

Similar Messages

  • EXIT ou BADI para automaticamente inserir código no FCI NFe-Item (J1BDYLIN-NFCI)

    Oi pessoal
    Peço desculpa pelo meu Português criado com Google translator.
    Eu estou trabalhando no problema e já estendido a FCI, a tabela MBEW para armazenar o campo NFCI para cada material.
    Já implementaram a BADI CL_NFE_PRINT para gravar o arquivo de código XML FCI (J1BDYLIN-NFCI) para serem transmitidos.
    Para terminar o trabalho que eu tenho que encontrar uma saída ou mente para definir o campo de J1BDYLIN-NFCI durante a criação da NFe
    para completar todo o processo.
    Alguém pode me ajudar?
    Obrigado Claudio

    Resolvido por mim usando o novo BADI J_1BNF_ADD_DATA.

  • How to change the display view of the records and modified into a row

    I have a SQL which can count the condition(Bad,Poor,Worse) in a day and group it into a month and displays as follows:
    YEARS MONTHS LV    COUNTVAL
    2009 Apr    Bad          5
    2009 Apr    Poor         3
    2009 Apr    Worse        2
    2009 Aug    Bad          3
    2009 Aug    Poor         2
    2009 Aug    Worse        5
    2009 Dec    Bad          5
    2009 Dec    Poor         2
    2009 Dec    Worse        3
    2009 Feb    Bad          5
    2009 Feb    Poor         3
    2009 Feb    Worse        2
    2009 Jan    Bad          3
    2009 Jan    Poor         3
    2009 Jan    Worse        4
    2009 Jul    Bad          2
    2009 Jul    Poor         3
    2009 Jul    Worse        5
    2009 Jun    Bad          1
    2009 Jun    Poor         4
    2009 Jun    Worse        5
    2009 Mar    Bad          4
    2009 Mar    Poor         4
    2009 Mar    Worse        2
    2009 May    Bad          3
    2009 May    Poor         5
    2009 May    Worse        2
    2009 Nov    Bad          1
    2009 Nov    Poor         5
    2009 Nov    Worse        4
    2009 Oct    Bad          5
    2009 Oct    Poor         3
    2009 Oct    Worse        2
    2009 Sep    Bad          2
    2009 Sep    Poor         4
    2009 Sep    Worse        4
    2010 Apr    Bad          6
    2010 Apr    Poor         1
    2010 Apr    Worse        3
    2010 Aug    Bad          3
    2010 Aug    Poor         2
    2010 Aug    Worse        5
    2010 Dec    Bad          4
    2010 Dec    Poor         2
    2010 Dec    Worse        4
    2010 Feb    Bad          4
    2010 Feb    Poor         3
    2010 Feb    Worse        3
    2010 Jan    Bad          6
    2010 Jan    Poor         3
    2010 Jan    Worse        1
    2010 Jul    Bad          2
    2010 Jul    Poor         4
    2010 Jul    Worse        4
    2010 Jun    Bad          4
    2010 Jun    Poor         3
    2010 Jun    Worse        3
    2010 Mar    Bad          6
    2010 Mar    Poor         1
    2010 Mar    Worse        3
    2010 May    Bad          4
    2010 May    Worse        6
    2010 Nov    Bad          5
    2010 Nov    Poor         2
    2010 Nov    Worse        3
    2010 Oct    Bad          3
    2010 Oct    Poor         3
    2010 Oct    Worse        4
    2010 Sep    Bad          3
    2010 Sep    Poor         4
    2010 Sep    Worse        3The SQL that I am using:
    select years, months, lv, countVal
    from
    select years, months, lv, count (lv) OVER (PARTITION BY years,months,lv) countVal  from
    SELECT x.years, x.months, x.days, x.lv
    FROM airtest,
    XMLTABLE ('$d/cdata/name' passing xmldoc as "d"
       COLUMNS
      years integer path 'year',
      months varchar(3) path 'month',
      days varchar(2) path 'day',
      lv varchar(5) path 'value'
      ) as X
      group by x.years, x.months, x.days, x.lv
      order by x.years, x.months, x.days
    group by years, months, lv, countVal
    order by years,monthsThe problem for now is how to modify it to become in this format??
    YEARS MONTHS   Bad    Poor     Worse
    2009 Apr        5        3        2
    2009 Aug        3        2        5
    2009 Dec        5        2        3
    .........After modified, It will become something like this.
    You can see the seperated data are group into a row in each month.
    Thanks for help!!

    Thanks for you suggestion!
    But it seems the order become quite strange after i used...
    Belows are the display....
    YEARS MONTHS BAD POOR WORSE SUM_BY SUM_PY SUM_WY
    2009 Jan      3    3     4     39     41     40
    2009 Feb      5    3     2     39     41     40
    2009 Dec      5    2     3     39     41     40
    2009 Nov      1    5     4     39     41     40
    2009 Oct      5    3     2     39     41     40
    2009 Sep      2    4     4     39     41     40
    2009 Aug      3    2     5     39     41     40
    2009 Jul      2    3     5     39     41     40
    2009 Jun      1    4     5     39     41     40
    2009 May      3    5     2     39     41     40
    2009 Apr      5    3     2     39     41     40
    2009 Mar      4    4     2     39     41     40
    2010 Jan      6    3     1     50     28     42
    2010 Nov      5    2     3     50     28     42
    2010 Oct      3    3     4     50     28     42
    2010 Sep      3    4     3     50     28     42
    2010 Aug      3    2     5     50     28     42
    2010 Dec      4    2     4     50     28     42
    2010 Jun      4    3     3     50     28     42
    2010 May      4    0     6     50     28     42
    2010 Apr      6    1     3     50     28     42
    2010 Mar      6    1     3     50     28     42
    2010 Feb      4    3     3     50     28     42
    2010 Jul      2    4     4     50     28     42
    TO_DATE ( years || months, 'yyyyMon', 'NLS_DATE_LANGUAGE=English') ymI have tried to added this statement both in the "SELECT" or end of the sql (as the position of yours "order by"), It does not work...

  • Long time buyer truly disappointed - My bad experience

    On 10/28/2014 I bought a Sound bar, 75” TV and a 2 year warranty for roughly $7,100 at the Best Buy location in Arden-Fair, Sacramento, CA 95819. The sales rep who sold me the TV was named Jesse and was very helpful and professional, he made my decision easy after doing a lot of research shopping around at Costco, Fry’s, Amazon. I also scoured through social media review sites like Yelp determining the best place to purchase.
    Having shopped with Best Buy since I was a kid I was already a bit biased and leaning towards Best Buy, I’ve purchased many products without issue. I’ve bought numerous laptops, multiple game consoles, many many games, CD’s, DVD’s over the years and just recently opened up a Best Buy credit card.
    The $7,100 purchase went smoothly at first, I could have got an early delivery date but because of me and my wife’s busy work schedules the early dates would not work. I decide to have the TV delivered on Nov. 5th, 2014, a week from when the purchase was made. The night before the delivery was supposed to take place I received a confirmation email and a phone call saying the delivery was on schedule and that it would be delivered on time between 8am and 10am on Nov. 5th. Two hours later while we were sleeping and not tell the next morning did I see that an email was sent at 10pm on the 4th stating the delivery had been pushed back 3 days to the weekend which wouldn’t work with our work schedules.
    The frustration began to set in after having waited a week for the delivery and knowing realistically it would need to be another week before receiving the product we paid for due to our schedules. To be honest, we felt Best Buy was very inconsiderate after having a week to make sure this sale was completed. I did not expect this lack of courtesy from a big reputable chain. We began to assume they sold the TV set aside for us because they had already made the sale, who cares about us right?
    That morning when I read the delivery date change in my email we decided to call Best Buy to figure out why the delivery had been pushed back, the Store wasn’t open so we called the generic number for the Call Center. The first lady we spoke to said the TV was not in stock and transferred our call to the store which we knew was closed and therefore dumped our call. The second lady we spoke to said that instead of the Saturday delivery date she could change it to Thursday but that she could not guarantee the delivery date would be met and could be subject to change, which we assumed would happen and this was her way of getting rid of our call for the time being. She also stated that she would contact us back if the delivery date changed which later that night it was changed again at 10pm by email without previous notice.
    Luckily, we didn’t fall for the gimmick, my wife and I decided to wait until the Arden store opened up to call and speak to a manager, we were able to get through at around 10:30am on the 5th and spoke to one, He told us that the TV that was supposed to be delivered was damaged and that they did not want to deliver us a bad TV. We assumed this was just a bad excuse and cover up for bad service and error which our thoughts were reaffirmed later. We told the manager that we were debating whether to just cancel the order and buy our TV somewhere else. The manager wanted some time to call us back and did so with a few options, one of which was to pick up a TV from another store and have it delivered to our house the following day. After much consideration we said yes and decided if they could get us the TV the next day then everything was settled. Later that day he called and gave us a time window on the delivery and we felt better about the situation.
    Thursday Nov. 6th rolled around and the TV is delivered, the box the TV came in looked like it had been tossed around like a football. The bottom of the box had the TV falling out, the corner of the box was ripped open and the Styrofoam inside was smashed and torn in multiple places. Best Buy may make a lot of sales but for a big purchase like this for me and my wife, we expected better from Best Buy and were so disappointed. If what was true about the previous undelivered TV being damaged, how and or why would they attempt to deliver this TV to us when the outside of the box looked horrible, granted the TV may have been just fine but how do we know if the TV was even brand new and not used or a display? To add insult to injury, even the delivery guys felt bad and were apologetic saying sorry and that they just deliver as if they knew it wasn't right.
    I called and talk with the store manager, took photos of the box, and after a lengthy decision with the store manager decided to cancel my order and have them come back up the product which I hadn’t moved or touched. I was so dissatisfied by the service I don’t think I’ll ever see Best Buy the same. They made no effort to right the wrong, but instead used sending an employee to pick up another TV at another store as if they were doing us a favor, it is Best Buy who didn’t honor the delivery time and the sale of a product with horrible reasoning.
    The worst part is, is that my wife and I are good people, we understand that mistakes can happen, why at the last minute did this occur? Why we were not informed earlier? We didn’t treat their managers or employees bad, we didn’t yell, we didn’t throw a fit, we simply wanted the product that we purchased to be delivered a week later on time, in good condition. Making a big purchase like this and seeing the condition the box was in, felt like we went to a car lot and bought a used car for the price of a brand new one.
    The store manager could of done plenty more to keep our business, not that we expected to get anything at this point after being so disappointed. But from a business perspective to keep a big sale, the manager could of up'd our 2 year warranty to 5 year warranty on them to make me feel better about the box, I probably would of kept my purchase had she done that, or let me buy the TV as what it appeared, an open box item. A lot could of been done to keep the sale and at the end of the day no effort was made. Whatever happened to getting what you paid for? I paid for a brand new TV to be delivered a week later, then told after confirmation and at the last minute my TV wasn't in stock and/or it was damaged and they cared so much about me to deliver a TV the next day in an open box that looked like it had been ran over by a truck a few times. (I have photos to remind me, some day I might look back and laugh)
    I know that we are but a dot on a map in terms of the customer database, however if our feedback helps someone avoid the situation we had, then we will have felt this long and probably boring post was worth submitting. Here’s hoping I have a better TV buying experience elsewhere, I think I’m done shopping at Best Buy, I have no reason or purpose to shop at a store where I could previously spend hours in shopping and looking at all the latest and greatest new electronics. As a long time buyer, Best Buy let me down.
    Why should I ever do business there? I had dinner at a food court with friends just last night and they wanted to walk over to Best Buy and look around, long story short after telling them my story we walked through the mall instead. I'm slightly embarassed by how passionately I'm against Best Buy right now but feel it's very much justified. A huge store like this should care more about their customers, right the wrong.

    Hello Stanfield,
    As someone who watches more television than she probably should, having the best TV possible is crucial to any viewing experience. If you ask me, watching a show on a 75” 4K TV would be mind-blowing, so I’m glad our Arden-Fair associate, Jesse, found you one at an unbeatable price. That’s why it’s so disappointing to hear your experience quickly down spiraled into disaster when a missed appointment turned into receiving a damaged TV, which lead to a canceled order. I assure you this is not indicative of the experience we seek to provide our customers, and we certainly can’t afford for this to be repeated considering the many competitive choices customers have today.
    While unforeseen complications can cause unexpected delays for delivery on our end, these are far and few between, and we should be making every attempt to contact you when rescheduling is necessary. Emailing you is one way we do this; however, it’s less than ideal to communicate this to you so late the night before your scheduled delivery date.  It’s clear to me that we may not have ironed out all of these kinks yet, and I’m very sorry it has been at your expense.
    Despite not having your TV in stock at the time of your original delivery date, other options may be available to us to make sure you receive your purchase at a timely manner. This could mean exchanging the particular model for a comparable one in stock to locating the TV with another warehouse or store location. Finding your TV in another store should have been a happy occasion and a great solution to your predicament; I’m sure it was beyond frustrating to find the replacement in less than pristine condition. It’s rare to receive a damaged item during delivery, but should this happen, we should be making every attempt possible to assist you, even if this means returning the purchase upon request.
    However, it’s clear to me that you took considerable time to let us know of your experience, and I appreciate you providing us this feedback. Please know that I’ve documented your concerns here at the corporate office so that we may review this with the appropriate teams for future coaching opportunities. Should you have any further questions or concerns, or wish to provide us a second chance to change your opinion of us, please feel free to let me know. I’ll be glad to see what options we may have available to you.
    Best wishes,
    Alex|Social Media Specialist | Best Buy® Corporate
     Private Message

  • My N97 experience... not all bad

    When I first received my N97 at the end of June with its v10 firmware it was truly awful!
    I actually went through 3 handsets in 10 days.
    I experienced freezing, crashing, incorrect ringtones, slow GPS and "Out of Memory" issues constantly. I was forced, because of the low C: drive, to install widgets, themes and as many app's as possible to Mass Memory, which in turn led to problems of their own when connecting to PC Suite in anything other than PC Suite mode. I could not even install some of Nokia's own app's as they would take up the precious C: drive.
    It took me quite awhile to adjust the Destinations settings, using trial and error, so that I used my home wifi and 3G whilst out.
    Then, about two or three weeks later, v11 was released on Vodafone and I upgraded the firmware, using PC Suite, with no problem and was quite pleased that I did not have to reinstall everything from scratch. The only change that I noticed with v11 was that my widgets worked a little better and that my thumbnails loaded quicker. However, the phone still gave me "Out of Memory" errors, crashed and was sluggish and unresponsive to touch, sometimes requiring 3/4 taps to get it working.
    Like the majority of N97 owners, I was not a happy bunny and felt ripped off when I compared the N97 to my N95 and N95 8GB. I was thoroughly cheesed off with having to go through manually clearing the browser cache every day, not being able to have theme effects on or use anything except the built in themes for fear of crashing. Also the GPS was still taking far too long to get a mediocre lock.
    Then around the end of August it was announced that v12 would be launched to address some of these problems and I eagerly awaited its coming. As with all the N97 firmware releases, the Continent version was released first, this was then to be followed by the UK CV (Country Variant) at some time in the future and finally the operator branded version even later still.
    It was at this point that my frustration with the N97 got the better of me and I took the decision to change the product code to the Euro one and risk voiding my warranty to get v12 that much quicker,all went surprisingly smoothly and I was able to obtain the v12 firmware weeks ahead of Vodafone's release.
    The v12 firmware did bring about some minor changes but not enough to stop my handset from crashing, freezing, every now and then. I still found the phone to be sluggish and unresponsive. I was still having to spend a lot of time "nursing" it by Clearing C: drive, which was hovering around 15MB and watch my RAM usage at around 10Mb. I still could not use anything other than the built-in theme with no effects for fear of overloading the pitiful RAM.
    I was also using the beta Nokia Photo Browser as this seemed to display quicker and better than the Gallery. Also, album art was a bit hit and miss although my crashes and freezes were less. To say that I was disappointed at this stage would be an understatement. I felt thoroughly cheated by Nokia who, it seemed to me, had rushed out the N97 with immature firmware just to compete with the iPhone 3GS.
    I had experienced poor RAM before, with the N95, but this had been rectified to a large extent, by a firmware update. I thought about the millions of people worldwide who had purchased the N97 and had not, or could not, update the firmware and were cursing Nokia and the N97.
    It would seem that Nokia had not learnt from Apple iPhone's original launch when they promised the earth and ended up refunding early adopters after pressure was brought to bear. I also despised Nokia's head in the sand approach to the lens scratching fiasco that, luckily, I have not suffered from.
    By this time I was seriously considering getting rid of my N97 and moving on. It was becoming a full time job to ensure that there was enough RAM and C: drive. I was constantly having to make tradeoffs about installing certain app's and although my GPS had improved it wasn't great. I was also cheesed off using the scroll bar to go through lists and got frustrated with it on Contacts and Music, usually ending up using the Nav pad. The touch screen was still a joke with me having to constantly tap to try and get it to work.
    Enough was enough!
    I'd spent over a quarter of a year trying to come to terms with what was supposed to be a Nokia flagship phone costing £500 that just did not deliver.
    And then I saw a preview of v20 with its kinetic scrolling and RAM and C: usage enhancements and thought I'd give the N97 one last chance.
    After all, I stood to lose about half the phones cost if I tried to sell it on.
    Like most of you, I waited with baited breath for the will they, won't they, release of v20.
    Then, finally, it became available for my, now, unbranded Euro firmware and I jumped on it immediately.
    That's where I made my first mistake, as I downloaded v20 straight away using NSU and immediately started to get freezes, crashes and rebooting. Photo's were slow and the Music library was a nightmare.
    The penny then dropped, as they say, and I realised from my experiences with the N95 and N95 8GB, that with a firmware upgrade of this magnitude it was bound to cause problems if I either just upgraded or reinstalled from PC Suite backup.
    I then proceeded to format both the phone and Mass Memory and reinstall everthing from scratch. Not an easy or short task I might add.
    It was worth it though!
    I had nearly 60MB free on C: drive, before installing themes, app's and widgets. My RAM was now 40+MB after boot up and rarely goes below 20MB.
    Kinetic scrolling is a joy to use. The phone is no longer sluggish. The touch screen is very responsive. I ditched Nokia Photo Browser beta as the in-built photo's prog offered so much more. The music library is a lot better. Particularly with album art. Boot up time is quicker. Widgets are more stable, although Accuweather seem to have dropped "Current Location". My GPS achieves a more accurate, and quicker, lock than before. I experience a lot less lags. The built-in browser is a lot quicker, I can hold down a key in QWERTY to get a symbol. The speakers even sound better!
    Also there was a lot of tinkering and tweaking of settings as this can make a big difference to the way the phone funtions, as we can see by the forum postings.
    IMHO this was the N97 I thought I was getting in June. This is the N97 that Nokia should, and could, have released and I cannot excuse them for palming off inferior firmware.
    OK, it's not perfect, but as Julia Roberts says in Pretty Woman... "it has potential".
    Am I going to ditch it? The answer is no!
    Because I think that v20 has gone a long way to solving a lot of the things that bugged me. It shows me what this phone is capable of. It can multi task. It can run prog's without crashing.
    Some of us wax lyrical about the N95 but I remember all the complaints about the lack of RAM and it's slowness, poor camera and video. until it received it's v20 upgrade which changed the phone completely and actually put it ahead of the N95 8GB with its restricted Mass Memory.
    Perhaps smart phones are becoming too smart.
    We get them and fire them up, sometimes ignoring the manuals, and then shove loads of third party software on them without a thought or adjustment to settings and expect them to work perfectly. I know from my own experience that I've had to uninstall software from a handset because of conflicts or poor programming.
    I know that there are delays with the release of firmware updates between the Continent, CV and operator branded handsets but this is not all down to Nokia but rather to getting country approvals and operator "adjustments".
    I must stress that these are my opinions based on my usage, app's and phone model.
    I understand I may come in for a lot of flak for this and I am certainly no technical genius. I'm just trying to relate my everyday experience and frustration with the N97.
    As my dear old mum used to say... "Speak as you find" and I'm finding this phone a lot better than it was.
    Message Edited by wildreamer on 15-Nov-2009 09:01 PM

    I have had a very similar experience with the N97 and agree that now with firmware v20 the phone is just usable. It's ridiculous that to get to this point we've had to put so much work into researching solutions, resetting the phone multiple times, formatting the mass memory, reloading media and maps (also multiple times), uninstalling and reinstalling apps, and installing and reinstalling firmware updates. My wife jokingly said to me that I'd spent more time trying to get the phone running than actually using it. The sad thing is that this is pretty much true and no matter how well the phone works I will always remember the first four months of very sub par performance.
    IMHO if Nokia hadn't skimped on the memory for the RAM and c drive the N97 would have suffered from a lot less problems. Also instead of spending four months trying to resolve these memory issues in the development for the v20 firmware release, they could have focussed on the multitude of other bugs. And how much do you think Nokia saved by skimping, maybe a few dollars per handset. Contrast this with how much bad publicity they have received over the N97 as well as the bad experience for people who spent US $700 for a flagship device.
    Added to all these faults is the poor way that Nokia have handled this. From the head in the sand approach to the camera lens scratches and poor GPS, to the lack of Mac support, and to the complete denial that there is even a problem.
    Nokia's official support is also problematic, the user to user forum is good but it should not be a replacement for official support pages (the device support pages only provide the product guide and link to the discussions forum) and getting anything other than form responses and incorrect information from the Nokia Customer Care makes this service a complete waste of time.
    Will I sell my N97? No, not for the moment.
    Can I recommend the N97? No!
    Can I recommend any Nokia product? No!
    Nokia N97 (RM-507) v 22
    iPhone 4 (Coming Soon) - Lemon N97 - SE - Nokia 8210 - Nokia 7710 - Nokia 5100

  • Converted MS Word 2007 to Adobe Acrobat 9 random "Bad Parameter" Error

    Question: I Converted MS Word 2007 file which contained 892 pages into Adobe Acrobat 9 Standard afterwards and while needing to update only certain pages I receive the "Bad Parameter" Error. My process is using drop down Document/Extract pages(make my updates)/Replace pages into complete PDF file/ usually with no problem then towards the last pages of the PDF the Error showed up! I believe that it’s possible, the conversion initially may have allowed many tags to be written correctly but some are corrupted. It could be a buffer-overflow failsafe that is having an adverse effect against the two programs because of the file’s size? I have seen some good advice come from many people on this site like "Bill@VT" and "CtDave" and others so I am humbly requesting assistance? Some additional background information is I have to keep the file size the same and I cannot print to PDF file from Word due to a specific format I must keep and most of the PDF is not corrupt: meaning receiving the "Error". I would like to know if the error that seems to be due to the conversion process can be corrected. I have provided some additional similar post below from other customers that may be useful as reference material?  R/ Thanks in advance! 
    “Like 10 others, I get a "bad parameter" pop-up window when I try to delete 1 or more pages from a PDF created from Adobe 8 Pro from Microsoft Word 2007.  Of the 3 computers we have tried to delete the pages, we are running Windows XP and Office 2007 on all.  But 1 computer has Adobe 7 Pro, one has Adobe 8 Pro, and the 3rd has Adobe 9 Pro.  None are able to delete or extract the pages -- we get the bad parameter error each time we try. The PDF has 260 pages and occupies 5.7 MB memory.  What additional information can I provide to get a resolution to this problem?  Thanks!” “Civilengr10” (posted Aug 17, 2010)
    “I am taking adobe files from a database, saving them, and then making changes to them by inserting (from other adobe files from the same database) or deleting pages.  Very basic stuff! However, sometimes when I want to insert pages, it will insert them but then say "bad parameter".  After that point, I cannot delete any pages.  It will give me the "bad parameter" error again and not delete. I have reduced the file size, ran "Examine Document" and removed whatever it wanted me to, and whenever I save a file, I do Save As...instead of Save! Also, under preferences > security I have the "Verify signatures when the document is opened" unchecked. None of these recommendations that I have read elsewhere work.  Can someone offer me some guidance? I am working on the files locally.  I save the files from the database unto my own folder on the computer. The thing is, some of the files I download from the database are fine and do not give me any error, but others do.  Do you know how I can fix the files that are corrupted from the database?” “hoda64” (posted July 22, 2009)
    “Problem converting Word 2007 DOC to PDF 9
    I have a Word 2007 DOC (not docx) file with pictures and text which converted perfectly with Distiller 8. I installed CS4 Distiller 9, and now the same DOC file flows over onto several extra pages. I am using the default settings. Any idea what has changed? Thanks in advance.  “Petrula” (posted Nov 29, 2002) “First, select the Adobe PDF printer in WORD. Then go through the document to check for the flow of the document. It should print the same as you see in the document after the printer has been selected.”

    For the replace and delete pages, I can only guess that you are messing up some of the bookmarks or links in the page from what I think you have based on the description. I would work on copies between each stage so that you can at least go back to the last success stage. If possible, you are better to go back and do the modifications in the original page and the recreate the PDF. If that is not possible, then maybe a better explanation of how you are creating the PDF would help folks understand your process fully and suggest a solution.
    On the latter, I would do a repair on Acrobat. However, it may be in the process you are using in the conversion from WORD. How are you creating the PDF from WORD? Have you updated AA9 and not simply have 9.0? The confusing point is that you talk about Distiller for getting the PDF from WORD. Distiller is often involved, but only behind the scenes and normally you either print to the Adobe PDF printer, use PDF Maker, or use the MS plugin for PDF creation. So when stating Distiller, it is unclear what process you are using since none of the methods I mention state the use of Distiller even if it is used in the background.

  • Need info on badi or exit before creation of Material document number?

    hi experts,
    we have two systems one is general R/3(4.6 C) and another system is GTS (NW 2004)system.
    while creation of GR a check from R/3 is made to GTS through GTS plug in installed in R/3
    and after which the document number is created...
    now i need a BADI between the check is made in GTS and material document no. creation
    where i can throw a message by checking in R/3 LFA1 table whether the vendor is SPL check or not.
    for this i am using MB_DOCUMENT_BADI and the method is MB_DOCUMENT_BEFORE_UPDATE
    where i am querying the zfields from LFA1(R?3) for SPL check happened in GTS (this is updated in some other interface)
    if in this badi if any error message is populated it is directly going for dump..
    please suggest me what can i do..
    Thanks in advance
    S.Janagar

    problem solved by myselves.
    by using popup to inform function module i am able to throw error message
    Edited by: Janagar Sundaramoorthy Nadar on Nov 19, 2009 7:01 PM

  • Assign Investment program Position for IW31 through exit/BADI

    Hi
    My requirement is, I've to assign investment program details to Maintainence order (IW31) in creation mode through enhancement. I am able to do so in change mode using the FM "AIPP_ALLOCATE_POSITION_DARK", but when I use the same FM in creation mode it is throughing "Update Termination " error.
    Please let me know is there  any BADI/User Exit/Enhancement Point to achieve the same.
    Regards,
    Chandu
    Edited by: Poorna Chandrasekhar on Nov 13, 2009 11:10 AM

    I've created enhancement point in the FM CO_ZV_ORDER_POST

  • Exit/Badi for Accounting Document

    Dear Friends
    Is there any user exit/BADI for accounting document. My requirement is quite simple which you would also faced in many implimentation. Client wants number ranges business area/plantwise. I was just thinking as plant/business area is a line item field it may be little difficult to have different number range controll at that level, so I thought we could use user id as the import parameter. But these is possible once I get any user exit/badi for number range change. We dont want to create so many document type also.
    Thanks and Regards
    Pankaj Gupta

    Hi Marta,
    Check these notes
    SAP Note 1259505 - FAQ: New cancellation procedure in SD,
    SAP Note 400000 - FAQ: Transaction VF11: Cancellation of SD billing documents
    See with attention note 1259505 question 4. It says
    Most of the userexits in the SD-FI interface (see note 301077) will not be
    performed.
    So, try to do it with BTE's
    Sorry, try with USEREXIT_PRICING_COPY in program RV61AFZA.
    I hope this helps you
    Regards
    Eduardo
    Edited by: E_Hinojosa on Nov 21, 2011 9:15 AM

  • User Exit/BADI/Enhancement Point  in VF01 before new document no assignment

    Hi Expert,
       I am looking for a user exit/BADI/Enhancement point which will trigger in VF01 before the new document no (Billing document no assign).
    I need to cross check few things in Billing via VF01 at billing document save and give error message accordingly. The problem is if new number assign and there is error due to my code then when user save the document next he get a new no. its mean a no skip.
    Example: The invoice no is 1000. User start creating a billing document with Vf01 and he get an error message due to my code at exit , at this point of time the next number assign to billing which is 1001 but document not save due to my error message. Now after applying correction user save data and billing document created with no 1002. So there is no skip.
    I tried BADI BADI_SD_ACCOUNTING but this will trigger after no assignment.  Can someone provide me a user exit/BADI/Enhancement point in VF01 which trigger before no range assignment and contain at least Billing header data to use in my code?
    Regards
    Swati
    Edited by: Swati Namdev on Nov 16, 2010 9:55 PM

    HI Brad and team,
       BRED is right. I check few user exit normally all of us have that list or easily available on net.
    BRED: my question is: I need to check the billing date VBRK-FKDAT of document should not be less than the sales order plan billing date VBAP-Oldate.
    If this check fail then won't allow the user to create billing document. The problem is I used one user exit SDVFX001 already define previously that's work fine but issue is that user exit trigger after the billing no assignment. That's why when user get that error message he correct the document and create billing this time he get a new number which is skip of one no.
    That why I need a User Exit/BADI/Enhancement Point  which trigger at save but before document no assignment.
    Please update more about your comment "Why not use a header level copy requirement routine to perform the checks and log the messages? This is the standard process."  .
    Suggest user exit USEREXIT_FILL_VBRK_VBRP  trigger before save. I need at save the reason is VBRK-FKDAT  this can be change.
    Feel free to contact me back if you need more clarification.
    Regards
    Swati
    Edited by: Swati Namdev on Nov 17, 2010 6:22 PM
    Edited by: Swati Namdev on Nov 17, 2010 6:25 PM
    Edited by: Swati Namdev on Nov 17, 2010 6:32 PM
    Edited by: Swati Namdev on Nov 17, 2010 6:47 PM

  • "Bad page state in process swapper" with Oracle Linux 5.9

    Dear All,
    We got "localhost kernel: BUG: Bad page state in process swapper  pfn:5e13c2e" when booting Oracle Linux 5.9.
    The system is installed with -
    1. CPU: 2 x Xeon E5-2690
    2. Mem: 384 GB
    3. QLE 2562 FC
    4. Oracle Linux 5.9 (64-bit) (2.6.39-300.26.1.el5uek)
    5. mutlipath enabled
    6. kernel created with (mkinitrd -v -f --with=sd-mod with=dm-multipath /boot/initrd-2.6.39-300.06.1.el5uek.img $(uname -r))
    Below is part of the log file.
    Did you have the idea what cause the issue?
    Regards,
    CL
    Nov  1 11:03:04 localhost syslogd 1.4.1: restart.
    Nov  1 11:03:04 localhost kernel: klogd 1.4.1, log source = /proc/kmsg started.
    Nov  1 11:03:04 localhost kernel: Initializing cgroup subsys cpuset
    Nov  1 11:03:04 localhost kernel: Initializing cgroup subsys cpu
    Nov  1 11:03:04 localhost kernel: Linux version 2.6.39-300.26.1.el5uek ([email protected]) (gcc version 4.1.2 20080704 (Red Hat 4.1.2-52)) #1 SMP Thu Jan 3 18:31:38 PST 2013
    Nov  1 11:03:04 localhost kernel: Command line: ro root=/dev/mapper/lun_osp3 rhgb  quiet numa=off
    Nov  1 11:03:04 localhost kernel: BIOS-provided physical RAM map:
    Nov  1 11:03:04 localhost kernel:  BIOS-e820: 0000000000000000 - 000000000009a400 (usable)
    Nov  1 11:03:04 localhost kernel:  BIOS-e820: 000000000009a400 - 00000000000a0000 (reserved)
    Nov  1 11:03:04 localhost kernel:  BIOS-e820: 00000000000e0000 - 0000000000100000 (reserved)
    Nov  1 11:03:04 localhost kernel:  BIOS-e820: 0000000000100000 - 000000007df4c000 (usable)
    Nov  1 11:03:04 localhost kernel:  BIOS-e820: 000000007df4c000 - 000000007df89000 (reserved)
    Nov  1 11:03:04 localhost kernel:  BIOS-e820: 000000007df89000 - 000000007e01c000 (ACPI data)
    Nov  1 11:03:04 localhost kernel:  BIOS-e820: 000000007e01c000 - 000000007e240000 (ACPI NVS)
    Nov  1 11:03:05 localhost kernel:  BIOS-e820: 000000007e240000 - 000000007f34c000 (reserved)
    Nov  1 11:03:05 localhost cpuspeed: Enabling ondemand cpu frequency scaling governor
    Nov  1 11:03:05 localhost kernel:  BIOS-e820: 000000007f34c000 - 000000007f800000 (ACPI NVS)
    Nov  1 11:03:05 localhost kernel:  BIOS-e820: 0000000080000000 - 0000000090000000 (reserved)
    Nov  1 11:03:05 localhost kernel:  BIOS-e820: 00000000fed1c000 - 00000000fed40000 (reserved)
    Nov  1 11:03:05 localhost kernel:  BIOS-e820: 00000000ff000000 - 0000000100000000 (reserved)
    Nov  1 11:03:05 localhost kernel:  BIOS-e820: 0000000100000000 - 0000006080000000 (usable)
    Nov  1 11:03:06 localhost kernel: NX (Execute Disable) protection: active
    Nov  1 11:03:06 localhost kernel: SMBIOS 2.7 present.
    Nov  1 11:03:06 localhost rpc.statd[5742]: Version 1.0.9 Starting
    Nov  1 11:03:06 localhost kernel: No AGP bridge found
    Nov  1 11:03:06 localhost kernel: last_pfn = 0x6080000 max_arch_pfn = 0x400000000
    Nov  1 11:03:07 localhost hcid[5810]: Bluetooth HCI daemon
    Nov  1 11:03:07 localhost hcid[5810]: Register path:/org/bluez fallback:1
    Nov  1 11:03:07 localhost sdpd[5814]: Bluetooth SDP daemon
    Nov  1 11:03:07 localhost kernel: x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    Nov  1 11:03:07 localhost kernel: total RAM covered: 393216M
    Nov  1 11:03:07 localhost kernel: Found optimal setting for mtrr clean up
    Nov  1 11:03:07 localhost kernel:  gran_size: 64K chunk_size: 64K num_reg: 9   lose cover RAM: 0G
    Nov  1 11:03:07 localhost kernel: last_pfn = 0x7df4c max_arch_pfn = 0x400000000
    Nov  1 11:03:07 localhost pcscd: pcscdaemon.c:507:main() pcsc-lite 1.4.4 daemon ready.
    Nov  1 11:03:07 localhost kernel: found SMP MP-table at [ffff8800000fdb60] fdb60
    Nov  1 11:03:07 localhost kernel: Using GB pages for direct mapping
    Nov  1 11:03:07 localhost kernel: init_memory_mapping: 0000000000000000-000000007df4c000
    Nov  1 11:03:07 localhost kernel: init_memory_mapping: 0000000100000000-0000006080000000
    Nov  1 11:03:08 localhost pcscd: hotplug_libusb.c:402:HPEstablishUSBNotifications() Driver ifd-egate.bundle does not support IFD_GENERATE_HOTPLUG. Using active polling instead.
    Nov  1 11:03:08 localhost pcscd: hotplug_libusb.c:411:HPEstablishUSBNotifications() Polling forced every 1 second(s)
    Nov  1 11:03:07 localhost kernel: RAMDISK: 3795a000 - 37ff0000
    Nov  1 11:03:08 localhost kernel: ACPI: RSDP 00000000000f0490 00024 (v02 ACRSYS)
    Nov  1 11:03:08 localhost kernel: ACPI: XSDT 000000007dfa6090 0009C (v01 ACRSYS ACRPRDCT 00000001 AMI  00010013)
    Nov  1 11:03:08 localhost kernel: ACPI: FACP 000000007dfafb10 000F4 (v04 ACRSYS ACRPRDCT 00000001 AMI  00010013)
    Nov  1 11:03:08 localhost kernel: ACPI: DSDT 000000007dfa61b8 09956 (v02 ACRSYS ACRPRDCT 00000000 INTL 20091112)
    Nov  1 11:03:08 localhost kernel: ACPI: FACS 000000007e23df80 00040
    Nov  1 11:03:08 localhost kernel: ACPI: APIC 000000007dfafc08 00224 (v03 ACRSYS ACRPRDCT 00000001 AMI  00010013)
    Nov  1 11:03:08 localhost kernel: ACPI: FPDT 000000007dfafe30 00044 (v01 ACRSYS ACRPRDCT 00000001 AMI  00010013)
    Nov  1 11:03:08 localhost kernel: ACPI: SRAT 000000007dfafe78 004B0 (v01 A M I  AMI SRAT 00000001 AMI. 00000000)
    Nov  1 11:03:08 localhost kernel: ACPI: SLIT 000000007dfb0328 00030 (v01 A M I  AMI SLIT 00000000 AMI. 00000000)
    Nov  1 11:03:08 localhost kernel: ACPI: HPET 000000007dfb0358 00038 (v01 ACRSYS ACRPRDCT 00000001 AMI. 00000005)
    Nov  1 11:03:08 localhost kernel: ACPI: PRAD 000000007dfb0390 000BE (v02 PRADID  PRADTID 00000001 MSFT 04000000)
    Nov  1 11:03:08 localhost kernel: ACPI: SPMI 000000007dfb0450 00040 (v05 A M I   OEMSPMI 00000000 AMI. 00000000)
    Nov  1 11:03:08 localhost kernel: ACPI: SSDT 000000007dfb0490 6B344 (v02  INTEL    CpuPm 00004000 INTL 20091112)
    Nov  1 11:03:08 localhost kernel: ACPI: EINJ 000000007e01b7d8 00130 (v01    AMI AMI EINJ 00000000      00000000)
    Nov  1 11:03:08 localhost kernel: ACPI: ERST 000000007e01b908 00230 (v01  AMIER AMI ERST 00000000      00000000)
    Nov  1 11:03:08 localhost kernel: ACPI: HEST 000000007e01bb38 000A8 (v01    AMI AMI HEST 00000000      00000000)
    Nov  1 11:03:08 localhost kernel: ACPI: BERT 000000007e01bbe0 00030 (v01    AMI AMI BERT 00000000      00000000)
    Nov  1 11:03:08 localhost kernel: ACPI: DMAR 000000007e01bc10 00178 (v01 A M I   OEMDMAR 00000001 INTL 00000001)
    Nov  1 11:03:08 localhost kernel: ACPI: MCFG 000000007e01bd88 0003C (v01 ACRSYS ACRPRDCT 00000001 MSFT 00000097)
    Nov  1 11:03:08 localhost kernel: NUMA turned off
    Nov  1 11:03:09 localhost kernel: Faking a node at 0000000000000000-0000006080000000
    Nov  1 11:03:09 localhost kernel: Initmem setup node 0 0000000000000000-0000006080000000
    Nov  1 11:03:09 localhost kernel:   NODE_DATA [000000607ffd9000 - 000000607fffffff]
    Nov  1 11:03:09 localhost kernel: Zone PFN ranges:
    Nov  1 11:03:09 localhost kernel:   DMA      0x00000010 -> 0x00001000
    Nov  1 11:03:09 localhost kernel:   DMA32    0x00001000 -> 0x00100000
    Nov  1 11:03:09 localhost kernel:   Normal   0x00100000 -> 0x06080000
    Nov  1 11:03:09 localhost kernel: Movable zone start PFN for each node
    Nov  1 11:03:09 localhost kernel: early_node_map[3] active PFN ranges
    Nov  1 11:03:09 localhost kernel:     0: 0x00000010 -> 0x0000009a
    Nov  1 11:03:09 localhost kernel:     0: 0x00000100 -> 0x0007df4c
    Nov  1 11:03:09 localhost kernel:     0: 0x00100000 -> 0x06080000
    Nov  1 11:03:10 localhost kernel: ACPI: PM-Timer IO Port: 0x408
    Nov  1 11:03:10 localhost kernel: ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
    Nov  1 11:03:10 localhost kernel: ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] enabled)
    Nov  1 11:03:10 localhost kernel: ACPI: LAPIC (acpi_id[0x04] lapic_id[0x04] enabled)
    Nov  1 11:03:10 localhost kernel: ACPI: LAPIC (acpi_id[0x06] lapic_id[0x06] enabled)
    Nov  1 11:03:10 localhost kernel: ACPI: LAPIC (acpi_id[0x08] lapic_id[0x08] enabled)
    Nov  1 11:03:10 localhost kernel: ACPI: LAPIC (acpi_id[0x0a] lapic_id[0x0a] enabled)
    Nov  1 11:03:10 localhost kernel: ACPI: LAPIC (acpi_id[0x0c] lapic_id[0x0c] enabled)
    Nov  1 11:03:10 localhost kernel: ACPI: LAPIC (acpi_id[0x0e] lapic_id[0x0e] enabled)
    Nov  1 11:03:10 localhost kernel: ACPI: LAPIC (acpi_id[0x10] lapic_id[0x20] enabled)
    Nov  1 11:03:10 localhost kernel: ACPI: LAPIC (acpi_id[0x12] lapic_id[0x22] enabled)
    Nov  1 11:03:10 localhost kernel: ACPI: LAPIC (acpi_id[0x14] lapic_id[0x24] enabled)
    Nov  1 11:03:10 localhost kernel: ACPI: LAPIC (acpi_id[0x16] lapic_id[0x26] enabled)
    Nov  1 11:03:10 localhost kernel: ACPI: LAPIC (acpi_id[0x18] lapic_id[0x28] enabled)
    Nov  1 11:03:11 localhost kernel: ACPI: LAPIC (acpi_id[0x1a] lapic_id[0x2a] enabled)
    Nov  1 11:03:11 localhost kernel: ACPI: LAPIC (acpi_id[0x1c] lapic_id[0x2c] enabled)
    Nov  1 11:03:11 localhost kernel: ACPI: LAPIC (acpi_id[0x1e] lapic_id[0x2e] enabled)
    Nov  1 11:03:11 localhost kernel: ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
    Nov  1 11:03:11 localhost kernel: ACPI: LAPIC (acpi_id[0x03] lapic_id[0x03] enabled)
    Nov  1 11:03:11 localhost kernel: ACPI: LAPIC (acpi_id[0x05] lapic_id[0x05] enabled)
    Nov  1 11:03:12 localhost kernel: ACPI: LAPIC (acpi_id[0x07] lapic_id[0x07] enabled)
    Nov  1 11:03:12 localhost kernel: ACPI: LAPIC (acpi_id[0x09] lapic_id[0x09] enabled)
    Nov  1 11:03:12 localhost kernel: ACPI: LAPIC (acpi_id[0x0b] lapic_id[0x0b] enabled)
    Nov  1 11:03:12 localhost kernel: ACPI: LAPIC (acpi_id[0x0d] lapic_id[0x0d] enabled)
    Nov  1 11:03:12 localhost kernel: ACPI: LAPIC (acpi_id[0x0f] lapic_id[0x0f] enabled)
    Nov  1 11:03:12 localhost kernel: ACPI: LAPIC (acpi_id[0x11] lapic_id[0x21] enabled)
    Nov  1 11:03:13 localhost kernel: ACPI: LAPIC (acpi_id[0x13] lapic_id[0x23] enabled)
    Nov  1 11:03:13 localhost kernel: ACPI: LAPIC (acpi_id[0x15] lapic_id[0x25] enabled)
    Nov  1 11:03:13 localhost kernel: ACPI: LAPIC (acpi_id[0x17] lapic_id[0x27] enabled)
    Nov  1 11:03:13 localhost kernel: ACPI: LAPIC (acpi_id[0x19] lapic_id[0x29] enabled)
    Nov  1 11:03:13 localhost kernel: ACPI: LAPIC (acpi_id[0x1b] lapic_id[0x2b] enabled)
    Nov  1 11:03:13 localhost kernel: ACPI: LAPIC (acpi_id[0x1d] lapic_id[0x2d] enabled)
    Nov  1 11:03:13 localhost kernel: ACPI: LAPIC (acpi_id[0x1f] lapic_id[0x2f] enabled)
    Nov  1 11:03:13 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
    Nov  1 11:03:13 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
    Nov  1 11:03:13 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
    Nov  1 11:03:13 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
    Nov  1 11:03:13 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
    Nov  1 11:03:13 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1])
    Nov  1 11:03:13 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1])
    Nov  1 11:03:13 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x0e] high edge lint[0x1])
    Nov  1 11:03:13 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x10] high edge lint[0x1])
    Nov  1 11:03:13 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x12] high edge lint[0x1])
    Nov  1 11:03:14 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x14] high edge lint[0x1])
    Nov  1 11:03:14 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x16] high edge lint[0x1])
    Nov  1 11:03:14 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x18] high edge lint[0x1])
    Nov  1 11:03:14 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x1a] high edge lint[0x1])
    Nov  1 11:03:14 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x1c] high edge lint[0x1])
    Nov  1 11:03:14 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x1e] high edge lint[0x1])
    Nov  1 11:03:14 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
    Nov  1 11:03:14 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
    Nov  1 11:03:14 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
    Nov  1 11:03:14 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
    Nov  1 11:03:14 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1])
    Nov  1 11:03:14 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1])
    Nov  1 11:03:14 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x0d] high edge lint[0x1])
    Nov  1 11:03:14 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x0f] high edge lint[0x1])
    Nov  1 11:03:14 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x11] high edge lint[0x1])
    Nov  1 11:03:14 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x13] high edge lint[0x1])
    Nov  1 11:03:14 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x15] high edge lint[0x1])
    Nov  1 11:03:14 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x17] high edge lint[0x1])
    Nov  1 11:03:14 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x19] high edge lint[0x1])
    Nov  1 11:03:15 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x1b] high edge lint[0x1])
    Nov  1 11:03:15 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x1d] high edge lint[0x1])
    Nov  1 11:03:15 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x1f] high edge lint[0x1])
    Nov  1 11:03:15 localhost hidd[5960]: Bluetooth HID daemon
    Nov  1 11:03:15 localhost kernel: ACPI: IOAPIC (id[0x00] address[0xfec00000] gsi_base[0])
    Nov  1 11:03:15 localhost kernel: IOAPIC[0]: apic_id 0, version 32, address 0xfec00000, GSI 0-23
    Nov  1 11:03:15 localhost kernel: ACPI: IOAPIC (id[0x02] address[0xfec01000] gsi_base[24])
    Nov  1 11:03:15 localhost kernel: IOAPIC[1]: apic_id 2, version 32, address 0xfec01000, GSI 24-47
    Nov  1 11:03:15 localhost kernel: ACPI: IOAPIC (id[0x03] address[0xfec40000] gsi_base[48])
    Nov  1 11:03:15 localhost kernel: IOAPIC[2]: apic_id 3, version 32, address 0xfec40000, GSI 48-71
    Nov  1 11:03:15 localhost kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    Nov  1 11:03:15 localhost kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    Nov  1 11:03:15 localhost kernel: Using ACPI (MADT) for SMP configuration information
    Nov  1 11:03:15 localhost kernel: ACPI: HPET id: 0x8086a701 base: 0xfed00000
    Nov  1 11:03:15 localhost kernel: SMP: Allowing 32 CPUs, 0 hotplug CPUs
    Nov  1 11:03:16 localhost kernel: PM: Registered nosave memory: 000000000009a000 - 000000000009b000
    Nov  1 11:03:16 localhost kernel: PM: Registered nosave memory: 000000000009b000 - 00000000000a0000
    Nov  1 11:03:16 localhost kernel: PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000
    Nov  1 11:03:16 localhost kernel: PM: Registered nosave memory: 00000000000e0000 - 0000000000100000
    Nov  1 11:03:16 localhost kernel: PM: Registered nosave memory: 000000007df4c000 - 000000007df89000
    Nov  1 11:03:16 localhost kernel: PM: Registered nosave memory: 000000007df89000 - 000000007e01c000
    Nov  1 11:03:16 localhost kernel: PM: Registered nosave memory: 000000007e01c000 - 000000007e240000
    Nov  1 11:03:16 localhost kernel: PM: Registered nosave memory: 000000007e240000 - 000000007f34c000
    Nov  1 11:03:16 localhost kernel: PM: Registered nosave memory: 000000007f34c000 - 000000007f800000
    Nov  1 11:03:16 localhost kernel: PM: Registered nosave memory: 000000007f800000 - 0000000080000000
    Nov  1 11:03:16 localhost kernel: PM: Registered nosave memory: 0000000080000000 - 0000000090000000
    Nov  1 11:03:16 localhost kernel: PM: Registered nosave memory: 0000000090000000 - 00000000fed1c000
    Nov  1 11:03:16 localhost kernel: PM: Registered nosave memory: 00000000fed1c000 - 00000000fed40000
    Nov  1 11:03:16 localhost kernel: PM: Registered nosave memory: 00000000fed40000 - 00000000ff000000
    Nov  1 11:03:16 localhost kernel: PM: Registered nosave memory: 00000000ff000000 - 0000000100000000
    Nov  1 11:03:16 localhost automount[5994]: lookup_read_master: lookup(nisplus): couldn't locate nis+ table auto.master
    Nov  1 11:03:16 localhost kernel: Allocating PCI resources starting at 90000000 (gap: 90000000:6ed1c000)
    Nov  1 11:03:16 localhost kernel: Booting paravirtualized kernel on bare hardware
    Nov  1 11:03:17 localhost kernel: setup_percpu: NR_CPUS:4096 nr_cpumask_bits:32 nr_cpu_ids:32 nr_node_ids:1
    Nov  1 11:03:17 localhost kernel: PERCPU: Embedded 26 pages/cpu @ffff88607f200000 s77440 r8192 d20864 u131072
    Nov  1 11:03:17 localhost kernel: Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 99271377
    Nov  1 11:03:17 localhost kernel: Policy zone: Normal
    Nov  1 11:03:17 localhost kernel: Kernel command line: ro root=/dev/mapper/lun_osp3 rhgb  quiet numa=off
    Nov  1 11:03:17 localhost kernel: PID hash table entries: 4096 (order: 3, 32768 bytes)
    Nov  1 11:03:17 localhost kernel: xsave/xrstor: enabled xstate_bv 0x7, cntxt size 0x340
    Nov  1 11:03:17 localhost kernel: Checking aperture...
    Nov  1 11:03:17 localhost kernel: No AGP bridge found
    Nov  1 11:03:17 localhost kernel: Queued invalidation will be enabled to support x2apic and Intr-remapping.
    Nov  1 11:03:17 localhost kernel: BUG: Bad page state in process swapper  pfn:5e13c2e
    Nov  1 11:03:18 localhost kernel: page:ffffea0149452a10 count:0 mapcount:0 mapping:          (null) index:0x0
    Nov  1 11:03:18 localhost kernel: page flags: 0x20000000000080(slab)
    Nov  1 11:03:18 localhost kernel: Pid: 0, comm: swapper Not tainted 2.6.39-300.26.1.el5uek #1
    Nov  1 11:03:19 localhost kernel: Call Trace:
    Nov  1 11:03:19 localhost kernel:  [<ffffffff811147dd>] bad_page+0x9d/0x120
    Nov  1 11:03:19 localhost gpm[6080]: *** info [startup.c(95)]:
    Nov  1 11:03:19 localhost kernel:  [<ffffffff81114923>] free_pages_prepare+0xc3/0x100
    Nov  1 11:03:19 localhost gpm[6080]: Started gpm successfully. Entered daemon mode.
    Nov  1 11:03:19 localhost kernel:  [<ffffffff81118a82>] __free_pages_ok+0x32/0xf0
    Nov  1 11:03:19 localhost kernel:  [<ffffffff81118b60>] __free_pages+0x20/0x30
    Nov  1 11:03:19 localhost kernel:  [<ffffffff815045b6>] __free_pages_bootmem+0x66/0x90
    Nov  1 11:03:19 localhost kernel:  [<ffffffff819f13c1>] __free_pages_memory+0x101/0x170
    Nov  1 11:03:19 localhost kernel:  [<ffffffff819f1487>] free_all_memory_core_early+0x57/0x70
    Nov  1 11:03:19 localhost kernel:  [<ffffffff81514605>] ? bad_to_user+0x76f/0x76f
    Nov  1 11:03:19 localhost avahi-daemon[6171]: Found user 'avahi' (UID 70) and group 'avahi' (GID 70).
    Nov  1 11:03:19 localhost kernel:  [<ffffffff819e41a7>] numa_free_all_bootmem+0x87/0xa0
    Nov  1 11:03:19 localhost avahi-daemon[6171]: Successfully dropped root privileges.
    Nov  1 11:03:20 localhost kernel:  [<ffffffff819e227b>] mem_init+0x3b/0x110
    Nov  1 11:03:20 localhost avahi-daemon[6171]: avahi-daemon 0.6.16 starting up.
    Nov  1 11:03:20 localhost kernel:  [<ffffffff819c4140>] ? early_idt_handlers+0x140/0x140
    Nov  1 11:03:20 localhost avahi-daemon[6171]: WARNING: No NSS support for mDNS detected, consider installing nss-mdns!
    Nov  1 11:03:20 localhost kernel:  [<ffffffff819c4140>] ? early_idt_handlers+0x140/0x140
    Nov  1 11:03:20 localhost kernel:  [<ffffffff819c4779>] mm_init+0x9/0x20
    Nov  1 11:03:20 localhost avahi-daemon[6171]: Successfully called chroot().
    Nov  1 11:03:20 localhost kernel:  [<ffffffff819c4ec5>] start_kernel+0x145/0x390

    It could be a hardware issue. I suggest to run Memtest. You can download a free stand-alone disk image, which you can burn to CD from here:
    http://www.memtest86.com/download.htm
    Then burn the iso disk image and restart the computer from the appropriate media. Be sure to follow the instructions of your CD/DVD software to properly burn .ISO images. There is plenty of info on the web.

  • How to update the records in SAP table through BADIs?

    Hi all,
    I have added custom tab with one field(input/output field) in ME22N. As soon as the user enters the value in the field,the value should be updated in the appended structure which has been included in EKKO table. I was told to be done in the BADI ME_PROCESS_PO_CUST and method PROCESS_HEADER. Please someone tell me how to do this.
    << Moderator message - The answers in the forum are provided by volunteers. Please do not ask for help quickly. >>
    Thanks,
    MKannan.
    Edited by: Rob Burbank on Nov 15, 2011 10:19 AM

    Hi,
    First subscribe the Header Tab in the method SUBSCRIBE
    DATA: ls_struc  LIKE LINE OF re_subscribers.
    Check for the Header data
        CHECK im_application = 'PO'.
        CHECK im_element     = 'HEADER'.
    CLEAR re_subscribers[].
    ls_struc-name = subscreen1.
        ls_struc-dynpro = '0001'.
      ls_struc-program = <dynpro program name >.
      ls_struc-struct_name = 'CI_EKKODB'.
        ls_subscriber-height = 7.
        APPEND ls_struc TO re_subscribers
    Use the method MAP_DYNPRO_FIELDS
    FIELD-SYMBOLS: <mapping> LIKE LINE OF ch_mapping.
        LOOP AT ch_mapping ASSIGNING <mapping>. 
       CASE <mapping>-fieldname.    
      WHEN <field name>. 
        <mapping>-metafield = mmmfd_cust_03.
        ENDCASE. 
    ENDLOOP.
    use method TRANSPORT_FROM_MODEL
    use method TRANSPORT_TO_DYNP
    TRANSPORT_TO_MODEL
    ls_mepoheader = l_header->get_data( ).
    CALL METHOD l_header->set_data
                EXPORTING
                  im_data = ls_mepoheader.
    Thanks,
    Shailaja Ainala.

  • LWAP migration of AIR-1131AG-A failed bad mzip file

    Hello Experts,
    I would like to connect a Cisco LWAP 1131AG-A-K9 with a WLC4402 running on 4.1.171.0
    Unfortunately, the software downloaded from the WLC is not correctly unpacked on the AP.
    I can see an error on the console stating "bad mzip file".
    We did several test with converting back to autonomous and migrating to LWAP again using the Cisco Upgrade Tool
    but we are failing constantly, even though the Cisco Upgrade Tool states a successful update.
    All our european Cisco LWAPs 1131AG-E-K9 are running fine by the way on the controller.
    I have added the Console messages to show the error to You.
    Who knows anything about that ?
    Please support.
    *Mar  1 00:00:08.865: %SYS-5-RESTART: System restarted --
    Cisco IOS Software, C1130 Software (C1130-RCVK9W8-M), Version 12.4(21a)JA2, RELEASE SOFTWARE (fc1)
    Technical Support: http://www.cisco.com/techsupport
    Copyright (c) 1986-2009 by Cisco Systems, Inc.
    Compiled Mon 02-Nov-09 18:17 by prod_rel_team
    *Mar  1 00:00:08.892: %CAPWAP-5-CHANGED: CAPWAP changed state to DISCOVERY
    *Mar  1 00:00:09.389: %CDP_PD-4-POWER_OK: Full power - AC_ADAPTOR inline power source
    *Mar  1 00:00:09.839: %LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0, changed state to up
    *Mar  1 00:00:18.494: %DHCP-6-ADDRESS_ASSIGN: Interface FastEthernet0 assigned DHCP address 163.157.68.121, mask 255.255.255.0, host
    name AP001e.7abd.cf52
    Translating "CISCO-CAPWAP-CONTROLLER.corp.skf.net"...domain server (163.157.156.161)
    Translating "CISCO-LWAPP-CONTROLLER.corp.skf.net"...domain server (163.157.156.161) [OK]
    *Mar  1 00:00:38.814: %CAPWAP-3-ERRORLOG: Did not get log server settings from DHCP.
    *Mar  1 00:00:38.816: %CAPWAP-3-ERRORLOG: Could Not resolve CISCO-CAPWAP-CONTROLLER.corp.skf.net
    *Mar  1 00:00:48.819: %CAPWAP-3-ERRORLOG: Go join a lwapp controller
    *Mar  1 00:00:48.819: %LWAPP-3-CLIENTERRORLOG: Set Transport AddressCalled
    examining image...
    extracting info (286 bytes)
    Image info:
        Version Suffix: k9w8-.124-3g.JA
        Image Name: c1130-k9w8-mx.124-3g.JA
        Version Directory: c1130-k9w8-mx.124-3g.JA
        Ios Image Size: 3410432
        Total Image Size: 3410432
        Image Feature: WIRELESS LAN|LWAPP
        Image Family: C1130
        Wireless Switch Management Version: 4.1.171.0
    Extracting files...
    c1130-k9w8-mx.124-3g.JA/ (directory) 0 (bytes)
    extracting c1130-k9w8-mx.124-3g.JA/info (286 bytes)
    extracting c1130-k9w8-mx.124-3g.JA/6701.img (131328 bytes)
    *Mar  1 00:00:48.831: %LWAPP-5-CHANGED: CAPWAP changed state to JOIN
    *Dec  9 12:37:21.242: %LWAPP-5-CHANGED: CAPWAP changed state to IMAGE
    extracting c1130-k9w8-mx.124-3g.JA/c1130-k9w8-mx.124-3g.JA (3138988 bytes)
    extracting c1130-k9w8-mx.124-3g.JA/7101.img (13132
    *Dec  9 12:38:19.147: %SYS-4-PUPDATECLOCK: Periodic Clock update with ROMMON failed, because size left in ROMMON (4294967295), size
    needed (29), error code (-1)
    *Dec  9 12:38:19.148: %SYS-5-RELOAD: Reload requested by lwapp image download proc. Reload Reason: NEW IMAGE DOWNLOAD.
    *Dec  9 12:38:19.148: %LWAPP-5-CHANGED: CAPWAP changed state to DOWN8 bytes)
    extracting info.ver (286 bytes)
    New software image installed in flash:/c1130-k9w8-mx.124-3g.JA
    Configuring system to use new image...done.
    archive download: takes 58 seconds
    Writing out the event log to nvram...
    Xmodem file system is available.
    flashfs[0]: 11 files, 3 directories
    flashfs[0]: 0 orphaned files, 0 orphaned directories
    flashfs[0]: Total bytes: 15998976
    flashfs[0]: Bytes used: 6035968
    flashfs[0]: Bytes available: 9963008
    flashfs[0]: flashfs fsck took 30 seconds.
    Base ethernet MAC Address: 00:1e:7a:bd:cf:52
    Initializing ethernet port 0...
    Reset ethernet port 0...
    Reset done!
    ethernet link up, 100 mbps, full-duplex
    Ethernet port 0 initialized: link is up
    Loading "flash:/c1130-k9w8-mx.124-3g.JA/c1130-k9w8-mx.124-3g.JA"...#################################################################
    ###################################################################################################################################b
    ad mzip file, unknown zip method
    Error loading "flash:/c1130-k9w8-mx.124-3g.JA/c1130-k9w8-mx.124-3g.JA"
    Interrupt within 5 seconds to abort boot process.
    Loading "flash:/c1130-rcvk9w8-mx/c1130-rcvk9w8-mx"...###############################################################################
    File "flash:/c1130-rcvk9w8-mx/c1130-rcvk9w8-mx" uncompressed and installed, entry point: 0x3000
    executing...

    We are using right now only Lightweight-APs with ETSI-Standards on several Controllers without having that problem.
    The problem appears during the migration from AUutonomous to Lightweight of an 1131AP with American-Standard.
    The according WLC is configured to support US-Country of course.
    I cannot believe that this is the problem.  This would mean different LWAPP-images per regulation domain.
    Who knows more about this damned mzip-error during the extracting phase of the LWAPP-image ?

  • Bad interpreter: Permission denied whn installin ORACLE 11g on linux 32 bit

    Hello All,
    I have a VMWare that i installed into it Oracle enterprise Linux 5 32 bit, i am trying to install Oracle 11g R2 on it, i have the .iso oracle file, l linked the CD/DVD drive of the VMware to the location of this ISO file, and i applied all the steps mentioned in this link : http://www.oracle-base.com/articles/11g/OracleDB11gR2InstallationOnEnterpriseLinux5.php
    i did: cd media and i found the runInstaller file but wen trying to run it: ./runInstaller i am facing the below :
    [root@oel5 media]# cd V17489-01/
    [root@oel5 V17489-01]# ls
    doc install response rpm runInstaller sshsetup stage welcome.html
    [root@oel5 V17489-01]# ./runInstaller
    -bash: ./runInstaller: /bin/sh: bad interpreter: Permission denied
    your help is appreciated please.
    Regards,

    The problem is that gnome-mount will not give you execute rights on CD/DVD content. The solution is at the below link in the Tips section:
    Installing Oracle 11g R2 on Ubuntu 10 Howto
    Logout your current X-session and login as user Oracle
    Insert the Oracle Installation DVD
    Or from a remote terminal session:
    Insert the Oracle Installation DVD
    sudo umount /dev/sr0
    Create a new session as user Oracle
    ssh -Y oracle@server_address
    sudo mount /dev/sr0 /media
    /media/database/runInstaller
    If you see "runinstaller" instead of "runInstaller" you can try the following:
    sudo mount -o loop,norock /dev/cdrom /media
    more also here:
    runInstaller ".oui: No such file" / "bad interpreter: Permission denied"
    Edited by: Joe Shmoe on Nov 5, 2010 11:45 AM

  • Want to modify GR/GI  SLIP  Field into change mode.new to badi

    Hi,
         I want to modify GR/GI  SLIP  Field into change mode , so my customer can change data whenever he wants.. This field  exist in     vl02n transaction.
            Right now it is in disabled mode   .I am new to badi , so please guide me .
    Regards,
    Ranu.
    Edited by: ranu sharma on Nov 4, 2009 8:16 AM

    Hi,
    Please note this is the client requirement to have the field editable, so please do not convey the edit entires in table to users, this is basically for our reference only,
    In this case, you'll have to use the user exits to make the field editable in SAP for users, kindly check the below user exits, and take help of delveloper on the same.
    Exit name     Description
    SDVFX001     User exit header line in delivery to accounting            
    V50Q0001     Delivery Monitor: User Exits for Filling Display Fields    
    V50S0001     User Exits for Delivery Processing                         
    V56TDLIF     Filter Delivery Items for Shipment                         
    Thanks & Regards,
    Rahul Verulkar

Maybe you are looking for

  • Run BI Publisher report (with Excel template) on Windows 7

    Hi, All. Sorry for my English :) I have some problem: I use BIP standalone for my reports. Some reports are in Excel (with Excel template). When I run it on PC with WinXP - all is OK. But, when I try to run it on PC with Win7, then Excel is opening a

  • Error message 173-36 when using Add mode in SAP Add-on

    I have created an ADD ON application that includes file maintenance on some master data type user defined tables (SAPbobsCOM.BoUTBTableType.bott_MasterData).  When I try to add a new record to one of my tables,  using a form that I created in my add

  • Java Calendar problem

    Hello I have problems with Java Calendar class: Problem 1: I try to set Java calendar to specific date, but an exception is thrown. Problematic dates are 19210501 and 19420403 (yyyymmdd) at midnight (hour of day = 0, minutes = 0, seconds = 0, millise

  • UTL_FILE.put_raw With Oracle 8.1.6

    Hi, Does the oracle 8.1.6 support UTL_FILE.put_raw. thanks in advance.

  • LMS 4.2 Device Discovering issue

    HI All I have experience in LMS 3.2 and my company asked me to install and LMS 4.2. I have all documents about LMS 4.2 but it is taking time to read and doing as per document. I started discovery but the problem is last two days it is running and fin