SP_Validation Payment sereis with payment means

Hi,
I am trying to do a validation using the stored procedure,but it doesnt work.
I have document series for cash->CH09 and check->CQ09 in outgoing payment.
Now if the user choose the Cash series,only thorugh cash-payment means the document should be added(other payment means must be blocked).
SImilarly if check series is choosen, only through check-payment means the document should be added.
Below i have created for Check means,guide me in correcting this
if (@Object_type = N'46'and @transaction_type='A')
begin
if exists (select t0.Docnum from ovpm t0 ,nnm1 t2 where t2.series=t0.series and
t2.seriesname like '%CQ%' and t0.checkacct!='' or t0.checkacct is not null or t0.checkacct!=0 and t0.Docnum =@list_of_cols_val_tab_del)
begin
SET @error =- 1234
SET @error_message = N'Payment means should be check'
end
end

Hello ..
Faced with the scenario you posed, you could apply a SQL transaction that reads both standard options and depending on the selected series indicate the payment method to use ..
The following code looks for that goal, in this case the data 81 and 82 are internal numbers that identify each series respectively.
I hope it will help
Best regards,
if (@Object_type = N'46'and @transaction_type='A')
declare @ser int
declare @efec int
set @ser = (SELECT T0.Series FROM OVPM T0 WHERE T0.DocEntry = @list_of_cols_val_tab_del)
begin
     if @ser = '81' --Cash
     begin
     set @efec = (SELECT T0.CashSum FROM OVPM T0 WHERE T0.DocEntry = @list_of_cols_val_tab_del)     
          if @efec = '0'
          begin
          set @error = 1
          set @error_message = 'Payment should be cash'
          end
     end
     if @ser = '82' -- Check
     begin
     set @efec = (SELECT T0.CheckSum FROM OVPM T0 WHERE T0.DocEntry = @list_of_cols_val_tab_del)     
          if @efec = '0'
          begin
          set @error = 1
          set @error_message = 'Payment should be in Check'
          end
     end
end

