Suggest Mapping : Idoc2File

Hi Experts,
I am using  (INVOIC )Idoc to file scenario. As per requirement I have mapped segment EIEDP01 to target structure RECORD. Because all (5) fields comes under this segment . But only one field Invoice_No falls in different segment i.e E1EDK01
If I excecute present mapping it is showing below output.
But I want is Invoice _No should be appear in 2nd target structure as well.
  <?xml version="1.0" encoding="UTF-8" ?>
- <ns0:MT_INVOICE_FILE xmlns:ns0="http://tempuri.org">
- <RECORD>
  <Invoice_No>1091902118</Invoice_No>
<Name> POWER TECH</Name>
  <Item_No>000001</Item_No>
<Plant>PG01</Plant>
  <Quantity>150.000</Quantity>
  <Item_Code>G1</Item_Code>
  </RECORD>
- <RECORD>
  <Name>POWER TECH</Name>
  <Item_No>000002</Item_No>
   <Plant>PG01</Plant>
  <Quantity>95.000</Quantity>
  <Item_Code>F1103A050150</Item_Code>
  </RECORD>
  </ns0:MT_INVOICE_FILE>

Thanks for inputs.Yes, I need  field Invoice_No should be  repeat no of times as the segment EIEDP01
I used u201CUse one as Manyu201D function and  as there are 3 (Invoice_No=BELNR) in Sender Idoc side.
I   mapped  E1EDK01 ->BELNR in Idoc context               |
   Mapped E1EDP02 -> BELNR with Idoc context            | --->     Invoice_No (BELNR)
                E1EDK02- > BELNR with 3rd context                |
But it is not creating Target, showing below error:-
Runtime exception when processing target-fieldmapping /ns0:MT_INVOICE_FILE/RECORD/Invoice_No; r~</SAP:Stack>
Where I am wrong ?

