IDoc PI SQL - Still waiting acknowledgement

Hi all, I have a problem in production with hundreds of messages. The sales order interface (which runs around 200 times/hour) got stucked after an error in a INSERT statement.
Interface IDOC > PI > SQL
Then the PI monitor shows the success flag but the Ack Status as the interrogative sign and a green ball, telling that all the sales order are under the status Still waiting acknowledgement.
I figured out that the problem might be in the message mapping that was just changed and transported.
So, how can I reprocess all of the orders the are still awaiting for the ack?
tks
Edited by: rvsilvax on Oct 12, 2011 11:39 PM

Solved.
Through Message service, deleted ack with errors, resent very next message with no error and all other got processed.
tks.

Similar Messages

  • Please HELP to retrieve all records in PL/SQL --Still waiting for solution

    First of all, I am a PL/SQL beginner. I need help to retrieve all records in PL/SQL from a database (maybe anyone could give me an example). Here is my code, but this code is only able to retrieve one records only. I would like to create a web service by using PL/SQL to view data in a table.
    CREATE or REPLACE package body DRIVER_FETCHER as
    FUNCTION get_driver(driver_id in VARCHAR2) RETURN driver_rec IS
    driver_found tblDrivers%rowtype;
    driver_rtn driver_rec;
    BEGIN
    SELECT *
    INTO driver_found
    FROM tblDrivers;
    WHERE tblDrivers.lngDriverID=driver_id;
    driver_rtn := driver_rec
    driver_found.lngDriverID,
    driver_found.strTitle,
    driver_found.strFirstName,
    driver_found.strLastName,
    driver_found.dteDOB,
    driver_found.dteDateLicensed,
    driver_found.strLicenseReference,
    driver_found.strAddress_Street,
    driver_found.strAddress_TownVillage,
    driver_found.strAddress_Country,
    driver_found.strAddress_PostCode,
    driver_found.strContactDayPhone,
    driver_found.strContactNightPhone
    RETURN driver_rtn;
    END;
    END;
    and here is the tblDrivers table
    CREATE or REPLACE type DRIVER_REC as object
    lngDriverID varchar2(10),
    strTitle varchar2(5),
    strFirstName varchar2(20),
    strLastName varchar2(20),
    dteDOB date,
    dteDateLicensed date,
    strLicenseReference varchar2(30),
    strAddress_Street varchar2(50),
    strAddress_TownVillage varchar2(20),
    strAddress_Country varchar2(15),
    strAddress_PostCode varchar2(10),
    strContactDayPhone varchar2(20),
    strContactNightPhone varchar2(20)
    CREATE or REPLACE package DRIVER_FETCHER as
    FUNCTION get_driver(driver_id IN VARCHAR2) RETURN driver_rec;
    END;
    Thank You,
    Paul
    Message was edited by:
    user452391
    Message was edited by:
    user452391
    Message was edited by:
    user452391

    Hi,
    you will enjoy reading
    http://download-west.oracle.com/docs/cd/B10501_01/appdev.920/a96624/toc.htm
    for a fundamental understanding of PL/SQL.
    You can do a "select * from t;" only in SQL, not in PL/SQL. There you have to open a cursor and fetch the results into a variable, e.g.:
    declare
    cursor c_example
    is
       select * from emp;
    begin
       for r_example in c_example loop
           dbms_output.put_line(r_example.empno);
       end loop;
    end;This is an explicit cursor, opened within an "cursor for"-loop. The results are fetched into a (implicitly declared) record "r_example". The record now holds the values of one row from the emp table. The loop ends when all record from emp where fetched.
    Regards,
    Gerd

  • IDOC to flat file "Still Awaiting Acknowledgement"

    Hi All,
    Our scenario is IDOC to flat file .
    I have created User module also in receiver communication channel.... but I didn't create FCC  parameters
    please see the attachments, even I am getting "Still Awaiting Acknowledgement" in sxmb_moni.....
    could you please tell me why I am getting that?
    Thanks In Advance....
    Vishnu pallamreddy

    Hi Vishnu,
    Check this below discussion,
    Still awaiting acknowledgment 
    Are you sending test message from RWB or Source system, try to trigger message from Source system and see the status.

  • Idoc- XI- Idoc - still awaiting acknowledgement

    Hi guys!
    We send Idoc->XI->Idoc and in sxi monitor we have a green flag - still awaiting acknowledgment. What does it mean? How can we be sure, that Idoc is received bu target application?
    Thanx olian!

    Hi Olian,
    One way is to logon to R/3 system and use tcode WE02 or WE05 and there give your idoc type and press F8. you can see your idoc here.
    Also go through it.
    /people/saravanakumar.kuppusamy2/blog/2005/01/20/configuration-tips-for-a-business-serviceintegration-process-to-send-back-ale-audit-idoc
    Note: IDoc technology supports its own acknowledgment technology, namely the ALE Audit. Here there are no acknowledgment requests from the sender. Instead, the receiver decides whether an acknowledgment IDoc should be sent back to the sender based on the ALE configuration. These acknowledgment IDocs are only used for monitoring on the sender side.
    IDoc technology is the only technology in which positive acknowledgments from the application contain data. This data is sent by the IDoc adapter in an acknowledgment IDoc if the sender is an IDoc system. Otherwise, the data is discarded.
    For the inbound IDoc adapter to be able to send an acknowledgment IDoc to the sender, a communication channel with the interface ALEAUD.ALEAUD01 must be maintained for the sender.
    Regards,
    Sarvesh
    Message was edited by:
            Sarvesh Singh

  • Proxy - File Adapter - "Still awaiting acknowledgment"

    Hi,
    I have a "Proxy -> BPM -> File" scenario and have configured acknowledgment. When the data is sent from proxy and written to file without errors I get the correct acknowledgment back to the R3 system. But when the file can't be written (FTP cant be reached) then  I get an error in the BPM step but get an Wait step in R3. "Still awaiting acknowledgment"
    sxmb_moni in PI:
    Processed successfully@ @Still awaiting acknowledgment           @ 04.08.2009 14:47:18 14:47:18     @R3System
    Processed successfully@ @Acknowledgment contains system errors   @ 04.08.2009 14:47:19 14:47:19 @Integration Process
    In SWWL I see this status:
    Waiting for event 'SEND_OK_TRANSPORT' of object type 'CL_SWF_XI_MESSAGE'
    Maybe it has something to do with the "Guaranteed delivery". It retries 4 times and maybe it is waiting for an retry limit or something. I am not sure.
    Any ideas on this one?

    Shouldn't this be a "Acknowledgment contains system errors" ?
    Are you implementing any logic once the deadline is met?
    To send the NACK to R3 you need to have a Send step in your Exception/ deadline branch which will send the required message to R3.
    A similar approach is shown here: /people/michal.krawczyk2/blog/2006/06/22/xi-playing-with-the-file-adapters-acknowledgments
    Instead of the Control Step you need to have a Send Step.
    Update:
    Please note that any acknowledgement from AE will come into the BPM and will not go directly/ automatically to R3. The meaning of acknowledgement coming back to the Sender Application means ACK/ NACK to the BPM and not any other system.
    Regards,
    Abhishek.
    Edited by: abhishek salvi on Aug 5, 2009 2:48 PM

  • Ack Status - Still waiting acknoweledgement

    Hi experts,
    I have this Ack Status (? Still waiting acknoweledgement) in my SXMB_MONI with an IDOC -> XI -> JDBC scenario.
    How can I configure Ack in order to fix this or disable this configuration in case I don't want it?
    Points will be given,
    Regards,
    Daniela

    <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/f6d2d790-0201-0010-9382-b50b499b3fbe">Howto- Handle IDoc Ack</a>

  • Still WAIT FA

    Hi B2B Gurus,
    We send a PO to our TP, it successfully went to TP and we got the MDN back.if we see the status of the reports tab, its WAITFA(waiting for functional acknowledge), later on Out trading partner send corresponding 997 for PO,successfully we send a MDN back, The problem is, after getting an 997 also the status is still WAIT FA,
    please give me some idea to resolve this.
    Regards

    Hi Anuj,
    Still I am getting the same error. state is Still WAIT FA.Here i am enclosing attached 850 and 997
    ISA*00* *00* ZZEMR *01*042653634 *090902*1557*<*00502*000001814*0*T*>~
    GS*PO*LIEBERTNA*042653634*20090902*1557*1814*X*005020~
    ST*850*1814~
    BEG*00*SA*501P75000238**20090901**NA****03~
    CUR*BY*USD~
    REF*S3*EMR850V5.0~
    REF*06**501~
    FOB*DF*ZZ*EMR2006~
    ITD************5TH 3RD PROX~
    N1*VN*FASTENAL COMPANY, THE*93*501V00036296~
    N3*727 HARRISON DR~
    N4*COLUMBUS**43204*US*93*501V00036296*OH~
    PER*SU*FLORNESS DAN*TE*TL 507 453-8211~
    N1*SO*LIEBERT CORPORATION~
    N3*1201 S HOUK RD~
    N4*DELAWARE**43015*US***OH~
    N1*BT*LIEBERT CORPORATION~
    N3*PO BOX 8629~
    N4*ST. LOUIS**63126*US***MO~
    PER*BD*MARQUEZ RAQUEL*****EM*[email protected]~
    PO1*001*5000*EA*.087**SW*10-33MF59Z-57*VX*10794-00227~
    PID*F****STUD SC STEEL M4-0.7 18MM LG~
    TC2*A*7318.15.5090~
    N1*ST*LIEBERT CORPORATION*93*B00000001~
    N3*1201 S HOUK RD~
    N4*DELAWARE**43015*US*93*015*OH~
    REF*4C*B002~
    PER*BD*FLORNESS DAN*TE*TL 507 453-8211~
    PER*RQ*MARQUEZ RAQUEL~
    SCH*5000*EA***112*20090909******1~
    CTT*1~
    SE*30*1814~
    GE*1*1814~
    IEA*1*000001814~
    997
    ISA*00* *00* *01*042653634 ZZEMR *090902*1120*<*00502*000000162*0*T*>~GS*FA*042653634*EMR*20090902*1120*133*X*005020~ST*997*0164~AK1*PO*1814~AK2*850*1814~AK5*A~AK9*A*1*1*1~SE*6*0164~GE*1*133~IEA*1*000000162~

  • Really poor customer service - still waiting for B...

    Just a quick post to see if a moderator could help me…or as a last attempt for BT to at least acknowledge my recent complaint (or apologize).
    I’d be interested to hear if other users have had similar problems (to any one of mine as it crosses different forum topics)…
    I’d like to think I’m writing as an objective and reasonable customer and a loyal customer at that.  Suffice it to say, in this competitive marketplace, I’ve not been impressed with BT in the last 3 months.
    My automated email complaints response is 110110-007990 (if that helps).
    Given my numerous attempts to make contact with the BT customer services team; I am doubtful that I shall receive the courtesy of a reply.  I do not intend to repeat my complaint in detail here but in a nutshell, following the home move team promising various things such as:
    1) a waiver of the line installation charge if I continue a full service package (which I gather is £127.99 for flicking a switch at the exchange);
    2) a reduction in my billing generally (as I was “out of contract” for around 6 months so I was paying a DD around £65 p.m for line rental, basic phone, Broadband opt 2 and basic BT vision);
    3) an expedited home move switchover within days (not weeks).
    However, none of this happened and like many recent posts my billing has gone crazy.  To cut a long story short BT have renegaded on all the promises made and the switchover service has been, at best, terrible.
    1) I was in fact billed for an install plus delivery charges (£8.98) for a superfluous BT home hub and BT vision box (which never turned up).
    2) My bills (and DD) have risen to a level which I simply cannot fathom as the BT invoicing system requires a degree in accounting to understand.
    3) And after ordering on the 3rd December, I’m still waiting for my broadband activation after the phone line was only activated late last week.  (To add insult I was told that an engineer would call (so took a day off to also receive the broadband kit) and allow access if required but it was cancelled and rescheduled twice).  Now hoping for the 18th Jan – 37 days after ordering – woohoo.
    I’m now seriously thinking of leaving …. There’s no incentive for me to stay now I’ve been charged and that charges have increased beyond the VAT increase.  I suppose one customer like me will not make a difference to the BT annual report, but if my experience is typical of how customers are treated; if I were a BT shareholder I would be worried.
    Solved!
    Go to Solution.

    Cheers. for the first 6 months it was a locked ip profile, always reset after phoning bangalor and speaking to the "have you reset your router" robots. for a few hours or a day or more, I'd get 2-3mbps then crash, back down to 135kbps. The mods here (after first banning me for reposting what they had mailed me) were quite helpful, I think they were/are frustrated that there is little they can do for genuine line quality problems, the ones that will cost money/time/effort to sort. Actually time and effort didnt seem to be a problem, I had no end of openreach blokes come to the house, sometimes 2 came at once, all with the same stories of woe, trackers in their vans, being sent out on useless jobs they had already reported were down to line faults/quality but being sent out again and again. And not just to me, I had the same guy just a couple of times but all were routinely demoralised with some kind of deep routed hatred for their managers that due to the trackers were now able to see where they were at any time.
    bonkers mate, like I care what they think of their manager. at first when i mentioned the problem with using the broadband and phone together, there seemed to be some interest but when the problem was confirmed, the umbrellas came up, broadband said it was the lline, the line people said it was the broadband. line people also said when they test, the bb will be unplugged and if there is no fault, i will have to pay 130-ish quid. thing is the phone works ok without the bb plugged in. i tried everything, new adsl socket, standing on one leg, the lot. then got a capped 500kbps rate for option2. at least then i didnt get back to 135kbps everyday.
    i signed a new contract in november, god knows why, Im now buying myself out of it.
    there's one born everyday eh?
    if bt were really interested in helping they would send out a smart person that would try and figure out why my neighbour gets 3mbps and i get 500kbps at a capped rate and 135kbps at the adaptive rate technology has done its business on my connection. I've had 3 routers sent to me, Ive bought a netgear all were no help. Its the line bt!!!! somewhere there is a fault. yes im far from the exchange, so is the guy next door!

  • Customer service promised me call back in 24 hrs but it has been 72 hrs and I m still waiting for the call,,,,,

    Apple sent me replacement phones and both with different coverage on them. Repair coverage finishing lot earlier then what I had on the original defective phones. Now they are telling me that he phones they received were different then the ones in Repair Case. After 150 minutes long phone call the rep said me that somebody will call me within 24 hrs and I m still waiting for the call after 3 days. the conversation was polite and helpful all the way from both sides but now I feel like Apple reps are trying to avoid this problem because this is their problem that most likely they misplaced my phones in their wharehouse and after my call (one week after the phones received by apple) they started looking for it.
    I had the repair status updated in my profile after I received the new wrong phones. Even the acknowledgement email from apple mentioning that they have sent out the replacement product came to my inbox two days after I received the phones.
    Is this Mr.Jobs Apple ?
    Does anyone has Customer service email address ?

    I know there is a contact us tab on the web page and thats what I have mentioned here that what happened when I called them.
    thanks for ur input though,

  • 5 months + and still waiting for a phone line

    27/05/2013 Placed order for line and broadband. Paid for 1 year service in advance.
    This was to reconnect a line I had cancelled in in January as we started a major re-fit/renovation at our house and were out of it for 4 months. Transferred line to a new address at this time (different exchange)
    18/06/2013 Engineer scheduled to visit. - Waited in for 6hours, no one turned up, no contact made
    19/06/2013 No one got in touch. I telephoned. Problem with line. New appointment made for Monday 15 July 2013
    15/07/2013 Engineer did not turn up, no contact made again after waiting in most of day.
    16/07/2013 I called and told work on line not completed. They needed to do external work. Given assurance I would get a call on 21/07/2013 as work scheduled to be completed by then. It had been accelerated (had been told this before come to think of it)
    21/07/13 No one called, again
    22/07/2013 I called and told work still not completed but would be by 25/07/2013 so to call back and arrange an engineer visit appointment
    25/07/2013 I called , told work still not completed, would get a call by 29/07/2013 when work will be completed – to arrange another engineer visit. I filed online complaint
    29/07/2013 no call. I called, no update, call again in 2 weeks
    Numerous calls in August, and 2 online complaints. Now getting texts telling me there is no update and promising to get in touch by a certain date, they don't. New line needed as exchange reached capacity. Old line no good, have to lay a new one. Still being told order will be accelerated. Still waiting for the "advisor in our delays team to monitor the job and contact the engineers for a full investigation to be done so we can provide you with an accurate update."
    Still more calls in September along with numerous calls (me) and 2 from BT to say they have no update!
    Still being told the biggest load of rubbish as an excuse, eg me "but I had an active line in January" you "ah that is openreaches fault, they come and physically rip out and remove the wiring if a line is cancelled"   or: BT- "we cant talk to openreach ourselves, we can only email them" me - "that's funny as your colleague on the last call claimed to have spoken
    with them after leaving me on hold for 5 minutes" 
    October. Called today. ( now have a telephone number with a PIN number) Still no progress. They started digging on September 5th according to one email. I asked were they using a tea spoon, they even replied in email NO!
    What am I supposed to do now. I am to get an update "tomorrow", but going by all previous updates it will be we will call again in 10 days - the don't. Time spent waiting for engineers -  2 days, time spent on phone/emails etc - 5+ hours.

    Hi MCM66,
    Thanks for posting and welcome to the community!
    Sorry for the problems you've had getting services reconnected. Hopefully the renovations were well worth it! 
    I can help sort everything out from here.  Click on my username and under the section "about me" you'll see the link to "contact the mods".
    Whenever we've received your details we'll take it from there.
    All the best,
    Robbie
    BTCare Community Mod
    If we have asked you to email us with your details, please make sure you are logged in to the forum, otherwise you will not be able to see our ‘Contact Us’ link within our profiles.
    We are sorry that we are unable to deal with service/account queries via the private message(PM) function so please don't PM your account info, we need to deal with this via our email account :-)
    If someone answers your question correctly please let other members know by clicking on ’Mark as Accepted Solution’.

  • Single User Mode: Still waiting for root device

    iMac G4.
    I reset the NVRAM, PRAM. It won't attempt to boot from anything but a OS 10.4 cd; booting from OS 9 cd just leaves me at the flashing question mark icon.
    If I try to boot from OS X cd, it comes back with the prohibitory sign.
    If I try to boot into single user mode, it gives me a bunch of "...."has no kernal dependency lines, then a 'still waiting for root device' line, and repeats that.
    Something to the effect before the 'still waiting for root device' is "Waiting on <dict ID="0"><key>IOProvider-Class</key><string ID="1">IOResouces</string><key>IOResouceMatch></key><string ID="2">boot-uuid-media</string></dict>"
    Any help please?

    Nevermind...I found out that the hard drive was bad...still puzzles me why it wouldn't boot from CD though, as I thought they all should even if no drive is present.

  • 10.6.8 Netboot - "Still waiting for root device"

    Hi all,
    I am having trouble with one particular 10.6.8 Netboot image that is hosted on a Mac Pro running 10.5.8 Server.  (The main 10.5.8 Server is currently hosting about 15 other Netboot and Netrestore images that work with no problem.)  I built the image on a 10.6.8 Server using System Image Utility from a fully updated 10.6.8 restore image on an external hard drive.  The external drive was started up on MacBook, MacBook Pro, and iMac systems ranging from Late '06 to Early '11 revisions.  Software update was run on every startup, but came back fully up-to-date every time and never encountered problems starting up each from the external drive.
    I then ran Disk Utility permissions repair on the external drive from the 10.6.8 Server Mac Pro and built the Netboot image in System Image Utility.  Although I am fairly new to this process, I have already successfully built several 10.6.8, 10.7.5, 10.8.5, and 10.9 Netrestore images as well as one 10.9 diagnostic Netboot that all work perfectly.  I followed the same process when creating the 10.6.8 Netboot image.
    The image I created, called 10.6.8 Diags 3.0, shows up in the Netboot list, but when I attempt to boot it shows the Apple logo for a bit before showing the "circle slash" symbol.  Verbose mode shows that it hangs when starting and repeats "Still waiting for root device" over and over again and never does anything.
    I have rebuilt the 10.6.8 Diags 3.0 Netboot image several times to rule out the possibility of corruption durring image creation.  I have also tried to create the image from a Firewire attached external drive as well as building the data on the external drive into a .dmg on the 10.6.8 Server and then creating the image from that.  All methods of creating the image yeild the same "Still waiting for root device" error when attempting to start up on any system supporting the 10.6.8 kernel.
    Netboot settings in Server Admin are the same as other Netboot images that are functioning: enabled, diskless, Intel (grayed out), and NFS.  I have verified that all enabled image index numbers are unique and even tried several different index numbers on the problem Neboot image.
    Again, all other Netrestore images I created on the same 10.6.8 Server work just fine when added to the Netboot directory on the 10.5.8 Main Server, but the Netboot image of 10.6.8 Diags 3.0 does not.  I'm not sure what else to try at this point, any ideas?

    Ooooh. I've been reading similar pages on cidori.org and just assumed it was one of those. Remarkable how my google searches didn't find that one. Thanks for the pointer, and I'll go try it.
    Thanks again, Dan.

  • HT1577 how do a get a refund on a ridiculously slow downloading rented movie for my apple tv dispite a 5mb/sec down load speed? my first experience with appletv movie rental. no good. rented at 4:30pm. still waiting for standard def movie to finish at 8:1

    how do a get a refund on a ridiculously slow downloading rented movie for my apple tv dispite a >5mb/sec down load speed? my first experience with appletv movie rental. no good. rented at 4:30pm. still waiting for standard def movie to finish at 8:10pm. Not good enough.

    Thanks for the pointers folks. Yeah, 1.5GB is pretty poor isn't it? There are other suppliers, but you have to get a their phone line installed to access the internet so it's an £85 setup fee plus a day off work for a guy to come round and drill a hole in your wall before you even get to the monthly costs.
    Don't get me wrong though - I'm certainly not an Apple basher, but am equally frustrated with both them and the ISP.
    Virgin Media spend all kinds of money advertising their broadband as the fastest in the UK, but don't tell you (up front anyway) that you'll be cut off if you actually try and use it.
    Apple on the other hand carry on with their 'it just works' mantra, but with Apple TV this only applies if you meet certain criteria (again, not mentioned up front).
    I guess it aint a biggie, as i was gifted my Apple TV, and love all the other stuff it does, but from the number of posts on this forum can see that there's a lot of angry customers out there who want explanations as to why they're having similar problems to me.
    Will be very interesting to see if Apple release any kind of software update that turns the flash drive from a buffer to permanent storage, to at least ease some of the pain...
    Message was edited by: McGinty

  • Still waiting for a response from Adobe regarding the post "Printing a pdf from a marked-up pdf".

    Still waiting for a response from Adobe regarding the post "Printing a pdf from a marked-up pdf" dated 15 Dec 2012 9:20 AM.

    Look everyone that comes here with a support problems has gone through all the normal channels, around and  round in circles with no one seeming to be interested. They've called every phone number, every email address they can find. They have been put on hold and bounced fifty times to another operator only to be hung up on. If Adobe would bring back support to main land and have people that know what's going on instead of having people that people can barely understand read from scripts. Scripted information only applies about 10 % of the time. I'm just giving people an alternative. after they have torn their hair out going the normal route.  If they had been able to get a solution they wouldn't be coming here for help.
    There should be a forum set up just for people to air these issues and Adobe employees forced to man it. Then we wouldn't have to have such a Bad attitude. Right now Adobe's Support reputation is worse than Intuit's which did have the absolutely worse on the Planet. Now they are number 2.
    You know it yourself that Adobe's support is absolutely worse than terible. However to prevent me from being banned from the forums I will simply will provide the adobecare email address from now on
    So let's sweep it under the rug.

  • Still Awaiting Acknowledgement in SXMB_MONI - RFC Adapter

    Have a scenario where we are using an RFC adapter on the reciever end to bring in data into R/3. The message in SXMB_MONI is showing successfully processed, but in column "Ack Status" - the icon states "Still Awaiting Acknowledgement". As a result of this the data is not being posted into R/3.
    What is the best way to check the reason for "Still Awaiting Acknowledgement" and how to fix the problem so that the data is successfully processed in the R/3 system as well. Have already checked the adapter engine for adapter RFC and it does not show the any status - error or successful.

    Hi,
    RFCs usually use application acknowledgements and not system acks, and hence we shouldn't be getting that 'awaiting ack' symbol in the moni.
    Try unchecking the 'maintain order at runtime' checkbox in interface determination and see if that helps.
    Also make sure that the sender adapter's quality of service(QOS) is not EOIO.
    Regards,
    Smitha.

