Create NACHA ACH File ... Company ID not correct

We are trying to establish and new house bank-bank account- payment method for existing company code. Which generating the payment out of the housebank, the NACHA ACH Files is picking incorrect company code.
The file came in with an incorrect  Immediate Origin ID &  Batch/Company IDu2019s:
    The Immediate Origin, File Header (1 Record), position14-23 has 1030391841; it should be 3030391841. - This was resolved by configuration in FBZP House Bank Company Number
    The Company ID, Batch Header (5 Record) position 41-50 has 1030391841; it should be 3030391841. - Dont know how to change this
    The Company ID, Batch Trailer (8 Record) position 45-54 has 1030391841; it should be 3030391841. - Dont know how to change this.
Please help

If you are using RFFOUS_T to create the ACH file, that program is hard coded to put a '1' in front of the company code TIN (as maintained in OBY6 in the Additional Data for the company code) on both the batch header and the batch trailer records.  To change the value, from '1' to a different value on these records, you have to code the logic into user exits.  The RFFOUS_T user exit for the batch header is ZXFORU24 (function module EXIT_RFFOEXIT_101).  The user exit for the batch trailer record is ZXFORU28 (function module EXIT_RFFOEXIT_105).
Regards,
Shannon
Edited by: Shannon Moberg on Feb 10, 2011 1:14 PM

