Change to BADI method

Hi
I have made chanegs to BADI method. I have activated the method.
In this method AFTER_CHANGE_STATUS when the status of a document it changed from IW to QC and if there is not material link exits to the document it should display an error message. but when i try to do so in CV02N it allows me to change the status with out giving error. Plz let me when a BADI methid is changed what all things need to be activated.

Hey what ever you did it correct. Try to check in debugging what is happening in BADI. that will solve the problem.
for more details on BADI.. check the link...
http://****************/Tutorials/ExitsBADIs/ExitsMain.htm

Similar Messages

  • Latest change of payment method

    Skype has changed its payment method to credit card ... Thats bad .... Please revert back

    For that youo need to open the acceptance system for configuration using transaction code SCC4.
    Contact your BASIS team to perform the same.
    Please ensure that for production, all changes should go via proper channel of DEV- TEST - PRD route.
    Regards,
    Gaurav

  • Rfx Custom Tab(Table) Value not mapping in Change Doc BADI

    Hi,
    I am currently adding Custom Tab with Table in SRM Rfx Webdynpro Screen SRM PPS 7.01 Extended classic . I did the configuration steps to add the custom table, visibility setups, created a new Webdynpro, enhanced in Component controller and could get current active instance Rfx values.
    In local memory using a class method i am exporting custom tab values to Change Doc BADI and updating the et_hcf with the custom values.
    The values are getting saved in the data base and i am able to get it via function module and show in the screen again.
    My Problem is when i am modifying a saved Rfx it saves the entry another time. When i debug the change doc badi i could see all the time the et_hcf and it_hcf is coming empty in the first place and each time the entries from screen are consider as new entries and getting saved in DB.
    I have created Custom tab with table in Contract screen, PO Header and shopping cart line item. Rfx screen is little different and not getting the et_hcf value again in Change Doc BADI. Do anyone have similar issue in handling Rfx.? Please help me. I can Change my code logic and fix this problem still it looks like a standard bug to me that et_hcf or it_hcf is not getting values to the change doc BADI as it does in PO or Contract. Also let me know if i need to check any of my configuration.

    Hi,
    Checkout the below link :
    <link to blacklisted site removed by moderator>
    Shailaja Ainala.
    Edited by: Thomas Zloch on Jan 28, 2012 9:06 PM

  • Automatic change of Payment Method after Payment Proposal in F110

    Hi FI Gurus,
    Good day.
    I basically would need to update/change the Payment Method right after / during  Payment Proposal in Transaction F110.
    Can you kindly advise if this can be done via configuration? Or do we use a Substitution Exit / BTE / BADI / User Exit for this?
    Please provide additional details on your suggested approach.
    Thank you very much in advance.
    Best Regards.
    Brando

    It depends on how many line items you want to change
    for few individual line items, after running proposal, you can go in Edit mode and payment method using Reallocate option from Change line items pop up box.
    But you want to change line items in mass, then i feel it can be achieved through substitution.
    regards

  • Payment method declined.Please change your payment method

    Hello
    I have an iPad and an iPod,I am 15 years old so my uncle gave me his credit card,everything was awesome,I have been buying stuff free and paid for years and recently I have been receiving this problem "Payment method declined.Please change your payment method" .. Whenever I wan't to download an app either it is for money or free or even when I want to update an app that I have already downloaded a message saying "sign in required" I put my password again and the a message appears "there was a problem with the previous purchase,please update your payment information" I update the information and I am sure that the credit card is all good and filled,and I enter the information right even though the only bar empty was the Security code,anyway when I finish everything I tap done,but then it tells me "Payment method declined.Please change your payment method",I did everything,log out log in,waiting,trying over and over,but it didn't work,this problem happened a long time ago but unlikely it was fixed two days later,now I am facing this problem and I don't know how to fix it.I have seen lots of other threads that discuss this problem,but my problem is that I live in Jordan-Middle East,which is a problem because as one said was the solution is to change the credit to "none" and then return it back,I can't do that,because for some reason there is no "none" option in the page displayed,and for the other one who said to enter from store.apple.com and enter the billing information again,that won't work for me either because I can't find except "apple.com/us" >:(, I can't log in to my account in jordan while there's nothing but us app store on PC.
    For god's sake someone help me out,I am really ****** off of this,I can't find a way to even send an email to apple .. can anybody help? it will be appreciated a lot.. I want help fast,I can't change my account because I have already bought a lot of apps (with money) and I can't just let the money worth go away :/
    If anyone can help (not discuss and complain and tell me sorry) it will be very awesome,because I have no much more to do about this and now I am trying to reach for help
    Thank you.

    We are users like you. There is nothing we can do about the credit card. Call the credit card company and ask them why the purchases have been decined. They will know for sure and will be able to tell you. Wait, it is not your credit card. Who ever is the account holder will need to call the credit card company.

  • Print alv report directly to spool  from a badi method

    Hallo !
    I am trying to save a log in spool on converting process
    I am doing on Idoc data in Method of Badi implementation
    (badi : HRALE00OUTBOUND_IDOC).
    The spool request is created but the list there contains
    no data.
    Here is the code I put in the badi method :
    DATA: LS_PRINT      TYPE  SLIS_PRINT_ALV,
          LV_REPID      LIKE SY-REPID,
          LS_LAYOUT     TYPE SLIS_LAYOUT_ALV,
          LT_FIELDCAT TYPE SLIS_T_FIELDCAT_ALV,
          LS_FIELDCAT LIKE LINE OF LT_FIELDCAT.
      LV_REPID  = SY-REPID.
    SET LS_LAYOUT :
      CLEAR LS_LAYOUT.
    SET LS_PRINT :
      CLEAR LS_PRINT.
      LS_PRINT-PRINT = 'N'.
    SET LT_FIELDCAT :
      REFRESH LT_FIELDCAT.
      CLEAR LS_FIELDCAT.
      LS_FIELDCAT-FIELDNAME = 'MESSAGE'.
      LS_FIELDCAT-SELTEXT_L = 'MES'.
      APPEND LS_FIELDCAT TO LT_FIELDCAT.
    CREATE LOG IN SPOOL :
      SY-BATCH = 'X'.
      CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
        EXPORTING
          I_CALLBACK_PROGRAM      = LV_REPID
          IS_LAYOUT               = LS_LAYOUT
          IT_FIELDCAT            = LT_FIELDCAT[]
          I_DEFAULT                    = 'X'
          I_SAVE                       = 'X'
          IS_PRINT                = LS_PRINT
        TABLES
          T_OUTTAB                = PT_LOG[]
        EXCEPTIONS
          PROGRAM_ERROR           = 1
          OTHERS                  = 2.
      IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    I have to remark that when I call this code in
    an ABAP-PI function the log is created successfully in spool.
    But here I call it from a method of IDOC Badi exit -
    and the list is empty ....
    The two cases are in processes that run in batch ...
    Maybe ALV function can't be called from a method ?
    Maybe I should use Object-Oriented ALV ?
    Or maybe I fill the ALV function parameters in a wrong way  ?
    I really appreciate your help ,
    Thanks in advance -
      Nitzan S.

    Hey,
    I am not sure if from the ALV list the SPOOL will be created properly. You said the spool is created but the spool is empty.
    A Work around could be create a classical report with WRITE statements and then SUBMIT that report exporting the list into memory or you can even read the spool then.
    Regards,
    Ravi
    Note :Please mark the helpful answers

  • How I can change ma pay method in iTunes if I don't want to use my credit card?

    How I can change my pay method y iTunes if I don't want to use my credit card?

    The iTunes Store sometimes requires it even if the card wouldn't be charged; if it actually gets charged and you're not trying to gift the songs, ask the iTunes Store staff for assistance.
    (113277)

  • How to change the payment method of a subscription...

    Hello!
    I have just purchased a subscription in skype via credit card. Now I seek for a way to change the payment method from credit card to bank transfer.
    My problem here is, that when I go to the subscriptions page, I get the option to ''change payment method'', after which I get redirected to the payments page where I just can ''add a payment method''. This gives me the option to add a new credit card, which kind of fails the sense of changing the payment method at least for me.
    Am I overlooking something or can it really be possible that I am stuck with paying by credit card until I cancel my subscription?
    As a side info, I'm located in Finland, therefore I do only have access to Finnish banks (in case that makes any difference).
    I hope someone can help me solve this problem.
    Thanks in advance,
    Fahlyn
    Solved!
    Go to Solution.

    martinimartini wrote:
    I have the same problem. I used Pay Pal payment before but Pay Pal limited my account so I can only use Pay Pal until after 180 days according to their specific regulations. I also do not have any credit card. How am I supposed to pay for my Skype that I have been using since start of Skype. I really need outgoing calls.  Martin
    Hi,
    As I understand you have a restriction on your PayPal account, unfortunately this is something Skype can't help you with.
    But you can try alternative payment methods: www.skype.com/intl/en-us/prices/ways-to-pay/
    Another option is to let your friend set up Skype Manager account, purchase credit there and allocate it to you: https://support.skype.com/en-us/faq/FA10519/What-is-Skype-Manager-and-how-does-it-work
    Andre
    If answer was helpful please mark it with Kudos and if issue is resolved mark it with solution. This will help other users find this answer more easily. Thanks in advance!

  • After using PayPal for over a year to make in-app purchases, now I can't. I changed my payment method to credit card but still can't. Anyone have suggestions/info?

    I have been making in-app purchases with PayPal for over a year. Now I cannot. I changed my payment method to Credit card, but still can't. I can purchase music in itunes but no game purchases. My ID was disabled after a paypal dispute but after an entire evening on the phone with support and security, that was resolved. Any suggestions? If I have to spend more time on the phone with support, I will. But I would rather not.

    Not clear what you mean by iTunes help. You can contact iTunes support by:
    Apple - Support - iTunes - Contact Us

  • Change the Payment Method at header level in Sales order document.

    Hi Experts,
    I have a doubt and a problem; I want to change the Payment Method at the header level however that is not possible never at header level is the same even either I chose other when I was creating the sales order document or I tried to change after that. The system allows changing the Payment Method but when I display the document after that the change is not done always is the same payment method. Maybe it is defined at customer or sales organization level.
    At item level it is possible change the payment method with any problem.
    Thank you and best regards.

    Dear Alberto
    Payment Terms can be changed both at header level and at item level in sale order.
    thanks
    G. Lakshmipathi

  • Mass change of Payment Method for Vendor

    Is there any way to do mass change of Payment Method for Vendor (trx. XK02) without ABAP? Need to change 1500 vendors.

    HI
    You can use transaction code MASS and object LFA1 to mass change the payment method.
    Once entering you can select table LFB1 and do mass change based on some filter parameters.
    Anand

  • Global variable in BADI methods..

    Hi,
         How can i declare a global variable in BADI  method ,for example " Count type I".Can any one let me know ...
    Regards,
    Veera

    Hi,
    BADI is a just an interface definition that needs to be implemented by the customer. The final implementation of a BADI is always found in a class.
    You can define the variable as attribute and static if you want it to be accessed by all objects.
    I hope this answers your question
    Regards,
    Saurabh

  • How to change my payment methode o none

    My visa card is declined and i want to change my payment method to none ......without using another visa card cause i can't...
    i need help,
    thanks...

    None for payment
    After establishing the Credit Card account (bought things from iTune or App Store), you can remove the credit card information by editing your payment info, choosing "None".
    http://i1224.photobucket.com/albums/ee374/Diavonex/3251ae4b9345e8a0551a15d5cad4b 5a9_zps1c6950c2.jpg

  • Commit statement in badi method

    hi all,
    i am using commit statement in badi method save_data, it is put after function module,
    in function module i have used insert and update statement, if i do like that then the commit statement refresh the global data but update the table,
    if i create one perform inside function module and put commit statement in that perform, then it shows message update was terminated,
    i also want the global data for processing thats why i can't use commit statement after FM in method, please give Suggestion,
    Points will be awarded.

    Hi,
    sounds as if you call that FM in update task. Update function modules do not allow all actions. They should only include the neccessary SQL statements and must include any COMMIT.
    For more information read SAPDOCU of COMMIT WORK and everything of SAPS update concept (start immed. V1, start delayed V2 and so on).
    ATTENTION. Most BADIs designed to save customers data may be used several times and standard data may be saved after them. To avoid inconsistent data inside those BADIs normally no COMMIT should be done.
    Kind regards,
    HP

  • Badi method for knb1-atlkn in customer master in ECC 6.0

    Hi all,
    in ECC 6.0 .., customer master under company code data under account management  we have field named "Prev. acct no." ( KNB1-ALTKN ) .....I have to do some validations for that field ....can you ppl advise/suggest me the correct badi method for this purpose ???
    because the control is not stopped in save_data badi method....can u pls advise on the same??????
    pl. do th needful.
    thanks in advance
    jack

    tHANKS

Maybe you are looking for