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.

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 Payables Invoices and Payments conversion

    How are open AP invoices and payments converted from R11i to R12? Please suggest documents/notes on how this can be done and if there are any APIs to be used for the data conversion, please suggest those.
    Thanks

    If you are going to perform an upgrade from 11i to R12, pl check the upgrade guide at http://download.oracle.com/docs/cd/B40089_10/current/html/docset.html for steps necessary before performing the upgrade (along with the ML Doc noted above).
    If you are planning a re-implementation, you will need to extract the data from 11i and load it into R12 via open interface tables and APIs. APIs are documented in the "Integration Repository" responsibility in your R12 instance.
    HTH
    Srini

  • 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

  • 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

  • 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

  • Cancelled payments accounting status stands in "Partial" R12 Oracle Payable

    Dear Friends,
    Cancelled payments accounting status stands in "Partial" R12 Oracle Payable even after submitting Actions-->Create Accounting-->Final.
    There is no error in create accounting program....
    I could not close the period.
    Your prompt help in this issue will be Appreciated.

    Hi,
    do the following procedure
    Intended functionality as Create Accounting - Payments was ran with the ERRORS ONLY parameter set to YES.
    Errors Only Parameter is a required field, if set to YES it limits the creation of accounting to those events with error status only. If intent is to run Create Accounting - for all erred or unprocessed event then parameter should be set to NO.
    Regards,
    Raju

  • HT201303 I no longer live in Qatar. I am now living in Abu Dhabi. I have tried several times to update my account with new address and payment details but the system keeps telling me that I can only use a Qatari account?? How can I amend this please

    I have tried several attempts to update my account information as I have moved location and obvioulsy have new payment details.
    The system does not seem to accept the new information and keeps refering me back to my old details saying you cannot purchase in this area, we will put you back to the Qatari location???
    Please help, have tried now for 2 days to update

    Im trying to switch the Apple ID names around, and what i've learnt is that the Apple ID has to be an Email that isn't an Apple ID. Yup, it's messed alright.

  • 'Format Payment Instructions with Text Output' program ending in error

    Hi All,
    'Format Payment Instructions with Text Output' program of the payment cycle is completing in to error.
    error is:
    length of the output - baos::4914
    After formatting, periodicSeq is null or empty.{}
    length of the output - baos::4914
    Exit: iby.scheduler.FDFormatProgramUtils.doExtractAndFormatCommon()
    Saving format output.
    Enter: iby.scheduler.FDExtractAndFormatting.queryFileSysAttributes
    Querying file system output attributes
    ppDir: null
    ppExt: null
    ppPre: null
    File system output settings that override the concurrent program default: {}
    Exit: iby.scheduler.FDExtractAndFormatting.queryFileSysAttributes
    Enter: iby.scheduler.FDFormatProgramUtils.saveToFileSystem()
    Concurrent request output file name: /NGFQ2/oraapps/NGFQ2/inst/apps/NGFQ2_dngfdb25/logs/appl/conc/out/o19301342.out
    Opened file in append mode: /NGFQ2/oraapps/NGFQ2/inst/apps/NGFQ2_dngfdb25/logs/appl/conc/out/o19301342.out
    Exit: iby.scheduler.FDFormatProgramUtils.saveToFileSystem()
    Enter: iby.scheduler.FDExtractAndFormatting.saveFormatOutput()
    Nov 25, 2009 7:59:16 PM oracle.adf.share.config.ADFConfigFactory findOrCreateADFConfig
    INFO: oracle.adf.share.config.ADFConfigFactory No META-INF/adf-config.xml found
    oracle.apps.fnd.framework.OAException: Application: FND, Message Name: FND_GENERIC_MESSAGE. Tokens: MESSAGE = oracle.jbo.ApplicationModuleCreateException: JBO-25222: Unable to create application module.;
    at oracle.apps.fnd.framework.OAException.wrapperException(OAException.java:896)
    at oracle.apps.fnd.framework.OAApplicationModuleFactory.createRootOAApplicationModuleInternal(OAApplicationModuleFactory.java:476)
    at oracle.apps.fnd.framework.OAApplicationModuleFactory.createRootOAApplicationModule(OAApplicationModuleFactory.java:608)
    at oracle.apps.iby.util.OAAttachmentServerUtilsWrapper.<init>(OAAttachmentServerUtilsWrapper.java:35)
    at oracle.apps.iby.scheduler.FDExtractAndFormatting.saveFormatOutput(FDExtractAndFormatting.java:450)
    at oracle.apps.iby.scheduler.FDExtractAndFormatting.doExtractAndFormat(FDExtractAndFormatting.java:421)
    at oracle.apps.iby.scheduler.FDExtractAndFormatting.runMainLogic(FDExtractAndFormatting.java:251)
    at oracle.apps.iby.scheduler.FDExtractAndFormatting.runProgram(FDExtractAndFormatting.java:141)
    at oracle.apps.fnd.cp.request.Run.main(Run.java:157)
    ## Detail 0 ##
    oracle.adf.mds.exception.MDSRuntimeException: Unable to load metamodel definition because the mmd file file:/NGFQ2/oraapps/NGFQ2/inst/apps/NGFQ2_dngfdb25/logs/appl/conc/log/null/jrad/JRADElementList.xml is invalid.
    /NGFQ2/oraapps/NGFQ2/inst/apps/NGFQ2_dngfdb25/logs/appl/conc/log/null/jrad/JRADElementList.xml (No such file or directory)
    at oracle.adf.mds.internal.ElementData.<init>(ElementData.java:113)
    at oracle.adf.mds.internal.MElementImpl.<init>(MElementImpl.java:480)
    at oracle.adf.mds.internal.jbo.JBODefManagerHelper.getSubstitution(JBODefManagerHelper.java:240)
    at oracle.adf.mds.internal.jbo.JBODefManagerHelper.getSubstitution(JBODefManagerHelper.java:178)
    at oracle.adf.mds.internal.jbo.JBODefManagerHelper.listBindings(JBODefManagerHelper.java:124)
    at oracle.adf.mds.jbo.JBODefManager.listBindings(JBODefManager.java:100)
    at javax.naming.InitialContext.listBindings(InitialContext.java:406)
    at oracle.jbo.mom.DefinitionManager.findSubstituteName(DefinitionManager.java:451)
    at oracle.jbo.mom.DefinitionManager.findDefinitionObject(DefinitionManager.java:411)
    at oracle.jbo.mom.DefinitionManager.findDefinitionObject(DefinitionManager.java:358)
    at oracle.jbo.mom.DefinitionManager.findDefinitionObject(DefinitionManager.java:340)
    at oracle.jbo.server.MetaObjectManager.findMetaObject(MetaObjectManager.java:700)
    at oracle.jbo.server.ApplicationModuleDefImpl.findDefObject(ApplicationModuleDefImpl.java:232)
    at oracle.jbo.server.ApplicationModuleImpl.createRootApplicationModule(ApplicationModuleImpl.java:401)
    at oracle.jbo.server.ApplicationModuleHomeImpl.create(ApplicationModuleHomeImpl.java:91)
    at oracle.apps.fnd.framework.OAApplicationModuleFactory.createRootOAApplicationModuleInternal(OAApplicationModuleFactory.java:428)
    at oracle.apps.fnd.framework.OAApplicationModuleFactory.createRootOAApplicationModule(OAApplicationModuleFactory.java:608)
    at oracle.apps.iby.util.OAAttachmentServerUtilsWrapper.<init>(OAAttachmentServerUtilsWrapper.java:35)
    at oracle.apps.iby.scheduler.FDExtractAndFormatting.saveFormatOutput(FDExtractAndFormatting.java:450)
    at oracle.apps.iby.scheduler.FDExtractAndFormatting.doExtractAndFormat(FDExtractAndFormatting.java:421)
    at oracle.apps.iby.scheduler.FDExtractAndFormatting.runMainLogic(FDExtractAndFormatting.java:251)
    at oracle.apps.iby.scheduler.FDExtractAndFormatting.runProgram(FDExtractAndFormatting.java:141)
    at oracle.apps.fnd.cp.request.Run.main(Run.java:157)
    An error occurred. Roll back any changes.
    Done roll back changes.
    Request completed in error.
    Has anybody came across this error. If yes, what needs to be done to resolve this error?
    Thanks in advance for your help.
    Thanks Again,
    Sachin

    Hi,
    oracle.adf.mds.exception.MDSRuntimeException: Unable to load metamodel definition because the mmd file file:/NGFQ2/oraapps/NGFQ2/inst/apps/NGFQ2_dngfdb25/logs/appl/conc/log/null/jrad/JRADElementList.xml is invalid. Please see if (Note: 556812.1 - R12 Error When Running The Payment Format: JRADElementList.xml is Invalid) is applicable.
    Regards,
    Hussein

  • Invalid filename from Format Payment Instruction with Text Output conc prog

    hi there
    we are using EBS 12.1.3 and when producing an EFT file using the Format Payment Instruction with Test Output concurrent program, we are getting a file with an extra ".out" extension
    for exampe DE_CE_o81527.out.out.
    Seems like the IBY Payments Engine is using the concurrent program output file name and appending it to the prefix we have given.
    Anybody know of bug or patch for this. I have looked and looked in Meta-link without success. Its geting urgent now. Any help will be appreciated.
    here is an extract of logfile:
    length of the output - baos::488
    After formatting, periodicSeq is null or empty.{}Timestamp: Tue Mar 12 14:21:15 EST 2013
    length of the output - baos::488
    Exit: iby.scheduler.FDFormatProgramUtils.doExtractAndFormatCommon()Timestamp: Tue Mar 12 14:21:15 EST 2013
    Saving format output.
    Enter: iby.scheduler.FDExtractAndFormatting.queryFileSysAttributes
    Querying file system output attributes
    ppDir: null
    ppExt: null
    ppPre: null
    File system output settings that override the concurrent program default: {}
    Exit: iby.scheduler.FDExtractAndFormatting.queryFileSysAttributes
    Enter: iby.scheduler.FDFormatProgramUtils.saveToFileSystem()
    Concurrent request output file name: /u02/oracfg/EZCFGEBS/inst/apps/EZCFGEBS_ezi-cfg-ebs-001/logs/appl/conc/out/o881527.out
    Opened file in append mode: /u02/oracfg/EZCFGEBS/inst/apps/EZCFGEBS_ezi-cfg-ebs-001/logs/appl/conc/out/o881527.out
    Exit: iby.scheduler.FDFormatProgramUtils.saveToFileSystem()
    While savingoutput - m_instructionID : 11362
    Enter: iby.scheduler.FDExtractAndFormatting.saveFormatOutput()
    Mar 12, 2013 2:21:15 PM oracle.adf.share.config.ADFConfigFactory findOrCreateADFConfig
    INFO: oracle.adf.share.config.ADFConfigFactory No META-INF/adf-config.xml found
    ENTER
    Getting attached document ID
    Parameters passed ...
    pkValues[0] : 11362
    Returned values ...
    attachedDocId : -99
    Format output not exist. Saving it.
    Before savingoutput - m_instructionID : 11362
    ENTER
    Saving document as attachment
    Parameters passed ...
    pkValues[0] : 11362
    fileName : o881527.out
    Returned values ...
    attachedDocId : 60328
    EXIT
    After savingoutput - m_instructionID : 11362
    Saved attachment doc id: 60328
    Exit: iby.scheduler.FDExtractAndFormatting.saveFormatOutput()
    After buildingoutput - m_instructionID : 11362
    End Timestamp::Tue Mar 12 14:21:16 EST 2013
    Exit: iby.scheduler.FDExtractAndFormatting.doExtractAndFormat()
    Instruction status was CREATED, the instruction is set to transmit immediately and the transmission configuration is available. Starting transmission.
    Enter: iby.scheduler.FDExtractAndFormatting.doTransmission()
    Enter: iby.scheduler.FDFormatProgramUtils.getCPFilename()
    got CP outfile_name: /u02/oracfg/EZCFGEBS/inst/apps/EZCFGEBS_ezi-cfg-ebs-001/logs/appl/conc/out/o881527.out
    Exit: iby.scheduler.FDFormatProgramUtils.getCPFilename()
    Enter: iby.scheduler.FDFormatProgramUtils.doTransmission()
    Created ByteArrayInputStream containing the format output.iby.scheduler.FDFormatProgramUtils.doTransmission()
    Start transmission.iby.scheduler.FDFormatProgramUtils.doTransmission()
    Exit: iby.scheduler.FDFormatProgramUtils.doTransmission()
    Transmission successful. So setting result status to TRANSMITTED
    Enter: iby.scheduler.FDExtractAndFormatting.postResults()
    Executing BEGIN IBY_FD_POST_PICP_PROGS_PVT.post_results(:1, :2, :3, :4); END;
    Successfully executed PL/SQL.
    Exit: iby.scheduler.FDExtractAndFormatting.postResults()
    Exit: iby.scheduler.FDExtractAndFormatting.doTransmission()
    Exit: iby.scheduler.FDExtractAndFormatting.runMainLogic()
    End of Main logic: Tue Mar 12 14:21:16 EST 2013

    I had logged an SR on this, Oracle was able to reproduce and created bug 17483136 . It's still being worked on my development.

  • Format Payment Instructions with Text Output issue

    Hi All,
    We have requirement like don't want print checks in oracle, just process the payment, generate the document number(check number) in oracle and send the data file to third party system. It takes care the check printing.
    For this I developed e-text xml template, created the payment format of type Disbursement Payment Instruction, attached to bank account and Payment process profile.
    When I am processing payment it is submitting 'Format Payment Instructions with Text Output' instead of 'Format Payment Instructions' but that program extracting the previous check information which not related to supplier and as well as payments batch.
    Please let me know what would be the issue?
    Thanks
    Praveen

    Hi Javvaji,
    Please check the following steps,
    1) Created XML Pubblisher template and attached the .rtf (Type - eText-Outbound, Default Output Type - eText)
    2) In Payable Manager responsibility Create a Payment Format ->
    Setup-> Payment Administrator-> Formats (Add XML Publisher Template created in step1)
    3) Setup-> Payments -> check existing Bank & Bank Branches
    4) Setup-> Payments -> Bank Accounts -> Create the payment Document Number
    5) Attach the Bank account to a valid supplier: Payables – Suppliers -> Entry
    6) Now to create the payment Process Profile (PPP)
    Navigation : go to Payables -> Setup-> Payment Administrator
    7) Now to attach everything (PPP,format,document etc.) to the Template
    First step to Create a “Template”
    Navigation: Payables,Vision Operations -> Payments -> Entry -> Payments Manager
    8) Then go to Tab “Payment Process Requests” Then click on “Submit Single Request”
    9) Check View -> Requests
    No output generated in 'Format Payment Instruction' program.
    which program I can get the eText output?
    Please suggest.
    Thanks & Regards,
    Sagarika

  • R12.1.3 certification on Linux on Power systems

    We are planning to migrate R12.1.3 env from IBM AIX 6.1 Powers systems to Linux. We want to continue using the power systems on linux, so I am looking for options on Linux platform. It appears that only IBM power system are certified, but I have seen fews notes which say that we can have a split configuration with 11g database on Linux on power system and R12.1.3 apps tier on Linux on intel ( x86-64). Please let me know the options I have. Thank you, Amaresh

    For the list of certified Linux OS, please see:
    Oracle E-Business Suite Installation and Upgrade Notes Release 12 (12.1.1) for Linux x86-64 (Doc ID 761566.1)
    R12.1.1 : Oracle E-Business Suite Installation and Upgrade Notes Release 12 (12.1.1) for Linux x86 (Doc ID 761564.1)
    If you want to have the apps tier node running on a different OS than the database tier node, please see:
    R11i / R12: Oracle E-Business Suite Upgrades and Platform Migration (Doc ID 1377213.1)
    Frequently Asked Questions: Oracle E-Business Suite Support on x86-64 (Doc ID 343917.1)
    Oracle EBS R12 with Database Tier Only Platform on Oracle Database 11.2.0 (Doc ID 456347.1)
    Using Oracle EBS R12 with a Database Tier Only Platform on Oracle 11gR1 (Doc ID 762669.1)
    You can also use the certification matrix on MOS website.
    Thanks,
    Hussein

  • 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

  • Xml A/R Credit Memo with Payment

    Hi all,
    i need to create a A/R Credit Memo with payment linked to. I'm creating the credit memo ok, without problem, but the questions is... How create the payment? In the same xml? Or I create first the credit memo and payments follows?  Some idea?
    Grateful,
    Leo Azvdo.

    Hello
    You post the CM then you have to receive the CM key to post the payment. This is the system habit, you need to use 2 files:
    1. for CM
    2. payment
    Regards
    János

Maybe you are looking for

  • Calendar app showing wrong date for iCal feed.

    Has anyone else noticed that when an iCal feed publishes an event that is after 0000Z, but still on the previous date in local time, it's added to the calendar on the wrong day? Example:  Your phone is being used in Chicago (CST).  An ical feed you s

  • Lost camera raw support for canon 1ds markI in mountain lion

    I seem to have lost system support for camera raw files for the original Canon 1ds (what you might call the markI). There's been two recent raw support updates, and I'm not sure if it occured with the first for those two updates or with update to Mou

  • Adobe Elements 6

    I have just bought a new Dell computer with windows 7 and I want to re-install Adobe Acrobate Elements 6 on it. I tried doing it and it says that the PDF printer won't work.  What do I need to do. I have to create PDF files.

  • Error while executing of Pre-Process EventHandler

    Hi, I have a pre-process event handler configure for "CREATE" and "MODIFY" operations which updates middle name of the user. The code gets triggered perfectly for "CREATE" operation and updates middle name attribute as expected. But when I update the

  • Placeholders in FCC

    hi,   is there any option like place holders in FCC.   my requirement was with keyfield value .length of keyfield fvalue is  5 characters and i want to take 5th character ignoring first 4 characters. , so with place holder concept like that is there