PMW CTX format record 6 field 7 - need help mapping it

We went live in 2007 on ERP6.0 and used the Payment Medium Workbench for our ACH payments.  The person who did the original config has left and I now need assistance to fix an issue.  We were told at go live that our field FPAYH/BKREF should be mapped to our NACHA record 6 field 7 (the Identification Number field).  Recently we discovered that the field has been blank since our go live.  As I look at the ACH US Domestic payment transactions USA config.  I can see the 00, 05, 20, 30, and 40 Events activated.  It appears the Event 30 - Order/transaction record may control the mapping I am needing to correct.
How do I go about correcting the field (without modifying the SAP code directly?).  We can see in the ABAP code that the field 7 just has a SPACE in it instead of the FPAYH/BKREF field.  Could someone provide the step by step of what I need to do?  Do I need to create a new event 31, make changes there and if so how do I activate the new event??  Or is there a place in config that I should be seeing that I can just change the SPACE to the appropriate field??
Please advise!!
Cindy

Hi Cindy,
check the user exits in program RFFOEXIT. A technical guy should be able to help you out on this. Exit 100 - 120 is for USA.
Hope this helps.
Neelav

Similar Messages

  • Need help mapping Exchange info to Apple Mail account setup

    I need a little help mapping the Exchange settings I have from my IT department to the fields used by Apple Mail for an Exchange mailbox. It's not clear whether Apple Mail is really using the Exchange protocols or POP. The names have been changed to protect the innocent.
    From my IT department:
    Outlook web access (OWA): server.mycompany.com
    Exchange server: exchg.server.mycompany.com
    Exchange domain: EXCHG
    Incoming mail (POP/IMAP): inserver.mycompany.com
    Outgoing mail (SMTP): outserver.mycompany.com
    Exchange proxy setting: exproxy.mycompany.com
    Apple Mail 3.3:
    Incoming mail server: Should this be exchg.server.mycompany.com or inserver.mycompany.com ?
    User name: Should this be the userid that I use for https Outlook Web Access (OWA) login?
    Outgoing mail server: outserver.mycompany.com
    Outlook web access server: Should this be exproxy.mycompany.com ?
    The Apple Mail fields for "incoming mail server" and "outgoing mail server" suggest that it's not really using the Exchange protocols so what does it do with the "Outlook Web Access Server" information??
    Thanks in advance. I hope this thread is useful to others!

    Create the mail account as "IMAP" and use these server settings:
    Incoming mail (POP/IMAP): inserver.mycompany.com
    Outgoing mail (SMTP): outserver.mycompany.com
    User name: Should this be the userid that I use for https Outlook Web Access (OWA) login?
    It should be the username in Active Directory, typically in the form "domain\usershortname" or "usershortname@fqdn_domain". Don't mix up the Active Directory domain with the mail domain! If not set up different, this should be the same credentials you use to authenticate for Outlook Web Access.

  • Need help mapping one-to-many relationship

    [Sorry, inadvertently cross-posted]
    Hello,
    I have a one-to-many mapping question that's probably a no-brainer for the
    experts of the group out there. My problem is that I can't get a collection
    of Items for a given Theme to be populated and I don't know if it's a
    problem in my system.jdo or in my classes (or both). For example, for Theme
    10,
    I want a collection of two Items, item_ids 1 and 2.
    I have db tables named ITEM and THEME with the following layouts:
    ITEM
    |==========================================================|
    | item_id(pk) | item_name | item_number | theme_id(fk) |
    |==========================================================|
    | 1 | This is Item1 | 1234 | 10 |
    | 2 | This is Item2 | 2954 | 10 |
    | 3 | This is Item3 | 2094 | 17 |
    | 4 | This is Item4 | 946 | 11 |
    | ... |
    |==========================================================|
    THEME
    |=======================================|
    | theme_id(pk) | theme_description |
    |=======================================|
    | 4 | Space |
    | 10 | Town |
    | 11 | Train |
    | 17 | Pirate |
    | ... |
    |=======================================|
    I have two PersistenceCapable classes that map to the above tables:
    package com.lego.data;
    public class Item
    public int item_id;
    private String item_number;
    private String item_name;
    private int theme_id;
    public Theme theme;
    public String toString()
    return
    item_number+":"+item_name+":"+theme.getCode()+":"+theme.getDescription();
    package com.lego.data;
    import java.util.*;
    public class Theme
    public int theme_id;
    public String theme_description;
    public Collection items;
    public String toString()
    return theme_id+":"+theme_description;
    and here is my system.jdo file:
    <?xml version = "1.0" encoding = "US-ASCII"?>
    <jdo>
    <package name="com.lego.data">
    <class name="Item" identity-type="application"
    objectid-class="com.lego.data.IntOId">
    <extension vendor-name="kodo" key="table" value="item"/>
    <extension vendor-name="kodo" key="lock-column" value="none"/>
    <extension vendor-name="kodo" key="class-column" value="none"/>
    <field name="item_id" primary-key="true">
    <extension vendor-name="kodo" key="data-column" value="item_id"/>
    </field>
    <field name="item_number">
    <extension vendor-name="kodo" key="data-column" value="item_number"/>
    </field>
    <field name="item_name">
    <extension vendor-name="kodo" key="data-column" value="item_name"/>
    </field>
    <field name="theme_id">
    <extension vendor-name="kodo" key="data-column" value="theme_id"/>
    </field>
    <field name="theme">
    <extension vendor-name="kodo" key="theme_id-data-column"
    value="theme_id"/>
    </field>
    </class>
    <class name="Theme" identity-type="application"
    objectid-class="com.lego.data.ThemeKey">
    <extension vendor-name="kodo" key="table" value="theme"/>
    <extension vendor-name="kodo" key="lock-column" value="none"/>
    <extension vendor-name="kodo" key="class-column" value="none"/>
    <field name="theme_id" primary-key="true">
    <extension vendor-name="kodo" key="data-column" value="theme_id"/>
    </field>
    <field name="theme_description">
    <extension vendor-name="kodo" key="data-column"
    value="theme_description"/>
    </field>
    <field name="items">
    <collection element-type="Item"/>
    <extension vendor-name="kodo" key="inverse" value="theme"/>
    </field>
    </class>
    </package>
    </jdo>
    Thanks in advance for the help.
    -Tim

    Abe White wrote:
    The first thing to check is that you are always setting the "theme" field in
    your Items. If you add an Item i to the "themes" collection of a Theme t, but
    forget to also set i's "theme" field to t, then the change will never get
    written to the database.
    Next, make sure that whenever you set the "theme" field of an Item, you also
    set
    its "theme_id" field. You map both of these fields to the same column, so you
    better be sure they stay in synch.
    On a related note, you might try making the "theme_id" field non-persistent if
    things still aren't working for you. Mapping two fields to the same column
    might be causing trouble. It would be safer to make theme_id non-persistent
    anyway, and to always grab the id from the Theme stored in your "theme"
    field.
    Better OO programming and all that, though I can see that you might have
    performance issues in mind when doing it your way.
    Anyway, if you find that it works when you make theme_id nonpersistent, let us
    know and we'll see why the double-mapping of the column is causing problems,
    and hopefully find a fix.Abe,
    Thanks for the response but I'm still confused. I failed to mention that
    the Item and Theme tables are in an existing schema, so as you saw in my
    system.jdo, I am specifying application identity.
    Since this is an existing schema, the Item table has theme_id as the
    foreign key to the Theme table. So are saying that it is a problem to map
    the both theme_id as a data column and a Theme object in the Item at the
    same time?
    I guess what I don't understand is exactly what my system.jdo should look
    like to map a one-to-many relationship. In my case, from Theme (1) to Item
    (many). (See my system.jdo in previous post).
    Thanks
    -Tim

  • Problem with a Form field, need help

    I work for a small police agency and I am our IT guy.  Most of my IT tasks have many been hardware and system software and networking.  I have been trying to learn and teach myself programming.  I also create forms for agency use.  I have been working on a form and want to add increased functionality to allow our officers to issue a citation with the least amount of time spend on the form.  One main issue is that we have to have a unique citation number.  We have come up with a format that will specify as such:  YYYY(Officer's 4 Digit ID Number)-(Auto Incrementing number).  So, for instance, if this is my 55th citation issued and my ID number is 0100 the citation number would appear like this:  20120100-0055.  The ID number will be entered by the officer earlier in the form.  The problem I can't seem to vision around is how I will keep the number to increase by one and have it maintain that way.  I want it to be form specific, because each officer has their own vehicle and MDT that the PDF will reside on at this time. 
    So far, what I have toyed with in the past 30 minutes is this:
    var Ticker = 0001;
    var Year = getFullYear();
    var x = getField('OfcIDNo').value;
    Eventually the form will be autocreated by a program that will be run from a centralized server.  I have even thought about running the from from a server and taking all the data and INSERTing it into a SQL Server 2008 Express DB table on a server, but I'd still have to have the citation number created at the form as the officer fills in the data.  The last four of the number doesn't have to reset when the year changes, but it would be a plus.  Any information anyone can help with I would appreciate it. 
    Thanks in advance

    Seems like it was too easy, is it safe to assume that javascript and javascript functioning in Adobe PDF is a bit different learning curve?  That does help, the only thing that I'm missing is the Auto Incrementing 4 digit number.  I was toying with assigning a variable in the globals that would auto increment but having problems with how I would execute it.  Each copy of the form would be installed on each officers MDT so the number would be specific to that officer. The format will be YYYY"OFCIDNo"-####.  I would like to assign the number to the global variable on the execution of the Print Dialog.  This way the officer an clear the form if he/she needs to start over and then it stays whether or not they close the file and reopen it. 
    That syntax has been very helpful to get started. 
    Thank you,
    David

  • Budding recording artist needs help, x-fi xtreme and instument compatabil

    hi, new computer, x-fi xtreme sound card, can i plug my instuments straight into the I/O plug in the back of my sound card and record stuff using the audio creation mode? please forgive my ignorance, i am quite pc literate but am new to music recording. i have?guitars &?midi synth and wish to create tracks on the pc but am unsure if and how this is possible. do i need to upgrade to the x-fi package that comes with the I/O console. any help would be much appreciated, thanks.

    You can plug your instruments right into the line-in/mic-in bracket, but they'd better be pre-amplified to line-level. The Music Xtreme offers no midi-plugs, so you either have to use your mainboard's onboard midi, buy a Platinum or some USB/PCI midi-bay.

  • Problems with songs not syncing to iTouch 4g even when in AAC format- really really need help?

    I need answers really seriously pronto as I am going abroad in a few days with little access to any computer and none to mine.
    I downloaded some songs from iTunes a couple of days ago and then synced them to my iPod (which is manually synced due to my songs being split between computer accounts- long story ^^). The songs themselves synced, but they're full of static or just silence. One in particular you can hardly hear- once the song starts playing, it just becomes quieter and quieter, interspersed with plenty of static. The other songs on my iPod are absolutely fine, it doesn't appear to be a problem with the iPod or the computer. I've tried making AAC format versions of these songs (which are absolutely fine on iTunes, just suddenly damaged on my iPod) but they won't sync- I drag them over to my iPod's icon and nothing happens. It worked before with a song that was just silent. I really need some help, I am so frustrated! Thanks in advance for any answers.

    What are the performance Preferences?

  • Working with several video formats aspect ratios need help...

    Hi folks I have searched around quite a bit but I need more specific advice based my situation...I am editing a docu about Japanese biker gangs shot on several different SD cameras:
    MY FOOTAGE
    1.Sony Vx-2000 fitted with a  Century Optics 16:9 converter lens bayonet mounted
    2.Canon Xl2 shot in 16:9 mode
    But I also have:
    ARCHIVAL/ACQUIRED FOOTAGE
    1. Contributor's camera SD 4:3 aspect ratio
    2.Contributor's camera SD 16:9 aspect ratio
    3. Transferred from VHS into SD 4:3 aspect ratio
    I would like to standardize the aspect ratio for the project but I am getting confused as sometimes the footage shot on the sony (which should be true 16:9) appears elongated vertically at times.
    Are my settings off?
    Also, I have "title safe" wireframe on in the Canvas and the images all exceed the outer box. I don't have a TV so it's hard to check what (if anything) gets
    lost. I guees most TVs can handle 16:9 without letterboxing....
    Do I have to worry about that? Which box should I crop to if I letterbox? The out or inner? Or the outside of the screen? Should I just letterbox the whole project?
    BTW eventually I am planning on Uprezing the project to HD using Magic Bullet when outputting.
    The overall question is: Who has experience dealing with multiple aspect ratios in one timeline? Can you offer any advice on a work flow to output successfully?

    Sorry to butt in, haven't read the entire thread.
    Suggest you plan from the beginning to create one timeline but encode for two separate output formats.
    Standard procedure for bringing multiple formats is to convert them to a single format as they are ingested. Decide early what the timeline format will be and transcode everything to that codec before anything is brought into the timeline.
    When your project goesgolden, export a single self-contained movie and take that to Compressor to create release movies that will be played on Blu-ray, SD  DVD, online, or in Power Point, whatever you need.
    bogiesan
    Message was edited by: David Bogie Chq-1

  • Col:peopleResource format problem - really need help!

    Hi all
    We are currently using the 'who is who' at the moment for searching the our coimpanies user base which is workin well. However I have a formating issue with the property <u>'col:peopleResource'</u>. Basically it appears on two line when it is displays e.g.
    Current display:
    0 <u>Joe</u>
       <u>Blogs</u>
    Should display:
    0 <u>Joe Blogs</u>
    (the '0' is the Icon)
    I have look everywhere on how to change this but I have had no joy. Any help would be great as this is slowly becomming an urgent problem!
    Thanks
    Phil

    Hi Phil
    From your description its very hard to say whats wrong, but here is my initial thoughts:
    Have you defined the with of the second column somewhere, like in the collection renderer?
    Are you displaying first and last name seperately or are you using displayname(contentlink) in the collection renderer?
    Whenever the layout messes up, it is a good idea to take a look at the html-code the error-prone page generates as it will contain some information about why the information is displayed like it is.
    Kind regards,
    Martin

  • Add a conditionally-Dependent Field - Need Help

    Hi everyone,
    I'm working with JDeveloper10.1.2, UIX pages and STRUTS.
    This is my situation:
    I have 3 messageTextInput in my UIX page, one to regions, one to counties and another to locations. When I insert a text in locations and regions I need to fill automatically the messageTextInput of the country.
    I have a table in my DataBase with this collumns: ID(number), Country(text), Region(text) and Location(text).
    How can I do this? Can anyone give me some ideias?
    Can anyone help me, Please? Any ideias??
    Thanks,
    Atena
    Message was edited by:
    Atena

    Anyone?? Any help??
    Message was edited by:
    Atena

  • 18N NumberFormat.format loses precision- need help

    I am using this code:
    String testFormatStr ="123456789123456789.1279";
    double number = Double.parseDouble(testFormatStr);
    NumberFormat formatter = NumberFormat.getNumberInstance();
    String formatNumberStr = formatter.format(number);
    Input String to be formatted:->123456789123456789.1279
    Double converted value:-> 1.23456789123456784E17
    The Formatted Number :-> 123,456,789,123,456,784
    The fractional digits are ignored and the last integer digit'9' also changes to '4' after formatting.
    This mainly happens if total number of digits including the
    integer and fractional part exceeds 16.
    Am I missing anything here?Does NumberFormat handle Big Decimals?
    How to handle this?
    Thanks and Regards,
    Sankar S

    Am I missing anything here?Basically, you're missing the fact that double numbers have about 16 or 17 digits or precision.
    Does NumberFormat handle Big Decimals?The documentation claims that it does.

  • I18N NumberFormat.format loses precision- Need Help.

    I am using this code:
    String testFormatStr ="123456789123456789.1279";
    double number = Double.parseDouble(testFormatStr);
    NumberFormat formatter = NumberFormat.getNumberInstance();
    String formatNumberStr = formatter.format(number);
    Input String to be formatted:->123456789123456789.1279
    Double converted value:-> 1.23456789123456784E17
    The Formatted Number :-> 123,456,789,123,456,784
    The fractional digits are ignored and the last integer digit'9' also changes to '4' after formatting.
    This mainly happens if total number of digits including the
    integer and fractional part exceeds 16.
    Am I missing anything here?Does NumberFormat handle Big Decimals?
    How to handle this?
    Thanks and Regards,
    Sankar S

    Crossposted (several times). Please reply at the following thread:
    http://forum.java.sun.com/thread.jspa?threadID=689479

  • No sound in headphones.  Can't hear other tracks when recording.  Need help

    I just got Logic. I have a M-Audio Blackbox for my guitar, and a Midi-Uno for my keyboard.
    I have play and record and hear my guitar. But when recording, it doesn't play the other tracks, so I can't play along with them.
    Also, there is a problem in hearing the sound out of the output, whether it be headphones or the built-in speakers. No sound comes out, even though in the system pref. I hear the beeping to test the output.
    This is very annoying because these seem like elementary things that should work but they aren't.

    I'm just using built-in audio. I make sure the output in the system prefs is headphones, but then in the software I hear nothing when I play the audio. Maybe I have to check the master audio level.
    Thanks for the word about it not being anything too crazy. It can be frustrating when the software doesn't seem to do something basic. I'll look at the master levels during playback.

  • Formatted iPod, need help

    So I got my dad's old iPod nano, 1st gen with 2 GB. I tried to plug it in with no luck. So I go into the iPod as a storage device in my computer, the iTunes folder is "corrupt and unreadable." I read somewhere I can format the iPod and it will be ok, I do so because I'm stupid. Now, it isn't even recognized as a storage device, it's just and unknown device with no drivers. To be clear, I right clicked the iPod in My Computer and went to format and formatted it, I need help getting it working again.

    Did you format it as FAT32 and not use quick format?
    After you do that, Restore it in iTunes.

  • Need help to read Instant messenger packet

    I need help to read the IM packet from the LAN.Can anyone help me? I doing my project to monitor the IM in LAN.If got example,pls show me.

    There are several problems with this. First, it is not possible to separate IM packets from any other packets floating around a network. Second, to peek at packets intended for other computers is a pretty big no no.
    If you really need to do this, build a proxy server or some layer in the middle of your IM where you can record
    I need help to read the IM packet from the LAN.Can
    anyone help me? I doing my project to monitor the IM
    in LAN.If got example,pls show me.

  • I have a video in .avi format, what format do I need to convert to, to play on my DVD recorder, please can anyone help?

    I have a video in .avi format, but what format do I need to convert to, to play on my DVD recorder, please can anyone help?

    tylerfrombalantine's post had zero grammar in it, so it's not clear what he's saying. I bought a DVD recorder and the instruction manual lists all the disc formats it can play. Check your DVD recorder manual to see what works with it, then burn a DVD that matches. It should be fine to burn just a standard DVD, since of course any DVD player can play that.
    Depending on the program you use, you may not have to convert anything manually. The program might convert your current video format to DVD on fly as it burns the disc.

Maybe you are looking for

  • Installation - Office Web Apps Server on SharePoint 2013 Foundation - Download missing

    Hi all, I'm trying to download Office Web Apps Server. As of November 24th, the download was relocated on the Volume Licencing Center (as per this link ). Connected to VLCS, I'm trying to find the download from the tree / using filter..... I'm not fi

  • XMLParseException: Start of root element expected

    I would greatly appreciate some assistance with this issue. I am attempting to burst an invoice batch containing two invoices to two different PDFs on a file system. I am using XML Publisher 5.6.2. and a Java concurrent program to call the document p

  • Reg PI 7.1 Configuration

    Hi Guys,           Any one  give me Configuration details  for PI7.1 Thanks

  • Dreamweaver 5.5 crashes in Mac Lion

    I upgraded my Mac to Lion a couple of days ago and everything's been fine. Until this morning when it's crashed a couple of times in Dreamweaver 5.5, and then won't restart for some time. I've seen a discussion where it recommends removing any dreamw

  • Webpart causing error while accessing the subsite.

    Hi I am getting an error message saying that webpart causes error in accessing the site in MOSS 2007. PFA of the error: Please someone help with the error webpart: how to find which custom webpart is affecting the site access error. Thanks, Badri