Similar Messages

  • Suggestion: map function for contacts

    suggestion for iphone contacts - i think it would be awesome if there was a "map" function associated w the contacts addresses, so that if you are traveling or whatnot you could pull up an area and see what friends are around there, i know facebook had a similar app for a while, but a lot of people no longer but their addresses on there or just aren't on facebook, this way you would see where their actual location is based on what is in your phone

    Find My Friends already does this.

  • Spotlight doesn't suggest Maps location

    Hi all,
    I recently updated to Yosemite, and spotlight doesn't seem to work as expected. I enabled location services for spotlight, but still I don't get any suggestions for locations... Any help or suggestions?
    Thanks.

    Yep, the location is shown is Maps, and even when I search for anything from spotlight, the location symbole appears on the top bar
    But nothing is shown in the suggestions...

  • Dynamically updating data in a webpage ..... help/suggestions please?

    Hi All,
    I have a simple delimited text file of current weather observations (less than 20 items) updated every 15 minutes, which I display via an embedded  Flash animation.  I would like to do away with the Flash approach, and display the data in tabular fashion within a webpage.
    What do people  consider the best approach to getting the latest data out of the text file and into the webpage?  I already use some simple php to get the data into variables for the Flash approach (simply explode the text file into an array), but I don't know enough php to see how to flexibly use this within html ie use the array variables at later points in the html.
    I'm sure that there are several possible approaches here but I lack the depth of knowledge to decide where to start. So, suggestions please, and then I can go do some reading.
    Cheers in advance,
    Ian

    php is run only once and is done so before the user sees the page so it cannot display anything for you. The only way to do this without flash or java is with javascript and asynchronous xml. You may have heard this as AJAX and is what google uses for its suggestions, maps, w/e. I recommend using a javascript toolkit such as Mootools because it is simple, fast, and has better approaches than other frameworks. Simply give an id to a div you want to update regularly, and execute
    $('divid').load('pageurl');
    and it will inject the contents of the url into the div.
    It can call on a php script and every time you load the php file, the php file will get re-executed.
    http://mootools.net/
    Last edited by caelestis (2010-01-06 07:37:55)

  • Non-navigable maps not downloadable via Map Loader...

    It is NOT possible to pre-download the non-navigable maps, i.e. the maps for the 80% of the world's countries that Nokia do not provide on Map Loader. And yet this page suggests maps are available for over 200 countries: http://europe.nokia.com/A41407068 and here, http://europe.nokia.com/A41417046, if you select a region like Africa and click non-navigable maps, it just says they are available, but doesn't say how.
    It seems they are only available as an on-demand download, like Google Maps, i.e. you cannot pre-download them onto the phone. And the maps also seem to be extremely POOR. Nokia need to clarify that you cannot pre-download the non-nav maps and they need to supply full, detailed maps asap for all these current non-nav countries.

    Dont waste your time here is the answer from Navteq
    Whom to ask in Nokia as advised by Navteq??
    From Navteq
    Thank you for your enquiry about handheld devices.
    NAVTEQ is the database supplier for your handheld device. At this moment, however, we do not handle the distribution of maps for these devices. For information on how to order additional maps, we advise you to contact your Nokia dealer or to consult the Nokia website at www.nokia.com.
    If you register with us, we will be able to keep you informed if we eventually will distribute these maps in the future. You may register online at the following URL :
    If you prefer to register via telephone, please contact our Customer Service Centre at the contact details provided below.
    Should you require additional information, please provide us with your feedback by replying to this email or by calling us. When responding, please refer to this email and include your reference number.
    Kind regards,
    NAVTEQ Customer Service Centre
    Message Edited by kenken on 01-Dec-2008 02:43 PM

  • Jsp:include static svg does not work

    I am running tomcat4- and I have a jsp file that outputs svg content like so:
    <?xml version="1.0" encoding="US-ASCII"?>
    <%@ page contentType="image/svg+xml"%>
    This works fine- the problem is that up until now I have included other svg widgets like this:
    <g id="radio_off" >
                   <%@ include file="../graphics/radioButton.svg" %>
              </g>
    which also works just fine. Now, I have to change this to pass in a dynamic directory containing the image (there will be various directories with same file name- I determine at runtime which directory to use)- so I have to use a jsp:include instead.
    When I do this:
    <g id="radio_off" >
    <jsp:include page="graphics/radioButton.svg" flush="true"/>
              </g>
    When it is run I just get:
    g id="radio_off" >
              </g>
    Just blank inside the <g> . If I change radioButton.svg to radioButton.jsp and say:
    g id="radio_off" >
    <jsp:include page="graphics/radioButton.jsp" flush="true"/>
              </g>
    Then I get what I expect with
    g id="radio_off" >
    <svg width="15" height="15">
    ....and so on
              </g>
    I thought jsp:include would include the static content of a file (like html or svg), but apparently only the OUTPUT of that file.....
    Is this correct- I cannot get my svg content to be included in the svg by using jsp:include or am I missing something?
    I think it will be strange that I have to rename all my svg files jsp to get them included...Anu ideas???
    Thanks,
    Jim

    Michael,
    You are right- I reread your post more closely and saw that you are suggesting to basically just map all my static files (like the .svg) into .jsp extensions- which is basically what I was asking was true- that for svg, xml, htm, any static content to be included as in the <%@include directive but using the action <jsp:include it needs to either be changed to the extension .jsp or, as you suggested, mapped in the web.xml to .jsp. I have remapped my svg to .jsp so as to preserve their .svg extensions- (of course now the first user is hit by about 20 jsp:init's on that page!!- but is then cached as in all jsp's).
    I guess kinda makes since since the include action gets the actual response from the page (which is blank image)- but as jsp it is the actual code....Well needed confirmation- and that's what I got along with the reminder to use the mapping in web.xml.
    So thanks alot- even put extra duke in for you !!
    Jim

  • Load one text file with 12 periods' data into 12 different periods at once?

    Hi guys,
    In one swoop, can we load one .txt file with 12 periods of data into 12 different periods?
    The scenario:
    Budget data is required for monthly comparative reporting with actuals, so we have 12 periods in our Budget version.
    From a non-SAP system we get one .txt file containing 12 periods worth of budget data,
    - it is in the correct format (and we don't want to create risk by opening and editing it) so it is loaded into each period and the other 11 periods of irrelevant data are obviously ignored.
    Some extra tasks (such as validation, cashflow calculations) are then performed per period.
    Because this has to be repeated 12 times, this can be a time consuming process
    We now have multiperiod monitor functionality (from EHP2) and I see how it works for the automatic tasks (very well).
    I'm aware that the guide says that manual tasks will be ignored during the automatic run, this is true.
    However, if I remember correctly EC-CS used to allow it with upoad files, so i was expecting it in BCS 6.02
    - is there anyway to load a file containing 12 periods worth of data into 12 individual periods in all at once?
    (NB we still have an improvement to the previous situation, the user can scroll between periods more quickly and load the file 12 times, then go back to the start and run all auto tasks at once)..
    One thought was to use a file server location with a hardcoded filename but his would require work beyond my expertise.
    All suggestions welcome

    Hi
    I wil suggest mapping the path based on a common location is the best way and then map the same logically in the Upload method
    If you are using Citrix then it becomes all the more easy to have a commmon location
    Rgds
    Dheeraj

  • How do I convert all the video files in Aperture to M4V?

    Hi,
          I have alot of video files stored in my Aperture Library in various formats i.e. vob, avi, mpg etc which I would like to batch encode to the standard MP4 format used by iPad/iphone. How do I do this with the new file replacing the existing file so that I don't have to import it again into its various events which will be next to impossible.
    Thanking you,
    rgowani

    Afaik, you cannot.  I did this with one Library with several hundred videos.  I set up a system of exporting and converting and importing into the proper Project(s) and deleting the originals.  I don't remember how I did it -- sorry -- I may have exported into Finder Folders based on Projects, then batch converted the files recursively.  I know I couldn't automate parts of the process, so for some things there was nothing to do but labor through the process file by file (or Project by Project).  I suspect I used Name Mangler along the way -- an excellent (and to me invaluable) utility.  I think the whole process, including design, took about 8 person-hours.  Video conversion was over the course of several nights.  Strongly suggest mapping your tasks, and doing a dry run.  As with all digital files, never even open one with a verified back-up.
    How many movies in Aperture?  How many Projects?

  • How to use BKPF and BSEG without using  inner join

    Hi,
    can anybody plz tell me the logic about how to complete the report without inner joining bkpf and bseg.Is this report can be really be made by using only bseg,bkpf ?
    *selection-criteria .
    BKPF-USNAM
    BKPF-CPUDT
    BKPF-BUDAT
    BKPF-GJAHR
    BKPF-BUKRS
    BKPF-BELNR
    BSEG-SAKNR
    BSEG-LIFNR
    BSEG-KUNNR
    BSEG-ZUONR
    BSEG-SGTXT
    Output fields required.
    BKPF-BUKRS
    BKPF-BELNR
    BKPF-GJAHR
    BKPF-MONAT
    BKPF-BLART
    BKPF-CPUDT
    BKPF-BLDAT
    BKPF-BUDAT
    BKPF-USNAM
    BKPF-XBLNR
    BKPF-STBLG
    BKPF-BKTXT
    BKPF-WAERS
    BKPF-KURSF
    BSEG-BUZEI
    BSEG-BSCHL
    BSEG-KOART
    BSEG-UMSKZ
    BSEG-SHKZG
    BSEG-MWSKZ
    BSEG-PSWBT
    BSEG-PSWSL
    BSEG-DMBTR
    BSEG-SAKNR
    BSEG-HKONT
    BSEG-KOSTL
    BSEG-KUNNR
    BSEG-VBELN
    BSEG-LIFNR
    BSEG-ANLN1
    BSEG-ANLN2
    BSEG-AUFNR
    BSEG-MATNR
    BSEG-MENGE
    BSEG-MEINS
    BSEG-ZUONR
    BSEG-SGTXT
    Thanks,
    Rahman
    Moderator Message: Please search before posting your question. Thread locked.
    Edited by: Suhas Saha on Jan 31, 2012 3:07 PM

    Quick question - what's preventing your from using built-in functions?
    I suggest mapping your Time Dim to a standard Time Dim and work with it - you'll save a lot more time. You'd even need this table if you wanted to work around Todate/AGO.
    It is possible to model this functionality w/o functions, but it'll be time consuming task, similar to using Time Series Wizard in Siebel Analytics. You'll need to build aliases and views along with some complex joins (such as TIME.KEY=TIME.KEY-365), introduce a bunch of variables to control. Also, you might not get much flexibility in terms of years. For each year, you'd need an alias table. (TIME_DIM_PY).

  • Best way to update CO documents

    Hi friends ,
                       We have figured out few CO documents where we need to update material costs  in Ke24 (txn) and in table Ce14000 in SAP. IS there any best approach to fix this data ? We have figured out few but would like to advice from experts.
    Thanks in advance .

    Hi
    BAPI is an upload tool just like LSMW... In LSMW you do a recording to map the fields...
    Similarly, BAPI allows you to write a code to do mapping... You will have to tell your ABAPer all those chars and value fields which you would like to upload.. I would suggest map all the chars and value fields so that it would serve useful in future use also
    Dont worry on the technical aspect of BAPI.. your abaper will be comfortable with it... Just post a manual document from KE21N infront of him and tell him this is what you expect from the upload program via BAPI
    he will create this program using the BAPI and create a T code from SE93 assigning this program
    Hope this helps
    Regards
    Ajay M

  • Learning Management Questions - Help

    I am in the process of setting up and implementing Learning Management in 11.5.10 (we just applied OTA.J). I have read all of the documentation and have some outstanding questions that I cannot answer. I was hoping that someone could help me:
    1) If we are not tracking resources, do we need to define the Training Resource flexfield? (We are currently not implementing the HR module but that could happen in the future). Is it something that can be defined after the implementation if they decide to track resources?
    2) Do we need to setup offerings? I believe the answer to this question is yes but just wanted to confirm. Currently, the organization just conducts instructor-led classes.
    3) If a class is cancelled or a student cancels, does anything happen in OM & AR? Does the order get cancelled and a credit generated in AR? I currently do not have an instance to check this.
    4) Do you have to invoice upon attendance. We would like to be able to print an actual invoice no earlier than 90 days before the start of the class. We don't wantan invoice to be generated in January for a class in December because the customer will appear on the aging as past due. Would like to be able to send a proforma (also known as a prepaid invoice) to the customer when they register. However, we want to defer revenue until the class is held.
    5) Does anyone have any advice on how to flag No Shows in the system? It appears through initial testing that you would need to select the status as Attended but then not mark off successfully attended...which does not make sense.
    Any advice would be greatly appreciated.
    Thanks,
    Danielle

    Thanks so much for replying to my thread. I really appreciate it.
    You suggested mapping the enrollment status of "No Show" to the Requested Status Type. I actually created a new enrollment status of 'No Show' and mapped it to Cancelled. Do you see a problem with that? I would appreciate any advice that you could provide.

  • Why generate object-oriented database schema

    Let me begin with an example:
    public class Base
    protected int id = 0;
    protected String name = null;
    public class Derived extends Base
    protected int type = 0;
    Derived class and Base class form an object-oriented inheritence. After
    using SchemaToolTask, the following table definition is generated :
    create table base
    id INT NOT NULL,
    name VARCHAR(255),
    PRIMARY KEY (id)
    create table derived
    id INT NOT NULL,
    type INT,
    PRIMARY KEY (id)
    Actually, RDBMS is ER-oriented. Every meaningful entity corresponds to a
    database table. But in this example, maybe "Base" has no any meaning, just
    for abstraction. So why we must generate this table ? Why cannot be
    configurated to just generate
    create table derived
    id INT NOT NULL,
    name VARCHAR(255),
    type INT,
    PRIMARY KEY (id)
    This will not only avoid join operation in SELECT, but also reduce the table
    size according to Base class.
    Thanks
    Liang Zhilong
    EMail : [email protected]
    Tel : (021)54235858-6650
    Fax : (021)54235800
    PhotonicBridges Co., Ltd.
    12F, 900 Yi Shan Rd., Shanghai 200233

    As I said, this is quite high on our project plans.
    On Wed, 25 Jun 2003 14:41:29 +0800, Liang Zhilong wrote:
    I believe your concern is reasonable. However, in our application, the
    operation you assumed( to find all base instances owned by class C) is
    rare, so it'll be useful if my suggested mapping is taken as an option.
    Moreover, we should not get better performance at the cost of worse
    database schema. Kodo should have enough capacity to optimize database
    operations. For example, to find all base instances owned by class C, kodo
    should issue a "SELECT col1, col2 FROM a UNION SELECT col1, col2 FROM b".
    "Stephen kim" <[email protected]>
    ??????:[email protected]...
    This sort of mapping is on our project plan but know that there a number
    of severe performance penalties that can happen with the mapping you
    describe. If you desire to lack the join, a flat-class mapping is the
    most efficient table structure.
    Take for example the multiple classes problem:
    base
    |_ A
    |_ B
    which would result in table a and table b. Now try to do an ordering
    query. You would issue 2 selects and then have to merge in memory. To
    do any relation join, again you multiply the number of SQL statements by
    the number of subclasses (e.g. to find all base instances owned by class
    C, you would have to query against a and b).
    On Wed, 25 Jun 2003 12:39:39 +0800, Liang Zhilong wrote:
    Let me begin with an example:
    public class Base
    protected int id = 0;
    protected String name = null;
    public class Derived extends Base
    protected int type = 0;
    Derived class and Base class form an object-oriented inheritence.
    After using SchemaToolTask, the following table definition is
    generated :
    create
    table base
    id INT NOT NULL,
    name VARCHAR(255),
    PRIMARY KEY (id)
    create table derived
    id INT NOT NULL,
    type INT,
    PRIMARY KEY (id)
    Actually, RDBMS is ER-oriented. Every meaningful entity corresponds to
    a database table. But in this example, maybe "Base" has no any
    meaning,just
    for abstraction. So why we must generate this table ? Why cannot be
    configurated to just generate
    create table derived
    id INT NOT NULL,
    name VARCHAR(255),
    type INT,
    PRIMARY KEY (id)
    This will not only avoid join operation in SELECT, but also reduce the
    table size according to Base class.
    Thanks
    Liang Zhilong
    EMail : [email protected]
    Tel : (021)54235858-6650
    Fax : (021)54235800
    PhotonicBridges Co., Ltd.
    12F, 900 Yi Shan Rd., Shanghai 200233--
    Steve Kim
    [email protected]
    SolarMetric Inc.
    http://www.solarmetric.com
    Steve Kim
    [email protected]
    SolarMetric Inc.
    http://www.solarmetric.com

  • Export file with the project separated into the different tracks

    I have created a project consisting of about 18 imported tracks (bought from Itunes). Is it possible to have the imported components separated in the export file from GarageBand so it would be possible to jump between them?

    Hi
    I wil suggest mapping the path based on a common location is the best way and then map the same logically in the Upload method
    If you are using Citrix then it becomes all the more easy to have a commmon location
    Rgds
    Dheeraj

  • Requirements implementation clarification

    Hi Experts,
    I would need your suggestion again. We have Trusted source as LDAP and target systems as SAP (SAP1, SAP2, SAP3). I did trusted recon to get all the users to OIM. User count in trusted source is 40K. I have few requirement,
    Requirement: User has SAP accounts and I want to link these accounts to OIM users
    My suggestion: Run target recon against SAP so we can link SAP accounts to OIM users.
    Your suggestion: ?
    Requirement: User has SAP account where many sap attributes are not filled and it needs to be populated from external system say another SAP2.
    My suggestion: During target recon use post process handler to fetch/populated attribtues in SAP from SAP2 and provision back to SAP using OIM API's.
    Your suggestion: ?
    Requirement: If there is any change in SAP attributes during target recon with SAP1, modified attributes must be synced to SAP 2 but not to SAP3
    My suggestion: Map all the attributes to OIM and use Triggers to update in target system when OIM attribute value changes.
    Your suggestion: ?
    Please let me know your suggestion/best practises.. Also feel free to educate me whether my suggestion/approach is correct.
    Thanks a lot.

    Requirement: User has SAP accounts and I want to link these accounts to OIM users
    My suggestion: Run target recon against SAP so we can link SAP accounts to OIM users.
    Your suggestion: Correct ..
    Requirement: User has SAP account where many sap attributes are not filled and it needs to be populated from external system say another SAP2.
    My suggestion: During target recon use post process handler to fetch/populated attribtues in SAP from SAP2 and provision back to SAP using OIM API's.
    Your suggestion: Can you able to handle in from outside of OIM. Populate SAP2 to SAP1 directly...
    another option (I haven't tried but you can attempt it ) if the set of attributes are totally different in SAP1 and SAP 2 you can run the target reconciliation against both the SAP instance. Only change would be the different IT Resource Object.
    Requirement: If there is any change in SAP attributes during target recon with SAP1, modified attributes must be synced to SAP 2 but not to SAP3
    My suggestion: Map all the attributes to OIM and use Triggers to update in target system when OIM attribute value changes.
    Your suggestion: Are you putting every attributes on OIM User profile ? If yes then only you can use user.trigger lookup ..

  • I recently synced some old photos onto my ipod touch and they briefly appeared on google maps in geographical/time date order. Couldnt bring it back up after Id logged out. id like to be able to do it again, any suggestions?

    I recently synced some old photos onto my ipod touch and they briefly appeared on google maps in geographical/time date order. Couldnt bring it back up after Id logged out. id like to be able to do it again, any suggestions?

    Have you tried the following document, kohida?
    [What to do when Windows displays a blue screen error message or restarts when syncing the iPhone or iPod touch|http://support.apple.com/kb/TS1502]

Maybe you are looking for

  • No longer connects to home wi-fi

    During the last 7 to 10 days my razr upgraded to version 4.0.4 (ICS). Sense it did this, I can no longer connect to my Wi-Fi at home. Specifics: it would say it was connected, but when I opened a browser or went to fb or my email I would be notified

  • FAQ: What features use the GPU and how do I troubleshoot GPU issues?

    Photoshop CS6 GPU FAQ Introduction This document provides a quick reference guide to video card usage in Photoshop.  Some features require a compatible video card to work; if the video card or its driver is defective or unsupported, those features wi

  • UC520W-8U-4FXO-K9 with 7.0.3

    I have an UC520W-8U-4FXO-K9 with the CME 7.0.3 version. The Unity is 3.2.1. I want upgrade the unity to 7.0.3 with Spanish language, but Im having problems with the language payload file. It looks like the uc520w doesnt support unity 7.0.3. This the

  • Is it possible to setup multiple users with the exact same calendar?

    I am trying to setup exchange with 3 users where each user sees exactly the same calendar all precisely in sync. I don't need the users to have their own calendar. Sharing a calendar from 1 user to the others does not work for me because I need it to

  • Very slow and unstable after update...

    Hello! After update yesterday, my Arch64 was very slow and unstable... Eclipse IDE crashes, Firefox uses +200mb and Xorg uses +15% of CPU. Xorg lags when I'm going to switch between virtual desktop in KDE... very strange! Some confs below: [root@Sele