I am trying to extract two more fields from 2lis_13_vditm

Dear Experts,
I have some tough situation here.
In BW: i am using 2lis_13_vditm this datasource for the last 5 years. i am running daily deltas to load(10 fields from r/3) ods which is in <b>addition mode.</b>.
from this ods data is going to another 4 ods's.
I have client requirement that he wants to add ship to party and sold to party fields to this existing ods. that means 12 fields we need from r/3 to bw now.
other end at r3 ; 2lis_13_vditm has already 12 fields.
Come to the point:
1) if i run full reapir  now data get aggregated. ruled out.
2) if i want to run re-init  but i can't have block out period in r/3 ; do this is also rule d out.
3) If i run init without data ; then delta ;  it takes more time ;
If you can help me out on this situation it would be great helpful to me
Rds,
kk

Something similar to this should work filling in historical data.
1. Create new, temporary ODS to contain the key fields and the additional data fields.
2. Run logistics set up in R/3 with to new fields added to your data source.
3. Load data into new ODS.
4. Create update rules to load from new ODS to existing ODS, updating only key fields and new data fields.
5. Load from new ODS to existing ODS. At the end of this step all historical info is there.
6. Continue with normal delta process into existing ODS.
If you don't want a lengthy setup run, you can consider creating generic data source to pull the data.  You don't even need the temporary ODS. Just load directly into existing ODS to fill in the new data fields.

