Holding a PO in ME21

Hi!
Please look at the following business scenario.
A PO is created using the transaction ME21. Now if a particular check fails for any item in the purchase order, I am supposed to put the PO on hold status/ block it somehow and update a custom table with the held PO number.
Now here is my issue.
After hunting around for quite a bit, I found out that  in ME21N the PO can be held using the check method of the badi ME_PROCESS_CUST by setting the ch_failed flag. However, I am supposed to use ME21 transaction and not the enjoy transaction, as it is a third party order. In case of ME21 this badi will not be triggered at all. I have looked around for quite some time and I am not able to find it.
Can someone tell me of any user exit/ badi/ form exit for me to achieve the same? Please not that a PO number must be generated and I should not simply throw an error message to the user.

Hi,
Try this code..I have used memory pointers....
In the userexit EXIT_SAPMM06E_012
DATA lwa_ekpo LIKE bekpo.
data lw_field(50).
FIELD-SYMBOLS <t_xekpo> TYPE STANDARD TABLE.
IF sy-tcode = 'ME21'.
  lw_field = '(SAPLMEPO)POT[]'.
  ASSIGN (lw_field) TO <t_xekpo>.
  if sy-subrc ne 0.
    lw_field = '(SAPMM06E)POT[]'.
    ASSIGN (lw_field) TO <t_xekpo>.
   if sy-subrc <> 0.
     message e208(00) 'Couldn't find POT'.
   endif.
  endif.
  loop at <t_xekpo> into lwa_ekpo.
Check the conditions..
example..
<b>    if lwa_ekpo-menge > '100.000'.
Block the PO line item..
      lwa_ekpo-loekz = 'S'.
      MODIFY <t_xekpo> from lwa_ekpo transporting loekz.
    endif.</b>
  endloop.
ENDIF.
Hope this helps..
Thanks,
Naren

