Extractor (2lis_11_vaitm) does not takes new field created with new domain

Hi,
I created a new data element and domain in ECC
Source system ECC:
1. I created a new Z data element and Z domain (char 60) in ECC.
2. I created a new Zappend Strcuture and added a new field with the above data element to a extract structure of 2LIS_11_VAITM.
3. In RSA6, I unchecked hide column and checked Field column.
4. I wrote an ABAP code in CMOD to populate tis field.
5. I can see the data in that field in RSA3 of this extractor.
BI side:
1. I replicated the datasource.
2. I could see that field in the fields tab of the datasource. (NOTE: In the field tab, against the column u201Ctransferu201D that field value is unchecked.)
3. When I check the PSA table, I donu2019t see this field.
4. Plus I donu2019t see this field in the right hand side of the update rule also (3.5 flow) or in the transformation (7 flow).
I unchecked the field column and activated the datasource in RSA6 and replicated it in BI. Then also the same problem.
Is there anything that needs to be done for this Datasource so that I can get this field in the update rule and transformation.

Hello.
I was checking this issue, and all the enhancements with fields need to have a customer-exit to populate this fields,otherwise they will come BLANK.
As those fields are not delivered by SAP and are not in the original datasource(RSA5) from Business content, this is related to customer's enhancements.We can only see these fields in the datasource enhanced by customer(RSA6).
To have the proper values assigned to those field, you should write an User Exit program. This program must be created to fill the enhanced fields as they are not filled in the same way as the SAP delivered
fields.More details about this process you can check note 576886.
576886-Change to user-defined fields not extracted.
This note is an example for some datasources regarding what need to be done.
Thanks.
Walter Oliveira.