Maybe you are looking for

  • Video Editing on Macbook

    Im thinking about purchasing a macbook or macbook pro. I was curious to know if the macbook has enough power to do some decent video editing on it. If i purchase the macbook, i will upgrade to 1GB Ram and 120GB Hard Drive. Any information would be he

  • Make field MDMA-DISGR (MRP Group, MRP Area) mandatory in material master

    We are using MRP Area (Storage location) and I want to make MRO Group (MDMA-DISGR) mandatory. It is not in the list of fields (IMG > Logistics) to where field selection for material masters is set. Am I missing something -- or can this field not be m

  • Sales order item First Date

    Hi all, when ever customer changes the first date they need a pop saying the date has been modified please check it. can any one tell me when ever SO item level first date is changed any user-exit available to POP-UP the message. Regards, Abdul gaffa

  • Baggage files not displaying in Project Manager panel?

    I have 203 baggage files in a project but only 45 of them actually display under the Baggage Folder list in the Project Manager. When I select new/baggage file and select one of these...there is no response from RH. If I open the rhbag.apj file with

  • Trying to use aggregate is aggravating....

    I've seen similar related threads, but nothing that quite answers my question, so here goes... I'm trying to use my Apogee Duet, and my Focusrite Saffire Pro 40 together with the Saffire being an aggregate device.  I have added it to the menu in the