Similar Messages

  • [Photoshop CS5] Optimize to File Size working not correctly.

    ******BUG******
    Concise problem statement: Optimize to File Size working not correctly.
    Steps to reproduce bug:
    1. Open any photo.
    2. Draw a slice
    3. Save For Web, choose Optimize to File Size, type 10KB (Current Slice).
    4. Save "selected slices" only
    Results: File result larger than expect (over 10KB)
    Expected results: <=10KB filesize.
    I uninstalled whole Adobe CS5 Master Collection (Trial) & tried to reproduce the bug in Photoshop CS4, but it was not happened, it's ok on CS4.
    Finally, Windows 7 is not reason, it's a bug of Photoshop CS5. Please fix, I don't want to buy a bugged software.
    I really need the feature "Optimize to File Size" in my works.
    P.S: I tested on 4 PCs, and the results is the same.

    In the SFW dialog change the Metadata dropdown to None

  • Uploading files Mime Type not correct for Office 2007 default extensions.

    hi all,
    My company has recently moved over to MS Office 2007 and the default extensions for word, excel etc are now .docx, xlsx etc (ie xml based).
    Unfortunately now when we upload files through APEX to the database the MIME TYPE value for these files isn't being recognised and not loadeding correctly into the APEX_APPLICATION_FILES table and subsequently any future retrieval of these files fails.
    I could put some logic inthe up load procedure to look at the filename in APEX_APPLICATION_FILES and hard code in the releavnt mime types but this still causes problems when retrieving the content.
    Has anyone come across this and got a workround? Is it a bug in AE?
    regards
    James
    FYI - using APEX 3.0.2 over 11G.

    I have not any response to my question and not sure if it is in Apex I need to look or the tomcat server that I need to look. I have a useful application to try to show others what Apex can do for our customers to collaborate. However, most of our customers are using office 2007 so, hoping this is possible.
    I am using apex 3.2.0.00.27 if that helps someone to point me where to find more info on being able to have Word 2007 or excel 2007 fire up to open a .docx or .xlss file stored in a table blob column. Word or Excel does fire up to open .doc and .xls files.
    The following is the query for a report selecting the filenames uploaded into a blob column in my table:
    { SELECT s.ID, SUBSTR(s.NAME,INSTR(s.NAME, '/',1,1)+1,length(s.NAME)) SHORT_FNAME, s.SUBJECT
    FROM spp_attachments s
    WHERE s.PROGRAM_ID = :P2_PROGRAMID }
    Below is the stored procedure called from the link on the short_fname column in report query above.
    { create or replace PROCEDURE  download_file(p_file IN number) AS
    v_mime VARCHAR2(48);
    v_length NUMBER;
    v_file_name VARCHAR2(2000);
    Lob_loc BLOB;
    BEGIN
    APEX_APPLICATION.G_FLOW_ID :=245;
    IF NOT (wwv_flow_custom_auth_std.is_session_valid) then
    owa_util.status_line(404, 'Page Not Found',true);
    return;
    else
    SELECT MIME_TYPE, BLOB_CONTENT, name,DBMS_LOB.GETLENGTH(blob_content)
    INTO v_mime,lob_loc,v_file_name,v_length
    FROM spp_attachments
    WHERE id = p_file;
    -- set up HTTP header
    -- use an NVL around the mime type and
    -- if it is a null set it to application/octect
    -- application/octect may launch a download window from windows
    owa_util.mime_header( nvl(v_mime,'application/octet'),
    FALSE );
    -- set the size so the browser knows how much to download
    htp.p('Content-length: ' || v_length);
    -- the filename will be used by the browser if the users does a save as
    htp.p('Content-Disposition: attachment;
    filename="'||replace(REPLACE(substr(v_file_name,instr(v_file_name,'/')+1),chr(10),NULL),chr(13),NULL)|| '"');
    -- close the headers
    owa_util.http_header_close;
    -- download the BLOB
    wpg_docload.download_file( Lob_loc );
    end if;
    end download_file; }
    Thank you,
    Mark

  • Create new version, checkout, checkin workflow not correct via abap

    Hey,
    I wrote an abap programm with the following workflow:
    - I create a new version of the document CVAPI_DOC_CREATE_NEW_VERSION
    - I check out the new version with CVAPI_DOC_CHECKOUTMODIFY
    - I check in the file with the new content CVAPI_DOC_CHECKIN
    And now there are 2 files in DMS with the same version. But there should be only one document with version 01.
    The method CREATE_NEW_VERSION creates an dms document. But also the CVAPI_DOC_CHECKIN method creates an document in dms. But the checkin method should override the new version.
    Thanks for your support.
    BR,
    Christoph

    Hi Christoph,
    unfortunately it is very hard to suggest a detailed solution for your individual program. Personally I would recommend you to
    use the following sequence:
    - I create a new version of the document CVAPI_DOC_CREATE_NEW_VERSION
    - BAPI_DOCUMENT_GETDETAIL2 to read out the current document data
    - I check out the new version with CVAPI_DOC_CHECKOUTMODIFY
    - BAPI_DOCUMENT_GETDETAIL2 to read out the current document data
    - I check in the file with the new content API_DOCUMENT_MAINTAIN2 or BAPI_DOCUMENT_CHANGE2.
    If you enter the storage category in the table DOCUMENTFILES of the mentioned function modules the file should be
    checked in again. For further information on the DMS BAPI behavior please see the attached documentation to SAP note 766277.
    Best regards,
    Christoph

  • Render files path is not correct...

    My Scratch Disk for video/audio capture and video/audio render is set (System Settings) to a special scratch disk, but FCP is >not< using this scratch disk (available space 700 GB).
    Instead of using my scratch disk FCP writes everything to my boot device: MacHD/Applications/Final Cut Pro/Contents/MacOS/...
    I have the same problem with the waveform/thumbnail cache/autosave vault.
    I've checked the system settings several times and everything is set like I want it, but FCP writes on the wrong disk!
    Any idea what's wrong here???

    You may find relief in trashing your FCP preference files. This will reset everything to the default location and should allow your changes to 'take hold'.
    Good luck,
    x

  • Create a DNG file that does not show changes when viewed by others

    I am adjusting my RAW Images in Adobe Lightroom and want to export them as DNG without betraying the evidence of my post production efforts- is there a way to save an altered file as a DNG without showing the client which changes I have made when they open and review the files in CS3 (bridge/camera raw)?

    > is there a way to save an altered file as a DNG without showing the client which changes I have made when they open and review the files in CS3 (bridge/camera raw)?
    The raw data itself is not affected by the adjustments, only the metadata. This means, that the adjustments you made are recorded in the DNG file in XMP format, which is quite clear-text, like
    > +1.0
       25
       0
       False
       Custom
         0, 0
         22, 30
         51, 68
         128, 128
         206, 149
         255, 255
    As this can be seen by anyone, who knows where and what for to look, you need to have ACR record the adjustments in XMP sidecar files (which is a better way anyway, you can archive the original file and the adjustments separate).

  • Finder sorts files as Kind not correct

    Please help me. I recently purchased a new MBA 13" running ML. When put Finder to view files as Kind, it separates files as movies, documents and PDF files etc. But it seems to cannot differentiate between images files and other documents. It combines all images and other documents such as zip files and word documents as the same types while this does not happen before. I tried view setting to sort by None, then sort by Kind again it still combines images with other docs.
    I tried restarting, relaunch Finder and reset spotlight index it doesn't help.
    Please help me.
    Thank you in advance.

    You are not "sorting," you are "arranging."
    An arrangement is a grouping. You can sort within arrangements, or you can sort without arranging.
    The menu and button displays the arrangement options when you click it. To select sort options, hold down the option key and click same button/menu item.
    You can see both at same time in the View Options dialog.
    If you set arrangement to "None," you can set a Sort option without any grouping.
    I'm on an iPad for the moment, so I can't check how it groups, but it may just group as "Documents," not as specific types of documents.
    Try just sorting by setting the Arrangement to "None," then set the Sort to "Kind."

  • I cannot update Firefox, the file is damaged it tells to me, or was not correctly sent

    There is a recommended updating of Firefox but I dont have the access to install it in my computer. Contact system adminstrator?
    I dont have any!! Or it tells me the file is damaged, not correctly sent. What to do?

    Download latest Firefox version from one of these links:
    * http://www.mozilla.com/en-US/firefox/new/
    * http://www.mozilla.com/en-US/firefox/all.html
    Installing Firefox on Mac
    * https://support.mozilla.com/en-US/kb/Installing%20Firefox%20on%20Mac
    Check and tell if its working.

  • Manually zipping creates broken ePub-files?

    Hi all,
    I'm using ADE for the purpose of testing how my ePub-files are rendered in different programs. For doing this, I manually tweak the contents of ePub-files, compress them, rename them and throw them into ADE and Stanza.
    Up till now I didn't succeed even once in creating an ePub-file that ADE renders correctly. I first thought the little modifications in the contents broke the file, but the simple process of renaming an .epub to .zip, uncompressing, re-compressing (without modifications) and then renaming back to .epub produces files that ADE can't read: "The document appears to have minor errors that might cause it to be displayed incorrectly". For compressing I used the default method on the Mac, and WinRAR on a PC. Both methods didn't work for ADE, but they did for Stanza.
    Somehow manually zipping created files that are slightly different from the original ePub-files, but not so radically different that they break in all readers; just ADE, it seems. Does anyone know what's the cause of this, and how I can resolve this?

    The most common cause here is that you compressed the mimetype file.  By spec it must be first in the file and must be uncompressed.
    I'm not sure how to do this using GUI tools from but you can find an explanation on the IDPF forums

  • How do I create a ".mailloc" file from an email address?

    Before Snow Leopard I simply would drag an email to a project folder and it would create a ".mailloc" file. Later if I was referencing a contact or needed an email I could simply double click it and it would open a new email to that address.
    When I updated to Snow Leopard that functionality doesn't work now? All I get is a dumb *** "Text Clipping" which I don't want nor is it as useful to me as a ".mailloc" file. Anyone know how to save an email address as a ".mailloc" file format?
    In Safari on Snow Leopard you can still drag a URL and it'll create a ".webloc" file format so not sure why they messed with Apple Mail when it wasn't broken.
    I'd appreciate any help.
    Thanks.
    Von

    Paste the email address into any text field and drag it to the desktop.
    (52616)

  • Annotator creating lots of files in /tmp

    We have a bunch of .tiff files that are being annotated when IFS starts up. We have 2 problems.
    1. A bunch of files get created in /tmp called fccache*. TMP is 600 MB and it fills up. Any way to redirect these files to a different file system.
    2. We get this exception (this is IFS 9.0.3.2)
    7/30/03 11:58 AM InterMediaAnnotatorAgent: Annotating document 064.TIF
    7/30/03 11:58 AM InterMediaAnnotatorAgent: Parsing contents...
    7/30/03 11:58 AM InterMediaAnnotatorAgent: Annotator: Parsing of <InputStream of mimetype image/tiff> ...
    7/30/03 11:58 AM InterMediaAnnotatorAgent: Annotator: Parsing of <InputStream of mimetype image/tiff>... Done
    7/30/03 11:58 AM InterMediaAnnotatorAgent: Parsing completed
    7/30/03 11:58 AM InterMediaAnnotatorAgent: Adding category for ImageAnn
    7/30/03 11:58 AM InterMediaAnnotatorAgent: Caught exception IFS-30002: Unable to create new LibraryObject
    Thanks, Don Hamparian OCLC

    The fact that the Annotator software creates these temp files and does not clean them up is bug number 2378406 which has been fixed for database release 10i.
    You may be able to work with Oracle support to request a patch.
    Here is the InterMedia website on OTN:
    http://otn.oracle.com/products/intermedia/content.html

  • How to create a new file with existing file's resource fork?

    Hello,
    I would like to create a new file that has the resource fork of an existing file. I had though of making a copy of the existing file, seek to the beginning of the copy and write the new data, but for large files, that creates the whole file even when not needed. I currently create the new file with [NSFileManager createFileAtPath: contents: attributes:], but attributes do not include resource fork items, like custom icons, color label, etc.
    [NSURL resourceValuesForKeys] gives a common subset of resource data, like icons and color label, but that's about it. Is there some way to get the resource fork or a copy of the file without getting the whole file?
    Thanks

    What are you trying to do here? While resource forks might still be quasi-supported, you really shouldn't be thinking about them as such. Instead, think in terms of extended attributes. You can use the low-level xattr() functions to get some of that or you can use the new NSURL methods.

  • Create the object - not correct data in the file ?

    I have the text file, then I parse and create objects MyDocument (one row = one document). If row is corect then I create object MyDocument. But what I must do when row is not correct. The row can have 3 type of errors:
    1.Not correct length of row
    2.Not filled required fields in row
    3.Field are filled by not correct data
    Is a good to throw exception when I get one of this errors. Do I need to store this errors on separate class (MyObjectErrors extends Exception)?
    So when row is correct I create the object MyDocument. Otherwise I NOT create object MyDocument and throw exception. Is this a good solution?

    One question These 3 error you want together or what let me know i ll do that code n give you

  • F110 DME File selected is not the correct file

    Hi Gurus,
    Could you advise on this issue please?
    We have executed a payment run F110 for vendors on SAP. The payments documents are created successfully. When we view the payment list via F110 -> EDIT -> Payment List -> generate via RFZALIZ0 program the payments are all correct.
    But there is a problem with the DME file. Under F110 -> Environment -> Payment Medium -> DME Administration the total displayed for teh DME file is all fine. However, when we view the DME file created by the run using the Display (gllasses) icon on this screen the data is not correct. The system is selecting data from the last payment run executed in this company code. When we do a download of the file, it is the previous run's data that is contained in the file and not the current run.
    The DME variants all seem to be maintained correctly. We have executed payment runs for other company codes and these are all picking up correctly. The DME files are all being stored in the same DME filepath /usr/sap/PMG/dme/ plus company code ID.
    When we use FDTA to select out the DME file, again we get the same view as we see in F110 -> Environment -> Payment Mdeium. The totals on the F110 run look good. But the data in the DME file is incorrect.
    Can you advise why is the system picking up the wrong DME file for the paymnet run in this company code. All other company codes are fine. We have tested the problem Company Code in our Quality system (where the DME filepath is also /usr/sap/PMG/dme/ plus company code identifier and it works OK there.
    How do we get the system to link to the correct DME file data?
    Thanks for your quick response.
    Michael Ryan

    Hi Akhilesh,
    We don't use the IDOCs here but just a DME file. The issue here was the DME filesystem is only mounted on one of the application servers. The end user was logged onto the wrong application server and so the paymnet run could not find the file. It was theerfore picking up the last file that it could see from the server that the user was logged onto.
    When the user logged onto the correct serevr, the payment run then pciked up the file.
    Thanks & regards
    Michael

  • Generally when creating a Word file from either a Mac or Win7 pc and opening it on two different machines (either one first) it always prompts that the file is open and will be opened as read only. However opening a CSS file does not prompt that it is alr

    Generally when creating a Word file from either a Mac or Win7 pc and opening it on two different machines (either one first) it always prompts that the file is open and will be opened as read only.
    However opening a CSS file does not prompt that it is already open on or from any machine which is causing code edits to be lost.
    What we found from out testing:
    - The file can be saved from one user to the server and WILL NOT PROMPT on other machines until the saving machine has the Dreamweaver program closed completely
    - The file can be closed and  Dreamweaver minimised to the launch bar but it still will not register on other machines that it has been changed.
    - Also, until the  Dreamweaver program is closed on the machines, it will continue to open it's saved version of the file. 
    Example Scenario:
    - User 1 opens test.css (which is 2000 lines) and adds some code to the end of the file to bring it up to 2500 lines
    - Meanwhile User 2 opens test.css as well (opens as 2000 lines as User 1’s edits have not yet been saved) and adds in code to bring it to 2300 lines
    - User 1 saves his file and closes it - but  Dreamweaver is still open.
    - User 2 also saves his file and leaves  Dreamweaver  open.
    - The server will report the size and last edit of the file the same as User 2 as he was the last person to save it (and if you open from the Win7 Machine it will show as User 2’s 2300 line version)
    - If User 1 then open's the file again (from either the 'recent' in Dreamweaver OR clicking on the file directly in Finder...which version opens.... The version that User 1 saved! Not the true version on the server, but the version that User 1 edited and saved with 2500 lines in it.
    - Same for User 2, he will open 'his' version with 2300 lines in.
    Other information:
    - Files are opened directly from the server
    - Sometimes the users will save incrementally and re-open
    - Most of the time users will save incrementally and keep the files open
    - The users will never not save incrementally and just save when closing the file once finished
    - The users are usually working on the files all day
    - It is always the bottom lines of code that are lost. It could be a case of the two versions being mixed up and cutting off the newly added lines based on the line count (possibly).
    It is as if Dreamweaver is holding a cache of the version locally and then only properly looking back to the server when it has been completely closed. It is very difficult to see how the server is causing such an impact on these files, there are very few logs which are giving any indication to the root cause of the problems.
    Anyone know if this is a known issue?
    Is there a way that there can be a featured implemented on the server that doesn't allow another user to open a file if it is already open on another machine?
    Thanks

    Your server file handling has nothing, and really nothing to do with Adobe software. If files don't get locked for (over-)writing and/or lose connection to the program opening them, then your server is misconfigured. It's as plain and simple and that. Anything from "known file types"/ file associations not being set correctly, MIME types being botched, crooked user privileges and file permissions, missing Mac server extensions, delayed file writing on the server, generic network timeout issues and what have you. Either way, you have written a longwinded post with no real value since you haven't bothered to provide any proper technical info, most notably about the alleged server. Either way, the only way you can "fix" it is by straightening out your server and network configuration, not some magic switch in Adobe's software.
    Mylenium

Maybe you are looking for

  • Is there a way to connect iPad2 to my previous gen DVI Cinema Display?

    I have an iPad2 and I have looking for ways to use my previous generation Cinema Display (DVI) as an external monitor, but it looks like VGA-out and HDMI-out are the only options. Has anyone managed to connect iPad through DVI connection?

  • Problem in Reading  Material Long text in Sapscript

    Dear firends, I have written  following code in sapscrit to fetch the longtext of the material INCLUDE &MARA-MATNR(K)& OBJECT MATERIAL ID GURN LANGUAGE &NAST-SPRAS& Test name - material no(MARA-MATNR) object - MATERIAL text id - GURN LANGUAGE - EN bu

  • SystemTray Application

    I want to run my java application in systemtray. when i compile it as: javac -classpath jdic.jar;. SystemTrayDemo.java i get an error message SystemTrayDemo.java:2: package org.jdesktop.jdic.tray does not exist import org.jdesktop.jdic.tray.*; for th

  • How to track beans which are destroyed, but no exception log?

    According to the WLS console, we have two out of about 30 entity beans which have instances which are being destroyed. However, I cannot find the exception which is causing them to be destroyed. I see nothing in the WLS logs, nothing in our own logs,

  • Trying to change line tool's color

    yep. its black and i want to change it to a cyan color how do i go about doing this? i tryed changing the background color on the pallet and it didnt change the color of the line im using cs4 thanx!