Similar Messages

  • Require Vendor Payment List with Payment Terms

    hi how to get Require Vendor Payment List with Payment Terms

    hi
    You can go to FBL1N, (i.e vendor line items) and click change layout button. in the change layout menu, you have "Terms of Payament"  field  which show the tems of payment you had in the invoice..
    You can use "terms of payment" field to display  payment terms in the vendor masster data.
    hope this will help
    award points if helpful
    Edited by: venu mamillapalli on Jun 12, 2008 9:35 AM

  • R12 Oracle Payment Certification with Payment Systems

    Hi Victoria,
    We are trying to integrate R12 Oracle Payment with Payment Processors for both Credit Card and EFT. Can you please let me know which processors and gateways are certified with R12 Oracle Payment module..
    Vasu.

    You can set this maximum amount limit in internal bank account level under account controls tab. I hope this will be applicable if you are using payment workbench screen for processing payments.
    Not sure for payment batches, just test the scenario in test instance.

  • Payment lot with Payment specification

    Hi
    I am trying to process a Payment Lot (FP05) using a payment specification (FPAY1B). After creating the payment specification and selecting it in the payment lot (J), the item is going to clarification with an error message that says "Status of payment specification XXX does not permit use".
    Thanks
    Allen

    Update the processing status field on the Payment Specification.
    Closed

  • How do recurring payments work with payment gateway provider?

    Hi All!
    I've setup PayPal Website Payments Pro for Consolidated Billing and been asked a question about "reference payments" by PayPal.
    When a person purchases a recurring product in a BC shop OR "upgrades / pushes live" their BC site; how does the recurring payment get collected?
    Which of the following does BC perform:
    OPTION 1: Send a request to payment gateway to ask them to setup recurring payment to the client who's just made a payment; using the gateway's own engine.
    OPTION 2: BC automatically recharges the client for the next period via a single automated payment using a 'credit card token', through the payment gateway. i.e. not using recurring payment facility on gateway own engine.
    If it is OPTION 2, my understanding is that this is a 'reference payment' and we need to inform PayPal that this needs to be made available on our account.
    Regards
    Mike

    Hi Mike,
    As long as the gateway is on our approved list to handle recurring within BC it would fall under option 2.  If the product or item incurs a cycle type requiring recurring billing BC will take the client transaction token and will re-initiate billing based on the recurring cycle in which the gateway will process. 
    For more details on how recurring works please view the article below.
    - http://kb.worldsecuresystems.com/kb/recurring-billing.html
    Kind regards,
    -Sidney

  • Attaching a document along with payment advice during F110

    Hi All,
    when i run F110 all payments with payment mode 'T'(telegraphic) are mailed to the respective vendors and all payments with mode 'K'(Credit) are displayed in the spool(SP01).
    Now the requirement is that the contract of the vendor(contract document is attached in the vendor master-FK02) should also me mailed along with the payment advice.
    I created a Z-program(copied from RFFOEDI1) which downloads this contract document from vendor master onto the desktop and then uploads this and sends it to the customer.
    However when i do this the mail request for the contract document is being generated(as can be seen in the send requests list (t-code SOSG) and the mail also gets triggered when i process it in SCOT), but no mail request is being generated for the payment advice  .
    Also no spool for payment advices with payment mode 'K' is generated in SP01.
    Any help is appreciated and will be rewared generously.
    Thanks in advance.
    Najam
    I am attaching the part of code i have inserted -
    REPORT RFFOEDI1.
    INCLUDE ZDWNLD_ATTA. 
       F110ID-LAUFD   = ZW_LAUFD.
       F110ID-LAUFI   = ZW_LAUFI.
       F110ID-OBJKT   = KON_PARAM.
    PERFORM  F_MAIL_CONTRACT.
      INSERT T012D-EDIPN INTO HEADER.
    AT SELECTION-SCREEN ON PAR_WFOR.
      IF PAR_WFOR NE SPACE.
        SET CURSOR FIELD 'PAR_WFOR'.
        CALL FUNCTION 'FORM_CHECK'
          EXPORTING
            I_PZFOR = PAR_WFOR.
      ENDIF.
    FORM F_MAIL_CONTRACT .
       F110ID-LAUFD   = ZW_LAUFD.
       F110ID-LAUFI   = ZW_LAUFI.
       F110ID-OBJKT   = KON_PARAM.
      IMPORT SLKTAB FROM DATABASE RFDT(FB) ID F110ID.
      READ TABLE SLKTAB INDEX 1.
      IF SY-SUBRC = 0.
        W_LIFNR = SLKTAB-VONKT.
      ENDIF.
    CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
      EXPORTING
        INPUT         = W_LIFNR
    IMPORTING
       OUTPUT        = W_LIFNR .
    *Get vendor Email Address
    SELECT SINGLE * FROM LFA1 WHERE LIFNR = W_LIFNR.
    IF SY-SUBRC = 0.
      SELECT SINGLE * FROM ADR6 WHERE ADDRNUMBER = LFA1-ADRNR.
    ENDIF.
    W_RECIPIENT = ADR6-SMTP_ADDR.
    PERFORM DOWNLOAD_ATT USING W_LIFNR.
    PERFORM UPLOAD_ATT_SEND_MAIL USING W_RECIPIENT LTP_FILENAME .
    ENDFORM.                    " F_MAIL_CONTRACT
    FORM DOWNLOAD_ATT  USING    P_W_LIFNR.
    SO_INSTI = P_W_LIFNR.
    SELECT * FROM SRGBTBREL INTO TABLE TA_SRGBTBREL
      WHERE INSTID_A =  SO_INSTI
        AND TYPEID_A = SO_TYPID
        AND CATID_A  = SO_CATID.
    IF SY-SUBRC EQ 0.
       SORT TA_SRGBTBREL BY INSTID_A TYPEID_A CATID_A.
       DELETE ADJACENT DUPLICATES FROM TA_SRGBTBREL
         COMPARING INSTID_A TYPEID_A CATID_A.
       LOOP AT TA_SRGBTBREL INTO WA_SRGBTBREL.
         PERFORM PROCESS_ATTACHMENTS
         USING  WA_SRGBTBREL-INSTID_A
                WA_SRGBTBREL-TYPEID_A
                WA_SRGBTBREL-CATID_A.
       ENDLOOP.
    ENDIF.
    ENDFORM.                    " download_att
    FORM UPLOAD_ATT_SEND_MAIL  USING    P_W_RECIPIENT
                                        P_LTP_FILENAME.
    RECEIVER = P_W_RECIPIENT.
    PERFORM ML_CUSTOMIZE USING 'Tst' 'Contract'.
    PERFORM ML_ADDRECP USING RECEIVER 'U'.
    PERFORM UPL.
    PERFORM DOCONV TABLES I_ITAB OBJBIN.
    PERFORM ML_PREPARE USING 'X' EXTENSION NAME.
    PERFORM ML_DOSEND.
    FORM ML_CUSTOMIZE  USING    OBJNAME
                                OBJDESC.
    CLEAR DOCDATA.
    REFRESH OBJPACK.
    CLEAR OBJPACK.
    REFRESH OBJHEAD.
    REFRESH OBJTXT.
    CLEAR OBJTXT.
    REFRESH OBJBIN.
    CLEAR OBJBIN.
    REFRESH OBJHEX.
    CLEAR OBJHEX.
    REFRESH RECLIST.
    CLEAR RECLIST.
    REFRESH LISTOBJECT.
    CLEAR LISTOBJECT.
    CLEAR TAB_LINES.
    CLEAR DOC_SIZE.
    CLEAR ATT_TYPE.
    DOCDATA-OBJ_NAME = OBJNAME.
    DOCDATA-OBJ_DESCR = OBJDESC.
    ENDFORM.                    " ml_customize
    FORM ML_ADDRECP  USING   PRECEIVER PREC_TYPE.
    CLEAR RECLIST.
    RECLIST-RECEIVER = PRECEIVER.
    RECLIST-REC_TYPE = PREC_TYPE.
    APPEND RECLIST.
    ENDFORM.                    " ml_addrecp
    FORM UPL .
    FILE_NAME = LTP_FILENAME.
    CALL FUNCTION 'GUI_UPLOAD'
    EXPORTING
      FILENAME = FILE_NAME
      FILETYPE = 'BIN'
    TABLES
      DATA_TAB = I_ITAB
    EXCEPTIONS
      FILE_OPEN_ERROR = 1
      FILE_READ_ERROR = 2
      NO_BATCH = 3
      GUI_REFUSE_FILETRANSFER = 4
      INVALID_TYPE = 5
      NO_AUTHORITY = 6
      UNKNOWN_ERROR = 7
      BAD_DATA_FORMAT = 8
      HEADER_NOT_ALLOWED = 9
      SEPARATOR_NOT_ALLOWED = 10
      HEADER_TOO_LONG = 11
      UNKNOWN_DP_ERROR = 12
      ACCESS_DENIED = 13
      DP_OUT_OF_MEMORY = 14
      DISK_FULL = 15
      DP_TIMEOUT = 16
      OTHERS = 17.
    PATH = FILE_NAME.
    CALL FUNCTION 'PC_SPLIT_COMPLETE_FILENAME'
    EXPORTING
    COMPLETE_FILENAME = PATH
    IMPORTING
    EXTENSION = EXTENSION
    NAME = NAME
    EXCEPTIONS
    INVALID_DRIVE = 1
    INVALID_EXTENSION = 2
    INVALID_NAME = 3
    INVALID_PATH = 4
    OTHERS = 5.
    ENDFORM.                    " upl
    FORM DOCONV TABLES MYPDF STRUCTURE TLINE
                       OUTBIN STRUCTURE SOLISTI1.
    DATA : POS TYPE I.
    DATA : LEN TYPE I.
    LOOP AT MYPDF.
    POS = 255 - LEN.
    IF POS > 134. "length of pdf_table
    POS = 134.
    ENDIF.
    OUTBIN+LEN = MYPDF(POS).
    LEN = LEN + POS.
    IF LEN = 255. "length of out (contents_bin)
    APPEND OUTBIN.
    CLEAR: OUTBIN, LEN.
    IF POS < 134.
    OUTBIN = MYPDF+POS.
    LEN = 134 - POS.
    ENDIF.
    ENDIF.
    ENDLOOP.
    IF LEN > 0.
    APPEND OUTBIN.
    ENDIF.
    ENDFORM.                    " doconv
    *&      Form  ml_prepare
          text
    FORM ML_PREPARE USING BYPASSMEMORY WHATATT_TYPE WHATNAME.
    IF BYPASSMEMORY = ''.
    CALL FUNCTION 'LIST_FROM_MEMORY'
    TABLES
    LISTOBJECT = LISTOBJECT
    EXCEPTIONS
    OTHERS = 1.
    IF SY-SUBRC EQ 0.
    MESSAGE ID '61' TYPE 'E' NUMBER '731'
    WITH 'LIST_FROM_MEMORY'.
    ENDIF.
    CALL FUNCTION 'TABLE_COMPRESS'
    TABLES
    IN = LISTOBJECT
    OUT = OBJBIN
    EXCEPTIONS
    OTHERS = 1
    IF SY-SUBRC EQ 0.
    MESSAGE ID '61' TYPE 'E' NUMBER '731'
    WITH 'TABLE_COMPRESS'.
    ENDIF.
    ENDIF.
    *Packing Info For Text Data
    DESCRIBE TABLE OBJTXT LINES TAB_LINES.
    READ TABLE OBJTXT INDEX TAB_LINES.
    DOCDATA-DOC_SIZE = ( TAB_LINES - 1 ) * 255 + STRLEN( OBJTXT ).
    CLEAR OBJPACK-TRANSF_BIN.
    OBJPACK-HEAD_START = 1.
    OBJPACK-HEAD_NUM = 0.
    OBJPACK-BODY_START = 1.
    OBJPACK-BODY_NUM = TAB_LINES.
    OBJPACK-DOC_TYPE = 'TXT'.
    APPEND OBJPACK.
    *Packing Info Attachment
    ATT_TYPE = WHATATT_TYPE..
    DESCRIBE TABLE OBJBIN LINES TAB_LINES.
    READ TABLE OBJBIN INDEX TAB_LINES.
    OBJPACK-DOC_SIZE = ( TAB_LINES - 1 ) * 255 + STRLEN( OBJBIN ).
    OBJPACK-TRANSF_BIN = 'X'.
    OBJPACK-HEAD_START = 1.
    OBJPACK-HEAD_NUM = 0.
    OBJPACK-BODY_START = 1.
    OBJPACK-BODY_NUM = TAB_LINES.
    OBJPACK-DOC_TYPE = ATT_TYPE.
    OBJPACK-OBJ_NAME = 'ATTACHMENT'.
    OBJPACK-OBJ_DESCR = WHATNAME.
    APPEND OBJPACK.
    ENDFORM.                    " ml_prepare
    *&      Form  ml_dosend
          text
    -->  p1        text
    <--  p2        text
    FORM ML_DOSEND .
    CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
    EXPORTING
      DOCUMENT_DATA = DOCDATA
      PUT_IN_OUTBOX = 'X'
      COMMIT_WORK = 'X' "used from rel. 6.10
    TABLES
      PACKING_LIST = OBJPACK
      OBJECT_HEADER = OBJHEAD
      CONTENTS_BIN = OBJBIN
      CONTENTS_TXT = OBJTXT
      RECEIVERS = RECLIST
    EXCEPTIONS
      TOO_MANY_RECEIVERS = 1
      DOCUMENT_NOT_SENT = 2
      DOCUMENT_TYPE_NOT_EXIST = 3
      OPERATION_NO_AUTHORIZATION = 4
      PARAMETER_ERROR = 5
      X_ERROR = 6
      ENQUEUE_ERROR = 7
      OTHERS = 8
    *IF SY-SUBRC EQ 0.
    *MESSAGE ID 'SO' TYPE 'S' NUMBER '023'
    *WITH DOCDATA-OBJ_NAME.
    *ENDIF.
    ENDFORM.                    " ml_dosend

    Hi,
    As far as I remember there are no direct ways in SAP do to that.
    One suggestion. Create a custom program to send emails and save it with a variant in DME (the last Tab in F110). This is the same place where you maintain the details for sending out the EDI information.
    Once you are done with F110, you can carry out the print functionality to execute the program to send out emails with the payment advice.
    hope this helps.
    Regards

  • Outgoing payment with Payment Wizard with Bank Transfer

    Hello to everyone !!!
    I'm Configuring a Company who want to use the 'Payment Wizard' to make Outgoing Bank Transfers payments with it.
    I did the configuration in 'Payment Methods' of Outgoing Bank Transfers, where I chose a File Format from the list (Even I don't know which one should I choose) and I also chose de 'House bank', bank and account where the Outgoing Bank Transfers will come.
    At the time when I did the payment wizard it suggest me to make an outgoing payment of my due A/P invoice very well. The problem is in the next step (STEP 7) when i run the execution and in STEP 8 it says:
    0 Payments were added
    0 Bank transfers were added
    So, It did not make any bank transfer Transaction!!!! =S
    Someone knows what i'm missing from the configuration???
    Someone knows if this is a bug??
    Thanks for your Help!!!!

    Hi Karina,
    please see the info from SAP Note 725786. The note is currently being updated with the new information relating to system behaviour in version 2007  & should be released again shortly:
    In order for the payment wizard and subsequently the payment engine to
    work properly, SAP Business One must be defined correctly as follows:
    1. Define the House Bank:
    a) Administration -> Setup -> Banking -> House Bank Accounts - Setup.
    b) Choose the Bank Code, Country and Account Number.
    c) If the business partner bank is a postoffice bank, tick the Post Office box.
    d) Update the window.
    e) Enter into the House Bank Account Setup winod again and enter the Branch and the account number of the corresponding G/L Account.
    f) Update the window.
    2. Define Business Partner bank:
    a) Administration -> Setup -> Banking -> Banks.
    b) Choose the Country Code, Bank Code and Bank Name, if necessary Swift number.
    c) If the business partner bank is a postoffice bank, tick the Post Office box.
    d) Update the window.
    3. Define Payment Methods:
    a) Administration -> Setup -> Banking -> Payment Methods.
    b) Enter the Payment Method Code, Description and the Transaction Type.
    c) Select the Payment Type and the Payment Means.
    d) In "File Format" choose the correct plug-in for the transaction (refer to the Payment Engine Online Help for the correct plug-in for the transaction you have defined).
    e) Select your House Bank for this particular payment method.
    f) Select the validation options and remember to tick Post Office Bank, if the bank is a Post Office Bank.
    g) If the outgoing payment is by cheque, restrictions can also be defined here.
    h) Add or update the window.
    4. Set up a Business Partner for the payment wizard:
    a) Business Partner -> Business Partner Master Data.
    b) Under the "Payment Terms" tab, enter the bank country.
    c) Enter the account number and the branch, update to return to Business Partner Master Data.
    d) Under the Tab "Payment system" tab, tick the desired Payment Method to include it in a payment run.
    e) Under the Tab "Payment system", select the house bank that was defined for the desired payment method used for transactions with this business partner.
    f) Update the window.
    5. Generate invoices for this business partner.
    6. Define the standards for the payment run:
    a) Banking -> Payment System -> Define Payment Run Defaults (In 2007 A version the path is: Administration -> Setup -> Banking -> Payment Run Defaults).
    b) Define tolerance days, cash discounts etc as needed.
    c) Define minimum and  maximum payments if necessary.
    d) Tick the box beside "Payment Methods".
    e) Click on the radiobutton beside "Payment Methods" and select the payment method(s) to be executed in this payment run by putting a tick in the tick box.
    f) Update the window.
    7. Open the Payment Wizard (Banking -> Payment System -> Payment Wizard).
    a) Select a new payment run - Step 1.
    b) Click on "Next" and define the Payment Run Name and the Posting Date, the payment type and the payment means - Step 2.
    c) Click on "Next" and select the business partners to be included in this payment run, make sure that the tick box for the relevant Business Partner Name is ticked - Step 3.
    d) Click on "Next" and define the document parameters - Step 4.
    e) Click on "Next" and select the payment method this payment run is applied to by ticking the box to the left of the payment method code - Step 5.
    f) Click on "Next" and tick the payment number for the business partner to be included, individual invoices can be selected by clicking on the "Expand All" button and either selected or deselected. This also applies to Credit Memos (and to manual Journal ENtries in 2007 A). Click on "Non-included Trans." to identify any troublesome transactions - Step 6.
    g) Select to either "Save the selection criteria", or "Mark as recommended" to process at a later point in time or select to "Execute" immediately - Step 7.
    h) In Step 8, you are given the Payments Run Summary.
    i) If you selected to execute the payment run, in Step 9 the Document and Report Printing options will be displayed. To generate the bankfile and any associated documents relevant to your localisation, click on the radiobutton "Bankfile".
    j) A "Browse for Folder" window will pop up where the destination directory of the output files must be selected. Once a folder was selected and "OK" was clicked, the payment engine will take the data out of Business One and create the defined files.
    k) Once the procedure has completed, an information system message will be displayed: Payment Engine run was successful"
    8. Go to the destination folder and check the logfile and the bank file(s).
    All the best,
    kerstin

  • How to reconcile AR down payment Request with AR Invoice?

    Dear All,
    SAP B1 2007A SP01 PL07 version.
    I have created one AR down payment Request with total amount 1000.00, and then post incoming payment to paid the AR down payment Request, and the AR downpayment request then closed.
    Then, I add one AR Invoice with amount 1000.00.
    After that, I want to add incoming payment , then I select both (AR downpayment request & AR invoice), but cannot add the incoming payment because the total amount is zero (1000.00 - 1000.00=0.00).
    How can I solve this problem?
    Thanks in advance for any help.

    Hi Kerstin,
    Thank you for you reply.
    I did test your solution, but its only work for SAP 8.8. But now i'm working in SAP 2007A version. For 2007A version, downpayment request cannot be drawn to invoice.
    Anyway, i find out one way. If I add the payment together with another invoice, thats mean the total payment is not zero, then its work. The solution is, make sure the total payment is not zero then it should be ok.
    Thanks to everybody for your fast reply. Thank you so much and really appreciate your help.
    Regards,
    Mat

  • Job Work with Payment of Excise Duty

    Dear Gurus,
    We have done full process of job work without payment of excise duty. but we also want job work with payment of excise duty. we didn't found any way to do this job.
    When we make subcontracting entry with 541 mvt type and then make its excise challan  with J1IF01, the all field related to excise value is disable thats why we can not put the value in it.
    Please suggest something.
    Regards
    Pawan Sarda

    Hi
    As per my knowledge,If you are sending your material with full excise value to your subcontracting vendor means its one type of saleing
    Here you are sending material material with excise duty means its sure you dont get back your material in 180 days ,so while doing finsihed material your vendor will send finsihded material along excise value and you will capture tha excise value
    I think In this scenario subcontracting Challan  don't come in Picture  
    steps are follows
    subcontracting under Full Payment of Duty
    Creation of Subcontracting PO (ME21N)
    Transfer Posting of Components to Subcontractor (MB1B/ME2O/MIGO)
    Creation of Outgoing Excise Invoice w.r.t. Transfer Posting Document (J1IS) - Used to send the components to Subcontractor's. Here 57F4 Challan is not created.
    Capture Vendor Excise Invoice at the time of GR of Finished Goods w.r.t. Subcontracting PO (MIGO)
    Post Excise Invoice for FG received from Subcontractor (J1IEX)
    Regards
    Kailas Ugale

  • AR Invoice with payment term with multiple payments

    Hi -
    I need some help on this.
    We create invoices with payment terms that will have more than one payment schedules.
    For example, customer can pay $100 in 3 terms such as 33 (immediately), 33 (after 1 month), 34 (after 2 months).
    Now, this is all well. My question is, when we take the order, customer gives Credit Card number, we put that on the order and effectively it goes to the transaction screen.
    Let's say at the time of second payment (After 1 month), customer credit card is expired, our CC validation will fail (CC validation program) and we will not be able to get the payment.
    Now let's say I have new CC # for that customer (received from CC company), how do I update that on the transaction? I know I can do this from the front end but how do I update that using an API?
    Also, why receivables (11.5.10) does not have option to have payment method at payment schedule level instead of invoice level?
    I mean customer may have different method of paying for the subsequent installments.

    I found out the missing GL account that is under Admin> Setup> Financials> GL acct Determination
    Now, I need GL account in tab Sales - "Payment Advances".  I think this is should be the Liability account instead AR account if I have to choose an account but what will be the offset account?  Why I need GL account for AR Down Payment Invoice since no transaction really will be generated?  Just to calculate how much will be expected from customer on the first installment and balance due.
    When I receive the incoming payment will Dr. Checking or Saving and Cr. AR.

  • Vendor Payments Report with WBS Elements

    Dear Expert,
    I am looking a report for Vendor outgoing payment against WBS Elements.
    Is there any Vendor Payments report with WBS Elements in SAP? I have seen FBL1N but WBS Elements field is blank.
    Thanks
    Samiee.

    Hi,
    You mentioned WBS Element is blank; so please check in any one sample payment documnet whetehr WBS is maintained and if yes find which field it is populated. For eg; sometimes people populate this information in the text or assignment field. If that is the case then change the layout accordingly in FBL1N.
    Regards
    Sreekanth

  • Vendor invoices are blocked automatically with payment blck A instead of R

    There is an issue with a specific vendor.This vendor's invoices are blocked automatically with payment block A instead of
    payment block R.
    I know that invoices are blocked when posted if there is a price variance exceeding 3% and/or 100 Euro with payment block R.The invoices with payment block A are not included in the report Z1PE which is used by the Production Planning in order to monitor the blocked invoices and these invoices remain blocked for a long time until the vendor requests their payment.Could you please check why this happens?

    HI,
    Discuss with your MM Consultant, in MM there is a facility to block the invoice automatically in certain scenarios.
    Thanks & Regards,
    Shashi Kanth.

  • PO report with Payment terms

    Dear All,
    Is there any report i can see all PO details with Payment terms.
    In ME80FN, i see many PO details but no Payment terms.
    Please advice.
    Regards

    Hi,
    try report
    fbl1n
    or in table EKKO
    Regards
    Kailas Ugale

  • Report inculdes PO with Payment term

    Hi ..
    I need to have report includes my purchase orders with payment term column , which transaction can provide that ?
    Thanks
    Yasser

    PO wise payment term u can get in ME2n report..
    Vendor wise from LFM1 or LFA1 table
    Check MKVZ report

  • Is it possible to maintain multiple payment formats with a single Program

    Hi,
    Is it possible to maintain multiple payment formats with in a single program.
    For example let us assume that we have created 2 payments formats as 'XX-PAY1' & 'XX-PAY2'.
    When i select the parameter as '1' then 'XX-PAY1' has to run else 'XX-PAY2'.
    if its possible could you please tel us where to define the parameters in Setups.
    Many thanks,
    Zaheer S

    nazzu wrote:
    Hi,
    Is it possible to maintain multiple payment formats with in a single program.
    For example let us assume that we have created 2 payments formats as 'XX-PAY1' & 'XX-PAY2'.
    When i select the parameter as '1' then 'XX-PAY1' has to run else 'XX-PAY2'.
    if its possible could you please tel us where to define the parameters in Setups.
    Many thanks,
    Zaheer SSounds like an Apps question. Start here: https://forums.oracle.com/forums/category.jspa?categoryID=3

Maybe you are looking for

  • How do I change the width of the "polygon splitter" line?

    I have Ultiboard v10 with all the updates.  I have been unable to find a way to shrink the size of the line that the polygon splitter function uses.  The split seems to be stuck at 0.1 inches.  Anyone know how to change this setting?  Thanks for any

  • Is the Ipad 2 compatible in Italy

    Hello, I would like to know the following things about the Ipad2 and its compatibility. 1. Is it compatible in Italy with their Wi-Fi? 2. To charge the Ipad, can it be charged on a non-apple computer? If not, is the electrical charging system compati

  • Basic questions, (I think)

    Hi... I've had my Blackbook for about three months and I'm somewhat satisfied. This is my first mac product after my PC laptop was stolen. Anyway... question 1: my desktop is clutter with mpkg and dmg files... is it ok to just throws these in the tra

  • Setting Due Date for task using business days

    While this may not be new news to many, I found little information on how to add a certain number of business days to determine the due date for a task to be used in a workflow.  For SharePoint 2010 environments that cannot run custom code, I have fo

  • Adobe Flash Player 10 download options

    why do some websites send you to adobe.com to install flash player and other sites offer the "install method" ? You know where you get the prompt from the site to download the adobe installer. Is it safe if the site is reliable and legit?