Similar Messages

  • Pupulating two database fields from one form field

    Hopefully an easy query for someone with more experience than
    me!!!
    I have set up a form (PHP page) to add new users to a table
    in a MySQL database. So far, so good.
    The problem is that I want to use the value entered in one of
    the form fields (Email) to populate two different fields in the
    table (username and email). I realise that this is redundant, but
    it is necessary for other reasons that I won't go into here...
    I've tried using a hidden input field for username, but I'm
    just not sure what I need to specify for 'value'...
    The code for the input field is:
    <input name="Email" type="text" class="RequiredInput"
    value="" size="32">
    and the code for the hidden input is:
    <input type="hidden" name="username" value=Email>
    As you can see, this puts the text 'Email' in the field,
    rather than the value of the Email input...

    When I try an post a reply with the code attached I get this
    screen:
    The page you requested could not be found on our web site.
    You may wish to try one of the following links:
    Search
    Search the Adobe web site.
    Adobe Homepage
    Go to the Adobe homepage.
    Macromedia Flash Player
    Download the Macromedia Flash Player.
    Broken Link?
    Send us an e-mail.
    When the forum's working again I'll have another go at
    posting the code...

  • Still trying to extract an email list from my contacts.  Any ideas?

    I am trying to extract a list of email addresses from my business conatcts.  I can't seem to get a list without dragging all of the emails to a new group.  Help!

    Barney,
    I have four groups.
    I just typed the name of one of those groups in the To field on the iPhone's email, and received:
    Invalid Address
    "<group name>" does not appear to be a valid email address.  Do you want to send it anyway?
    I clicked continue and it remains in my outbox.
    Help is appreciated.
    Thanks,
    Michael

  • Extracting all form fields from a fillable pdf

    Is there any way of extracting/exporting/copying all form fields from a pdf? Meaning, the wordings from all the fields so I can pass it along to another individual to use for cross referencing, since they are not able to see all the various form fields within the split screen?
    Thanks!!!

    The person that needs this is looking for the entire running list of all the fillable field names within the pdf. Any kind of document that I can deliver them in, I am willing to take suggestions.
    Right now, what I was thinking of doing was having the screen split between the pdf and the listing of field names in the sidebar and taking screen captures as I scroll down the pdf and corresponding field names in the sidebar until I got all pages.
    Is there an email address I could contact you at to discuss offline? I have an example I could send you but don't want posted online.
    Thanks!

  • HT2479 I'm trying to extract a photo clip from my video.  How do I do that?

    I just took a video of my daughter's new wine and cheese shop.  She loved it and wanted a picture of her that is in the movie.  Can I extract a photo clip from the movie?  I can't figure out how to do it and would love some help.  Thanks.

    Or just play back in full screen and pause the video on the section you want and take a screen shot(Shift CMD + 3).
    Another thing you can do is Export using Quicktime from the Share menu and change the Export setting to Movie to Image Sequence. Make sure you export into a folder as you will get approx 30 images for every second of video you export. I would recommend creating a new project and just adding a couple seconds of the video clip around the spot that has the image you want then export Movie to Image Sequence (into a folder).

  • Steps for extraction of Custom Fields from the SRM 5.0 to the SAP BI system

    Hi Experts,
    I am new to the SAP BI. I was asked to publish all the custom fields from table (BBP_PDISC) of the SRM system to the BI System.
    Please provide some guidiance (or) provide me with step-by-step procedure for doing the same.
    There are around 14 fields in this table and i need to move them to the BI system and later inlcude them in reports.
    Let me know if this information is sufficient.
    Thanks in advance.
    SAPBWI

    We are working on the Shopping cart DSO

  • How to select max (field) and one more field from table?

    Hi experts!
    I need to select maximum value of ENDDA from PA0023 and BRANC of max ENDDA.
    How can I do that ?
    When I trying this code:
    This is the  code:
    SELECT MAX( endda ) branc
      FROM pa0023
      INTO (pa0023-endda, pa0023-branc).
    I get error message:
    The field "PA0023~BRANC" from the SELECT list is missing
    in the GROUP BY clause. Addition INTO wa or INTO (g1,...,gn)  is required.
    So what is the problem?
    Thanks forehead.

    Hi
    Though am not totally sure of your requirement, check below code samples without any syntax errors:
    1. As per you current coding:
    TABLES: pa0023.
    SELECT MAX( endda ) branc
           FROM pa0023
           INTO (pa0023-endda, pa0023-branc)
           GROUP BY branc.
    ENDSELECT.
    2. Above code results only on one record where as the criteria can be more than one. Eg: for a specific data more than one record can exist. Below code helps you handle the same:
    TABLES: pa0023.
    TYPES: BEGIN OF t_pa0023,
             endda TYPE endda,
             branc TYPE brsch,
           END OF t_pa0023.
    DATA: i_pa0023 TYPE TABLE OF t_pa0023,
          wa_pa0023 TYPE t_pa0023.
    SELECT MAX( endda ) branc
           FROM pa0023
           INTO TABLE i_pa0023
           GROUP BY branc.
    LOOP AT i_pa0023 INTO wa_pa0023.
    ENDLOOP.
    3. If the requirement is to get the Industry Key for the record with highest End Date. We can acheive it by using subquery something like:
    TABLES: pa0023.
    SELECT SINGLE endda branc
           FROM pa0023
           INTO (pa0023-endda, pa0023-branc)
           WHERE endda = ( SELECT MAX( endda ) FROM pa0023 ).
    Kind Regards
    Eswar

  • How to combine two text fields from two lines to extend text.

    I am working on a form to enter property descriptions sometimes it takes one and a half lines of text. Is there a way to force the first line of text to continue onto the next text field on the next line with out having to tab? I was wondering if there was something like a text overflow to the next field. An example is I might have two words in the middle of the second line and a field on both sides. I just want the top to connect to the first next line field.  pcwp55

    This must be the day after Christmas or something Crazy people like me are still working. Okay -- I figured it out. Add a table with a single row and two columns, then insert a text field in each one, making it side-by-side. The trick is to make sure it is within the subform, and you must select the row and make sure to check "Allow Page Breaks within Content" on that row, because it isn't a default. It works. Thanks (to myself!).

  • Extraction hierarchies and fields from the logical layer

    Hello all !
    I build a repository and I would like to ask if it is possible to take an extraction of the names of the hierarchies and fields of the business layer that are mapped to the tables and fields of the physical layer. Because now my model is quite big and I want to create a file that I can follow my logical layer that is mapped to the physical layer.
    Thank you in advance!

    better to go for Repository Documnetation from utilities,it will give you the complete info of ur RPD

  • Combining two form fields from the same document, into one form field?

    I have a field called "first name" and one called "last name".  How do I create a third field called "full name".  I want it to just combine the first two.  Any ideas?

    In the field's calculation tab (under Custom Calculation), enter:
    event.value = this.getField("first name").value + " " + this.getField("last name").value
    Message was edited by: try67
    Forgot to paste a part of the code...

  • HT1451 I am trying to move two ring tones from my Iphone 4 to my new Iphone 5.  I can see the ringtones on my old device in Itunes but I cant seem to move them to the Library or to the new device.

    I am trying to move 2 ringtones from my Iphone4 to my new Iphone5.  I can see the ringtones in Itunes on the old device.  I cant seem to copy them to the library or to the new phone.  Do you have any suggestions?

    Hello DelaineF,
    Congratulations on your new iPhone 5!  It sounds like you would like to transfer your ringtones from your iPhone 4 to your iPhone 5. 
    If the ringtones were purchased from the iTunes Store, you can transfer them to iTunes using the steps in this article:
    iTunes Store: Transferring purchases from your iOS device or iPod to a computer
    http://support.apple.com/kb/ht1848
    Once you have the ringtones on your computer, I recommend using the steps in the following article to sync it to your iPhone 5:
    iTunes 11 for Windows: Set up syncing for iPod, iPhone, or iPad
    http://support.apple.com/kb/ph12313
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

  • HT1212 my screen is shattered and black. but the phone is on. im trying to extract photos and videos from the phone but it says i cannot access anything wothout putting the passcode in to unlock the phone.  do you have any advice to help me get into it.

    help

    I don't think there's a solution for you.
    However, consider this a learning experience:  Use the free (and automatic) backup methods that Apple provides, such as iCloud & Photo Stream.  Or, use the built in function of your computer to regular copy & save your photos & videos from your iPhone to your computer. http://support.apple.com/kb/ht4083

  • Combining two source fields in Import Manager

    Hi,
    I am trying to combine two source fields say fld1 with 5 digit and Fld2 with 3 digit so that combined fld3 of 8 digit can be mapped to a 8 digit field in destination MDM side.
    Any suggestion how to do this is highly appreciated
    Thanks,
    -reo

    Hi Reo,
    I am just adding details to how to combine fields in the import manager.
    To combine two or more existing partitions for a destination node steps are as follows:
    <b>1. </b>In the appropriate source hierarchy tree, select the node whose partitions you want to combine.
    <b>2.</b> click on the Partition Field/Value tab to make it the active tab.
    <b>3.</b> In the appropriate Partition list, select the two or more partition items you want to combine into a single partition.
    <b>4.</b> Click on the Combine button, or right-click on one of the items and choose Combine Partitions from the context menu.
    <b>5.</b> MDM combines the selected partition items.
    <b>6.</b> Now you can map this partition directly to the destination field.
    But as ur requirement seems ,u do not need to set delimiter.
    Hope it will help you and let me know the results. please remark .
    Thanks,
    <b>Shiv Prashant Dixit</b>

  • Need to add more Fields to "List" Tile of MSA Opportunity Search Tileset.

    Hi Experts !
    We are trying to add more fields to the "List" Tile on the Opportunity Search Tileset to view additional information on the search result screen.Ex: Company Name, Product Description, Person Responsible & Channel Partner on Opportunity transaction should be displayed on the Search result screen.
    So far, with the help of Anchor modeling we tried adding the Opportunity BP (BOOPPBusinessPartner) Segment and (BOOPPProduct) Segment to the BOOpportunity Parent segment in the Opportunity_Write Bdoc.And, we added fields from BP & Product segment to the List tile by drag & drop.
    Upon Generating the changes, the system did NOT populate the data for the new fields.
    Please advise us where we are going wrong.
    Thanks & Regards,
    Jagan.

    Hi,
    the way you tried to add some more fields in a list tile is not working.
    In lists the data is not retrieved from Business objects/collections but from record sets which are fetched from the main segment of the underlying query BDoc (I guess sth like OPP_blabla_QUERY).
    Therefore what you could do is to enhance this query BDoc and add these tables by joining them to the opportunity header table. In this case you also need to specify exactly these segment field names in the property of the new list column fields.
    Much faster (but a little bit dirty) would be to use the row loaded2 event where you can calculate the values you want to display. In this case the controls would have to be unbound.
    The second version would cost a little bit more performance, but this depends from the data volume.
    Regards,
    Wolfhard

  • How to add one more field to an exist internal table

    hi abapers
    i am a very new abap programmer and just started learning it.
    i want to know How to add one more field to an exist internal table.
    lemme me put my question in a very simple way.
    i have a internal table having fields f1,f2,f3 and which also that internal also contains some data.
    now i want to add two more fields (mm & nn) to that internal table now.
    how can i do that.
    and i wanna know the websites names where i can find some brain teasing questions in abap programming.
    eagerly waiting for ur reply
    regards,
    Maqsood A Khan

    Hi, MAQSOOD.
    You can insert more fields in your internal table like this.
    refer this code snippet.
    DATA : BEGIN OF tbl_itab OCCURS 0.
            INCLUDE STRUCTURE zsdtc009.
    DATA :  vkorg   LIKE vbak-vkorg,  "inserted one
            vtweg   LIKE vbak-vtweg,  "inserted one
            vkbur   LIKE vbak-vkbur,  "inserted one
            vkgrp   LIKE vbak-vkgrp,  "inserted one
           END OF tbl_itab.
    you can also read the book "Teach yourself abap in 21 days"
    at http://cma.zdnet.com/book/abap/
    but that book is just about basic concept of abap and report program.
    it doesn't give a lecture for on-line program.
    you can get pdf version books(about abap, sap...things) from sap.
    http://help.sap.com/printdocu/core/Print46c/en/Data/htm/english.htm
    I wish I could help you.
    Regards
    Kyung Woo.

Maybe you are looking for

  • CPU usage problems...

    hey, all of a sudden i seem to ahve an issue wiht loads. while doing nothing the laods 'idle' from 50-80% per core... this is doing nothing, and makign sure there's nothign runing in teh backgroudn that shouldnt be. as i t pe this its at 2ghz, and a

  • Maintence View

    Hi, when am display the z table via se11 it shows a status message "A maintenance view exists for table ZPAYROLL" now am not able to find its maintenance view in se11. could you please suggest me how can i see its maintenance view. Thanks.

  • Oracle10g installation

    hai...! I am new to oracle.When installing oracle10gR2 on Linux AS4 i am getting following error..... Preparing to launch Oracle Universal Installer from /tmp/OraInstall2008-03-06_03-28-01PM. Please wait ...[oracle@linux40 database]$ Xlib: connection

  • Consolidating accounts

    I moved my files from my old mac to muy new one using time machine. It left me with a copy of my old account and the new account i established on the new mac. I want everything in one place. What is the best way to do that?

  • Canon 60d does not recognize 430ex II flash. Any suggestions?

    Canon 60d does not recognize 430ex II flash. On the menu screen it says that the flash is either of or not compatible. Any suggestions? Any books or guides recommended? Thanks Solved! Go to Solution.