Apex_collection.update_member results in no data found found

I'm trying to build a simple scheduling grid using a collection to show who is available on what day of the week. This is the table:
CREATE TABLE WORK (
USER_ID NUMBER(9) NOT NULL,
MON VARCHAR2(1),
TUE VARCHAR2(1),
WED VARCHAR2(1),
THU VARCHAR2(1),
FRI VARCHAR2(1),
CONSTRAINT WORK_FROM_HOME_PK PRIMARY KEY (USER_ID));
My create collection script is:
if apex_collection.collection_exists(p_collection_name=>'WFH') = TRUE then
apex_collection.delete_collection(p_collection_name=>'WFH');
end if;
apex_collection.create_collection_from_query(
p_collection_name=>'WFH',
p_query=>'SELECT user_id,
mon,
tue,
wed,
thu,
fri
FROM work');
As I try to sort this out, I have two reports on the page. One is for the schedule/collection processing, & the other simply shows the collection so I can verify changes:
SELECT seq_id, c001 emp_id, c002 mon, c003 tue, c004 wed, c005 thu, c006 fri -- my working query
FROM apex_collections
WHERE collection_name = 'WFH'
select * from apex_collections -- this shows the entire collection
where collection_name = 'WFH'
I have 2 buttons & processes to add new rows & undo changes, & a button for updates. (I'm not trying to update the underlying table yet, just update the collection.) The add & undo seem to work fine. When I try to update the collection, I get a "no data found" error. The update collection process is:
BEGIN
FOR i IN 1..apex_application.g_f01.count LOOP
apex_collection.update_member(
p_collection_name => 'WFH',
p_seq => apex_application.g_f01(i),
p_c001 => apex_application.g_f02(i),
p_c002 => apex_application.g_f03(i),
p_c003 => apex_application.g_f04(i),
p_c004 => apex_application.g_f05(i),
p_c005 => apex_application.g_f06(i),
p_c006 => apex_application.g_f07(i));
END LOOP;
END;
I suspect there is a problem with the way I'm trying to reference the sequence, but have yet to figure it out.
Suggestions?

As you can see below, the sequence & emp_id are not getting assigned the f01 or f02. That starts with the updatabl fileds on the report.
<td class="t1Body" colspan="2"><div id="report_3645482605396131456_catch"><table cellpadding="0" border="0" cellspacing="0" summary="" id="report_R3645482605396131456"><tr><td></td></tr>
<tr>
<td><table cellpadding="0" border="0" cellspacing="0" summary="" class="t1standard">
<tr ><th id="SEQ_ID" class="t1header">Seq Id</th><th id="EMP_ID" class="t1header">Emp Id</th><th id="MON" class="t1header">Mon</th><th id="TUE" class="t1header">Tue</th><th id="WED" class="t1header">Wed</th><th id="THU" class="t1header">Thu</th><th id="FRI" class="t1header">Fri</th></tr>
<tr onmouseover="row_mouse_over3645482605396131456(this, 1)" onmouseout="row_mouse_out3645482605396131456(this, 1)">
<td headers="SEQ_ID" class="t1data">1</td>
<td headers="EMP_ID" class="t1data">157</td>
<td headers="MON" class="t1data"><label for="f01_0001" class="hideMe508">MON</label><input type="text" name="f01" size="3" maxlength="2000" value="" id="f01_0001" /></td>
<td headers="TUE" class="t1data"><label for="f02_0001" class="hideMe508">TUE</label><input type="text" name="f02" size="3" maxlength="2000" value="Y" id="f02_0001" /></td>
<td headers="WED" class="t1data"><label for="f03_0001" class="hideMe508">WED</label><input type="text" name="f03" size="3" maxlength="2000" value="" id="f03_0001" /></td>
<td headers="THU" class="t1data"><label for="f04_0001" class="hideMe508">THU</label><input type="text" name="f04" size="3" maxlength="2000" value="" id="f04_0001" /></td>
<td headers="FRI" class="t1data"><label for="f05_0001" class="hideMe508">FRI</label><input type="text" name="f05" size="3" maxlength="2000" value="Y" id="f05_0001" /><input type="hidden" name="fcs" value="58AA1A6F02752BF76429EF06E2F1934D" /></td>
</tr><tr onmouseover="row_mouse_over3645482605396131456(this, 2)" onmouseout="row_mouse_out3645482605396131456(this, 2)">
<td headers="SEQ_ID" class="t1data">2</td>
<td headers="EMP_ID" class="t1data">152</td>
<td headers="MON" class="t1data"><label for="f01_0002" class="hideMe508">MON</label><input type="text" name="f01" size="3" maxlength="2000" value="Y" id="f01_0002" /></td>
<td headers="TUE" class="t1data"><label for="f02_0002" class="hideMe508">TUE</label><input type="text" name="f02" size="3" maxlength="2000" value="" id="f02_0002" /></td>
<td headers="WED" class="t1data"><label for="f03_0002" class="hideMe508">WED</label><input type="text" name="f03" size="3" maxlength="2000" value="" id="f03_0002" /></td>
<td headers="THU" class="t1data"><label for="f04_0002" class="hideMe508">THU</label><input type="text" name="f04" size="3" maxlength="2000" value="Y" id="f04_0002" /></td>
<td headers="FRI" class="t1data"><label for="f05_0002" class="hideMe508">FRI</label><input type="text" name="f05" size="3" maxlength="2000" value="" id="f05_0002" /><input type="hidden" name="fcs" value="E267918580DC33BACF54431F3E928ED6" /></td>
</tr><tr onmouseover="row_mouse_over3645482605396131456(this, 3)" onmouseout="row_mouse_out3645482605396131456(this, 3)">
<td headers="SEQ_ID" class="t1data">3</td>
<td headers="EMP_ID" class="t1data">153</td>
<td headers="MON" class="t1data"><label for="f01_0003" class="hideMe508">MON</label><input type="text" name="f01" size="3" maxlength="2000" value="" id="f01_0003" /></td>
<td headers="TUE" class="t1data"><label for="f02_0003" class="hideMe508">TUE</label><input type="text" name="f02" size="3" maxlength="2000" value="" id="f02_0003" /></td>
<td headers="WED" class="t1data"><label for="f03_0003" class="hideMe508">WED</label><input type="text" name="f03" size="3" maxlength="2000" value="Y" id="f03_0003" /></td>
<td headers="THU" class="t1data"><label for="f04_0003" class="hideMe508">THU</label><input type="text" name="f04" size="3" maxlength="2000" value="" id="f04_0003" /></td>
<td headers="FRI" class="t1data"><label for="f05_0003" class="hideMe508">FRI</label><input type="text" name="f05" size="3" maxlength="2000" value="" id="f05_0003" /><input type="hidden" name="fcs" value="F3012D3BBA78B492A5FC7D47D4D88395" /></td>
</tr><tr onmouseover="row_mouse_over3645482605396131456(this, 4)" onmouseout="row_mouse_out3645482605396131456(this, 4)">
<td headers="SEQ_ID" class="t1data">4</td>
<td headers="EMP_ID" class="t1data"> - </td>
<td headers="MON" class="t1data"><label for="f01_0004" class="hideMe508">MON</label><input type="text" name="f01" size="3" maxlength="2000" value="" id="f01_0004" /></td>
<td headers="TUE" class="t1data"><label for="f02_0004" class="hideMe508">TUE</label><input type="text" name="f02" size="3" maxlength="2000" value="" id="f02_0004" /></td>
<td headers="WED" class="t1data"><label for="f03_0004" class="hideMe508">WED</label><input type="text" name="f03" size="3" maxlength="2000" value="" id="f03_0004" /></td>
<td headers="THU" class="t1data"><label for="f04_0004" class="hideMe508">THU</label><input type="text" name="f04" size="3" maxlength="2000" value="" id="f04_0004" /></td>
<td headers="FRI" class="t1data"><label for="f05_0004" class="hideMe508">FRI</label><input type="text" name="f05" size="3" maxlength="2000" value="" id="f05_0004" /><input type="hidden" name="fcs" value="A884FA378C851786DDFE3A33709CB23C" /></td>
</tr></table><div class="t1CVS"></div></td>
</tr>

Similar Messages

  • How to prevent setBoundingThemes returning null MBR when no data are found

    I am using setBoundingThemes method in MapViewer bean to zoom in to query results in a JDBCTheme. It is possible however that the JDBCTheme doesn't contain any data when no rows match the criteria. The result is that the other themes are queried without a filter and the overall map size is used (as the result of the mbr of all themes). This wouldn't be a problem if the theme_min_scale was considered, but it isn't, so all available data are rendered and this takes quite a while. Is there a way to set an alternative query window which will be used in case no rows are returned?
    To show the difference:
    Using a JDBCTheme with results:
    a valid mbr is found:Thu Jun 09 19:44:48 CEST 2005 FINEST [oracle.sdovis.MapMaker] mbr of all bounding themes: java.awt.geom.Rectangle2D$Double[x=5.03750183491323,y=52.05182293319411,w=0.12810743017353943,h=0.08182653361177472]
    the resulting query for the (predefined) LOCALROAD theme:Thu Jun 09 19:44:48 CEST 2005 FINEST [oracle.sdovis.theme.pgtp] [ LOCALROAD ]: 5.03750183491323,52.05182293319411,5.165609265086769,52.133649466805885
    Thu Jun 09 19:44:48 CEST 2005 FINEST [oracle.sdovis.theme.pgtp] [ LOCALROAD ]: SELECT ROWID, GEOM, 'CSX:L.ALLROADS', NAME, 'CSX:T.ROAD NAME', 1, ID FROM MN_NW WHERE MDSYS.SDO_FILTER(GEOM, MDSYS.SDO_GEOMETRY(2003, 8307, NULL, MDSYS.SDO_ELEM_INFO_ARRAY(1, 1003, 3), MDSYS.SDO_ORDINATE_ARRAY(?, ?, ?, ?)), 'querytype=WINDOW') = 'TRUE'
    Using a JDBCTheme without results:
    a null mbr is foundThu Jun 09 19:48:34 CEST 2005 WARN [oracle.sdovis.MapMaker] Null MBR resulted from buildDataMBR(themes).
    the resulting query for the (predefined) LOCALROAD theme:Thu Jun 09 19:48:34 CEST 2005 FINEST [oracle.sdovis.theme.pgtp] [ LOCALROAD ]: -Infinity,-Infinity,NaN,NaN
    Thu Jun 09 19:48:34 CEST 2005 FINEST [oracle.sdovis.theme.pgtp] [ LOCALROAD ]: SELECT ROWID, GEOM, 'CSX:L.ALLROADS', NAME, 'CSX:T.ROAD NAME', 1, ID FROM MN_NW'
    and after that the mbr is made up out of all themes, resulting in a map of all available dataThu Jun 09 19:56:19 CEST 2005 FINEST [oracle.sdovis.MapMaker] mbr of all themes: java.awt.geom.Rectangle2D$Double[x=-0.5,y=-2.6605568400000004,w=11.025,h=58.665278322000006]
    Of course I could query the database first to find out if there are any geo data available, but I am hoping there's another way. Anybody who can help?
    Regards,
    Ida

    Hi Ida,
    I think just the size parameter with null mbr for the bounding theme won't help too much.
    We would need a reference point to be used with this size. This point we could get if we query the other themes, but as we don't have a reference mbr (the bounding theme mbr is null) this would be a full query on the other themes.
    We will discuss your suggestion of not rendering any theme and raising an exception if the mbr for the bounding theme returns null.
    Thanks.
    Joao

  • Risk Violation Data Not found

    Dear Expert,
    We are facing the problem  where we are not getting data from ""Risk Violations by Process"
    after compliting the batch risk analysis job successfully.
    Thing is happening when we  check Management Report View : See the following steps I have done properly :Select  informer tab --> Management View --> Risk Violation
    Month Year : 02/2009
    System: ECQCLNT360
    Analysis Type : Role 
    Clieck On Go
    Got the result from "RISK VIOLATION BY PROCESS"
    Z_Production Planning 22,339 16%
    Z_Finance 4,493 3%
    Z_Quality Management 39,988 28%
    Z_Controlling 418 0%
    Z_Project Systems 4,610 3%
    Z_Order to Cash 12,570 9%
    Z_Plant Maintenance 19,548 14%
    Z_Procure to Pay 39,519 27%
    Now the problem is that according to result we are getting the violation report also is in a Graphical Mode, and if I click on this graph it has  been showing the result "No match nor conflict found" with respect of "Risk Violations by Process". But the graphical data has come properly and we got the successfull result in other case exccept  via "Risk Violations by Process".
    But when we have checked from the DB level we found DATA is already exist into table.
    We ran bellow mention SQL Statement successfully and got proper result
    SELECT MIN(S.YEARMONTH) AS YEARMONTH, MIN(S.VIOLTYPE) AS VIOLTYPE,
    MIN(S.VSYSKEY) AS VSYSKEY, S.ANLTYPE, MIN(S.USERGROUP)
    AS USERGROUP, S.RISKID, MIN(S.BZPRCID) AS BZPRCID, MIN(S.RISKLEVEL)
    AS RISKLEVEL, SUM(S.RISKCOUNT) AS RISKCOUNT,
    R.DESCN AS RISKDESC, B.DESCN AS BZPRCDESC
    FROM SAPSR3DB.VIRSA_CC_MGRISKS S LEFT OUTER JOIN
    SAPSR3DB.VIRSA_CC_RISKT R ON R.LANG = 'EN' AND S.RISKID = R.RISKID
    LEFT OUTER JOIN
    SAPSR3DB.VIRSA_CC_BUSPRCT B ON B.LANG = 'EN' AND S.BZPRCID = B.BZPRCID
    WHERE (S.YEARMONTH LIKE '200901') AND (S.VIOLTYPE = 'PERMISSION')
    AND (S.VSYSKEY LIKE 'ECQCLNT360') AND (S.ANLTYPE = 2)
    GROUP BY S.ANLTYPE, S.RISKID, R.DESCN, B.DESCN
    ORDER BY S.RISKID
    But Anotther issue matter is that if I change User Account English to German from User Management Engine then I have got the data from RAR, again if I turn it back English again getting the same pprobs.
    Whay does it happening. any one is there have experienced with the same issue. Pleas let me know the solution.
    Thanks & Regards
    Pavel Das
    PwC - India
    +919874886293
    Edited by: Pavel Das on Feb 9, 2009 7:57 AM
    Edited by: Pavel Das on Feb 9, 2009 8:03 AM

    Hello Pavel,
    Management report save detail data for only one month, which is the latest one.
    Apart from that can you confirm if you had not run any delete script to remove any Connector (System).
    Regards,
    Surpreet Singh Bal

  • DroldF.dat not found

    Hi,
    I try to install the following code
    CREATE INDEX IDF_FULL on ECOLORF.INDEXATION(FICHIER)
    INDEXTYPE IS ctxsys.context
    PARAMETERS
    ('datastore CTXSYS.FILE_DATASTORE
    LANGUAGE COLUMN LANGUE
    LEXER mylex
    FORMAT COLUMN FORMAT
    WORDLIST DEFAULT_WORDLIST
    STOPLIST multistop
    MEMORY 2M SYNC (EVERY "SYSDATE + 1/24/6")');
    and I have the error :
    DRG-11446: fichier de base de connaissances fourni C:\oracle\product\10.2.0\db_1\ctx\data\frlx\droldF.dat non installé
    +(file droldF.dat not found)+
    (Same thing with an Oracle 11g on another server)
    When removing 'LEXER mylex' in the create index, it's OK, but I have some difficulties with the french accents.
    The only file in the directory xxxxx\db_1\ctx\data\frlx\ is drfr.is
    On [this forum|http://kb.dbatoolz.com/tp/2796.drg-11446_droldusdat_not_installed.html] , it is told that the missing files are on companion CD in stage/Components/oracle.cartridges.context.knowbase/10.1.0.2.0/1/DataFiles/data.jar, but only iin the R1 release (not the R2)
    But I can't find this companion CD. Where are they in OTN ? How to download old versions ?
    Or more simply : who have all these files droldF.dat, droldUS.dat and can furnish them ?
    Best regards

    Your lexer definition presumably includes INDEX_THEMES = YES.
    If you change that it will work. Otherwise you need to download the database examples for 11g, which include the knowledge base.
    Sometimes can be tricky to find - if you download the full set of files it should include the examples.

  • Error: No valid complaint data was found in this sales area

    Hi All,
    I am getting below error while delta or request download of customer.
    No valid complaint data was found in this sales area
    Message no. CRM_SPL_BUPA_FRG0010203
    Validation error occurred: Module CRM_BUPA_MAIN_VAL, BDoc type BUPA_MAIN.
    Message no. SMW3018
    Error case:
    ECC-->Customer(Sold to) extended to a sales area and saved.
         CRM-->Business partner gets updated in the CRM properly.
    ECC--> Deletion flag for same customer and same sales area is set. (Deletion flag - "Selected sales area").
         CRM-->Business partner gets updated in the CRM properly and is not shown as extended to the sales area via BP t code.
    ECC-->Deletion flag is removed for the customer.
         CRM--> BDOC fails to update the Partner and goes in error.
    Problem comes when deletion flag is removed in ECC.
    Any help would be highly appreciated.
    Thanks in advance.
    -Ram

    Hi Ram,
    Hope you have not make any field mandatory in the Complaint tab in the sales area section in the BP.
    When you are removing the deletion flag please check if any entry is mandatory in the Complaint tab.
    Hope this will be useful
    Thanks and Regards
    DJ

  • Error:Class java.util.date not found

    i have installed 9iAS on my computer.And i want to develop program on JSP.i tried the url below
    http://eyuksel/servlet/IsItWorking
    and i got "it is working" message.when i try to execute my first jsp file i get the error:
    Errors compiling:d:\ias\apache\apache\htdocs\_pages\\_first.java
    d:\ias\apache\apache\htdocs\_pages\_first.java:55: Class java.util.date not found.
    out.print( new java.util.date() );
    ^
    1 error
    what must i do or how can i install the java classes.
    kind regards...
    null

    Thank you very much.It worked:)
    Java is case-sensitive.
    try
    java.util.Date
    instead of
    java.util.date
    null

  • Payment F110 - No data records found for these selection criteria, FZ208

    Hi all,
    I have done all configuration for payment medium for a customer in Norway. We use Telapay and program RFFONO_T. We have not activated the new general ledger but we have ECC 6.0 so I do not see why it should not work.
    The invoices got paid with payment order but when I should download the file in Environment > Payment medium > DME Administration I got the following error message:
    "No data records found for these selection criteria
    Message no. FZ208
    Diagnosis
    No data could be accessed for this selection.
    Possible causes are:
    No data exists for the activated selection.
    You have no authorization to display or edit data from this selection.
    Procedure
    First check whether your selection criteria are correct.  You may need to expand the criteria to include a larger search area to check whether data exists in the system.
    Make sure you have the proper authorizations for displaying and editing data.  Read the Release note for DME management for further information on the authorization objects.
    Proceed"
    I have tried with different variants but that doesn´t matter. When I look at the payment run log I can see following:
    "Additional parameter specifications 1400 SAPO02 are missing
    Message no. FR193
    Diagnosis
    Entry 1400 $V2& is missing from the additional company code parameter table.
    System Response
    Processing was terminated.
    Procedure
    Maintain the entry according to the instructions in the program documentation."
    I suppose that´s why I can´t get a file. Do any one of you know why I can´t get the file created. Please help.
    Best regards Lisa

    Hi Lisa,
    I have a similar problem with program RFFONO_T and Telepay format for a Norwegian customer. Payment medium is not created. In the payment run log is the following message: "Additional parameter specifications XXXX SAPO02 are missing
    Message no. FR193.Entry XXXX $V2& is missing from the additional company code parameter table."
    According the program documentation for RFFONO_T, a company number (11 digits) has to be maintained under company code global data, additional details. The legal org.number with 9 digits is already entered but I do not understand where to enter a 11 digits company number? A user number (10 digits) is also entered in trans OB94  but the problem remains.
    Did you find a solution to your problem?
    Regards,
    Agneta

  • With 3.6.12, Help menu item "For Internet Explorer Users" results in a "Page Not Found" error. Is this a known bug? Is it being addressed?

    Clicking the 3.6.12 Help menu item "For Internet Explorers" item results in a "Page Not Found" error.
    The URL of the resultant page is https://support.mozilla.com/en-US/kb/Windows%20start%20page?as=u
    Is this a known bug, if so, is it being addressed? If so, someone needs to work faster.
    If it is not a known bug, someone needs to get right on it - you want people to switch to Firefox and then there is this bug -- not a good way to impress Internet Explorer users.

    Hi Claudio Roca,
    I have encountered the same problem. Do you found the solution for this issue? I will much appreciated if you willing to share your solution and email to [email protected] Thank you so much.
    Regards,
    Hau Chee

  • Internal error: data not found message

    Every time I try to upload pics I get this message:
    internal error: data not found
    How can I fix this problem? Thank you so much, Stacey

    Please explain in detail about the process you are trying to perform...Do tell if any settings or any change in preferences you have made. How many files you rae trying to upload. Your account is not expired and you are admin etc.
    -Garry

  • How to rectify the error message " duplicate data records found"

    Hi,
    How to  rectify the error "duplicate data records found" , PSA is not there.
    and give me brief description about RSRV
    Thanks in advance,
    Ravi Alakunlta

    Hi Ravi,
    In the Info Package screen...Processing tab...check the option Do not allow Duplicate records.
    RSRV is used for Repair and Analysis purpose.
    If you found Duplicate records in the F fact table...Compress it then Duplicate records will be summarized in the Cube.
    Hope this helps.

  • Error - Data not found

    I experience error - data not found when i click on the custom 'Next' button on the page of my application, whereas, there are records in the table of the database. How can this be resolved?
    Thank you.

    User,
    What is your name?
    Can you put an example on apex.oracle.com and provide the workspace/username/password?
    Regards,
    Dan
    http://danielmcghan.us
    http://sourceforge.net/projects/tapigen
    http://sourceforge.net/projects/plrecur
    You can reward this reply by marking it as either Helpful or Correct ;-)

  • Error! No data source found with name 'mynewdsname' (after asking 0 providers)

    Hi all,
    I am trying out the instructions given below.
    http://dev.day.com/docs/en/cq/current/developing/jdbc.html
    I followed them exactly but removed <cq:include script="head.jsp"/> line from the jsp since I do not have a head.jsp.
    my config node settings are as follows.
    But when I go to the page, I get below error message.
    error! No data source found with name 'mynewdsname' (after asking 0 providers)
    DB is up and running. I could not find any issue with it. Code is as follows.
    <%DataSourcePool dspService = sling.getService(DataSourcePool.class);
      try {
         DataSource ds = (DataSource) dspService.getDataSource("mynewdsname");  
    %>
    Any help will be great. TX

    Document is outdated & for now could you please follow http://dev.day.com/content/kb/home/cq5/Development/HowToConfigureSlingDatasource.html

  • No data was found that fulfils the selection criteria in T Code KEAT

    Dear All
    I am running the transaction code KEAT in Production and system is giving message
    "No data was found that fulfils the selection criteria" and there are no values for COPA reconciliation
    If i run the same T code in Quality system shows me the various rows and columns for
    COPA Values SD Values FI Values and PCA values along with DELTA COPA/SD/FI/PCA
    Can any one tell me the reason why i am not able to get this COPA reconciliation in production
    Your help will be highly valuable for me.
    Bilal

    hi
    check for the authorization profile of yours in production

  • MDM_CLNT_EXTR (No data was found)

    Hello,
    We need to extract all Customer Master Data from ERP 2005 using MDM_CLNT_EXTR.
    I encounter with the following error:
    - The job terminates with error message B1 041 (Table MASTER_IDOC_DATA is empty).
    or
    - The job terminates with message MDMXFW 012 (No data was found).
    I have read the 997213 note and the problem is that I have not set the selection restrictions correctly. The note shows the following solution:
    If you want to extract all of the master data without any restrictions, specify a relevant number interval for the master data object (for example, vendor number from 0000000000 to ZZZZZZZZZZ - for all vendors). Note that you have to specify numeric keys with leading zeros.
    The field names that I specify are:
    BEGRU, GFORM, KTOKD, KUNNR, LAND1, LOEVM, NAME1, ORT01, SORT01, SPERR, SPRAS, SPART, VKORG, VTWEG.
    and my questions are:
    - Which of this fields specify the customer number to fill in?
    - Nowadays, If I use LAND1 with ES value, The job terminates with message MDMXFW 012 (No data was found).Should I delete the rest of the fields (BEGRU, GFORM..etc) before to execute?
    - All customer data were previously imported through VC01 transaction. Is it correct? Maybe this transaction doesn't fill the same table that the MDM_CLNT_EXTR transaction execute.
    Any idea will be very helpful
    Thanks a lot
    Marta.

    Hello Marta,
    I just happened to look at your questions, Will try to answer few of them(infact what we did in order to extract Master Data from R/3)
    1)Which of this fields specify the customer number to fill in?
       We used only KUNNR
    2) All customer data were previously imported through VC01 transaction. Is it correct? Maybe this transaction doesn't fill the same table that the MDM_CLNT_EXTR transaction execute.
       Am not sure of VC01, but the best way to initially extract all the data is using MDM_CLNT_EXTR.
    Suggestions:
    1) Try to run the job in background.
    2) Dont rerun the extractor if you have no data, because what we experienced is "Running the same job multiple times threw us MDMXFW 012 (No data was found)
    This is my 2 cent Hopefully this helps.
    -Sharan Alemane

  • Invalid or no mapping to system data types found.

    Hello Netweaver gurus.
    One of my client faces this issue. Has anybody come across similar error types ?
    Regards,
    Nitin Koushik

    Hello Nitin,
    In my opinion the error is because you would not be using an appropriate Entity to perform respective operation and can also be due to invalid mapping e.g. NUMC to Edm.Decimal
    Lets say you have an Entity 'A' to Update a media content to BE. You can use the same Entity 'A' to Read the updated media content as well.
    Leta say now you want to Read set of data from BE ( Not a Media content )
    You cannot use the Entity 'A' to perform this. You need to have a different Entity which will get the info needed from BE.
    Even if you forcefully try to map the response in code level, you will get the error ' Invalid or no mapping to system data types found '. This is because Entity 'A' would have got the special semantics to Read the media content not the set of data.
    Kindly check this and also the Types , Type Lengths , No of Decimal Places etc...used in Model
    Regards,
    Ashwin

Maybe you are looking for

  • Mini Dvi to VGA for Projector issue

    I recently bought a mini DVI to VGA adapter for my new macbook Black 2.4 ghz. When I hook this up to the projector nothing comes through, but the computer recognizes the projector. I know it is not the projector because when I plug in my 12inch power

  • How to display all PO data in the PDF form?

    Hi,experts, I create a WDJ application with the PDF form for print all PO sheet. I can transfer all data from WDJ to PDF form. I need continuous print all PO sheet that include header and items. After I run the application, I found only the one PO he

  • Disk Repair Concern

    Hello,should any of this be of concern after running "Verify Disk Permissions"I then Repair Disk Permissions and Verify Disk says seems to be o.k. but is it really? Warning: SUID file "System/Library/CoreServices/Finder.app/Contents/Resources/OwnerGr

  • Podcast channel with multiple channels inside?

    Hi all, I wonder if it's possible to structure content inside a podcast channel by topic. As example, if you open the Podcast Channel on iTunes or iPhone/iPad you must first choose a category to get to the related podcasts, like if you are a newspape

  • HT1443 how can we pass from os 10.5.8 to 10.6?

    I need to pass from mac os 10.5.8 to at least 10.6... How could it be done?