Help in Mapping please help

Hi,
I have a requirement with the source structure looking as
Sourece :
ACCOUNTGL 0....1
item 0...unbounded
ITEMNO_ACC 0....1
CURRENCYAMOUNT 0....1
item 0...unbounded
ITEMNO_ACC 0....1
CURRENCY_TYPE 0....1
CURRENCY 0.....1
XXXXXX 0......1
TARGET STRUCTURE
E1BPACGL09 0...Unbounded
ITEM_TEXT 0......1
All the fields of target E1BPACGL09 is mapped from ACCOUNTGL node of souce and the field ITEMTEXT under node E1BPACGL09 should have the condition .if the CURRENCY_TYPE is 00 and if ITEMNO_ACC in the segments ACCOUNTGL and CURRENCY AMOUNT are equal then we need to create a E1BPACGL09 with ITEM_TEXT concatinating CURRENCY and other field XXXXXX and pass it to ITEM_TEXT at target.Please help me in this .
Is it possible through graphical mapping If so how please help .
Thanks
Rajesh

Hello,
Were you able to check my response to your earlier thread GL ACCOUNT Mapping help ?
Regards,
Mark
Edited by: Mark Dihiansan on Jan 17, 2011 3:48 AM

Similar Messages

  • TS1702 Hi, I getting a "playback error message" on youtube App. I tried to reinstall the app and to reset and restore the device and all these things didn't help.can you please help me

    Hi, I getting a "playback error message" on youtube App. I tried to reinstall the app and to reset and restore the device and all these things didn't help.can you please help me

    That's a peculiar one to get in the context of a QuickTime uninstall.
    Which particular version of QuickTime for Windows are you currently running? (7.7.5, 7.7.4, something earlier?)

  • I'm trying to reinstall Logic Pro 9, and it says It's already installed. I have a project due for class and I need help asap. Please help!!!

    I'm trying to reinstall Logic Pro 9, and it says It's already installed. I have a project due for class and I need help asap. Please help!!!

    Yea I am. I deleted Logic Pro 9 and moved the App to the Trashcan like normal. Then when I go to install it, it says its already Installed. When I do this with other apps; it works fine, the install thing comes back up like it should once you have deleted the app

  • I have a red vertical line on the right side of my screen and it will not go away tried restarting my computer and that didn't help at all, please help me with this problem it is kind of annoying

    I have a red vertical line on the right side of my screen and it will not go away tried restarting my computer and that didn't help at all, please help me with this problem it is kind of annoying

    If it's a thin 1 pixel wide vertical line it's highly likely it could be caused by a defective LCD.
    One quick basic way to check is to note the position of the line. Then go to System Preferences, Displays, and lower the resolution. If ther line moves it's on the video and the logic board or video card if fitted is likely to be defective. If the line stays in the same position it's likely to be an LCD fault. Either way to have it repaired you'll need to visit an Apple store or AASP.
    The worst offender for this problem is the Late 2006 17" iMac. FOC replacement of the LCD used to be covered by a quality program, but it's now ended.
    Steve

  • I was updating my iPad 2 to the latest version, I have never updated before. It was done downloading and was backing up. Error in backing up (-5000). I tried restarting, no help. Someone please help.

    I was updating my iPad 2 to the latest version, I have never updated before. It was done downloading and was backing up. Error in backing up (-5000). I tried restarting, no help. Someone please help.

    Many thanks b Noir
    This is a copy of ONEof the keys  in the registry I changed  as told by Apple support today. I also have changed others as instructed by GEAR  software support to manually delete GEAR drivers (that I had installed but couldn't delete some of the others  they mentioned from Windows system 32. Then some bright spark at work told me I need the Gear drivers so  I downloaded the software and installed again.
    Sorry, just this minute went to insert image  and it is giving me a message saying this sort of content  is not allowed?.
    The most recent key I altered is in: HKey _local _machine. System\class - 4D36E965-E325-11CEBFC1-08002BE10318. Upper Filter data: Upper filter NTIDrvr  SiRem GEARAspiWDN.
    The GEARsoftware info about manually deleting  GEAR drive is from:
    http://www.gearsoftware.com/wiki/index.php?title=DRIVERS:_Windows_-_Updating%2C_ removing%2C_64_bit_versions%2C_etc
    I hope you can help

  • Java help...please help me

    Please help me...i cant seem to get the decimal function to work on my calculator..that is all i need tpo make my calculator work :
    package calculators;
    * A simple Calculator
    public class SimpleCalculator {
    static final String OPERATORS = "+-*/=";
    public final static double ONE=1.0;
    public final static double TWO =2.0;
    public final static double THREE = 3.0;
    public final static double FOUR = 4.0;
    public final static double FIVE = 5.0;
    public final static double SIX = 6.0;
    public final static double SEVEN = 7.0;
    public final static double EIGHT = 8.0;
    public final static double NINE = 9.0;
    public final static double ZERO = 0.0;
    //Constuctor
    * Creates Instance of the class SimpleCalculator
    public SimpleCalculator (double display) {
    this.display=display;
    //QUERIES:
    * returns display
    public double getDisplay () {
    return display;
    * returns if the number is a wholeNumber
    public boolean wholeNumber () {
    display = 0;
    return true;
    //COMMANDS:
    * Adds one the the current value
    public void pressOne () {
    if (wholeNumber=true)
    display = ONE + display * 10;
    else
    (I need help here ...i need an algorithm to return it as a decimal..)
    * Adds two to the current value
    public void pressTwo () {
    if (wholeNumber = true)
    display = 2 + display * 10;
    else
    * Adds three to the current value
    public void pressThree () {
    display = 10.0 * display + THREE;
    * Adds four to the current value
    public void pressFour () {
    display = 10.0 * display + FOUR;
    * Adds five to the current value
    public void pressFive () {
    display = 10.0 * display + FIVE;
    * Adds six to the current value
    public void pressSix () {
    display = 10.0 * display + SIX;
    * Adds seven to the current value
    public void pressSeven () {
    display = 10.0 * display + SEVEN;
    * Adds eight to the current value
    public void pressEight () {
    display = 10.0 * display + EIGHT;
    * Adds nine to the current value
    public void pressNine () {
    display = 10.0 * display + NINE;
    * Adds zero to the current value
    public void pressZero () {
    display = 10.0 * display + ZERO;
    * Adds dot to the current value
    public void pressDot () {
    display = .0;
    wholeNumber=false;
    * Adds function
    public void pressPlus () {
    display= display + display;
    * subtract function
    public void pressMinus () {
    display = display - display;
    * multiplies function
    public void pressStar () {
    display = display * display;
    * divides function
    public void pressSlash () {
    display = display / display;
    * sets value to zero
    public void clearCalculator () {
    display = 0.0;
    * gets the answer from all the functions
    public void pressEquals () {
    if (OPERATORS =="+")
    display = operand + display;
    else if (OPERATORS == "-")
    display = display - operand;
    else if (OPERATORS == "*")
    display = display * operand;
    else if (OPERATORS == "/")
    display =display / operand;
    //private components:
    private double display;
    private boolean wholePart;
    private String operators;
    private double operand;
    private boolean wholeNumber;
    WHEN I TEST IT I GET :
    public TestSimpleCalculator () {
    testInstance1 = new SimpleCalculator (5.1);
    java calculators.SimpleCalculatorTesterExpected: 51.1...Result : 52.0

    Crosspost #1
    Crosspost #2
    Crosspost #3
    Crosspost #4
    Crosspost #5
    :P

  • I need help with animation, PLEASE help!

    I am trying to create pacman animation by using a series of filled arcs that I create by coding in java. I know how to create the arcs, but I don't know how to use them to create animation. In other words I don't know how to put them in sequence to create animation.
    I have searched the web, and all I find is animation that use a series of GIF or JPEG images.
    can you please help me or point me to the right direction.
    by the way, which of these two animation would run faster? The one that uses GIF images, or the one that would use shapes created in java?
    Thanx

    Perhaps you could do this two ways
    One way, (im not sure if this will work), is to create a .gif file that is already animated. An open mouth animated to a closed mouth. But i don't know if Java will accept this.
    The second way would be to create a Thread. And to create however many images you want to display the open to closed mouth. Then continuously change the image so it appears the mouth is opening and closing.
    Put in a delay so it doens't go too fast, and there ya have it.
    Public void run()
    int i =0;
    while(true)
    myThread.sleep(10);
    image = difImage;
    }something like that. Might used a bufferedImage and make just use subImage to pull off each picture you need to change.

  • Help with video please help  can't sync video

    Hi can someone please help me. I have video that my mom took from my 6 months old brother now i want to sync it into my Ipod touch ios4 but it gives me this error i took a picture that you guys can see it too----->> http://i50.tinypic.com/rw6git.jpg please help to solve problem

    As part of the 12 days of iTunes promotion on Christmas I downloaded 1 music video, How can I delete it from my iPhone and my iPad. I can't delete by slide on the music video name and when I sync with **iTunes**, I can't find the music video, please help.

  • I need help ASAP! Please help!

    Hey, I realy need some help A.S.A.P!
    I'm realy behind in my class (8th grade), and I need to download (java):
    jre-1_5_0_11-windows-i586-p.exe
    Please help me, I need to catch up on some school work because I'm realy behind. So please help me.
    Thank You!

    georgemc wrote:
    How come people can find these forums, but can't find the downloads section of the same friggin' website??And worse, know exactly what they're supposed to download, and can't even use google?

  • Nokia map, please help,,Flash,

    hello
    1 .how can i understand my Nokia N95 made by finlandor Germany ??? and not made by other likr china,Hungary ???
    from IMEI code can understand ?? How>>>
    2. I must buy a flash for my N95 for get capture in night ??yes >>
    3. I download Nokia maps guide.pdf, it write for use maps you must have EDGE,UMTS,HSDPA OR Wireless LAN for use map, But in iran i think dont have any of this for operator ???
    can you help me???

    You can get the MapLoader from http://www.smart2go.com and use it to download maps through your PC and the PC's Internet connection.

  • Unable to repair disk (Partition map) Please HELP !

    Hi,
    I have the weirdest problem with my 15" retina macbook pro.
    Earlier today, OS X automatically rebooted after some kind of bug. I was then unable to start the computer, wether it was through recovery or as usual.
    Started in Safe mode, Backed up with time machine, and restored system.
    I'm now able to boot as usual but when I launch Disk Utility, I detects an error. Please find DU log at end of this message.
    When I click Repair Disk, I continuously get the same error message (this disk needs to be repaired).
    Any ideas how I can get this error fixed ?
    Thanks so much !
    2015-02-14 19:10:03 +0100: Verifying and repairing partition map for “APPLE SSD SM1024F Media”
    2015-02-14 19:10:03 +0100: Starting repair tool:
    2015-02-14 19:10:03 +0100: Checking prerequisites
    2015-02-14 19:10:03 +0100: Checking the partition list
    2015-02-14 19:10:03 +0100: Adjusting partition map to fit whole disk as required
    2015-02-14 19:10:03 +0100: Checking for an EFI system partition
    2015-02-14 19:10:03 +0100: Checking the EFI system partition’s size
    2015-02-14 19:10:03 +0100: Checking the EFI system partition’s file system
    2015-02-14 19:10:03 +0100: Checking all HFS data partition loader spaces
    2015-02-14 19:10:03 +0100: Checking booter partitions
    2015-02-14 19:10:03 +0100: Checking booter partition disk0s3
    2015-02-14 19:10:03 +0100: Repairing file system.
    2015-02-14 19:10:03 +0100: Checking Journaled HFS Plus volume.
    2015-02-14 19:10:03 +0100: Invalid number of allocation blocks
    2015-02-14 19:10:03 +0100: The volume   could not be verified completely.
    2015-02-14 19:10:03 +0100: File system check exit code is 8.
    2015-02-14 19:10:03 +0100: Updating boot support partitions for the volume as required.
    2015-02-14 19:10:03 +0100: Reviewing boot support loaders
    2015-02-14 19:10:03 +0100: Checking Core Storage Physical Volume partitions
    2015-02-14 19:10:04 +0100: Updating Windows boot.ini files as required
    2015-02-14 19:10:04 +0100: Problems were encountered during repair of the partition map
    2015-02-14 19:10:04 +0100: Error: This disk needs to be repaired. Click Repair Disk.

    If you have a backup (for both OS's: OS X and Windows) you might try with booting to single user mode and use fsck tool: Resolve startup issues and perform disk maintenance with Disk Utility and fsck - Apple Support
    But if that would be my own mac i would probably create myself a Recovery USB Disk or Bootable OS Yosemite Installer Disk and repartition my Hard Drive and then reinstall OS X and restore data to it. If Disk Utility is reporting an issue with Partition Map Scheme i would be a bit anxious about my data stored on this drive...
    Mac Basics: Time Machine backs up your Mac - Apple Support
    OS X: About Recovery Disk Assistant - Apple Support
    Create a bootable installer for OS X Mavericks or Yosemite - Apple Support
    How to move data to your new Mac using Mountain Lion and earlier - Apple Support also Yosemite

  • Error in executing deployed mapping.please help

    when executed the mapping,it display information:
    "ORA-04063: package body "OWB3.test" has errors
    ORA-06508: PL/SQL: could not find program unit being called
    ORA-06512: at line 1"
    I don't kown what it means?

    Hi
    Have you deployed the mapping to the target schema?
    Is there any procedure or function calling in the mapping (pre or post mapping process)?
    Is the package and the body valid in the db?
    Ott Karesz
    http://www.trendo-kft.hu

  • Outline States on U.S. Map - PLEASE HELP

    I have a U.S. Map where each state is selectable in Illustrator. I want to group 4 or 5 states and make a thicker outline around the border of all combined states. Any insight on how to do this is appreciated. Thanks!

    Group the states.
    Select the Group.
    Appearance Palette flyout menu: Add New Stroke.
    In the Appearance Palette list, select the added stroke.
    Effect menu>Pathfinder>Add.
    JET

  • Apple Application Support is required to run itunes helper---Error 2 Please help???

    Plese Help me? I can't get itune to load after  an entire day! Getting Message of Apple Application Support Error, not found is required to run itunes helper. Error 2
    Anyone??

    With the Error 2, let's try a standalone Apple Application Support install. It still might not install, but fingers crossed any error messages will give us a better idea of the underlying cause of the issue.
    Download and save a copy of the iTunesSetup.exe (or iTunes64setup.exe) installer file to your hard drive:
    http://www.apple.com/itunes/download/
    Download and install the free trial version of WinRAR:
    http://www.rarlab.com/
    Right-click the iTunesSetup.exe (or iTunes64Setup.exe), and select "Extract to iTunesSetup" (or "Extract to iTunes64Setup"). WinRAR will expand the contents of the file into a folder called "iTunesSetup" (or "iTunes64Setup").
    Go into the folder and doubleclick the AppleApplicationSupport.msi to do a standalone AAS install.
    Does it install properly for you?
    If instead you get an error message during the install, let us know what it says. (Precise text, please.)

  • Need help in report please help

    hi
    i want to send an automatic mail to respective person before two days of the issue date as a warning message or any thing.
    I want to make it through a SAP program i careated report to send mail.
    i want to send mail to respective person before tow days of the issue date .
    <b>tabel name : bseg-zuonr</b>
    thanks in advanced.

    We can't help you. Apple can't help you. Report it to the police and your insurance company.
    6 Ways to Track and Recover Your Lost/Stolen iPhone
    Lost or Stolen iPhone? Here’s What to do.
    What to do if your iOS device is lost or stolen

Maybe you are looking for