Reading colour table form a 24bit Bmp....

Im trying to load and display a 24bit bmp using IMAQ, but it only show a
gray scale picture and I cant get it to load the colour table. IMAQ load
file is set to load the colour table, and I wierd the coulour table to IMAQ
windraw.
The colour tabel cluster is empty, why?
Regards Reine

Hi Anna,
Try the solution given in this link:
[Read Dynamic Table|Re: Data in dynamic table not pass to webdynpro java;
Hope this helps,
Amit

Similar Messages

  • How to loop and read repeating table data of infoPath form in Visual studio workflow.

    Hi,
    I am trying to read info Path form repeating table data in Visual studio workflow.
    could anyone elaborate me in brief how to loop through repeating table and read all rows value one by one in workflow.
    any help would be more then welcome. 
    Thanks...

    Hi Rohan,
    According to your description, my understanding is that you want to create a Visual Studio workflow to get data from info path repeating table.
    I suggest you can submit Repeating Table to a SharePoint List and then you can create a .NET workflow to read data from the SharePoint List.
    Here are some detailed articles for your reference:
    Codeless submitting InfoPath repeating table to a SharePoint list
    Create a Workflow using Visual Studio 2010
    Best Regards
    Zhengyu Guo
    TechNet Community Support

  • Display read only field in table / form from another vo

    i came across couple of scenarios where i had to bring a field in a table / from from other vo than on which most fields in table / form were based. in all cases i had to display the field from another vo as read only and there was only one record in other vo which was related to previous vo in table / form. for this i created a view accessor and created a soc with model driven lov. the problem with this is that first element alwasy shows blank in soc. how can i display the filled soc with first element populated and read only in this scenario. i tried alternatively with groovy expressions but other people in team said it is not good practice to use groovy expressions to fill fields in one VO from other VO. how can i acheive this requirement with soc component / lov / view accessors. is there any other alternative as well. jdev 11 1 1 5

    1) in the attribute of the VO select the 'List of values' node and edit the list attribute you see there; in the dialog select the UI Hints tad and make sure the checkmark for the 'Include "no Selection Item' is off.
    2) you can base a VO on to EO which are then joined via one or more attributes (association)
    Timo

  • Reading dynamic table in a interactive form (web dynpro)

    Hi all,
    I created a WebDynpro application which contains an Interactive Form. This form contains a dynamic table with input fields. New rows can be added manually using a button.
    Now I have the following problem: How can I read all the rows of the table in my view after input? The input should be written into an itab.
    Thanks a lot for your suggestions and your help!
    Regards
    Anna

    Hi Anna,
    Try the solution given in this link:
    [Read Dynamic Table|Re: Data in dynamic table not pass to webdynpro java;
    Hope this helps,
    Amit

  • ADF 10.1.3 : Modifying background colour of ADF read only table ...

    Hi All,
    I want to modify the background color of the ADF read only table [color of cell not the text] and in order to do that, i modified the background color in the inline style of the column but the color of the column is still not changing. What else do i need to do to change the column color?
    Also how can we modify the color of column header?
    Regards
    Lokesh

    I guess you have to change the skinning of the component to archive this.
    Look at the doc for the skin selectors and how the change them.
    Timo

  • Read-only table with a LOV on a VO's attribute

    Hi,
    I have a VO ('X') that is displayed as a read-only table. 'X' has an attribute called 'SubscriptionId'. The value of 'SubscriptionId' is a foreign key to another table called 'Subscription'. My 'Subscription' database table has a column named 'Description'.
    Example:
    'X' has an attribute 'SubscriptionId' = 14
    DB table 'Subscription' has a row that looks like this:
    14, "A subscription description" (where "A subscription description" is the 'Description' column)
    I set up a LOV for 'SubscriptionId' on my VO 'X', so that it should show the value of 'Description' from 'Subscription' instead of the 'SubscriptionId'.
    If I display my VO 'X' as a form, I can see my LOV (for 'Description').
    However, when I display my VO ('X') as a read-only table, it isn't adhering to the LOV I defined on my VO, and is instead showing the 'SubscriptionId'.
    What do I need to do differently on my table to show the 'Description' instead of the foreign key 'SubscriptionId'? I want it to be just an output text of the Description, not a choice list.
    Thanks,
    Joel

    Hi
    In simple way just set the ReadOnly property of choice list in the coloum = true
    for example
    <af:column sortProperty="EmpId" sortable="true"
    headerText="#{bindings.DocTransactionView1.hints.EmpId.label}"
    id="c2" align="center">
    <af:selectOneChoice value="#{row.bindings.EmpId.inputValue}"
    label="#{row.bindings.EmpId.label}"
    required="#{bindings.DocTransactionView1.hints.EmpId.mandatory}"
    shortDesc="#{bindings.DocTransactionView1.hints.EmpId.tooltip}"
    id="soc4" readOnly="true">
    <f:selectItems value="#{row.bindings.EmpId.items}" id="si3"/>
    </af:selectOneChoice>
    </af:column>

  • UIX: How to add linked view table columns to the Read-only table

    Hi
    I have two tables
    T1: ID, STAFF_ID, NOTE
    T2: STAFF_ID, USERNAME
    I have created corresponding entity objects (E1, E2), views (V1, V2), association A(E1->E2 as *..1 using STAFF_ID) and viewlink VL(V1->V2 as *..1 using association A).
    My model in AppModule looks like
    V1
    ----V2 via VL
    Now I have single UIX page in which I drop V1 as Read-only table. The table displays columns correctly: ID, STAFF_ID, NOTE
    What I want is to add a column STAFF_ID from the V2 into this table. I have tried to drop it into the table but when the page is run it does not display anything in that column. It has to do something with binding.
    I have done similar test with dropping V1 as read-only FORM and then added STAFF_ID from V2 as messageTextInput and everything is rendered correctly.
    Anyone knows how to do the same thing but with table?

    Yes that is true but I would like to give another example where this may not apply.
    Say I have 3 tables
    CLIENT(INDIVIDUAL_ID,...)
    ADDRESS(ADDRESS_ID,...)
    ADDRESS_HISTORY(ADDRESS_ID, INDIVIDUAL_ID,BEST_ADDRESS)
    where ADDRESS_HISTORY is intersection table in CLIENT to ADDRESS many to many relationship.
    Suppose I have VO2 that consists of ADDRESS and ADDRESS_HISTORY entities (corresponding association exists) and user needs to add new address for the selected customer in VO1 (made from CLIENT entity). There are several issues here:
    1) An input form made out of VO2 must contain an entry for BEST_ADDRESS flag but since it will be read-only, seems that this approach may not work. However, I found a post re:Updating view objects with multiple entities that provides workaround this.
    2) In that case assume that I use DBSequence to automatically add ADDRESS_ID when user inputs new record in this input form. I am using DB Trigger on ADDRESS table and have selected ADDRESS_ID in ADDRESS entity as DBSequence. Now observe that VO2 would contain another ADDRESS_ID from ADDRESS_HISTORY entity which has to be automatically populated with the same value. How?
    In a nutshell my question relates to the problem how to automatically populate intersection table when new record is added to the detail. But the trick is that some attributes of the intersection table must be inserted by the user in the form..
    Please advise

  • Ho to read intern table in update rule?

    Hello experts,
    I have the following start routine:
    PROGRAM UPDATE_ROUTINE.
    $$ begin of global - insert your declaration only below this line  -
    TABLES: /BIC/AZD_ODS_C00.
    DATA: ITEM_TABLE TYPE STANDARD TABLE OF /BIC/AZD_ODS_C00
          WITH HEADER LINE
          WITH NON-UNIQUE DEFAULT KEY INITIAL SIZE 0.
    DATA: gv_flag type c.
    $$ end of global - insert your declaration only before this line   -
    $$ begin of routine - insert your code only below this line        -
    fill the internal tables "MONITOR" and/or "MONITOR_RECNO",
    to make monitor entries
    SELECT * FROM  /BIC/AZD_ODS_C00 INTO TABLE ITEM_TABLE.
    SORT ITEM_TABLE BY /BIC/ZABOOKID ASCENDING.  
           LOOP AT ITEM_TABLE.
            AT NEW /BIC/ZABOOKID.
            GV_FLAG = 'X'.
            ENDAT.
           ENDLOOP.
    if abort is not equal zero, the update process will be canceled
      ABORT = 0.
    How can I read intern table ITEM_TABLE in a update rule?
    And will gv_flag be still available in update rule?
    thanx
    hiza
    Message was edited by:
            Hiza
    Message was edited by:
            Hiza

    Hi,
    I am just giving you a sample code which I had used
    just try to read this will help you
    PROGRAM UPDATE_ROUTINE.
    $$ begin of global - insert your declaration only below this line  -
    TABLES: ...
    DATA:   ...
    $$ end of global - insert your declaration only before this line   -
    The follow definition is new in the BW3.x
    TYPES:
      BEGIN OF DATA_PACKAGE_STRUCTURE.
         INCLUDE STRUCTURE /BIC/CSZRINF001.
    TYPES:
         RECNO   LIKE sy-tabix,
      END OF DATA_PACKAGE_STRUCTURE.
    DATA:
      DATA_PACKAGE TYPE STANDARD TABLE OF DATA_PACKAGE_STRUCTURE
           WITH HEADER LINE
           WITH NON-UNIQUE DEFAULT KEY INITIAL SIZE 0.
    FORM startup
      TABLES   MONITOR STRUCTURE RSMONITOR "user defined monitoring
               MONITOR_RECNO STRUCTURE RSMONITORS " monitoring with record n
               DATA_PACKAGE STRUCTURE DATA_PACKAGE
      USING    RECORD_ALL LIKE SY-TABIX
               SOURCE_SYSTEM LIKE RSUPDSIMULH-LOGSYS
      CHANGING ABORT LIKE SY-SUBRC. "set ABORT <> 0 to cancel update
    $$ begin of routine - insert your code only below this line        -
    fill the internal tables "MONITOR" and/or "MONITOR_RECNO",
    to make monitor entries
    break-point.loop at DATA_PACKAGE.if DATA_PACKAGE-/BIC/ZREMPID GE 5.delete DATA_PACKAGE.endif.endloop.
    if abort is not equal zero, the update process will be canceled
      ABORT = 0.
    $$ end of routine - insert your code only before this line         -
    Regards
    Rahul

  • User Tables form

    Hi,
    Is it possible to Add combo box in the existing field on User table form through UI API? I want to add combo box in UDT for selecting Item code.
    thanks in advance
    Denis

    Hi Denis,
    The first approach I would try is a formatted search fired when Shift+F2 is clicked. Cheap and easy.
    In a user defined form, you could use datasources to get this. But in the default form I don´t think you could do it using datasources. Perhaps I´m wrong.
    If you are in 2005, you could try the ChooseFromList object to get what you need. More elegant, but more work.
    Hope helps,
    Ibai Peñ

  • Automatic population table form

    I have table form. I need to automatic populate certain fields of this table form with values based on selections made by users in their select lists. As in this example http://htmldb.oracle.com/pls/otn/f?p=31517:106:3816553832235531:::::
    Suppose, 1 row has 10 columns - 5 select lists and 5 text fields (these text fields get values based on values of select lists).
    Does this mean, that for table form (20 rows) I must create 100 application items for storing temporary values of select lists?

    Denes Kubicek wrote:
    You will need only one application item ;)
    Denes Kubicek
    Ok. I have the following Application Process On Demand for one element of table form (f16_0001 - row 1 column 16):
    DECLARE
    v_stoim_mdf   NUMBER(15,2);
    CURSOR cur_c
    IS
    SELECT STOIM
    FROM TIP_MDF_STOIM
    WHERE KOD_TIP_MS = TO_NUMBER (v ('TEMPORARY_STOIM_MDF'));
    BEGIN
    FOR c IN cur_c
    LOOP
    v_stoim_mdf := c.STOIM;
    END LOOP;
    OWA_UTIL.mime_header ('text/xml', FALSE);
    HTP.p ('Cache-Control: no-cache');
    HTP.p ('Pragma: no-cache');
    OWA_UTIL.http_header_close;
    HTP.prn ('<body>');
    HTP.prn ('<desc>this xml genericly sets multiple items</desc>');
    HTP.prn ('<item id="f16_0001">'  || v_stoim_mdf  || '</item>');
    HTP.prn ('</body>');
    EXCEPTION
    WHEN OTHERS
    THEN
    OWA_UTIL.mime_header ('text/xml', FALSE);
    HTP.p ('Cache-Control: no-cache');
    HTP.p ('Pragma: no-cache');
    OWA_UTIL.http_header_close;
    HTP.prn ('<body>');
    HTP.prn ('<desc>this xml genericly sets multiple items</desc>');
    HTP.prn ('<item id="f16_0001">' || SQLERRM || '</item>');
    HTP.prn ('</body>');
    END;
    The following JavaScript for update TEMPORARY_STOIM_MDF:
    +<script language="JavaScript" type="text/javascript">+
    +<!--+
    +function pull_value_mdf(pValue){+
    var get = new htmldb_Get(null,html_GetElement('pFlowId').value,
    +'APPLICATION_PROCESS=Set_stoim_mdf',0);+
    +if(pValue){+
    get.add('TEMPORARY_STOIM_MDF',pValue)
    +}else{+
    get.add('TEMPORARY_STOIM_MDF','null')
    +}+
    gReturn = get.get('XML');
    +if(gReturn){+
    var l_Count = gReturn.getElementsByTagName("item").length;
    for(var i = 0;i<l_Count;i+){+
    +var l_Opt_Xml = gReturn.getElementsByTagName("item");+
    var l_ID = l_Opt_Xml.getAttribute('id');
    var l_El = html_GetElement(l_ID);
    +if(l_Opt_Xml.firstChild){+
    var l_Value = l_Opt_Xml.firstChild.nodeValue;
    +}else{+
    var l_Value = '';
    +}+
    +if(l_El){+
    +if(l_El.tagName == 'INPUT'){+
    l_El.value = l_Value;
    +}else if(l_El.tagName == 'SPAN' &&+
    +l_El.className == 'grabber'){+
    l_El.parentNode.innerHTML = l_Value;
    l_El.parentNode.id = l_ID;
    +}else{+
    l_El.innerHTML = l_Value;
    +}+
    +}+
    +}+
    +}+
    get = null;
    +}+
    +//-->+
    +</script>+
    I don't know what the code need for any other rows. How update the other rows?

  • Transfer elements between 2 base table forms.

    Environment
    OS: WinXP
    Oracle 10g (9.0.4.0.0) Developer suite
    Scenario:
    2 base table forms
    Form1 is based on table1 and has 10 elements
    Form1 has a button which when triggered, causes 5 of the 10 elements to be inserted in table2
    Form2 is based on table2 and has 10 elements 5 of which are obtained from Form1
    When I do a query-execute in Form2 to pull all the records, only records that were entered through Form2 show up. The transferred elements (record) from Form1 are not pulled up.
    When I do a query->enter and search for records in Form2 that were transferred from Form1, I receive a FMR-40301 Query caused no records to be retrieved. Re-enter.
    However the records transferred from Form1 are pulled up if I run a sql in the Database.
    Please advice.
    Here is the code that is triggered when button is pressed in Form1 to transfer elements to form2.
    DECLARE
         raiDate               RAI_PROPOSAL.STAMP1%TYPE;
         raiTime RAI_PROPOSAL.STAMP2%TYPE;
         sPropNo               RAI_PROPOSAL.PROP_NO%TYPE;
         selRec               RAI_PROPOSAL%ROWTYPE;
         CURSOR getProp(propNo IN RAI_PROPOSAL.PROP_NO%TYPE) IS
              SELECT      *
              FROM          RAI_PROPOSAL
              WHERE          RAI_PROPOSAL.PROP_NO = propNo;
    BEGIN
         sPropNo := :RAI_PROPOSAL.PROP_NO;
         /* Open cursor and fetch selected row */
         IF( NOT (getProp%ISOPEN) )THEN
              OPEN getProp(sPropNo);
         END IF;
         FETCH getProp INTO selRec;
         CLOSE getProp;
         /* Get date and time of transfer */
         raiDate := sysdate();
         raiTime := TO_CHAR(sysdate(), 'hh24:mi:ss');
    /* list all elements being transferred - all have values so NOT NULL fields are taken care of*/
    MESSAGE(selRec.cdfa_no || ', ' || selRec.con_sub || ', ' || selRec.cs_amt || ', ' || selRec.cs_source || ', ' || selRec.dept_prdir || ', ' || selRec.dept_proj2 || ', ' || selRec.dept_proj3 || ', ' ||
    selRec.human_subj || ', ' || selRec.initials || ', ' || selRec.prime_agre || ', ' || selRec.prodir_fn || ', ' || selRec.prodir_ln || ', ' || selRec.prodir2fn || ', ' || selRec.prodir2ln || ', ' || selRec.prodir3fn || ', ' || selRec.prodir3ln || ', ' ||      selRec.proj_type || ', ' ||     selRec.prop_date || ', ' || selRec.prop_no || ', ' ||
    selRec.prop_title || ', ' || selRec.propr_info || ', ' || selRec.school || ', ' || selRec.sol_no || ', ' || selRec.spon_typ || ', ' || selRec.sponsor || ', ' || raiDate || ', ' || raiTime || ', ' || selRec.vert_anm);
         /* Insert selected proposal into award table */     
         INSERT INTO
         RAI_AWARD(CDFA_NO, CON_SUB, CS_AMT, CS_SOURCE,
                   DEPT_PRDIR, DEPT_PROJ2, DEPT_PROJ3,
                   HUMAN_SUBJ, INITIALS, PRIME_AGRE, PRODIR_FN, PRODIR_LN,
                   PRODIR2FN, PRODIR2LN, PRODIR3FN, PRODIR3LN, PROJ_TYPE,
                   PROP_DATE, PROP_NO, PROP_TITLE, PROPR_INFO, SCHOOL,
                   SOL_NO, SPON_TYP, SPONSOR, STAMP1, STAMP2, VERT_ANM)
         VALUES(selRec.cdfa_no, selRec.con_sub, selRec.cs_amt, selRec.cs_source,
              selRec.dept_prdir, selRec.dept_proj2, selRec.dept_proj3,
              selRec.human_subj, selRec.initials, selRec.prime_agre, selRec.prodir_fn,
    selRec.prodir_ln, selRec.prodir2fn, selRec.prodir2ln, selRec.prodir3fn, selRec.prodir3ln, selRec.proj_type, selRec.prop_date, selRec.prop_no, selRec.prop_title, selRec.propr_info, selRec.school, selRec.sol_no, selRec.spon_typ, selRec.sponsor, raiDate, raiTime, selRec.vert_anm);
         MESSAGE ('INSERTED');
         /* Commit the data inserted */
         FORMS_DDL('COMMIT');
    END;

    Hi,
    Do you have radio buttons, a check box or a list item on your form?
    I have seen this before. If the value queried from the database does not match the allowable values, the record is "silently rejected" and is not queried into the form. You say your records are in the database if you query table2 via SQL, but Forms is rejecting the records.
    Look up the Forms Help for the topics "Creating a Record Group", or "Mapping of Other Values", or Search for the word "silently". It will say something like:
    "Leave the Mapping of Other Values property blank to indicate that other values are not allowed for this item. Any queried record that contains a value that does not match one of the values associated with an element in the List is silently rejected. Any attempt to assign an other value is disallowed."
    HTH.

  • UIX - Changing read-only-table row colors

    Hi
    I have the requirement to alternate the background-row-color in an UIX read-only-table dependent on a value in the row.
    Can anybody point me in the right direction of a solution please?
    I'm familiar enough with the styles in the XSS style sheets, and using EL to dynamically change attributes of a UIX web page when rendered. However in the default <table> UIX tag generated by JDeveloper when dragging a data control onto a UIX web page, there doesn't appear to be a <row> tag for changing the background colour?
    Any help appreciated
    I'm using JDeveloper 9.0.5.2.
    Cheers,
    CM.

    I don't know if this works in JDeveloper 9.0.5.2, but there's a solution at least for JDevloper 10.1.2. You have to define a different styleClass (a CSS) for each column, depending on a condition. This solutions works as well together with row banding:
    <column>
      <columnHeader>
        <sortableHeader model="${ctrl:createSortableHeaderModel(bindings.MyView,'Seats')}" text="Seats"/>
      </columnHeader>
      <contents>
        <rowLayout width="100%" styleClass="${ui:cond(uix.current.IsLocked == 'J', 'OraTableCellLocked', '')}">
          <contents>
            <cellFormat>
              <contents>
                <textInput model="${ui:defaulting(uix.current.Seats, ' ')}" columns="10" readOnly="true"/>
              </contents>
            </cellFormat>
          </contents>
        </rowLayout>
      </contents>
    </column>The styleClass "OraTableCellLocked" has to be defined in the file "base-desktop.xss". An example ("Locked" cells are displayed with a red background):
       <style selector=".OraTableCellLocked">
        <includeStyle name="TableCellDataText"/>
        <includeStyle name="TableCellDataVerticalAlign"/>
        <!--<includeStyle name="TableCellDataBackgroundColor"/>-->
        <includeStyle name="TableCellDataBorderColor"/>
        <property name="background-color">#FFA4A4</property>
      </style>Hope this helps, although the original is very old.
    Regards,
    Georg

  • Trinidad table/form too big in mobile page

    I was trying to emulate the demo at [http://download.oracle.com/otn_hosted_doc/jdeveloper/11gdemos/ADFMobile/adfmobile.htm] using my own data. I can't seem to get trinidad tables/forms to fit as nicely as the demo does within a 240x320 screen at design time. I set the width to 100% with no success. What other property/template should I set?

    Nevermind! Set the form font to be smaller and that helped.

  • We can't add a decimal number column with the create table forms

    In the version 4, we can't add a decimal number column with the create table forms.

    In the GUI, I found the following column (I translate from french to english): PK, Name, Data_type, lenght, not null, default, comments.
    In the lenght field, if I enter 9,3 to have a NUMBER(9,3), I have a message saying that the number must be an integer.

  • Error getting the table form SQLdatabase

    Hi
    I am trying to get the table form database. Connection is fine but when i am trying to display tables:
    C  Thread ID:6388
    C  dbmssslib.dll patch info
    C    patchlevel   0
    C    patchno      72
    C    patchcomment MSSQL: Thread check in DbSlDisconnect (969143)
    C  Network connection used from ACDBD006 to 10.8.191.80 using tcp:10.8.191.80
    C  Connected to db server : [10.8.191.80] server_used : [tcp:10.8.191.80], dbname: Procurement_Test, dbuser: dbo
    C  pn_id:10.8.191.80_PROCUREMENT_TEST_BWD
    B  Connection 6 opened (DBSL handle 1)
    B  Wp  Hdl ConName          ConId     ConState     TX  PRM RCT TIM MAX OPT Date     Time   DBHost
    B  000 000 R/3              000000000 ACTIVE       NO  YES NO  000 255 255 20070830 111230 ACDBD006
    B  000 001 R/3*             000000023 DISCONNECTED NO  NO  NO  000 255 255 20070907 132307 ACDBD006
    B  000 002 R/3*BWMON        000000021 DISCONNECTED NO  NO  NO  003 255 255 20070907 130541 ACDBD006
    B  000 003 R/3*DTPLOG       000000022 DISCONNECTED NO  NO  NO  000 255 255 20070907 131807 ACDBD006
    B  000 004 TEST             000000044 DISCONNECTED NO  NO  NO  004 100 005 20070911 105027 10.8.191.80
    B  000 005 ACSCT001         000000042 DISCONNECTED NO  NO  NO  000 100 005 20070910 132555
    B  000 006 BUYIT_CONN       000000110 ACTIVE       NO  YES NO  004 100 100 20070911 143721 10.8.191.80
    C  DbSlBegRead[1]: ##Y4ACDBD006Procurement_Test00000011640000000001143721
    C  DbSlBegRead[1]: ##Y4ACDBD006Procurement_Test00000011640000000002143721
    B Tue Sep 11 14:38:16 2007
    B  6: name = BUYIT_CONN, con_id = 000000110 state = INACTIVE    , perm = YES, reco = NO , timeout = 004, con_max = 100, con_opt = 10
    B  6: name = BUYIT_CONN, con_id = 000000110 state = INACTIVE    , perm = YES, reco = NO , timeout = 003, con_max = 100, con_opt = 10
    C  DbSlBegRead[1]: ##Y4ACDBD006bwd00000011640000000017111230
    C  ParamStmtExec: line 13049. hr: 0x80040e2f The statement has been terminated.
    C<b>  DbSlModify - Error 26 (dbcode 2627)
    C  No statement!</b>
    C  ParamStmtExec: line 13049. hr: 0x80040e2f The statement has been terminated.
    C  <b>DbSlModify - Error 26 (dbcode 2627)
    C  No statement!</b>
    C  DbSlBegRead[1]: ##Y4ACDBD006bwd00000011640000131213111230
    C  DbSlBegRead[1]: ##Y4ACDBD006bwd00000011640000131213111230
    C  DbSlBegRead[1]: ##Y4ACDBD006bwd00000011640000000709111230
    C  DbSlBegRead[1]: ##Y4ACDBD006bwd00000070720000000061111230

    Hi
    try this
    F fact tables are
    created without a unique index. However, existing unique indexes are not
    deleted. This may sometimes cause a duplicate key during loading to the
    InfoCube and thus trigger the above-described short dump.
    Run the report SAP_DROP_UNIQUE_FACTINDEX_DB2 to replace the unique index on F fact tables with a non-unique index. Refer also to note 511170.

Maybe you are looking for