Similar Messages

  • BADI in ME21

    Can any one tell me what are the BADIs available in ME21 transaction?
    I need to do some screen modification in the table control in ME21 .
    Regards,
    Sujatha.

    the BADIs in ME21 are
    ME_PROCESS_REQ                          Enhancements for Processing Enjoy PReqs: Internal             
    ME_PROCESS_PO_CUST                      Enhancements for Processing Enjoy Purchase Order: Customer    
    ME_PROCESS_PO                           Enhancements for Processing Enjoy Purchase Order: Intern.     
    ME_PROCESS_COMP                         Processing of Component Default Data at Time of GR: Customer  
    ME_PO_SC_SRV                            BAdI: Service Tab Page for Subcontracting                     
    ME_HOLD_PO                              Hold Enjoy Purchase Orders: Activation/Deactivation           
    ME_GUI_PO_CUST                          Customer's Own Screens in Enjoy Purchase Order                
    ME_DEFINE_CALCTYPE                      Control of Pricing Type: Additional Fields                    
    ME_COMMTMNT_REQ_RE_C                    Check of Commitment Relevance of Purchase Requisitions        
    ME_COMMTMNT_REQ_RELE                    Check of Commitment Relevance of Purchase Requisitions        
    ME_PROCESS_REQ_CUST                     Enhancements for Processing Enjoy PReqs: Customer             
    ME_PURCHDOC_POSTED                      Purchasing Document Posted                                    
    ME_RELEASE_CREATE                       BAdI: Release Creation for Sched. Agreemnts with Rel. Docs    
    ME_REQ_OI_EXT                           Commitment Update in the Case of External Requisitions        
    ME_REQ_POSTED                           Purchase Requisition Posted                                   
    ME_TAX_FROM_ADDRESS                     Tax jurisdiction code taken from address                      
    ME_TRIGGER_ATP                          Triggers New ATP for Changes in EKKO, EKPO, EKPV              
    MM_EDI_DELFOR_OUT                       Enhancements for IDoc Output of SA Releases: Internal         
    MM_EDI_DESADV_IN                        Supplementation of Delivery Interface from Purchase Order     
    MM_EDI_ORDERS_OUT                       Enhancements for IDoc Output of Purchase Order: Internal      
    SMOD_MRFLB001                           Control Items for Contract Release Order                      
    ME_COMMTMNT_PO_REL_C                    Check for Commitment-Relevance of Purchase Orders             
    EXTENSION_US_TAXES                      Extended Tax Calculation with Additional Data                 
    MEGUI_LAYOUT                            BAdI for Enjoy Purchasing GUI                                 
    ME_ACTV_CANCEL_PO                       BAdI for Activating the Cancel Function at Header Level       
    ME_BAPI_PR_CHANGE_01                    BAdI: Enjoy BAPIs for Purchase Requisitions (Method Change)   
    ME_BAPI_PR_CHANGE_02                    BAdI: Enjoy BAPIs for Purchase Requisitions (Method Change)   
    ME_BAPI_PR_CREATE_01                    BAdI: Enjoy BAPIs for Purchase Requisitions                   
    ME_BAPI_PR_CREATE_02                    BAdI: Enjoy BAPIs for Purchase Requisitions (Method Create)   
    ME_BSART_DET                            Change document type for automatically generated POs          
    ME_CCP_ACTIVE_CHECK                     BAdI to check whether CCP process is active                   
    ME_CCP_BESWK_AUTH_CH                    BAdI for authorization checks for procuring plant             
    ME_CCP_DEL_DURATION                     Calc. of Delivery Duration in CCP Process (Not in Standard)   
    ME_CHANGE_CHARACTER                     Customer-Specific Characteristics for Product Allocation
    ME_CHECK_ALL_ITEMS                      Run Through Items Again in the Event of Changes in EKKO    
    ME_CHECK_SOURCES                        Additional Checks in Source Determination/Checking         
    ME_CIN_LEINRF2R                         BADI for CIN India - Delivery charges                      
    ME_CIN_LEINRF2V                         BADI for LEINRF03 excise_invoice_details                   
    ME_CIN_MM06EFKO                         Copy PO data for use by Country version India              
    ME_CIP_ALLOW_CHANGE                     Configuration in Purchasing: Changeability Control         
    ME_CIP_REF_CHAR                         Facilitates Reference Characteristics in Purchasing        
    ME_COMMITMENT_STO_CH                    BadI for checking if commitments for STOs are active       
    ME_COMMTMNT_PO_RELEV                    Check for Commitment-Relevance of Purchase Orders
    Hi Also please find the following code useful to find the User Exits and BADIs for a Transaction
    TABLES : TSTC,
    TADIR,
    MODSAPT,
    MODACT,
    TRDIR,
    TFDIR,
    ENLFDIR,
    SXS_ATTRT ,
    TSTCT.
    DATA : JTAB LIKE TADIR OCCURS 0 WITH HEADER LINE.
    DATA : FIELD1(30).
    DATA : V_DEVCLASS LIKE TADIR-DEVCLASS.
    PARAMETERS : P_TCODE LIKE TSTC-TCODE,
    P_PGMNA LIKE TSTC-PGMNA .
    DATA wa_tadir type tadir.
    START-OF-SELECTION.
    IF NOT P_TCODE IS INITIAL.
    SELECT SINGLE * FROM TSTC WHERE TCODE EQ P_TCODE.
    ELSEIF NOT P_PGMNA IS INITIAL.
    TSTC-PGMNA = P_PGMNA.
    ENDIF.
    IF SY-SUBRC EQ 0.
    SELECT SINGLE * FROM TADIR
    WHERE PGMID = 'R3TR'
    AND OBJECT = 'PROG'
    AND OBJ_NAME = TSTC-PGMNA.
    MOVE : TADIR-DEVCLASS TO V_DEVCLASS.
    IF SY-SUBRC NE 0.
    SELECT SINGLE * FROM TRDIR
    WHERE NAME = TSTC-PGMNA.
    IF TRDIR-SUBC EQ 'F'.
    SELECT SINGLE * FROM TFDIR
    WHERE PNAME = TSTC-PGMNA.
    SELECT SINGLE * FROM ENLFDIR
    WHERE FUNCNAME = TFDIR-FUNCNAME.
    SELECT SINGLE * FROM TADIR
    WHERE PGMID = 'R3TR'
    AND OBJECT = 'FUGR'
    AND OBJ_NAME EQ ENLFDIR-AREA.
    MOVE : TADIR-DEVCLASS TO V_DEVCLASS.
    ENDIF.
    ENDIF.
    SELECT * FROM TADIR INTO TABLE JTAB
    WHERE PGMID = 'R3TR'
    AND OBJECT in ('SMOD', 'SXSD')
    AND DEVCLASS = V_DEVCLASS.
    SELECT SINGLE * FROM TSTCT
    WHERE SPRSL EQ SY-LANGU
    AND TCODE EQ P_TCODE.
    FORMAT COLOR COL_POSITIVE INTENSIFIED OFF.
    WRITE:/(19) 'Transaction Code - ',
    20(20) P_TCODE,
    45(50) TSTCT-TTEXT.
    SKIP.
    IF NOT JTAB[] IS INITIAL.
    WRITE:/(105) SY-ULINE.
    FORMAT COLOR COL_HEADING INTENSIFIED ON.
    Sorting the internal Table
    sort jtab by OBJECT.
    data : wf_txt(60) type c,
    wf_smod type i ,
    wf_badi type i ,
    wf_object2(30) type C.
    clear : wf_smod, wf_badi , wf_object2.
    Get the total SMOD.
    LOOP AT JTAB into wa_tadir.
    at first.
    FORMAT COLOR COL_HEADING INTENSIFIED ON.
    WRITE:/1 SY-VLINE,
    2 'Enhancement/ Business Add-in',
    41 SY-VLINE ,
    42 'Description',
    105 SY-VLINE.
    WRITE:/(105) SY-ULINE.
    endat.
    clear wf_txt.
    at new object.
    if wa_tadir-object = 'SMOD'.
    wf_object2 = 'Enhancement' .
    elseif wa_tadir-object = 'SXSD'.
    wf_object2 = ' Business Add-in'.
    endif.
    FORMAT COLOR COL_GROUP INTENSIFIED ON.
    WRITE:/1 SY-VLINE,
    2 wf_object2,
    105 SY-VLINE.
    endat.
    case wa_tadir-object.
    when 'SMOD'.
    wf_smod = wf_smod + 1.
    SELECT SINGLE MODTEXT into wf_txt
    FROM MODSAPT
    WHERE SPRSL = SY-LANGU
    AND NAME = wa_tadir-OBJ_NAME.
    FORMAT COLOR COL_NORMAL INTENSIFIED OFF.
    when 'SXSD'.
    For BADis
    wf_badi = wf_badi + 1 .
    select single TEXT into wf_txt
    from SXS_ATTRT
    where sprsl = sy-langu
    and EXIT_NAME = wa_tadir-OBJ_NAME.
    FORMAT COLOR COL_NORMAL INTENSIFIED ON.
    endcase.
    WRITE:/1 SY-VLINE,
    2 wa_tadir-OBJ_NAME hotspot on,
    41 SY-VLINE ,
    42 wf_txt,
    105 SY-VLINE.
    AT END OF object.
    write : /(105) sy-ULINE.
    ENDAT.
    ENDLOOP.
    WRITE:/(105) SY-ULINE.
    SKIP.
    FORMAT COLOR COL_TOTAL INTENSIFIED ON.
    WRITE:/ 'No.of Exits:' , wf_smod.
    WRITE:/ 'No.of BADis:' , wf_badi.
    ELSE.
    FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
    WRITE:/(105) 'No userexits or BADis exist'.
    ENDIF.
    ELSE.
    FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
    WRITE:/(105) 'Transaction does not exist'.
    ENDIF.
    AT LINE-SELECTION.
    data : wf_object type tadir-object.
    clear wf_object.
    GET CURSOR FIELD FIELD1.
    CHECK FIELD1(8) EQ 'WA_TADIR'.
    read table jtab with key obj_name = sy-lisel+1(20).
    move jtab-object to wf_object.
    case wf_object.
    when 'SMOD'.
    SET PARAMETER ID 'MON' FIELD SY-LISEL+1(10).
    CALL TRANSACTION 'SMOD' AND SKIP FIRST SCREEN.
    when 'SXSD'.
    SET PARAMETER ID 'EXN' FIELD SY-LISEL+1(20).
    CALL TRANSACTION 'SE18' AND SKIP FIRST SCREEN.
    endcase.

  • Problem push and hold on a Surface Pro tablet's touch screen

    Hi,
    I tried posting this before, but I can't find my origional post so I hope I'm not spamming accidentally.
    I have a problem with my program on a Windows 8.1 Surface Pro tablet. I programmed a button to be 'push-and-hold', but when I touch the tablet nothing happens until I release my finger. This briefly controls the button. When I connect a USB mouse to the tablet, it responds normally; when I press the left mouse button: the button in my program goes down until I release the mouse button. I tried about every setting in the Touch section of the Windows control panel without any succes.
    Does anyone have a suggestion?
    Any help would be greatly appreciated.
    Chris  

    Previous Post.
    http://forums.ni.com/t5/LabVIEW/Press-and-hold-on-a-Surface-pro-touch-screen/m-p/2816346
    If you clicked on your username and looked at your profile, you can see the messages you've created or replied to in the past.

  • How much RAM can my Macbook Pro hold MAX?

    Can my Macbook Pro hold a MAX of 8GB or is it just 4GB? I'm getting different answers online and I'm a little annoyed at this point. My computer specs currently are:
    15 inch Laptop
    MacBook Pro 2.6 GHz Intel Core 2 Duo
    2 GB 667 MHz DDR2 SDRAM.
    Got my computer in 2009.
    At Crucial.com it says it can hold up to 8GB when I select my computer processor speed from their list, but I noticed it saying DDR3 (and I don't know what that means to be honest). Here's the link:
    http://www.crucial.com/store/mpartspecs.aspx?mtbpoid=7F3A5584A5CA7304
    To the best of my knowledge I selected the correct computer, which I own, from their list.
    Under "About This Mac", on my computer, it says DDR2 for the memory, on Crucial.com it says DDR3. As a result I'm confused and will that cause problems?
    I'll be getting my RAM kit from Crucial.com, so do I buy the 4BG kit, because that's all my laptop can handle, or is it OK to get the 8GB kit, which says DDR3?
    I do a lot of video and audio, so I would like to get my RAM up to 8 GB if it will.
    Thanks

    One more question friend....You've been so helpful
    Will these two sticks work together on my machine?
    2GB, 200-pin SODIMM, DDR2 PC2-5300 memory module
    http://www.crucial.com/store/mpartspecs.aspx?mtbpoid=B54C51B4A5CA7304
    along with a...
    4GB 200-pin SODIMM DDR2 PC2-6400 Memory Module
    http://www.amazon.com/Crucial-CT51264AC800-200-pin-SODIMM-PC2-6400/dp/B001RB21JE
    So these two would add up to 6GB total. Now the ONLY DIFFERENCE that I see is the 2GB stick is PC2-5300(667Mhz)speed and the 4GB stick is PC2-6400(800Mhz)speed. I understand that my machine won't run at the 800Mhz speed that the PC2-6400 stick is designed for, cause my machine says 667 under the memory info. From what I read online, it's ok to put a higher Mhz stick in there, it will just cap at 667Mhz speed? But.......both sticks are DDR2, which is right for my computer, but will the 667 MHz with a 800 Mhz be a huge no-no to run together? At this point I think that is my main concern! If I can't do this, than I think I'll have to go with the 2x2GB kit for 4GB total, but I REALLY would like to run 6GB.
    Shew.... :P
    Thanks again!

  • How can multiple threads hold the same lock?

    I was always under the impression that no 2 threads could hold a lock for the same object, and yet the HotSpot traces say this is happening all the time.
    For example Object 0x0a6c1bf8 is locked in 2 threads:
    "10.129.24.35-1" daemon prio=6 tid=0x2836bad0 nid=0x9d4 runnable [0x2b28f000..0x2b28fc9c]
    at java.net.PlainSocketImpl.socketConnect(Native Method)
    at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:333)
    - locked <0x2493f6e0> (a java.net.SocksSocketImpl)
    at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:195)
    at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:182)
    at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:366)
    at java.net.Socket.connect(Socket.java:519)
    at org.jacorb.orb.factory.PortRangeSocketFactory.doCreateSocket(PortRangeSocketFactory.java:142)
    at org.jacorb.orb.factory.AbstractSocketFactory.createSocket(AbstractSocketFactory.java:54)
    at org.jacorb.orb.iiop.ClientIIOPConnection.createSocket(ClientIIOPConnection.java:313)
    at org.jacorb.orb.iiop.ClientIIOPConnection.connect(ClientIIOPConnection.java:160)
    - locked <0x0a6c1b98> (a org.jacorb.orb.iiop.ClientIIOPConnection)
    at org.jacorb.orb.giop.GIOPConnection.sendMessage(GIOPConnection.java:934)
    - locked <0x0a6c1bf8> (a java.lang.Object)
    at org.jacorb.orb.giop.GIOPConnection.sendRequest(GIOPConnection.java:900)
    at org.jacorb.orb.giop.ClientConnection.sendRequest(ClientConnection.java:323)
    at org.jacorb.orb.giop.ClientConnection.sendRequest(ClientConnection.java:304)
    at org.jacorb.orb.Delegate.invoke_internal(Delegate.java:1024)
    - locked <0x0d434a88> (a java.lang.Object)
    at org.jacorb.orb.Delegate.invoke(Delegate.java:939)
    at org.omg.CORBA.portable.ObjectImpl._invoke(ObjectImpl.java:80)
    at com.company.MyApp._StateChangeListenerStub.newChanges(_StateChangeListenerStub.java:33)
    at com.company.MyAppManager.ListenerOneway.send(ListenerOneway.java:65)
    at com.company.MyAppManager.Sender.run(Sender.java:139)
    "ClientMessageReceptor840" daemon prio=6 tid=0x2a3ab988 nid=0x6b4 in Object.wait() [0x2f70f000..0x2f70fb1c]
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:474)
    at org.jacorb.orb.giop.GIOPConnection.waitUntilConnected(GIOPConnection.java:278)
    - locked <0x0a6c1bf8> (a java.lang.Object)
    at org.jacorb.orb.giop.GIOPConnection.getMessage(GIOPConnection.java:318)
    at org.jacorb.orb.giop.GIOPConnection.receiveMessages(GIOPConnection.java:464)
    at org.jacorb.orb.giop.MessageReceptor.doWork(MessageReceptor.java:71)
    at org.jacorb.util.threadpool.ConsumerTie.run(ConsumerTie.java:61)
    at java.lang.Thread.run(Thread.java:595)
    Have I miss-interpreted the HotSpot stack trace?

    To summarise they are both in a synchronized block on the same mutex/Object, but one is in a wait and one isn't.
    So then it follows that if the HotSpot thread reads " - waiting on <address>" like:
    "SomeThread" daemon prio=6 tid=0x29a06658 nid=0xf28 in Object.wait() [0x2b18f000..0x2b18fa1c]
    at java.lang.Object.wait(Native Method)
    - waiting on <address> (a javax.swing.TimerQueue)
    at com.comp.SomeThread.run(TimerQueue.java:236)
    - locked <0x09539510> (a javax.swing.TimerQueue)
    at java.lang.Thread.run(Thread.java:595)
    then it means that the thread is trying to enter the synchronized block on the same mutex/Object but it can't because there is another thread in there which is running, so it is waiting on the outside of the lock instead of the inside of the lock like "ClientMessageReceptor840".
    Ok, I think I get it now. Thanks everyone for your help.

  • Email pdf to iPad - is there a way to open multiple pdfs at one time without having to hold each individually and open with adobe reader?

    I have a large number of pdf files to send to an iPad and it is taking forever to hold down each one and then choose to open with adobe reader.  Just wondering if there is a way to select all from the email to do the same action?

    Not that i know of but an alternate would be to use something like dropbox instead of mail. Their app works very well.

  • I can't order more than one picture at a time in iphoto.  I am holding the command key down and highlighting two but only the last one is showing up

    Hi,
    I need help placing an iphoto order online for prints.  I have a few pictures I want in a few sizes and it seems to only allow me to select one at a time.  I have held the command key down but it defaults to the last picture i selected.  I appreciate your help.

    What system and iPhoto versions are you using?  As a quick test try this:  launch iPhoto with the Option key held down and create a new, test library.  Import some photos and check to see if the same problem persists.  See if you can get all of the selected photos in the order window as it should be.
    If you can't then try this:  make a temporary, backup copy (if you don't already have a backup copy) of the library and try the following:
    1 - delete the iPhoto preference file, com.apple.iPhoto.plist, that resides in your
         User/Home()/Library/ Preferences folder.
    2 - delete iPhoto's cache file, Cache.db, that is located in your
         User/Home()/Library/Caches/com.apple.iPhoto folder. 
    Click to view full size
    3 - launch iPhoto and try again.
    NOTE: If you're moved your library from its default location in your Home/Pictures folder you will have to point iPhoto to its new location when you next open iPhoto by holding down the Option key when launching iPhoto.  You'll also have to reset the iPhoto's various preferences.
    OT

  • My iPhone 4S can no longer hold a charge, had battery replaced once before and is only 2 years old

    I've had my iPhone 4S for two years and I still have one more year in my contract.
    The first month I had my phone I had similar battery issues where the phone was able to hold a charge over 3 hours. I never have wifi or Bluetooth on, I do not even have internet connection for Safari on. I tested charging it up to %100 and not touch it and after 2 hours it dies.
    I would love to get a new iPhone 5c but then I would need to pay off the rest my contract and purchase the new phone and get a new contract. I do not have a warranty for my phone so would taking it to the Apple store and having them replace my battery be worth it? And would I have to pay for them to fix the battery again? Would they give me a replacement phone as well?

    Who replaced the battery the first time? If it was anyone other than Apple, your phone is unsupportable. Apple won't touch it either in or out of warranty.

  • I have itunes directory on an external hard drive and want to direct a new installation of itunes on windows 8 to use it. I tried holding down ctrl and clicking itunes and after many tries got it to work one time. When I went back in later it had reverted

    I have itunes directory on an external hard drive and want to direct a new installation of itunes on windows 8 to use it. I tried holding down ctrl and clicking itunes and after many tries got it to work one time. When I went back in later it had reverted back to a blank version of itunes and I cant get ctrl to work again. Any other ideas?

    This is sometimes caused by a problem with the iTunesPrefs.xml file, normally found at C:\Users\<User>\AppData\Local\Apple Computer\iTunes\iTunesPrefs.xml. Try dragging this to the desktop and trying again.
    Alternatively the problem may be that you have McAfee AV and it is preventing iTunes from updating the same file and thus causing the problem. See Why does iTunes delete my itunesprefs.xml? for details.
    tt2

  • Can I config timesten not to hold all data in memory?

    In our production environment we use a server with 32GB memory to run Timesten, but developer machine only have 2GB memory. Now we are going to fix some issue that require duplicate the production data to Developer machine, can we have config timesten not to hold all data in memory so that it is possible to duplicate the production data to Developer machine? Is timesten support something like cache table as hsql?
    http://hsqldb.sourceforge.net/web/hsqlFAQ.html#BIGRESULTS

    TimesTen is an in-memory database. All the data that is managed directly by TimesTen must be 'in memory' and the machine hosting the datastore must have enough physical memory or system performance will be severely degraded.
    The only way to have a combined in-memory and on-disk solution is to introduce a backend Oracle database (10g or 11g) and use TimesTen cache connect. Of course, this then becomes a very different configuration and depending on what 'issue' it is that you need to investigate and fix the change to a Cache Connect configuration may hinder that investigation.
    Chris

  • The ADO NET Source was unable to process the data. ORA-64203: Destination buffer too small to hold CLOB data after character set conversion.

     We developed a SSIS Package to pull the data From Oracle source to Sql Server 2012. Here we used ADO.Net source to pull the records from Source but getting the below error after pulling some 40K records.
      [ADO NET Source [2]] Error: The ADO NET Source was unable to process the data. ORA-64203: Destination buffer too small to hold CLOB data after character set conversion.
    [SSIS.Pipeline] Error: SSIS Error Code DTS_E_PRIMEOUTPUTFAILED. 
     The PrimeOutput method on ADO NET Source returned error code 0xC02090F5. 
     The component returned a failure code when the pipeline engine called PrimeOutput(). 
    The meaning of the failure code is defined by the component, 
    but the error is fatal and the pipeline stopped executing. 
     There may be error messages posted before this with more 
    information about the failure.
    Anything that we can do to fix this?

    Hi,
      Tried both....
      * Having schema type as Nvarchar(max). - Getting the same error.
      * Instead of ADO.Net Source used OLEDB Source with driver as " Oracle Provide for OLE DB" Getting error as below.
           [OLE DB Source [478]] Error: SSIS Error Code DTS_E_OLEDBERROR.  An OLE DB error has occurred. Error code: 0x80004005.
           [SSIS.Pipeline] Error: SSIS Error Code DTS_E_PRIMEOUTPUTFAILED.  The PrimeOutput method on OLE DB Source returned error code 0xC0202009.  The component returned a failure
    code when the pipeline engine called PrimeOutput(). The meaning of the failure code is defined by the component, but the error is fatal and the pipeline stopped executing.  There may be error messages posted before this with more information about the
    failure.
    Additional Info:
       * Here the Source task is getting failed not the conversion or destination task.
    Thanks,
    Loganathan A.

  • Why did I get an email from the fraud dept saying my order is on hold, told to call a number, and then told by dept it's not true?

    I placed an order to upgrade my phone yesterday, and the order went through, I was told the new phone would arrive Thursday. After I got home from work today I saw an email from Verizon that says "Dear Customer:
    Verizon Fraud Prevention Team is currently reviewing the following order on your wireless account. Please call the Verizon Fraud Prevention Team at 888-483-7200 option 3, press 1 to verify this Order."
    I called this number immediately, since I need this phone ASAP, assuming it would just be a recording and I would have to verify an account number or something. But instead, after following the instructions, I was put on hold because I needed to speak to someone in person. After several instances of my call being cut off after being on hold for at least half an hour, I finally got through after three hours and was able to speak to a fraud representative. I gave her my info and told her the problem and she told me I had called the wrong department. Instead of the fraud department, I needed the online order department. She transferred me, and I waited on hold again. When the representative from the online order dept picked up, she first told me if it was a fraud issue I'd need to speak with the fraud dept - who had JUST transferred me to her. After this, she said that my order is not on hold, because it hasn't even been processed yet or had the credit check done. When I asked if this meant I hadn't needed to call at all, she said yes. Is this actually true or is there a chance that there's an issue with my order I don't know about? If there is no issue, these emails really shouldn't be sent out, they're incredibly misleading, and I've wasted a whole lot of time and experienced an incredible amount of anxiety for no reason.

    Hi.  I checked on the order and it says the order is currently being processed and I should check back tomorrow. I'm mostly just concerned because I got an email saying the order was on hold, and I want to make sure it actually does go through and I'm not just waiting for a delivery that's not going to come. I'm still confused as to why I'd get an email saying I had to call the fraud department only to be told I shouldn't have called the fraud department.

  • How do you get of hold of anyone at Adobe for help?  Cannot download Photoshop CC.

    I could not update Photoshop CC from Creative Cloud desktop or online. I need Raw 8.3 to be compatible with Lightroom.  It is impossible to get a hold of anyone at Adobe for help.  Found their chat link once after much searching, someone finally answered then told me they were closing for the day and to call back the next day.  Could never find the chat link again.  Tried uninstalling PhotoshopCC because I saw that somewhere in the forum but still cannot download Photoshop CC.  Got error code U43M1U49 and said to retry or contact customer support.  Yeah right!  Totally frustrated with Adobe.  Anyone have any suggestions?

    Triste wrote:
    I update application manager and was able to load Adobe Premier CC from on
    line upload center.  When I tried to update more apps from the desktop CC,
    still failed.  Tried to update Adobe Premier CC from help, mostly worked,
    but got an message to close LogTransportApplication which I could not find,
    did not show in my Task Manager when tried to find it, so could not update
    Premier CC.  Updates still failed from desktop Adobe CC.
    Hi Triste,
    If you're having difficulties getting updates for your tools using the Creative Cloud Desktop app, then you can try downloading them without it by using the direct links for the CC updates on Windows or on Mac OS, for all CC apps.

  • TA44551 My 1-year ipod nano locked up and would not start overnight. The on/off button will not work and stopped holding charge. No water damage, no fall, nothing unusual. I restored it (twice) but it will still not hold charge and on/off does not work.

    My 1-year ipod nano locked up and would not start overnight. The on/off button will not work and stopped holding charge. No water damage, no fall, nothing unusual. I restored it (twice) but it will still not hold charge and on/off does not work. I tried to restore it again and charged it in three different locations with different cables. etc but nothing. Suggestions?

    - After charging for 1/2 hour or so, does iTunes see the iPod?  If yes, restore the iPod from backup.
    - If no, se if placing the iPod in recovery mode will make it visible so you can restore the iPod.  For recovery mode see:
    iPhone and iPod touch: Unable to update or restore

  • My ipad will not start.  It is 1 year old...I have tried holding the two buttons and nothing..I have it connected to my desktop and it will make a ding noise but nothing comes up on the screen.

    My ipad will not start.  It is 1 year old...I have tried holding the two buttons and nothing..I have it connected to my desktop and it will make a ding noise but nothing comes up on the screen.

    Frozen or unresponsive iPad
    Resolve these most common issues:
        •    Display remains black or blank
        •    Touch screen not responding
        •    Application unexpectedly closes or freezes
    http://www.apple.com/support/ipad/assistant/ipad/
    iPad Frozen, not responding, how to fix
    http://appletoolbox.com/2012/07/ipad-frozen-not-responding-how-to-fix/
    iPad Frozen? How to Force Quit an App, Reset or Restart Your iPad
    http://ipadacademy.com/2010/11/ipad-frozen-how-to-force-quit-an-app-reset-or-res tart-your-ipad
    Black or Blank Screen on iPad or iPhone
    http://appletoolbox.com/2012/10/black-or-blank-screen-on-ipad-or-iphone/
    What to Do When Your iPad Won't Turn On
    http://ipad.about.com/od/iPad_Troubleshooting/ss/What-To-Do-When-Your-Ipad-Wo-No t-Turn-On.htm
    iOS: Not responding or does not turn on
    http://support.apple.com/kb/TS3281
    iPad: Basic troubleshooting
    http://support.apple.com/kb/TS3274
     Cheers, Tom

Maybe you are looking for