Need help on extraction of field VBUP-UVP01 in BW

Hi All,
In our system, we have enhanced 2LIS_11_VAITM datasource to bring data for UVP01 field in BW. 
I can see the field in append structure of extract structure MC11VA0ITM (see attached screenshot), but I don't see any ABAP code in CMOD to populate this field. So my question is how this field is getting populated?
Other problem is we are not getting correct delta for this field. Some orders
are closed and has VBUP-UVP01 as "C" in in R/3, but in BW it still shows as
open.
Please suggest how can we capture delta for this field correctly, without going for full load option everyday.
Thanks and Regards,
Jharna Patel.

might be the code is written in BADi   check it using tcode SE18 .

Similar Messages

  • Need help deleting an image field/pictures in worksheet

    I am in need of help!!! Added photos in an important .pdf document (a worksheet form that was pre-made) and I added image fields (Top box photo and small bottom box for text). I need to delete some image fields now and it won't let me. I upgraded my Adobe Reader to Acrobat XI Pro trial, still can't. If I try to edit image, it says I need to have Live Cycle designer to edit this form. Someone please help! This is my son's Eagle Scout worksheet and needs to be fixed tonight....please

    If the file was created in LiveCycle Designer then it can only be edited
    there.
    It's not clear in what way you edited it originally.

  • Need help for use crm fields into EJB2

    hello i need help.
    i have one db table (table_1):
    id_1
    field_1
    nad the second table that depends from the tale 1:
    id_2
    fields
    id_1
    id_1 is the field that join the table 2 with the table 1.
    can anybody helps me to implemet this relationship into the xml files and into the java class?
    into the java class for the second table i have:
    public abstract long getId_1();
    public abstract void setId_1(long Id_1);
    public abstract long getId_2();
    public abstract void setId_2(long Id_2);
    public abstract String getField();
    public abstract void setField(String field);
    how must i reference the relation into the bean and into the confdiguration xml files (i use Weblogic 8 and EJB 2.1)
    Thanks

    SRM doesn't use kind of "cockpit" LO-like in ECC.
    Overall picture:
    http://help.sap.com/saphelp_srm40/helpdata/en/b3/cb7b401c976d1de10000000a1550b0/content.htm
    If you setup data flows accordign Business Content of SRM:
    http://help.sap.com/saphelp_nw2004s/helpdata/en/3a/7aeb3cad744026e10000000a11405a/frameset.htm
    Then just perform an init load and schedule the deltas.

  • Need help in extracting value from an xml tag.

    Hi ALL,
    Good Morning to all, i have problem in fetching a value from a xml tag. I have created a xml schema based on the schema i have created a xmltype table and inserted a value to the table. When i am trying to fetch a value from a particular tag i am unable to do so.. Kindly help me to solve this. Here by i am posting all the workings i have done...
    I am using the following client:
    SQL*Plus: Release 10.2.0.1.0 - Production on Mon Jan 31 11:44:59 2011
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
    With the Partitioning, OLAP and Data Mining options
    ////////////////////////////////// XML Schema ///////////////////////
    begin
    dbms_xmlschema.registerSchema(
    'http://www.oradev.com/chipsxml.xsd',
    '<schema xmlns="http://www.w3.org/2001/XMLSchema"
    targetNamespace="http://www.oradev.com/chipsxml.xsd"
    xmlns:samp="http://www.oradev.com/chipsxml.xsd"
    version="1.0">
    <element name="Field1">
    <complexType>
    <sequence>
         <element name="UTI">
              <complexType>
              <sequence>
              <element name = "U01" type = "string"/>
              <element name = "U02" type = "string"/>
              <element name = "U03" type = "string"/>
              <element name = "U03a" type = "string"/>
              <element name = "U03b" type = "string"/>          
              <element name = "U03c" type = "string"/>          
              <element name = "U04" type = "string"/>                    
              <element name = "U05" type = "string"/>                    
              </sequence>
              </complexType>
         </element>
    </sequence>
    </complexType>
    </element>
    </schema>',
    TRUE, TRUE, FALSE, FALSE);
    end;
    ////////////////////////// Table which has multiple Column //////////////////////////
    CREATE TABLE chipsxmltable1 (
    id number, XMLDATA XmlType)
    XMLTYPE XMLDATA STORE AS OBJECT RELATIONAL
    XMLSCHEMA "http://www.oradev.com/chipsxml.xsd"
    ELEMENT "Field1";
    ///////////////////////////////// Insert Query in chipsxmltable //////////////////////////
    INSERT INTO chipsxmltable VALUES(
    xmltype.createxml('<?xml version="1.0"?>
    <samp:Field1 xmlns:samp="http://www.oradev.com/chipsxml.xsd" >
    <UTI>
    <U01>No</U01>
    <U02>Y</U02>
    <U03>Y</U03>
    <U03a>Y</U03a>
    <U03b>Y</U03b>
    <U03c>Y</U03c>     
    <U04>Y</U04>
    <U05>Y</U05>          
    </UTI>
    </samp:Field1>'));
    To show the data as a field with structure:
    1. Query:
    Select * from chipsxmltable1;
    Output:
    ID XMLDATA
    1 <?xml version="1.0"?>
    <samp:Field1 xmlns:samp="http://www.oradev.com/chipsxml.xsd">
    <UTI>
    <U01>No</U01>
    <U02>No</U02>
    <U03>Y</U03>
    <U03a>Y</U03a>
    <U03b>Y</U03b>
    <U03c>Y</U03c>
    <U04>Y</U04>
    <U05>Y</U05>
    </UTI>
    </samp:Field1>
    2. Query: (Both the query displays the same Output)
         SELECT X.xmldata.getClobVal() "XMLDATA" FROM chipsxmltable1 X;
         select extract(XMLDATA, '/Field1').getstringval() "XMLDATA" from chipsxmltable1 x;
    Output:
    XMLDATA
    <?xml version="1.0"?>
    <samp:Field1 xmlns:samp="http://www.oradev.com/chipsxml.xsd">
    <UTI>
    <U01>No</U01>
    <U02>No</U02>
    <U03>Y</U03>
    <U03a>Y</U03a>
    <U03b>Y</U03b>
    <U03c>Y</U03c>
    <U04>Y</U04>
    <U05>Y</U05>
    </UTI>
    </samp:Field1>
    To show the data as a single string without structure using "getstringval()":
    3. Query
         select extract(XMLDATA, '//text()').getstringval() "CHIPS - XML" from chipsxmltable1 x;
    OUtput:
    CHIPS - XML
    NoNoYYYYYY
    To show the data as a single string without structure using "getclobval()":
    4.Query
         select extract(XMLDATA, '//text()').getClobVal() "CHIPS - XML" from chipsxmltable1 x;
    Output:
    CHIPS - XML
    NoNoYYYYYY
    To show the data in a particular tag with/Without structure (Which is not working) using "EXTRACT" function:
    6.Query:
         select extract(XMLDATA, '/Field1/text()').getstringval() "XMLDATA" from chipsxmltable1 x;
         select extract(XMLDATA, '/Field1/UTI').getstringval() "XMLDATA" from chipsxmltable1 x;
         select extract(XMLDATA, '/Field1/UTI/U01').getstringval() "XMLDATA" from chipsxmltable1 x;
         select extract(XMLDATA, '/Field1/UTI/U01/text()').getstringval() "XMLDATA" from chipsxmltable1 x;
    Output:
    CHIPS - XML
    The above queries are not fetching the value.
    To show the data in a particular tag with/Without structure (Which is not working) using "EXTRACTVALUE" function:
    7. Query:
         select extractValue(XMLDATA, '/Field1/UTI') "XMLDATA" from chipsxmltable1 x;
         select extractValue(XMLDATA, '/Field1/UTI/U01') "XMLDATA" from chipsxmltable1 x;
    Output:
    X
    The above queries are not fetching the value.
    My question is:
    How to fetch values from xml tag when the value are inserted through xml schema?
    Apologies if the description is not clear. Kindly let me know if further details are needed. Many thanks for your help.
    Very best regards,
    Godwin Jebakumar C.V.

    Hi,
    You need to declare the namespace of each element used in the XPath expression, like this :
    SQL> select extractvalue( XMLDATA
      2                     , '/samp:Field1/UTI/U01'
      3                     , 'xmlns:samp="http://www.oradev.com/chipsxml.xsd"' ) "XMLDATA"
      4  from chipsxmltable1 x
      5  ;
    XMLDATA
    No
    SQL> select extract( XMLDATA
      2                , '/samp:Field1/UTI'
      3                , 'xmlns:samp="http://www.oradev.com/chipsxml.xsd"'
      4                ).getstringval() "XMLDATA"
      5  from chipsxmltable1 x
      6  ;
    XMLDATA
    <UTI>
      <U01>No</U01>
      <U02>Y</U02>
      <U03>Y</U03>
      <U03a>Y</U03a>
      <U03b>Y</U03b>
      <U03c>Y</U03c>
      <U04>Y</U04>
      <U05>Y</U05>
    </UTI>
    Please see EXTRACT and EXTRACTVALUE documentation :
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14200/functions051.htm#i1006712
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14200/functions052.htm#SQLRF06173
    BTW, "XMLDATA" is a pseudo-column used by Oracle. I don't know if it'll ever cause any conflict but maybe you should rename your column.
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14200/pseudocolumns010.htm#SQLRF00256
    Regards.

  • Need Help To Extract Logo from Flash File .swf

    I have an attached Flash file that is in
    .swf format. There is a N64 logo within this file that I'm
    trying to extract as a
    .png with a transparent background. I've been able to open
    it in a program called
    Flash Decompiler Trillix and in the sub-menus it has the
    logo listed as a frame.
    This is about as far as I have gotten and I'm stuck. Perhaps
    someone else knows how to do this a little easier. I just need to
    find a way to extra the logo that already has a transparent
    background and save it in
    .png format.
    Any help here would be hot." ;)
    Logo Flash
    File .swf

    Hello,
    I ran into a similar problem a few months ago. I have the
    Sothink Flash Decompiler and what I did was turn the SWF back into
    a FLA. I then opened it in Flash and then exported what I wanted as
    a PNG image.
    Decompilers can extract the actual image whether it be jpeg,
    gif, png, etc. But when it's listed as a frame(as you mentioned
    above) then the method above is probably the best way to get it.
    Good luck

  • Need help on extraction of MDM repository data

    I need to take an extract of records from the Customer repository. Total count of the records will be around 25,000 when the filter criteria is applied. As per the requirement I need to select some fields from main table, some from flat look up and few from the qualified look up tables.
    What are the possible ways to take the extract?
    I am using SAP MDM 5.5. I tried using the export option in Data Manager, but the qualified look up field values did not come properly in the file. The whole qualified look up table values came under a single column. So that exported file is not of much use for my requirement.
    Please suggest me some ways.

    Hi Priyanka,
    Suggest you to use SAP MDM Syndicator for extracting data. Please refer the Syndicator document for all the details.
    Thanks,
    Shamir

  • Need help making digital signature field read only if required fields are null

    Using Adobe LiveCycle Designer, I have a digital signature field.  I want to prevent users from being able to digitally sign the pdf if any required fields in the pdf are null or blank.  I'm a newbie to scripting so any detailed help would be greatly appreciated.  The required fields in the pdf include radio buttons, check boxes, text field, etc.  I appreciate any help anyone can provide.
    Thanks

    Exactly how you check a field for being empty depends on what type of field it is. For text fields, you should get the field's value as a string and compare it to an empty string, something like:
    var val = getField("Text1").valueAsString;
    if (val) {
        app.alert("Field is not empty");
    If there is a default value that needs to be changed, you would compare to the default value:
    var f = getField("Text1");
    var val = f.valueAsString;
    if (val !== f.defaultValue) {
        app.alert("Field value is OK");
    For check boxes and radio buttons, you'd compare to the string "Off", which means none in the group is selected.
    For dropdowns (combo boxes) and list boxes, there is normally one value selected, so you would have to get the value and check against the default value (or something else) to see if the field is properly filled in.
    You could place the script there, but I usually use a separate button that I encourage the user to click in order to check the field. The problem with using the Will Save event is you can't prevent the save from happening.
    The script can loop through all of the fields (and test all required ones), or you could set up an array of field names to check.

  • Need help with extracted text

    I am fairly new to CS4 and I extracted low resolution text to place on a new background. The text is important as is but I need to know how to clean up the text and make it better. After I place it one the background, it is not as clear, sharp, and vibrant as I need. I tried doing a color overlay and I also tried placing a style on it(cannot find one good for black text) but still it is not good enough. Any ideas how to make the black text better? I really need it as soon as possible...thanks everyone.
    Melissa

    You may never get it to a good quality.
    Can't you type it out again in a similar font?

  • Hey Guys, just got FCP 7 upgrade, need help with Depth in Field.

    I just got the upgrade and really want to know how to use Depth in Field on video. Could anyone explain or direct me to a video tutorial. Because i bought a whole course from rippletraining.com and it doesn't show how to do this with video. Any suggestions ?

    and it doesn't show how to do this with video.< </div>
    Welcome to the family.
    You can only use DOF with stacked 3D layers in Motion.
    Be sure to try the manuals. Just open the Help system and type in your words.
    bogiesan

  • Need Help! Accidentally moved fields instead of adding!

    I made a mistake when importing and "moved" the files from their original location, into Lightroom instead of "adding" them to lightroom.  Now the original files are in lightroom and no longer in their initial location, I need these files to go back to their original folders, arranged the way I had them.  Exporting and rearranging them the way I had them would be very tedious and I'm trying to avoid that.  Also, when you "move" files into Lightroom, and then "remove" (not delete) them, where do they go?  I'm not finding them in the original folders, recycling bin, nowhere.   Please help.

    Hi iSMH
    Thanks for your help. I was really worried and thought I had lost all my documents, so I brought my ibook to the Apple Care Centre to have them look at it. According to the staff there, I had "corrupted" the software(?). I also had FileVault on,so it took them a while to resolve it. All seems well with my ibook now, but I think I should back up my files. =)
    As for the other posting, I am so sorry about it, as I was new to the Discussion, and realised I had posted my question under the wrong discussion group...
    I am still trying to get to "know" my ibook, but it's great to know that there's a wonderful support group online!
    Thanks, once again!

  • Need help with extracting a faint reflection from a window with Photoshop CS6, from a jpg photo

    I was wondering what tools are needed to be used to extract a clearer image of a reflection in a photo.
    I am using Photoshop CS6 (64 Bit).
    I don't know what else I should add. Please ask, and I will answer as much as I know.
    Regards,
    Isa

    Semaphoric
    I asked the photo owner and was told that they don't want their picture posted in public. So, I can't provide that specific image.
    Perhaps if you may, could you please find a picture of a person reflected in a window (shopfront) and see if you can make the reflection of the person anymore clearer?
    Here, watch this video for a better idea of what I am after: CSI Magic
    I am the first to admit that this video clip is a far-fetched possibility (read, impossible from such a distance and angle), but a reflection from a much closer object (it was of a lady taking a photo around 2 metres/6 feet in front of a shopfront, to get her friend some contact details. She is [not so] clearly visible within the reflection), may be able to grab more of her details from the reflection.
    I almost feel like going out and taking a picture myself to describe the situation more thoroughly, as I believe the way I worded my initial request may be misleading, as chilecayenne seemed to be misled by it. However, if anyone else could take/provide such a photo, and post it up here, I would really appreciate it.

  • Need help with output one field horizontally please

    I know I have seen some ideas and threads about this, but it is not really what I need. I have a report in CR XI that seems to be on the right path. The problem I am having is one field that needs to be in details could provide multiple results (products and services) which duplicates all the records. Some customers I'll have 3 lines, the next 9 ... depending on how many P&S they have.
    What I have done is moved all fields from the details section to group1 which so far seems fine and left my P&S field in details.
    The output is normal:
    prod1
    prod2
    prod3
    prod4
    etc.....
    What I need is this: prod1, prod2, prod3, prod4, etc.
    Any ideas greatly appreciated.
    In the group header add a formula
    WhilePrintingRecords;
    Global StringVar ProductList;
    ProductList := '';
    in the details
    WhilePrintingRecords;
    Global StringVar ProductList;
    If ProductList  = '' then
       ProductList  :=
    else
         ProductList := ProductList & ', ' & ; ''
    In the group footer
    WhilePrintingRecords;
    Global StringVar ProductList;
    ProductList
    Edited by: Terry Mergl on Apr 20, 2010 9:15 PM

    What you have should do it.  Is there an issue?  Please explain in detail, giving sample data, current results, and expected results.
    Carl

  • Need Help to extract information from Windows Security Event log

    Hi Everyone,
    My challenge is to create a script that queries the Security event log for event id 4624 , logon type 2 and 10, then export the result to file, hopefully tab limited.
    I need the time - date - User Account - Workstation - IP address - Logon Type.
    I have had a go, checking out other advice from other questions, but i'm just not getting what I want.
    Kind regards,
    Andrew

    A good point to start is get-eventlog with where clauses.
    For example:
    get-eventlog -log security  | where {$_.eventID -eq 4624}
    So you want to get the entire security log, and then filter it client side? (Some of these logs can be massive).
    I would recommend Get-WinEvent with -FilterHashTable (Filter on the left) which will filter against the log directly.
    http://blogs.technet.com/b/heyscriptingguy/archive/2011/01/24/use-powershell-cmdlet-to-filter-event-log-for-easy-parsing.aspx
    You might have admin rights issues accessing the security logs.
    You're right - my answer was only a first step to try "get-command *event" and eventually get-help.....

  • Need help on multi select field

    Hi ,
    1. I have created a meta datafield which is multiselect. Lets say product list,it lets user to select multiple product.
    2. Now, this feature I have created at the check in form, and the meta data field used is of type "memo".
    3. This meta data field internally uses a "product_list_V" view which is again "muliselect" with option for multiple names separated by comma.
    4. Now when I check in, and uses this meta data field it stores and displays the data in the info page correctly like "product1,product2,product3" in this way.
    4. But internally I am using Id to store not the name for the products.
    5. Now when i search using the query or using the search builder it doesnot pull up the record.
    6. But if i give the same pattern of the value it puuls up the result. For example, if the value(product id) stored is 5,9,12
    and I give this in the query like xIndustry <matches> `5` <OR> xIndustry <matches> `9`<OR> xIndustry <matches> `12`----it doesnot pull up the record.
    7. But if I give the query as xIndustry <matches> `5,9,12` same pattern it pull up the record.
    8. Since the record has the id it should pull up if any match found as per to the id which doesnot happen.
    Can any one tell me or guide me on how to implenet this.
    Need very urgently.
    Thanks,
    Abhijit

    Hi Malky,
    If we use "contains" UCM throws error line below
    Content Server Request Failed
    Unable to retrieve search results. Unable to retrieve search results. Unable to create result set for query 'SELECT * FROM (SELECT q.*, RowNum rowIndex FROM (SELECT dDocName, dDocTitle, dDocType, dRevisionID, dSecurityGroup, dDocAuthor, dDocAccount, dRevLabel, dFormat, dOriginalName, dExtension, dWebExtension, dInDate, dOutDate, dPublishType, dRendition1, dRendition2, VaultFileSize, WebFileSize, URL, dFullTextFormat, dFullTextCharset, DocMeta.*
    FROM IdcColl2, DocMeta
    WHERE IdcColl2.dID=DocMeta.dID AND ((((CONTAINS(xIndustry, '{5}') > 0))) AND (((UPPER(dDocAccount) LIKE UPPER('') AND dDocAccount IS NOT NULL) OR (dDocAccount IS NULL)))) ) q WHERE ROWNUM < 21) WHERE RowIndex >= 1'. ORA-20000: Oracle Text error:
    DRG-10599: column is not indexed
    As well as "contains" word is not in the UCM search query builder form. Only we have the options are matches, starts, ends, Substring, Not Matches, Not Substring.
    Please let me know whether we need to install any component to get the "contains" word.
    Thanks
    Abhijit

  • Hi I need help with extracting audio.

    Quick question, I have this music track that is basicaly a repeating beat with guitar riffs that play on top. Is there any way, using Soundbooth, that I can extract the two elements (Beat/Guitar) into seperate tracks so that I could edit them seperatly?
    Thanks
    John

    It will definitely be difficult with Soundbooth, and depending on the source file, most other applications as well.  Soundbooth doesn't have a Center Channel Extraction tool like Audition, so your options would be to use a different tool in an unexpected manner, or to perform some time-consuming manual extraction.
    If the file is such that the beat exists on one channel and the guitar on the other, select File > Export > Channels to Mono Files.  This is probably not the case, unless it's an old Dylan or Beatles recording.
    Second, I might try selecting one loop of the beat with no guitar, and capturing this as a Noise Print.  (Find this under Tasks > Clean Up Audio.)  Once captured, select the entire file and apply a noise reduction.  There is a (very) slight possibility this process will isolate the guitar.  after saving the guitar as a new file, undo the noise reduction so you have your original file again, open the guitar file and capture the entire thing as a noise print, and apply this to the original file in Noise Reduction.  Ideally, you would be left with the beat.  Place these two files on separate tracks in Multitrack and you might get something that resembles the original track, but that allows you to modify levels or place effects on the beat and guitar separately.
    Now, odds are very high that this just won't work, either.  The Noise Reduction tool is not a scalpel for removing sounds, but is a fuzzy and dynamic tool to remove audio data that doesn't appear to belong.
    You could also go back to your original file, open Soundbooths Spectral Frequency view be selecting Tasks > Remove a Sound, then use the lasso tool to painstakingly select the orange and yellow areas that represent the guitar parts, cut this selection and paste it into a new file of the same duration.  When layered in multitrack, they would sound identical to the original file, but you'd have some control over the beat and the guitar part.  This however, is still not ideal since any frequencies in the beat that overlapped the guitar would be moved to the guitar track.  It would also be a TON of work.
    So to save you time, I would highly recommend using a more advanced audio editing tool such as Audition.  If you're using Windows, you can download a free 30-day trial at adobe.com.  Using the center channel extractor effect, you can zero in on where the guitar part is panned in the stereo field and strip it out to a new file.
    Good luck

Maybe you are looking for

  • How to change billing date in S1 - cancellation billing document

    Dear Friends, Could you please tell How to change billing date in S1 - cancellation billing document which is even not released to accounting & in gray mode. Is it possible? Thanks in advance. Ranjan

  • Row height in tableheader

    hi how can i change row height in tableheader of JTable? i cant find any method to change it. any idea? thx rsobies

  • Audit Tool for tracking

    Hi, Is there any audit tool which can provide us with the details fo the transaction code being used by a particular user along with the data being accessed / activity being performed by using the said t-code. Kindly let me know as soon as possible.

  • JComboBox: Trapping selection of items

    I want to select items in a non-editable JComboBox by: a) scrolling through and selecting with the mouse; b) scrolling through with mouse or arrow keys and hitting [return]; c) using a KeySelectionManager to find an item be entering search characters

  • Join conditions ausp and cawnt

    Hi all, I have the following SELECT for gathering data from AUSP and CAWNT tables: LOOP AT it_report INTO wa_report.       SELECT atwrt objek ausp~atinn atwtb FROM ausp         INNER JOIN cawnt         ON auspatinn = cawntatinn         AND auspatzhl