Similar Messages

  • CSS11000 does not take config after reboot with new image

    CSS11000 was upgraded with new IOS image.
    However, it did not take the current config (which was 'wr m') when rebooted from the new image. It seemed to have taken the config from another disk partition -?!. We had to revert back to the old boot image....then it worked (with the right config).
    Being unfamiliar with CSS's, I'd appreciate any expert's hints on this. Thanks!

    When you upgrade/downgrade to a version you have previously run, the CSS will restore the config you had when you ran that version the last time.
    I haven't bothered to check the docs or figure out myself, how to disable this behavior.
    I just get a copy of the config via FTP before i boot the new version, and then i FTP it back and reboot again, this usually works although i have seen it dump the config ones.

  • The .blueMultiplier (movie clip color property) does not take new value..?

    It seems I can not assign a new value to the .blueMultiplier (a movie clip color property) using AS3 ????!!!
    I have a basic movie clip 'mymc' in my scene, and this AS3 code:
    trace (mymci.transform.colorTransform.blueMultiplier);
    mymc.transform.colorTransform.blueMultiplier = 0;
    trace (mymc.transform.colorTransform.blueMultiplier);
    Values that are returned:
    1
    1
    What am I missing?
    Thanks.

    you can't assign transform/colorTransform properties directly.  you update a transform/colorTransform instance and assign your object's transform/colorTransofrm instance to be the updated transform/colorTransform instance:
    var ct:ColorTransform = mymc.transform.colorTransform;
    ct.blueMultiplier = 0;
    mymc.transform.colorTransform = ct;

  • Kodo does not recognize when query created with extent created with different PM

    Extent ext = pm1.getExtent(ContactTarget.class, false);
    Query qu = pm2.newQuery(ContactTarget.class, ext);
    Collection c = (Collection)qu.execute();
    following code end up with SQL error (pm1 and pm2 are from different
    factories) instead of more meaningful error

    hi,
    We too facing the same problem in our code , our database verion is 10.2.0.3.0 .
    But in oracle article it was stated that the problem is resolved in 10g release 1 but we are still facing the problem
    our sample code is
    SELECT mtl.segment1,
    mtl.description,
    primary_uom_code,
    item_type,
    buyer_id,
    ( SELECT mtl.organization_id org_id, LTRIM (MAX (SYS_CONNECT_BY_PATH (organization_code, ',')),
    FROM (SELECT organization_code,
    ROW_NUMBER () OVER (ORDER BY organization_name)
    cur_row,
    ROW_NUMBER () OVER (ORDER BY organization_name)
    - 1
    prev_row
    FROM org_organization_definitions org,
    mtl_system_items_b mtc
    WHERE org.organization_id = mtc.organization_id
    AND MTC.INVENTORY_ITEM_ID = MTL.INVENTORY_ITEM_ID
    AND operating_unit = :p_org
    AND ORG.ORGANIZATION_ID <> MTL.ORAGANIZATION_ID)
    START WITH cur_row = 1
    CONNECT BY PRIOR cur_row = prev_row)
    FROM mtl_system_items_b mtl
    in ablove code we are geeting error invalid identifier MTL.ORAGANIZATION_ID (in inner subquery)
    Regards
    Nitin

  • I need to reinstall my adobe creative suite 6 on a new MAC, which does not take CDs. How do I do tho

    I need to install my adobe creative suite on a new MAC, which does not take CDs.
    Any clues

    Is your CS6 serial number for Windows or Mac? If Windows then you must apply for a platform swap to get a Mac serial number for CS6.
    If you already have a CS6 Mac serial number then download CS6 from
    http://helpx.adobe.com/x-productkb/policy-pricing/cs6-product-downloads.html

  • Data in cell does not take effect immed

    Hi I have JTable with all cells editable.
    Problem is when user click on a cell and enter the data. That data does not get immediately take effect in table model unless user click on some other cell.
    How can i make data immediately available when for example user click on Change button and user does not have to click on any other cell.
    eg...row has 4 columns.....123....456....date....date
    if user changes 123 to 321...and click on CHange button i have in panel. ..it does not take effect.....user has to click on some other cell ie eg 456 cell.....then press Change button.

    in preparetable where i set the model, create columns, set renderer and editors. I even tried at the end of that method..ie added this line....still did not work....please help
      public void prepairLnnTable() {
        lnnTableModel = new CellSiteLNNTableModel();
        lnnTable.setModel(lnnTableModel);
        lnnTableModel.addColumn("AAA");
        lnnTableModel.addColumn("BBB");
        lnnTableModel.addColumn("Effective From");
        lnnTableModel.addColumn("Effective To");
        ccpd6.setAllowedCharacters("0123456789");
        ccpd7.setAllowedCharacters("0123456789");
        for(int k = 0; k < lnnTableModel.getColumnCount(); k++) {
          TableColumn col = lnnTable.getColumn(lnnTableModel.getColumnName(k));
          DefaultTableCellRenderer textRenderer = new DefaultTableCellRenderer();
          JTextField textColumn = new JTextField();
          TableCellRenderer renderer = null;
    //      TableCellEditor editor = null;
          if(k == CellSiteLNN.AAA) {
            renderer = textRenderer;
            DefaultCellEditor editor = new DefaultCellEditor(textColumn);
            editor.setClickCountToStart(1);
            col.setPreferredWidth(25);
            textColumn.setDocument(ccpd6);
            col.setCellEditor(editor);
          if(k == CellSiteLNN.BBB) {
            renderer = textRenderer;
            DefaultCellEditor editor = new DefaultCellEditor(textColumn);
            editor.setClickCountToStart(1);
            col.setPreferredWidth(25);
            textColumn.setDocument(ccpd7);
            col.setCellEditor(editor);
          if(k == CellSiteLNN.EFF_FROM) {
            renderer = new DateCellRenderer();
            TableCellEditor editor = new DateCellEditor();
            col.setPreferredWidth(180);
            col.setCellEditor(editor);
          if(k == CellSiteLNN.EFF_TO) {
            renderer = new DateCellRenderer();
            TableCellEditor editor = new DateCellEditor();
            col.setPreferredWidth(180);
            col.setCellEditor(editor);
          col.setCellRenderer(renderer);
    //      col.setCellEditor(editor);
    lnnTable.putClientProperty("terminateEditOnFocusLost", Boolean.TRUE);
      dFormat.setTimeZone(TimeZone.getDefault());
      dFormat.setLenient(false);
      }

  • Getting this error while opening a folder : This file does not have a program associated with it for performing this action. Please install a program or, if one is already installed, create an association in the Default Programs control panel

    Hi,
    While trying to open a folder on my Windows 7 Home Premium, an error comes "This file does not have a program associated with it for performing this
    action.  Please install a program or, if one is already installed, create an association in the Default Programs control panel." I tried searching on the net but did not get great support for the issue when it happens with folder opening.

    Hi Nikunj Shah,
    First, I suggest you download
    Microsoft Safety Scanner or
    Malicious Software Removal Tool to run a full scan.
    The error messages here seems to be caused by the corrupted registries, which related with the folder association.
    You may take a try to merge the following registry settings to reset the folder association, before that, remember to backup your registry settings first:
    How to back up and restore the registry in Windows
    Copy and paste the following commands into Notepad, and save it to a .reg file:
    =================
    Windows Registry Editor Version 5.00
    [HKEY_CLASSES_ROOT\Folder]
    "ContentViewModeLayoutPatternForBrowse"="delta"
    "ContentViewModeForBrowse"="prop:~System.ItemNameDisplay;~System.LayoutPattern.PlaceHolder;~System.LayoutPattern.PlaceHolder;~System.LayoutPattern.PlaceHolder;System.DateModified"
    "ContentViewModeLayoutPatternForSearch"="alpha"
    "ContentViewModeForSearch"="prop:~System.ItemNameDisplay;System.DateModified;~System.ItemFolderPathDisplay"
    @="Folder"
    "EditFlags"=hex:d2,03,00,00
    "FullDetails"="prop:System.PropGroup.Description;System.ItemNameDisplay;System.ItemTypeText;System.Size"
    "NoRecentDocs"=""
    "ThumbnailCutoff"=dword:00000000
    "TileInfo"="prop:System.Title;System.ItemTypeText"
    [HKEY_CLASSES_ROOT\Folder\DefaultIcon]
    @=hex(2):25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52,00,6f,00,6f,00,74,00,25,\
      00,5c,00,53,00,79,00,73,00,74,00,65,00,6d,00,33,00,32,00,5c,00,73,00,68,00,\
      65,00,6c,00,6c,00,33,00,32,00,2e,00,64,00,6c,00,6c,00,2c,00,33,00,00,00
    [HKEY_CLASSES_ROOT\Folder\shell\explore]
    "MultiSelectModel"="Document"
    "ProgrammaticAccessOnly"=""
    "LaunchExplorerFlags"=dword:00000018
    [HKEY_CLASSES_ROOT\Folder\shell\explore\command]
    "DelegateExecute"="{11dbb47c-a525-400b-9e80-a54615a090c0}"
    [HKEY_CLASSES_ROOT\Folder\shell\open]
    "MultiSelectModel"="Document"
    [HKEY_CLASSES_ROOT\Folder\shell\open\command]
    "DelegateExecute"="{11dbb47c-a525-400b-9e80-a54615a090c0}"
    @=hex(2):25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52,00,6f,00,6f,00,74,00,25,\
      00,5c,00,45,00,78,00,70,00,6c,00,6f,00,72,00,65,00,72,00,2e,00,65,00,78,00,\
      65,00,00,00
    [HKEY_CLASSES_ROOT\Folder\shell\opennewprocess]
    "MUIVerb"="@shell32.dll,-8518"
    "MultiSelectModel"="Document"
    "Extended"=""
    "LaunchExplorerFlags"=dword:00000003
    "ExplorerHost"="{ceff45ee-c862-41de-aee2-a022c81eda92}"
    [HKEY_CLASSES_ROOT\Folder\shell\opennewprocess\command]
    "DelegateExecute"="{11dbb47c-a525-400b-9e80-a54615a090c0}"
    [HKEY_CLASSES_ROOT\Folder\shell\opennewwindow]
    "MUIVerb"="@shell32.dll,-8517"
    "MultiSelectModel"="Document"
    "OnlyInBrowserWindow"=""
    "LaunchExplorerFlags"=dword:00000001
    [HKEY_CLASSES_ROOT\Folder\shell\opennewwindow\command]
    "DelegateExecute"="{11dbb47c-a525-400b-9e80-a54615a090c0}"
    [HKEY_CLASSES_ROOT\Folder\ShellEx\ContextMenuHandlers\BriefcaseMenu]
    @="{85BBD920-42A0-1069-A2E4-08002B30309D}"
    [HKEY_CLASSES_ROOT\Folder\ShellEx\ContextMenuHandlers\Library Location]
    @="{3dad6c5d-2167-4cae-9914-f99e41c12cfa}"
    [HKEY_CLASSES_ROOT\Folder\ShellEx\ContextMenuHandlers\Offline Files]
    @="{474C98EE-CF3D-41f5-80E3-4AAB0AB04301}"
    [HKEY_CLASSES_ROOT\Folder\ShellEx\DragDropHandlers\{BD472F60-27FA-11cf-B8B4-444553540000}]
    @=""
    [HKEY_CLASSES_ROOT\Folder\ShellEx\PropertySheetHandlers\BriefcasePage]
    @="{85BBD920-42A0-1069-A2E4-08002B30309D}"
    [HKEY_CLASSES_ROOT\Folder\ShellEx\PropertySheetHandlers\Offline Files]
    @="{7EFA68C6-086B-43e1-A2D2-55A113531240}"
    [-HKEY_CLASSES_ROOT\Folder\ShellNew]
    [HKEY_CLASSES_ROOT\Folder\ShellNew]
    "Directory"=""
    "IconPath"=hex(2):25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52,00,6f,00,6f,00,\
      74,00,25,00,5c,00,73,00,79,00,73,00,74,00,65,00,6d,00,33,00,32,00,5c,00,73,\
      00,68,00,65,00,6c,00,6c,00,33,00,32,00,2e,00,64,00,6c,00,6c,00,2c,00,33,00,\
      00,00
    "ItemName"="@shell32.dll,-30396"
    "MenuText"="@shell32.dll,-30317"
    "NonLFNFileSpec"="@shell32.dll,-30319"
    [HKEY_CLASSES_ROOT\Folder\ShellNew\Config]
    "AllDrives"=""
    "IsFolder"=""
    "NoExtension"=""
    ==================
    Once done, right-click the REG file and choose Merge. Alternately, you can open the Registry Editor and then using the
    Import option from the File menu, to merge the REG file contents.
    Let me know if you need any further help.
    Best regards
    Michael Shao
    TechNet Community Support

  • Form does not show "new" records from SQL Database

    I have a PDF form that pulls data from a SQL Server.  The fields in
    the PDF are populated from the database after selecting a specific
    record from a drop down and then clicking on a button labeled "Fill".
    The problem is that the dropdown does not display new records that
    have been recently added to the database.  I have to open the form up
    in designer then save it, (*note - I change nothing at this point.)
    Then when the form is opened back up in Adobe the dropdown show all
    the records including the new ones.  I even put a manual refresh on
    form to try and fix this an it did not help. Seriously stumped.
    Any help is greatly appreciated.
    Here is my code for the dropdown.
    ++++++++++++++++++++++++++++
    topmostSubform.Page1.JobSelect::initialize - (JavaScript, client)
    var sDataConnectionName = "BBCC"; // example - var sDataConnectionName
    = "Test";
    var sColHiddenValue = "ContractAdmin_Key"; // example - var
    sColHiddenValue = "Dept_ID";
    var sColDisplayText = "JobDescription"; // example - var
    sColDisplayText = "Dept_ID"
    // Search for sourceSet node which matchs the DataConnection name
    var nIndex = 0;
    while(xfa.sourceSet.nodes.item(nIndex).name != sDataConnectionName)
    nIndex++;
    var oDB = xfa.sourceSet.nodes.item(nIndex);
    oDB.open();
    oDB.first();
    // Search node with the class name "command"
    var nDBIndex = 0;
    while(oDB.nodes.item(nDBIndex).className != "command")
    nDBIndex++;
    // Backup the original settings before assigning BOF and EOF to stay
    var sBOFBackup =
    oDB.nodes.item(nDBIndex).query.recordSet.getAttribute("bofAction");
    var sEOFBackup =
    oDB.nodes.item(nDBIndex).query.recordSet.getAttribute("eofAction");
    oDB.nodes.item(nDBIndex).query.recordSet.setAttribute("stayBOF",
    "bofAction");
    oDB.nodes.item(nDBIndex).query.recordSet.setAttribute("stayEOF",
    "eofAction");
    // Clear the list
    this.clearItems();
    // Search for the record node with the matching Data Connection name
    nIndex = 0;
    while(xfa.record.nodes.item(nIndex).name != sDataConnectionName)
    nIndex++;
    var oRecord = xfa.record.nodes.item(nIndex);
    // Find the value node
    var oValueNode = null;
    var oTextNode = null;
    for(var nColIndex = 0; nColIndex < oRecord.nodes.length; nColIndex++)
    { if(oRecord.nodes.item(nColIndex).name == sColHiddenValue)
    { oValueNode = oRecord.nodes.item(nColIndex); } else
    if(oRecord.nodes.item(nColIndex).name == sColDisplayText) { oTextNode
    = oRecord.nodes.item(nColIndex); } }
    while(!oDB.isEOF())
      this.addItem(oTextNode.value, oValueNode.value);
       oDB.next();
    // Restore the original settings
    oDB.nodes.item(nDBIndex).query.recordSet.setAttribute(sBOFBackup,
    "bofAction");
    oDB.nodes.item(nDBIndex).query.recordSet.setAttribute(sEOFBackup,
    "eofAction");
    // Close connection
    oDB.close();
    ++++++++++++++++++++++
    Here is code for the refresh button
    +++++++++++++++++++++
    topmostSubform.Page1.Button27::click - (JavaScript, client)
    sourceSet.BBCC.requery();
    +++++++++++++++++++++

    pguerett wrote:
    The other thing that might be happening is a refresh issue on the DropDownList. Try adding the command xfa.layout.relayout() after the database connection has been closed.
    Paul
    Good catch Paul!  Would you believe that I have been trying to get this resolved for almost two years! Works perfect now.
    Thank you,
      - Eric

  • Field KNVV-CHSPL does not exist in field status tables (TMOD*)

    Hi Gurus,
    Wile creating Customer master record at Tc= XD01 the following error coming as
    "Field KNVV-CHSPL does not exist in field status tables (TMOD*)"
    Plz help me its  urgent.
    Vinay

    Hi
    KNVV is the customer sales data table and CHSPL is the field name called Batch Split Allowed
    My advice is to deselect the field name from the table and test it by creating it once again ...
    Bobbili

  • TS3989 Mssage when opening Photo Stream on-"This file does not have a program associated with it for performing this action. Please install a program or, if one is already installed, create an association in the Default Programs control panel" Help!!!

    Mssage when opening Photo Stream on-"This file does not have a program associated with it for performing this action. Please install a program or, if one is already installed, create an association in the Default Programs control panel" Help!!!

    You are posting in the "icloud on my mac" forum, but your profile mentions Windows.  If using a mac, you need to have iphoto or aperture installed in order to receive new photos via photo stream.  If using windows, try posting in the iCloud on a PC forum.  You'll get better help there.
    https://discussions.apple.com/community/icloud/icloud_on_my_pc

  • Management Studio 2008 does not refresh after table create / alter

    hello
    Management Studio 2008 does not refresh after table create / alter, why?
    f5 / refresh button does not work in "Object Explorer".... i always need the restart the whole application to see any changes, this is strange...
    regards, jan

    Hi jm,
    I’m writing to follow up with you on this post. Was the problem resolved after performing Vishal ‘s steps? If you are satisfied with our solution, I’d like to mark this issue as "Answered". Please also feel free to unmark the issue, with any new findings
    or concerns you may have.
    Thanks,
    Sofiya Li
    Sofiya Li
    TechNet Community Support

  • I can not create an Installer, After install the Vision Builder Demo and then uninstall it. I can not create a Labview installer anymore, it asks me for a Vision Builder Installer, even if My Labview program does not have nothing to do with it...

    I can not create an Installer on LabView, After install the Vision Builder Demo and then uninstall it. I can not create a Labview installer anymore, it asks me for a Vision Builder Installer, even if My Labview program does not have nothing to do with it...
    Solved!
    Go to Solution.

     Hi Shada this can happen if you are including additional installers to your installer for example DAQmx. When you are doing this the installer has to include other files like MAX (Measuremente and Automation Explorer). Probably when you installed Vision Builder it updated MAX, so when your installer is trying to Include MAX, its asking for the source where it was installed in your computer in this case Vision Builder.
     Here you can cache the information so its not asked again, or you can download a newer version fo DAQmx, so it will update MAX and change de dependecy.
     You can find more details about this issue in this KB:
    KnowledgeBase 3S88PJMY: Why Do I Get A "Missing Distribution" Error When Trying to Build an Installe...
    And for keeping a copy here is more info:
     How Do I Stop the Missing Distribution Notification Each Time I Build An Installer?
    Best Regards
    Benjamin C
    Senior Systems Engineer // CLA // CLED // CTD

  • I am not able to login to my applet as the login dialog does not take the focu

    In the login dialog of the applet it does allow the user to enter the password in to the field. Password field does not takes the focus. I tried with JTextfield and it is also having the same problem.
    == This happened ==
    Every time Firefox opened
    == When in installed 3.5.9 version. It is ok with 3.0 version

    Can you use the Tab key?
    See also [[Pressing Tab key does not select menus or buttons]]
    http://kb.mozillazine.org/accessibility.tabfocus

  • Virtual chars does not take part in update rules

    Hi
    Friends my question is Virtual Chars Does not take part in update rules than why to include it in data target??? directly we can include it at query designer .
    Thanks
    Asim

    Hi,
    Adding a charachteristics is to have a place holder in your data target. In virtual char you make use of this field memory pointer to populate the data for this field.
    Hope this helps for you.
    Thanks,
    Arun

  • My canon 1200D says busy in AF mode and does not take picture, and takes blurr images in MF mode.

    I had recenly bought 1200D camera and i am new to DSLR camera. Recently i had used camera in beach side and now find some vapours in lens and camera window. It does not take pics in AF mode and shows busy message. It takes pics which are blurr in MF mode.
    What do i do now please suggest

    "...  some vapours ..."  
    Whoa, there, did you get it wet?  Wettness and a Rebel don't do well together. 
    EOS 1Ds Mk III, EOS 1D Mk IV EF 50mm f1.2 L, EF 24-70mm f2.8 L,
    EF 70-200mm f2.8 L IS II, Sigma 120-300mm f2.8 EX APO
    Photoshop CS6, ACR 9, Lightroom 6

Maybe you are looking for

  • JDev 9.0.3.5 : How to get the value of an item on a page in the controller

    Hi, In the processFormRequest part of my page controller, when the user clicks on Apply, I need to pass the value(s) entered by the user, to a PL/SQL stored procedure. The user enters a value for a field called "FirstName" on the page. I then need to

  • Installing 32 bit Office 2013 when 64 bit Office 2003 is already on my computer

    I need to install Office Home and Business 2013 in 32 bit, and I already have Office 2003 64 bit on my computer. It sounds like it will automatically install 64 bit if that is what is what already on there. What is the best way to get Outlook, Excel

  • Adobe InDesign CS5 Has Stopped Working (installation issue)

    Please allow me to preface this by saying that this situation is RESOLVED, but I wish to share what happened to me with others for information purposes as I couldn't find anything regarding this issue online last night (mind, I was quite exhausted so

  • Show files in browser with JSF

    Hi, I'm trying to show several kinds of files in browser, but I still haven't been successful in it, it only show the binarys in browser. This my portion of code where I'm working it. In the example I'm trying too show a pdf's file but it could be, j

  • How to upload image from a folder thro JSP

    Hi, I am CBK Varma,and I am developing one application, where I have to display images in my webpage, from a specific folder that should keep on changing every 10 sec.. ... how to upload these image files to my page with timing..means afterr 10 sec ,