ORA-02021: DDL operations are not allowed on a remote database

Hi,
While creating a trigger to keep track of every deletion on a remote table, I am receiving this error.
I am not using any DDL within my trigger.
My trigger code is:
CREATE OR REPLACE TRIGGER neeraj.iuc_trig
before delete on neeraj_test@iuc
for each row
DECLARE .........................
Here iuc is public database link.
Any idea ?
Regards,
Neeraj

Hi Neeraj,
you cannot define a trigger on a remote table.
why don't you define the trigger just directly on
the remote db.
You can define some insert/update ... operations
on "your" db in your trigger.
you need a db_link for that on your remote-db
to your "original"-db
update emp@orig_db ...
Regards
Schoeib
Message was edited by:
schoeib

Similar Messages

  • SQL operations are not allowed with no global transaction by default for X

    Hi All,
    I am getting the above mentioned error.
    java.sql.SQLException: SQL operations are not allowed with no global transaction by default for XA drivers. If the XA driver supports performing SQL operations with no global transaction, explicitly allow it by setting "SupportsLocalTransaction" JDBC connection pool property to true. In this case, a
    lso remember to complete the local transaction before using the connection again for global transaction, else a XAER_OUTSIDE XAException may result. To complete a local transaction, you can either set auto commit to true or call Connection.commit() or Connection.rollback().
    I am developing a web application. I have jsp, servlets, JDBC classes.
    I am using DataSource and Connection pools.
    I am on WLS 8.1 sp3 and Oracle 10.1.
    Part of My Config file looks as follows:
    <JDBCConnectionPool DriverName="weblogic.jdbcx.oracle.OracleDataSource" KeepLogicalConnOpenOnRelease="true" KeepXAConnTillTxComplete="false" Name="AUMDataSource" NeedTxCtxOnClose="false" NewXAConnForCommit="false" Password="{3DES}AKRkWgdzXN8WrXSRtSvJ6g==" Properties="user=pibsrmgr;portNumber=1521;SID=pibsrdod;serverName=pibsrdod.dtu.mlam.ml.com" RollbackLocalTxUponConnClose="true" SupportsLocalTransaction="false" Targets="myserver" TestTableName="SQL SELECT 1 FROM DUAL" URL="jdbc:bea:oracle://pibsrdod.dtu.mlam.ml.com:1521" XAEndOnlyOnce="false" />
    <JDBCTxDataSource EnableTwoPhaseCommit="true" JNDIName="jdbc/AUMDataSource" Name="AUMDataSource" PoolName="AUMDataSource" Targets="myserver" />
    Any help will be appreciated.
    Thanks
    ---Radhe

    Hi,
    Regarding Transactions , the following link can helpful to you .
    Regards,
    Prasanna Yalam

  • Receiving an ORA-31020: The operation is not allowed...

    I'm trying to use a stylesheet that has several included stylesheets.
    It looks something like this...
    <?xml version='1.0'?>
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:include href="http://fhamiwsdt01/AMIWeb/namespaces/AmerisureClient.xsl"/>
    <xsl:include href="http://fhamiwsdt01/AMIWeb/namespaces/AmerisurePolicy.xsl"/>
    <xsl:include href="http://fhamiwsdt01/AMIWeb/namespaces/AmerisureRetailAgent.xsl"/>
    <xsl:include href="http://fhamiwsdt01/AMIWeb/namespaces/TransactionUtilities.xsl"/>
    My procedure is to grab an xml an bump it up against the stylesheet as follows.
    CREATE OR REPLACE FUNCTION transformPolicyXml RETURN CLOB IS
    -- Define the local variables
    xmldata XMLType;
    xsldata XMLType;
    newxml XMLType;
    xml clob;
    xsl clob;
    error varchar2(200);
    BEGIN
    -- Get the XML document using the getXML() function defined in the database.
    -- Since XMLType.transform() method takes XML data as XMLType instance,
    -- use the XMLType.createXML method to convert the XML content received
    -- as CLOB into an XMLType instance.
    xml := getxml('Policy.xml');
    xmldata := XMLType.createXML(xml);
    -- Get the XSL Stylesheet using the getXSL() function defined in the database.
    -- Since XMLType.transform() method takes an XSL stylesheet as XMLType instance,
    -- use the XMLType.createXML method to convert the XSL content received as CLOB
    -- into an XMLType instance.
    xsl := getxml('Amerisure EAI XSLT.xsl');
    xsldata := XMLType.createXML(xsl);
    -- Use the XMLtype.transform() function to get the transformed XML instance.
    -- This function applies the stylesheet to the XML document and returns a transformed
    -- XML instance.
    newxml := xmldata.transform(xsldata);
    -- Return the transformed XML instance as a CLOB value.
    RETURN newxml.getClobVal();
    EXCEPTION WHEN OTHERS THEN
    error := sqlerrm;
    raise_application_error (-20102, 'Exception occurred in transformPolicyXml :'||SQLERRM);
    END transformPolicyXml;
    The following statement is what causes an error:
    newxml := xmldata.transform(xsldata);
    the error i'm receiving is ORA-31020: The operation is not allowed, Reason: For security reasons, ftp and http access over XDB repository is not allowed on server side.
    Is there anyway to get around this error?

    As the error says, the XML DB does not allow ftp or http access to remote objects.
    You will need to make all your includes local to the DB server.

  • ORA-2935 - relative pathnames are not allowed - help needed

    I'm trying to generate XML document from a query using XSU and applying stylesheet with DBMS_XMLQUERY.setXSLT() procedure.
    I've got the following PL/SQL code:
    DECLARE
    q DBMS_XMLQUERY.ctxtype;
    result clob;
    BEGIN
    q := DBMS_XMLQUERY.newcontext('select * from test_xml1');
    DBMS_XMLQUERY.setxslt(q,'c:\test_xsl.xsl');
    result := DBMS_XMLQUERY.getxml(q);
    printclobout(result);
    DBMS_XMLQUERY.closecontext(q);
    END;
    and stylesheet (I made the simplest example possible):
    <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version = "1.0">
    <xsl:output indent="yes"/>
    <xsl:template match="ROW/COLUMNA1">
    <COL1><xsl:value-of select="COLUMNA1"/></COL1>
    </xsl:template>
    </xsl:stylesheet>
    and I'm getting error
    ORA-29532: Java call terminated by uncaught Java exception: java.lang.SecurityException: relative
    pathnames are not allowed(c:\test_xsl1.xsl)
    What am I doing wrong?
    How the DBMS_XMLQUERY.setXSLT() procedure should be used?
    Where is the DBMS_XMLquery package expecting to find the XSL file? Does the XSL stylesheet have to be stored in a database table, retrieve it and have it applied, or does it need to be an external file?
    Please help!
    Thanks!

    Hi,
    If you don't want these two columns ignore them in SELECT statement.
    If this is what you are looking for try this
    SELECT air_cntl_number, air_id, awos_cntl_number, NAME, elipsoid_elevation,
           state_code, country_code, airport_code, LOCATION, field_elevation,
           datum, magnetic_variance, magnetic_variance_year, weather_station,
           control_tower, control_zone, control_zone_operational,
           designated_enrout_airport_afis, sectional_chart, telephone_nbr,
           flight_inspection, procedure_development, region_code,
           audit_crt_datetime, audit_crt_user_id, audit_updt_datetime,
           audit_updt_user_id, lat_degree, lat_minute, lat_second, long_degree,
           long_minute, long_second, lat_dir, long_dir, pseudo, magvar_dir,
           icao_code, CATEGORY, vertical_datum, airport_use, nfdc_ident,
           icao_location_code,
            --NULL as AIRPORT_SPATIAL_LOCATION,
           official_use_flag, part_139_flag, survey_code,
           airport_ellip_elev_source, status_code, air_revision_number,
           air_revision_date, approach_landing_number,
           --NULL as  ACTIVATION_DATE,
           tpp_vol,
           ROW_NUMBER () OVER ( PARTITION BY  air_cntl_number
                               ,                  air_revision_number
                         ORDER BY       status_code        -- assuming 'A' and 'H' are the only possible values
                          )  AS r_num
      FROM
    mv_airport_all t
      where t.audit_updt_datetime = (Select max(AUDIT_UPDT_DATETIME) from MV_AIRPORT_ALL
      where AIR_CNTL_NUMBER=t.AIR_CNTL_NUMBER and AIR_REVISION_NUMBER= t.AIR_REVISION_NUMBER)Thanks

  • Create Materialized View ORA-01723: zero-length columns are not allowed

    I am trying to create a materialized view which derives a column from a function and I get: ORA-01723: zero-length columns are not allowed.
    I am using 10gR2 with the following definition (simple version):
    CREATE MATERIALIZED VIEW AS
    SELECT
    function_name(column_name) COLUMN_ALIAS
    FROM table_name;
    I have even tried to cast it like below:
    CREATE MATERIALIZED VIEW AS
    SELECT
    CAST(function_name(column_name) AS VARCHAR2(200)) COLUMN_ALIAS
    FROM table_name;
    My function does have an exception to return a value even if no values are found.
    I have looked all over for the solution. Does anyone have a way around this issue? I really need my function to derive the column as it has business rules which I cannot join into my materialized view definition. My only hope around this is to insert the values into a table and then create a materialized view from that table, I don't want to do that if someone has a solution around this.
    Any help would be greatly appreciated.
    Thank you,
    Kyle
    Edited by: Kyle Miller on Apr 19, 2011 8:28 AM

    Have you tried creating a table with the correct structure and then creating the materialized view based on the prebuilt table as described here...
    http://www.oaktable.net/content/ultra-fast-mv-alteration-using-prebuilt-table-option
    Cheers
    Ben

  • Error message when installing Yosemite OS: this core storage operation is not allowed on a sparse logical volume group

    I was updating my Macbook Air (i7, 4mb RAM, 256 gb) to Yosemite OS when the process was interrupted. After retry, my computer is showing the following message: "this core storage operation is not allowed on a sparse logical volume group". I tried to restart several times, but the problem goes on with error. It would be my computer damaged?

    If you don't already have a current backup of all data, back up before proceeding. There are ways to back up a computer that isn't fully functional. Ask if you need guidance.
    Start up in Recovery mode. When the OS X Utilities screen appears, select Disk Utility.
    In the Disk Utility window, select the icon of the startup volume from the list on the left. It will be nested below another disk icon, usually with the same name. Click the Unlock button in the toolbar. When prompted, enter the login password of a user authorized to unlock the volume, or the alternate decryption key that was generated when you activated FileVault.
    Then, from the menu bar, select
              File ▹ Turn Off Encryption
    Enter the password again.
    You can then restart as usual, if the system is working. Decryption will be completed in the background. It may take several hours, and during that time performance will be reduced.
    If you can't turn off encryption in Disk Utility because the menu item is grayed out, you'll have to erase the volume and then restore the data from a backup. Select the Erase tab, and then select
              Mac OS Extended (Journaled)
    from the Format menu.
    You can then quit to be returned to the main Recovery screen. Follow these instructions if you back up with Time Machine. If you use other backup software, follow its developer's instructions.
    Don't erase the volume unless you have at least two complete, independent backups. One is not enough to be safe.

  • Whenever I open pdf file link in net shows a message box Acrobat plug-in and message as "This operation is not allowed" and after firefox getting crashed. I observed twice

    Details of Crashing Information
    AdapterDeviceID: 2562
    AdapterVendorID: 8086
    Add-ons: {d47a9f51-8281-43fa-f450-f28ef8735e9a}:2.1.1,[email protected]:3.6.5.112,{972ce4c6-7e08-4474-a285-3208198ce6fd}:4.0
    AvailableVirtualMemory: 1923440640
    BuildID: 20110318052756
    CrashTime: 1304770256
    EMCheckCompatibility: true
    FramePoisonBase: 00000000f0de0000
    FramePoisonSize: 65536

    I'm replying to this old thread for anyone looking for this problem in the future ( like I did ).
    The problem for me was that the original .pdf had a single blank comment in it.
    I opened it in Acrobat pro, deleted the comment, saved, opened it in livecycle, changed the illustration ( or whatever you had to change in the first place ), save it again, opened it in Acrobat and save for Reader Extended PDF.
    It now works
    PS: nice job Adobe with useless error messages. Just saying "Comments are not allowed" instead of "This operation is not permitted" would have saved countless hours to countless people.

  • Com.sap.aii.adapter.file.ftp.FTPEx: 550 You are not allowed to issue this

    hi All,
    We are getting below error while connecting to an FTP location through File Adapter:
    Message processing failed. Cause: com.sap.engine.interfaces.messaging.api.exception.MessagingException: An error occurred while connecting to the FTP server XYZ. The FTP server returned the following error message: 'com.sap.aii.adapter.file.ftp.FTPEx: 550 You are not allowed to issue this command'. For details, contact your FTP server vendor.
    Also when we tried to connect to this FTP location through PI server we able to connect, but when we connect to it through channel we are getting above error.
    Please Help!
    Thanks,
    Mayank

    hi All,
    The usedid we are using to connect to FTP location has appropriate access to write(we have an receiver file adapter) the files, when we connected to FTP location from PI server using same useid(as used in channel) we are able to connect to FTP location and also able to write the file there.
    Now error soming is:
    An error occurred while connecting to the FTP server XYZ. The FTP server returned the following error message: 'com.sap.aii.adapter.file.ftp.FTPEx: 550 Operation is not supported under Connect:Enterprise FTP server.'. For details, contact your FTP server vendor.
    Thanks,
    Mayank

  • The update operation is not allowed in the current state of the request

    When users have logged a request through the service manager 2012 portal and they go back in to add user input they sometimes receive a message that says " The update operation is not allowed in the current state of the request." The state of the
    request has not changed it is still Active and has not breached its service level .
    I can't seem to find any information about this error and don't know how to troubleshoot it. Any help and advice would be appreciated.
    Thanks
    Sarah

    ok, so they're adding user comments after creating the service request. looks like this:
    the first thing to check is that the user is added to the default, un-scoped "End User" security role, or the custom end user security role they are added to has a scope that includes all work items. The "user input" field adds a user comment related
    to the SR, so the ability to create user comments is required to use this field.

  • ORA-00934: group function is not allowed here

    Hi,
    My requirement is to check oi.quantity is equal to sum of packing_detail. quantity
    by order_number
    select oi.quantity_ordered oi_qu, pd.quantity pq
    from ordered_items oi, packing_details pd
    where oi.ordered_item_id = pd.ordered_item_id
    and oi.quantity_ordered = sum(pd.quantity)
    and oi.order_number = '29';
    after executing above query I get error
    SQL Error: ORA-00934: group function is not allowed here
    00934. 00000 - "group function is not allowed here"
    Please tell me how to resolve it.
    Thanks in advance
    Sandy

    You have to make use of a subquery;
    select oi.quantity_ordered oi_qu, pd.quantity pq
    from ordered_items oi, packing_details pd 
    where oi.ordered_item_id = pd.ordered_item_id 
    and oi.quantity_ordered = *(select sum(pd.quantity) from packing_details pd1 group by pd1.ordered_item_id)* 
    and oi.order_number = '29';  This is based on the assumption that ordered_items is the summarize data and packing_details are the line item level data.
    regards,
    Dipankar.

  • Sorry. Credit Cards are not allowed at this store....

    So, I have a US based credit card and I'm located in the US. All of my account info is updated with my latest address and credit card info.  I can't seem to purchase anything in the store with a credit card.  When I click on buy it brings up the message "Sorry. Credit Cards are not allowed at this store."
    Really? Nokia doesn't want to sell me anything? Is this a bug or intentional?

    At some point in the US, if you used AT&T SIM cards, the Nokia/Ovi Store required that purchases are done via the phone bill (so called operator/carrier billing). Presumably Nokia's agreement with AT&T states that for AT&T customers, credit/debit card payments are to be disabled. I'm not sure if this still the situation in the US.

  • SQL Developer Blocked and is not allowed to connect to database ORA-200001

    SQL Developer Blocked and is not allowed to connect to database gives ORA-200001.
    i found on net that DBA can write triggers which can deny connection to database from certain appplication.
    so i want a way to change application name so that when it connects to database
    the V$SESSION will have different value (other than SQL Developer) in column PROGRAM and/or MODULE (which i think is used by dba to restrict the connection).
    one more way is
    i am using jdbc url to connect to database
    in java we can change properties of connection to change the PROGRAM in V$SESSION.
    but i am not java expert so dont know how and where to make the changes
    either way my aim is to connect to database such that V$SESSION will have different value (other than "SQL Developer") in column PROGRAM and/or MODULE

    This is not system configration or credential issue.
    This is a check which is put DBA using logon trigger
    to check certain user loging in using certain application.
    only some users using particular username are getting this error when they try to logon using oracle sql developer
    the same users when uses different username(some generic user names created to access database) to access the same database then they are able to login.
    similarly if they login using SQL navigator they are able to login with both their own and the generic user name
    more over of all the database instances this is only happening on some of the instances and all of them are development instances.
    following will help you understand
    USER | DBUSERNAME | DATABASE | APPLICATION | ACTION
    X | X | DB1 | Oracle Sql Developer | Blocked
    X | G(Genric) | DB1 | Oracle Sql Developer | Login Success
    X | X | DB1 | Sql Navigator/SqlPLus | Login Success
    X | G(Genric) | DB1 | Sql Navigator/SqlPLus | Login Success
    X | X | DB2 | Oracle Sql Developer | Login Success
    X | G(Genric) | DB2 | Oracle Sql Developer | Login Success
    X | X | DB2 | Sql Navigator/SqlPLus | Login Success
    X | G(Genric) | DB2 | Sql Navigator/SqlPLus | Login Success
    I just want to bypass this check which i think uses V$SESSION and columns PROGRAM and/or MODULE to check the application used by particular user.
    if i can override these values some where in oracle sql developer before loging in the DB then i can clearly pass this check and login to database.
    Edited by: user13430736 on Jun 21, 2011 4:05 AM
    Edited by: user13430736 on Jun 21, 2011 4:12 AM

  • Untrusted apps are not allowed to connect to or launch Window Server before login.

    I'm getting this with the Citrix Receiver uninstaller from the command line... but not on all Mountain Lion 10.8.5 systems.  Googling turns up a lot of ideas about a problem with the app or in pre/post-flight scripts, but since it works on some, I wonder.  What is the mechanism that generates this error?  I'm guessing there's some setting or condition that exists on one system that isn't true on the other.  How do I find out?
    Sep 25 10:55:21 palms sudo[74325]:  joliver : TTY=ttys000 ; PWD=/Users/joliver ; USER=root ; COMMAND=/Volumes/Citrix Receiver/Uninstall Citrix Receiver.app/Contents/MacOS/Uninstall Citrix Receiver --nogui
    Sep 25 10:55:21 palms Uninstall Citrix Receiver[74326]: 3891612: (connect_and_check) Untrusted apps are not allowed to connect to or launch Window Server before login.
    Sep 25 10:55:21 palms Uninstall Citrix Receiver[74326]: kCGErrorFailure: This user is not allowed access to the window system right now.
    Sep 25 10:55:21 palms Uninstall Citrix Receiver[74326]: _RegisterApplication(), FAILED TO establish the default connection to the WindowServer, _CGSDefaultConnection() is NULL.
    Sep 25 10:55:21 palms Uninstall Citrix Receiver[74326]: kCGErrorInvalidConnection: CGSGetEventPort: Invalid connection
    Sep 25 10:55:21 --- last message repeated 3 times ---
    Sep 25 10:55:21 palms Uninstall Citrix Receiver[74326]: CGSRegisterConnectionNotifyProc called with invalid connection
    Sep 25 10:55:21 --- last message repeated 2 times ---
    Sep 25 10:55:21 palms Uninstall Citrix Receiver[74326]: kCGErrorInvalidConnection: CGSGetDockRect: Invalid connection
    Sep 25 10:55:21 palms Uninstall Citrix Receiver[74326]: CGSGetCurrentDisplayMode: Invalid display 0x00000000
    Sep 25 10:55:21 palms Uninstall Citrix Receiver[74326]: kCGErrorInvalidConnection: CGSGetCurrentCursorLocation: Invalid connection
    Sep 25 10:55:21 palms Uninstall Citrix Receiver[74326]: CGSGetDisplayBounds: Invalid display 0x00000000
    Sep 25 10:55:21 palms Uninstall Citrix Receiver[74326]: kCGErrorInvalidConnection: CGSGetCurrentCursorLocation: Invalid connection
    Sep 25 10:55:21 palms Uninstall Citrix Receiver[74326]: CGSGetDisplayBounds: Invalid display 0x00000000
    Sep 25 10:55:21 palms Uninstall Citrix Receiver[74326]: kCGErrorInvalidConnection: CGSGetCurrentCursorLocation: Invalid connection
    Sep 25 10:55:21 palms Uninstall Citrix Receiver[74326]: CGSGetDisplayBounds: Invalid display 0x00000000
    Sep 25 10:55:21 palms Uninstall Citrix Receiver[74326]: kCGErrorInvalidConnection: CGSGetCurrentCursorLocation: Invalid connection
    Sep 25 10:55:21 palms Uninstall Citrix Receiver[74326]: CGSGetDisplayBounds: Invalid display 0x00000000
    Sep 25 10:55:21 palms Uninstall Citrix Receiver[74326]: kCGErrorInvalidConnection: CGSGetEventPort: Invalid connection
    Sep 25 10:55:21 palms Uninstall Citrix Receiver[74326]: kCGErrorInvalidConnection: CGSSetConnectionProperty: Invalid connection
    Sep 25 10:55:21 palms Uninstall Citrix Receiver[74326]: kCGErrorInvalidConnection: Error enabling suspendResume handling

    Contact Wacom. Unless they have updated drivers there is no workaround.
    Update or remove Quicksilver.
    Repairing the Hard Drive and Permissions
    Boot from your OS X Installer disc. After the installer loads select your language and click on the Continue button. When the menu bar appears select Disk Utility from the Installer menu (Utilities menu for Tiger and Leopard.) After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list. In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive. If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit DU and return to the installer. Now restart normally.
    If DU reports errors it cannot fix, then you will need Disk Warrior and/or Tech Tool Pro to repair the drive. If you don't have either of them or if neither of them can fix the drive, then you will need to reformat the drive and reinstall OS X.

  • ORA-01008 All variables are not bound

    Hi I am running this query and getting this exception ORA-01008 All variables are not bound .
    Could anyone please insight ?
    SELECT EQMT_INGT_LOG_ID, EQMT_ID,
    XMLSerialize(DOCUMENT XMLType(ingLog.BUCK_SLIP_XML) AS CLOB) BUCK_SLIP_XML
    FROM TOS_EQMT_INGT_LOG ingLog
    where BUCK_SLIP_XML is not null and ingt_date between to_date(:fromDate, 'MM/DD/YYYY HH24:MI')
    and to_date(:toDate,'MM/DD/YYYY HH24:MI' )
    and eqmt_id in (select eqmt_id from tos_eqmt
    where eqmt_init = :eqmtInit and eqmt_nbr = :eqmtNbr
    and orig_loca_id in (select loca_id from tos_loca where altn_src_sys_stn_id = :circ7 ))
    and SCAC = :scac
    and STCC = :stcc
    and SHPR_NAME = :shprName
    and CNSE_NAME = :cnseName
    and driv_id in (select driv_id from tos_driv where lcns = :lcns )
    and driv_id in (select driv_id from tos_driv where sabv = :sabv )
    and ingt_stat_ind = :ingtStatInd
    and BUCK_SLIP_XML like :inspectedBy
    ORDER BY INGT_DATE

    Slightly off-topic but what do you think this does :
    XMLSerialize(DOCUMENT XMLType(ingLog.BUCK_SLIP_XML) AS CLOB) BUCK_SLIP_XML?

  • Payment method(s) are not allowed for this program / Program RFFOAVIS_FPAYM

    Dear Friends,
    In Se38  abap editor, I entered the program RFFOM100, i entered the details program run date,identification future,paying company code,payment methods T, House bank, Account Id and executed the program. I am getting the error 'Payment method(s) are not allowed for this program'.
    Payment method S is not used in F110, It was not mentioned in vendor master or vendor invoice.It is not mentioned in fbzp in bank determination. When i tried to delete payment method 'S' the system shows a message Payment Method S is being used in the company code.
    In  the program RFFOAVIS_FPAYM, i entered the details program run date,identification future,paying company code,payment methods T, House bank, Account Id and executed the program. I am getting the error  'Program RFFOAVIS_FPAYM: No records selected'. But there open items or invoices.
    Please suggest how to resolve the errors.
    Regards
    Sridhar

    Hello,
    Why are you directly executing these programs?
    You will not expect these program to execute directly by going to SE38.
    I would have configured the relevant payment methods in the country with DME structure or classical RFFO* programs, which in turn pick up the inherent programs at the time of running F110.
    For example, if you need to generate BACS file for country GB, either you copy the GB_BACS to ZGB_BACS or use GB_BACS directly in FBZP settings.
    Make sure that you have maintained OBPM1 / OBPM2 / OBPM3 and OBPM4 settings properly.
    The system automatically gives the access to system RFFOAVIS_FPAYM. Prepare a variant against this program in F110. Relevant file gets generated to folder path mentioned in OBPM4 will get generated. The file get generated can be seen in AL11.
    Hope this is informative and solves your issue.
    Regards,
    Ravi

Maybe you are looking for

  • OpenCV SEGFAULT when using imshow functions

    Hello, recently, when I run my OpenCV application on archlinux, I get a segfault when using  OpenCV's imshow() functions for displaying the video output. This still worked some weeks ago and I did not change my code since then. The error is related t

  • Dynamically calculate numbers in a form without submit

    If I have a form for ordering products, quantity and price, I'd like the total on the bottom of the form to update as a user changes the quantity of the item (before submitting the form). I'm wondering if CF has tags to do this? Thanks

  • Opening xml files in numbers

    how do i open an .XML file in numbers

  • Contacts sync issue

    when i am syncing my phone with outlook on my PC i get the error message, here https://www.dropbox.com/s/15bbkectpn1r5d2/BB%20sync%20error%20msg.JPG i have narrowed this down to be an issues only when syncing the contacts, as anythign else works fine

  • Database Export file extension

    Is there a way to specify the extension on the files created by the Database Export tool? My situation is this: I have exported all the code-like object from the database (functions, procedures, package specs, package bodies) and they were created as