Import  issue with Auto-id in Qualifier table

Hi,
I am trying to load Customer_contact table in MDM5.5 sp4 from R3.
Since SAP-Id is generated in R3, initially portal will send all data to R3 w/o SAP-id but with the MDM-Auto-id.
In return from R3,MDM receives the SAP-id and Contact-id against this MDM-id for update.
In conversion,I am getting "Error in Look uptable" "Internal Error"  message to load this file in Main table.
Is there any workaround to map qualifier table with a auto-id in Main table?
This auto-id needs to be non-qual for portal to create the initial record in MDM.But since this is a non-qual fld and we are not able to map it in main table giving "Internal error" . It is my guess.
Appreciate your idea and help
-reo

The issue was fixed after dropping the calculated fld as Non-qual one which was giving problem since required to be mapped in Main table.

Similar Messages

  • Importing issues with Final Cut Pro X. Green flash and twitches while play back

    Hello, I'm having some importing issues with Final Cut Pro X and I can't find any solution whatsoever. Perhaps my importing settings are wrong?
    Anyways, I've done a lot of recordings on eye TV and HD PVR with some videos that are about 3 hours long. I exported them into H.264 files, which turns them into mpeg-4 files with AAC audio. Then I import them into final cut pro X and I notice it takes a long time for them to render the videos and I notice that there are some green screens and twitches while I play through the video.
    Here is a screenshot of the green screen that I'm talking about:
    [URL=http://imageshack.us/photo/my-images/688/screenshot20130409at338.png/][IMG]http://img688.imageshack.us/img688/4537/screenshot20130409at338.png[/IMG][/URL]
    Could it be my 2 video graphics card that is causing this kind of issues? Or is there any solution to fix this?
    In the past, I've used iMovie 09 and it worked out perfectly. However, the new iMovie 11 is terrible because it automatically optimzie my 3 hour long videos into making the importing process to (144 hours long to import). Is there any way to get iMovie 09 back or am I stuck on dealing with this Final Cut Pro X issues?
    More information:
    My Hauppauge HD PVR settings are set to custom. Video Constant Bit Rate, the average bit rate: 13.5 Mbps. The audio is AAC.
    My project settings for video properties is set to custom, 720P HD Format, 1280 x 720 Resolution and 30P Rate. The audio and render properties is set to custom, audio channels is stereo, audio sample rate is 48kHz and the Render Format is Apple ProRes 422.
    I export the video as a quicktime movie. The export setting is H.262.
    The summary of the export is:
    File type: Quicktime movie
    Estimated size: 397GB
    H.264, Width and height: 1280 x 720. Framte rate: 30 fps

    My Hauppauge HD PVR settings are set to custom. Video Constant Bit Rate, the average bit rate: 13.5 Mbps. The audio is AAC.
    My project settings for video properties is set to custom, 720P HD Format, 1280 x 720 Resolution and 30P Rate. The audio and render properties is set to custom, audio channels is stereo, audio sample rate is 48kHz and the Render Format is Apple ProRes 422.
    I export the video as a quicktime movie. The export setting is H.262.
    The summary of the export is:
    File type: Quicktime movie
    Estimated size: 397GB
    H.264, Width and height: 1280 x 720. Framte rate: 30 fps

  • Lightroom 5 auto import issues with nikon d90

    Hoping someone can help answer my question - I am wondering if Lightroom 5 has any issues with the auto import or tethering feature using a Nikon d90? I was using Lightroom 2 and the auto import feature has no issues with my d90. After I installed Lightroom 5 (Cloud App) and ran it for the first time, the first thing I used was the tethering feature and it worked great for 4 shots. I turned my camera off and then back on again and LR would not recognize my camera any longer for tethering. What's strange is that it will detect it for "Importing from Device" option. So, I went to plan two which was to auto import and that wasn't working at all. I am at a loss. I have a shoot coming up this weekend and need for one of these options to work. Any help is appreciated!!!

    I use a D90, but I have never tried tethered shooting with it. Other users might have some suggestions for you, but looking at the list of supported cameras for tethered shooting the D90 is not "officially" supported in Lightroom. So you're probably on your own to find solutions. I know this isn't a lot of help.

  • Issue with DB Adapter involving multiple tables

    Hi,
    Am facing an issue with DB Adapter with multiple tables. Here are the details.
    I have 4 tables. Header, Details,Products and Devices. The relationship is defined as follows:
    Header has 1:M relationship with Details.
    Details has 1:M relationship with Products.
    Products has 1:M relationship with Devices.
    I want to select the details from all the tables for a particular header_id and detail_id. Defined 2 parameters and query is created with parameters.
    SELECT DISTINCT t0.FILE_NAME, t0.UNIQUE_SEQUENCE_NUMBER, t0.HEADER_COUNT, t0.TOTAL_DEVICE_COUNT, t0.FILE_DATE, t0.FILE_SEQ_NUMBER, t0.DEVICE_COUNT, t0.PHONE_TYPE, t0.PHONE_OWNERSHIP, t0.TRANSACTION_TYPE, t0.PURCHASE_ORDER_NUMBER, t0.CUSTOMER_ID, t0.CUSTOMER_DEST_SUFFIX, t0.LOCATION_DESTINATION, t0.MASTER_FACTORY_ORDER, t0.MASTER_FACTORY_ORDER_LINE_NUM, t0.ENT_ORDER_NUMBER, t0.DELIVERY_IDENTIFICATION_NUM, t0.UEDF_REVISION_NUM, t0.STATUS, t0.INBOUND_BPEL_INSTANCE_ID, t0.ERROR_DESCRIPTION, t0.INBOUND_FILE_VERSION, t0.CREATED_BY, t0.CREATION_DATE, t0.UPDATED_BY, t0.UPDATE_DATE FROM EDF_HEADER_STG_INT t0, EDF_DETAILS_STG_INT t1 WHERE (((t0.FILE_NAME = #file_name) AND (t1.EDF_SERIAL_TYPE = #prod_type)) AND (t1.UNIQUE_SEQUENCE_NUMBER = t0.UNIQUE_SEQUENCE_NUMBER))
    I expect the DB Adapter to retrieve the records for the parameters passed. i.e only those records from details table which matches with the parameter I passes in (t1.EDF_SERIAL_TYPE = #prod_type) . But I see that the DB Adapter retrieves all records from the details table for a particular unique_sequence_number(unique_sequence_number is primary key for headers table and foreign key for details table). Could you pls tell me how can I retrieve only selected records from the details table?
    Regards,
    Meenu

    Yes. When I run this query in DB, I get one record . While defining DB Adapter, I have imported 4 tables and also defined the relationship between the tables. In my case, column unique sequence number is primary key of headers table and foreign key of details table.The above select query is generated by the DB Adapter for the parameters I have passed in.
    My data is as follows:
    Headers table:
    file_name uniq_seq_num
    file_1.xml 220
    Details table
    product_id unique seq num edf_prod_type
    111 220 A
    112 220 B
    113 220
    Now, I call DB Adapter with parameters 'file_1.xml' (file_name)and 'A'(prod_type). I expect the DB adapter to retrieve only one record with product_id 111 in the detailscollection. But I see that the adapter retrieves all records from the details table without considering the value of prod_type.
    Edited by: user13276819 on Mar 19, 2012 6:32 AM

  • Issue with the partialTrigger on ADF Table

    Jdeveloper Version 11.1.2.3.0
    I have replicated issue with partialTrigger on the table component. Sample application can be downloaded from here . It needs HR schema to run.
    In below sample pageFragment, I can try refreshing adf table in two ways
    1. Set addEmployee button's id in partialTrigger of ADFTable component.
    2. Set addEmployee button's id in partialTrigger of PanelBox component.
    Note the difference - 1st one doesn't work where as 2nd works fine. Do we have any additional constraints when refreshing ADF table using
    partialTrigger ?
    I replicated the usecase in below example :
    PageFragment Structure -
    PanelBox                         
    |                              
    |__ ADF Table                         
    |                              
    |__toolbar facet                    
    |                              
    |__ addEmployee button                
    PageFragment Code
    <af:panelBox text="PanelBox2" id="pb1">
    <f:facet name="toolbar">
    <af:commandButton actionListener="#{bindings.addEmployee.execute}" text="addEmployee2"
    disabled="#{!bindings.addEmployee.enabled}" id="cb1" partialSubmit="true"/>
    </f:facet>
    <af:table value="#{bindings.EmployeesView1.collectionModel}" var="row" rows="#{bindings.EmployeesView1.rangeSize}"
    emptyText="#{bindings.EmployeesView1.viewable ? 'No data to display.' : 'Access Denied.'}"
    fetchSize="#{bindings.EmployeesView1.rangeSize}" rowBandingInterval="0"
    selectedRowKeys="#{bindings.EmployeesView1.collectionModel.selectedRow}"
    selectionListener="#{bindings.EmployeesView1.collectionModel.makeCurrent}" rowSelection="single" id="t1"
    displayRow="selected" partialTriggers="::cb1" styleClass="AFStretchWidth">
    <af:column sortProperty="#{bindings.EmployeesView1.hints.EmployeeId.name}" sortable="false"
    headerText="#{bindings.EmployeesView1.hints.EmployeeId.label}" id="c1">
    <af:inputText value="#{row.bindings.EmployeeId.inputValue}"
    label="#{bindings.EmployeesView1.hints.EmployeeId.label}"
    required="#{bindings.EmployeesView1.hints.EmployeeId.mandatory}"
    columns="#{bindings.EmployeesView1.hints.EmployeeId.displayWidth}"
    maximumLength="#{bindings.EmployeesView1.hints.EmployeeId.precision}"
    shortDesc="#{bindings.EmployeesView1.hints.EmployeeId.tooltip}" id="it1">
    <f:validator binding="#{row.bindings.EmployeeId.validator}"/>
    <af:convertNumber groupingUsed="false" pattern="#{bindings.EmployeesView1.hints.EmployeeId.format}"/>
    </af:inputText>
    </af:column>
    <af:column sortProperty="#{bindings.EmployeesView1.hints.FirstName.name}" sortable="false"
    headerText="#{bindings.EmployeesView1.hints.FirstName.label}" id="c2">
    <af:inputText value="#{row.bindings.FirstName.inputValue}"
    label="#{bindings.EmployeesView1.hints.FirstName.label}"
    required="#{bindings.EmployeesView1.hints.FirstName.mandatory}"
    columns="#{bindings.EmployeesView1.hints.FirstName.displayWidth}"
    maximumLength="#{bindings.EmployeesView1.hints.FirstName.precision}"
    shortDesc="#{bindings.EmployeesView1.hints.FirstName.tooltip}" id="it2">
    <f:validator binding="#{row.bindings.FirstName.validator}"/>
    </af:inputText>
    </af:column>
    <af:column sortProperty="#{bindings.EmployeesView1.hints.LastName.name}" sortable="false"
    headerText="#{bindings.EmployeesView1.hints.LastName.label}" id="c3">
    <af:inputText value="#{row.bindings.LastName.inputValue}"
    label="#{bindings.EmployeesView1.hints.LastName.label}"
    required="#{bindings.EmployeesView1.hints.LastName.mandatory}"
    columns="#{bindings.EmployeesView1.hints.LastName.displayWidth}"
    maximumLength="#{bindings.EmployeesView1.hints.LastName.precision}"
    shortDesc="#{bindings.EmployeesView1.hints.LastName.tooltip}" id="it3">
    <f:validator binding="#{row.bindings.LastName.validator}"/>
    </af:inputText>
    </af:column>
    <af:column sortProperty="#{bindings.EmployeesView1.hints.DepartmentId.name}" sortable="false"
    headerText="#{bindings.EmployeesView1.hints.DepartmentId.label}" id="c11">
    <af:selectOneChoice value="#{row.bindings.DepartmentId.inputValue}" label="#{row.bindings.DepartmentId.label}"
    required="#{bindings.EmployeesView1.hints.DepartmentId.mandatory}"
    shortDesc="#{bindings.EmployeesView1.hints.DepartmentId.tooltip}" id="soc1">
    <f:selectItems value="#{row.bindings.DepartmentId.items}" id="si1"/>
    </af:selectOneChoice>
    </af:column>
    </af:table>
    </af:panelBox>
    Thanks,
    Rajdeep

    Hi Frank,
    Indeed it worked. But I have two queries now :
    1. We are adding employee record using a method called through method action Binding. So shouldn't the bindings be aware of the same .. i mean sychonization of binding layer should happen when method action binding is used ?
    2. Why it works when i apply partialTrigger on panelBox ? Why "employeesViewImpl" code is not required when I apply partialTrigger on panelBox ? Is it a concept that iterator is reexecuted when you refresh parent component ?
    Thanks,
    Rajdeep

  • Issues with pagination when using Adobe table with Web dynpro for ABAP

    Hi All,
    I am facing strange issue with table text.
    I have three cols in table, one is of type Char255 and other two cols are of type string.
    The text in the col 1 is displayed perfectly but in other two cols of type string whenever we have pagination the text in table is getting truncated and in next page new row starts.
    Could you please tell me the settings that will enable flowing of text in the row of table to next page.
    Thanks,
    Arti.

    Check the properties of the text field you use for those columns (if you want to control it on this level) or check the same attribute for the row subform (one level up control): "allow page break within content".
    Regards Otto
    p.s.: we all have deadlines... and manage to pay something back. Think about it.

  • Issue with column Total in a table

    Hi All,
    I am facing a strange issue with the column total value in an advanced table. I have enabled Total for a number column in the table, and added a total item in the footer section.
    This is working fine for the small numbers (10 digits) . But for the bigger numbers , once the sum is calculated the sum data is getting populated in one of the fields. This is for numbers with 30 digits.
    Pls suggest a solution for this.
    Thanks!
    Srikanth

    Unbelievable :)
    Numbers with more than 30 digits ?!!!?
    What kind of application is that? ;)
    --Prasanna                                                                                                                                                                                                                       

  • Import issue with Lightroom

    I upgraded to LR5.2 2 weeks ago from 4.3. Install went fine, but I'm now having issues when importing my photos, Lightroom hangs partially through the import.  The only choice I have then is to force quit the program, which then freezes my computer.  Getting to be an invredibly frustrating exercise.
    I have an iMac with OSX10.8.5 (Mountain Lion)
    Lightroom 5.2
    Importing & converting CR2 files (5DMkIII) to DNG.
    Images being imported to an external hard drive.
    Nothing has changed in my workflow or software except for the installation of LR5.  I did read in some of the forums that there was import issues that appear to have been fixed with the latest release, however, whilst I DEFINTIELY have the latest release of LR5,  this is still occurring.  Any ideas? Another bug?
    Cheers
    Sarah

    sure did. All permissions are admin & I'm it.  I haven't tried DL via image capture - LR4 gets me to the same end goal, tis just rather onerous to have to muck around with this twice.  Appreciate your taking the time on this 

  • Issues with AUTO cycling through ....

    I'm trying to do this:
    Any help with one or the other is very much appriciated !!!
    1) When the Timer is finish auto cycling through the tabs (1 to 16) of the ViewStack, and switching over to tab (1) to STOP, I would like to address a function to do something ???
    The question is now how to write the code to ID that the Timer has come to a STOP on tab (1), and how can I incoperate this into the existing (onTimerOne) function.
    2) The second item I'm after is that if I'm amnualy select any tab (1 to 16) to address also a function to do something ???
    3) The third item I'm after is to automaticly zero (0) the ViewStack to tab number (1) if I click a Btn.
    <mx:Script>
    <![CDATA[
        import flash.events.TimerEvent;
        import flash.utils.Timer;
        private var timerOne:Timer;
        private function initOne():void {
            timerOne = new Timer(5000, myViewStack.numChildren);
            timerOne.addEventListener(TimerEvent.TIMER, onTimerOne);
        private function onTimerOne(evt:TimerEvent):void {
            if(myViewStack.selectedIndex == myViewStack.numChildren-1) {
            myViewStack.selectedIndex = 0;
            return;
            myViewStack.selectedIndex++;
        private function autoOne():void {
            if (!timerOne.running) {
            timerOne.start();
        private function manualOne():void {
            if (timerOne.running) {
            timerOne.stop();
    ]]>
    </mx:Script>
    4) Well, the fourth item I'm trying to work out is as I'm reading my data from an Xml file to have a TextArea which shows the different countries from the Xml file for each ViewStack tab while auto cycling through these tabs (1 to 16).
    The diffuculty here is that I use this Xml with a specific urlID="1" to urlId="16" as part shown below.
    <urlsOceania>
        <urlOceania urlID="1"/>
        <searchCountry>American Samoa</searchCountry>
        <etc></etc>
    </urlsOceania>
    I'm reading all the other items this way:
    source="{urlsOceania.urlOceania.(@urID==1).etc}"
    Thanks in advance aktell2007

    Thanks for the confirmation.  7 miles away is most likely using the same VZW tower but it does confirm the problem is not in your current location for us.
    You can look up local tower locations from many public websites such as the following:
    www.antennasearch.com
    www.cellreception.com
    http://www.evdoinfo.com/content/view/2990/63/
    The signal of -65 shows you have strong reception but it doesnt show the entire picture.  Your tower could be overloaded or unauthenticating you.  There are lots of little issues that exist outside of the raw signal strength between the towers and the connecting devices that we users have no control over.  As you may guess only a tower tech has access to identify and correct these things.
    Based on the picture of the back of the MBR1515/Netgear N300 router from Netgear I would assume that only a normal sized SIM card will fit.  I would not assume a micro SIM card will fit.  Since I do not have access to either of the VZW or non-VZW 4G LTE router I cannot confirm if it will work or not.  You might have to give Netgear a call and ask.  Based on what I can see from the User Guides of both devices the SIMs used for each should be compatible with eachother.
    If you decide to purchase the non vzw version please post back your findings for us.

  • Issue with auto-play slideshow on the cover/first page

    I'm finding a strange problem in a project that's about to ship.
    Our "cover" is a full-screen slideshow (really some type animation) that is a simple slideshow through states. It look great in the Content Viewer.
    When we build the app in Viewer Builder, the slideshow does not play. Just sits on the first image.
    I know there's an issue about HTML "auto playing" on the first page (that is, you can't). But didn't think that applied to dps slideshows.
    Has anyone seen this issue? Any solutions?
    Thanks

    Here's the panel.
    Interestingly, if we build an app with only the cover (this page), it works. Building it with all articles makes it not work.
    The 'play in reverse' was an attempt to fix this. Did not help or hinder.
    Thanks

  • Issue with autosubmit selectchoice in adf table

    I have a column in adf:table which has select choice with autosubmit property set. When the value in the select list changes the table has to refresh and so I have set partialTrigger on table to the select list.
    Now the issue is that when a query is performed and the table refreshes to render the query results, the value change listener of the select choice is invoked with mutiple times (based on number of rows ). The new value of the select choice is null. Why does this happen, how can I avoid it?

    hi ,
    can i see the code of the table ?

  • Issue with number of lines in Table control for an web transaction in ITS

    Hi,
    We have acustom web transaction ZC03 where we have used table controls. Recently a kernal patch has been installed and after that the number of lines appearing in table control has got changed. Earlier table control was coming with 5 lines and presently its coming with 3 lines. Can you please help me to fix the issue.
    The  code used in HTML template for table controi is given below:
    `SAP_DynproLayerBegin(005,013,067,006)`
      `SAP_TableControl("TC_TIME1")`
        `SAP_DynproLayerEnd()`
    I have tried other alternatives like  `SAP_DynproTableControl("TC_TIME1")`, `D_TableControl("TC_TIME1') but did n't get any fruitful result also.
    Thanks and Regards,
    Ranadev

    What where the precise Kernel updates? What where you on and what did you upgrade too?
    Did you apply any BASIS Support Pack corrections during the Kernel upgrade?
    If you applied a new BASIS support pack - check the following WIKI:
    [How to check the publishing Date of an Internet Service|http://wiki.sdn.sap.com/wiki/x/OYG8BQ ]
    if you need to republish - use the following WIKI:
    [How to activate, publish and test ITS services in the integrated ITS?|http://wiki.sdn.sap.com/wiki/x/kmE ]
    Regards,
    Oisin

  • Issue with Auto PO creation

    Hello Gurus,
    Kindly help me with this issue.
    I have user who is using ME59 for the auto PO creation.When he runs this transaction with the "TEST RUN" flaged,in the result screen he is able to see a mesasage as "PO creation successfull" along with the vendor number for which PO has been created.
    But along with above  message he also needs material number & quantity  for which the PO has been created.
    Kindly let me know how to proceed with this request.

    It is not possible in standard , not for test run and not for production run, not with any customizing and I have not found any OSS note that may allow that.
    For any further information in the log you have to modify the program.

  • FCE Import Issues with 720p resolution (from Panasonic GH1)

    I cannot import 1280x720, 50fps videos from my Panasonic GH1 using the log and transfer window. If I try, the system crashes. Still they play in the preview window. With full HD everything works fine. I would assume that this format is not supported, since it does not show up in the easy setup menu (only 1920x1080 and 1440x1080 available).
    The files imported using iMovie08 can be loaded with no issues. I would assume this is because the have already been converted.
    Does FCE definitively not support import of 1280x720 material or am I doing something wrong?
    Thanks in advanced

    Hi,
    the GH1 shoots full hd 1980x1080 with 25fps (30 for US market). I prefer using 1280x720 (which seems to be AVCHD lite?) with 50fps (60fps for US) which reproduces movement better.
    Imovie09 convert those formats (AVCHD 25fps and AVCHD lite 50fps) to AIC while keeping the original format and frame speed. FCE can import the AIC files at the different formats - this I can see from what FCE is telling me in the browser.
    In FCE I mixed both formats (1080 at 25fps & 720 at 50fps) in a small project and managed to get this exported to 1080 or 720 at different frame rates. I have not yet figured out what how the movie quality compares to each other, but IT WORKS.
    Unless I have forgotten something FCE seems to handle all these formats but crashes as soon as I try to import of 1280x720@50fps files.
    Which in fact brings me back to my question why FCE crashes. With all this capability of handling the different formats I would not have expected a program crash during file import. Which in facts makes me doubt if there still is something wrong....
    I guess I should better start reading the manual.
    Good Luck

  • Import Issue with Attributes

    Hi everybody,
    during import of approx. 16.000 records I am facing an issue concerning the attributes. The input file is an Access database, which was exported from another repository. Now, I am using Import Manager to re-import this file into a new repository. The taxonomy and the allocation of attributes in this taxonomy are the same. However, when I import the data, some products have wrong attributes attached to them with wrong values. I already tried to do a two-step import (first product data, then attributes). The same problem here. In the Access file all records are correct. Any ideas?
    Best regards
    Christian
    Edited by: Christian Heuer on Mar 31, 2009 12:15 PM

    Hey gimnos,
    Thanks for the question. I understand you are experiencing issues importing a CD to iTunes for Windows. The following resources may provide a solution:
    iTunes 11 for Windows: Import songs from CDs
    http://support.apple.com/kb/PH12486
    iTunes for Windows: Additional troubleshooting tips for burning issues
    http://support.apple.com/kb/TS1374
    Thanks,
    Matt M.

Maybe you are looking for

  • MIGO Transaction Error

    Dear All,              We are facing error in MIGO Transaction,after applying PATCHES In Development Server. The Particular Include-Program which is containing Data Variables after application of Notes was resetted.That Include program is not allowin

  • Connecting HPOfficejet 5740 to wireless network

    I'm having difficulty setting up my new HP Officejet 5740 on my network.  I have followed onscreen instructions for the Wireless Setup Wizard on the printer's control panel and instructions on this website.  I've been careful to include my network na

  • Service Temporarily Unavailable Error

    While installing the Http Server from Oracle Database 10g Companion Products Choose the Oracle database 10g Companian 10.2.0.1.0then Choose Apache StandAlonethen Next Follows Whether i have choose the Right Product? After the Completion of the instal

  • Selectively Print Report Sections

    I have a report that can run in either batch or interactive mode. Presently, I am using the SRW.message and a Before Report trigger to check the field and not generate the report if this field is NULL. This forces the user to respond to SRW message.

  • Platform 8.1 SP3 Package Installer error

    I downloaded the Platform 8.1 SP3 package installer and received an error when installing. The error message states that the file is corrupt - error 2. I have tried this twice and get the same result each time. I have 2 GB of disk space free and am r