Changing a mapplet select seems not to be working

I am trying to change the mapplet select for the BOM Header extraction task. I've copied the mapping from the ORA R12 Adaptor to my custom folder and I've altered the mapplet in my custom folder. I've also copied the informtica task and workflow.
In DAC I've pointed the task BOM Header to pick the task from my custom folder.
Session Log says custom folder... but it seems that the mapplet is still running the original select. (I've changed the mapplet to limit the number of rows ROWNUM < 10 but I can see in DS table more than 400K records...
Anything I am forgotting ?
Txs. a lot.
Antonio

Sometimes the SQL in a mapping is ignored because there is a session SQL override in the workflow? In workflow manager, select workflow, select task, select tab mapping, select source qualifier, look at property "SQL Query".

Similar Messages

  • Having upgraded all my devices to IOS 6, including iPad And upgraded no montan limón no my macbookpro, iCloud seems not to be working as smoothly anymore And some impagos docs have not transferred. Help

    Having upgraded all my devices to IOS 6, including iPad And upgraded no montan limón no my macbookpro, iCloud seems not to be working as smoothly anymore And some impagos docs have not transferred. Help

    Having upgraded all my devices to IOS 6, including iPad And upgraded no montan limón no my macbookpro, iCloud seems not to be working as smoothly anymore And some impagos docs have not transferred. Help

  • HT4628 My airport seems not to be working anymore. I have internet but now I can't play music through Itunes remotely. Airport kept flashing amber. Now I have tried to reset it it only flashes briefly amber and then no more light and it seems disconnected

    My airport seems not to be working anymore. I have internet but now I can't play music through Itunes remotely. Airport kept flashing amber. Now I have tried to reset it it only flashes briefly amber and then no more light and it seems disconnected?? Any help out there?

    Unfortunately the Netgear DG834N router is rubbish with Macbook Pro's. I've had a few netgear routers, which were all good with my mac, which is why I bought the 'N' series one as an upgrade to the 'G' version, but basically it crashes my Mac constantly. I get the fade up grey screen forcing my to hard power off my book. everything freezes. It plain just doesn't work. wireless 'N' is still just in draft form and the difference between the Netgear and Mac version on the macbook pro just clash. Netgear haven't updated the firmware on the router since last year, so hopefully the will soon, but I've just gone back to my old 'G' version, and stuck the DG834N on ebay. I tried all the configs, with and with out security and no luck, it always disconnected, froze and crashed.

  • A Cooling Fan seems not to be working

    A message from HP: A cooling Fan seems non to be working, the system will shut dowin in 15 seconds

    Hi ErmannoFelici,
    Thank you for visiting the HP Support Forums and Welcome. I have read your thread on your HP Notebook and getting a cooling fan error. Here is a link to troubleshoot overheating.
    I would be happy to assist if needed. How Do I Find My Model Number or Product Number?
    Please respond with which Operating System you are running:
    Which Windows Operating System am I running?
    Please let me know.
    Thanks.
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the bottom to say “Thanks” for helping!

  • Items BulkAction - "Copy" seems NOT to be working?

    I AM TRYING TO COPY MANY ITEMS USING THE "BULK ACTION" FROM ONE FOLDER TO ANOTHER IN THE SAME CONTENT AREA.
    I FOLLOWED THE CORRECT STEPS BUT NO ITEM IS COPIED.
    THE BULK ACTION "DELETE" SEEMS TO BE WORKING OK.
    DID ANYBODY EXPERIENCE THE SAME PROBLEM?
    I AM USING PORTAL 3.0.9 / W2000
    I WORK IN SPANISH LANGUAGE.
    ANOTHER THING, COPYING ONE ITEM AT A TIME (USING THE NORMAL "COPY ITEM" FUNCTION WORKS FINE).
    TKS!

    Maria,
    It works fine for me. Have you applied all the relevant 3.0.9 patches? Please check Metalink. Note that some of the patches include other patches, so read the patch release notes carefully.
    Regards,
    Jerry

  • Subwoofer seems not to be working?

    Last week, I purchased Best Buy's daily deal, the Insignia rocketboost wireless subwoofer.  With it I purchased the Rocketfish-rocketboost wireless receiver/transmitter.  I hooked up the transmitter to the back audio out of my Sony Bravia tv.  I plugged in the subwoofer across the room.  I was able to easily connect them.  Both blue lights are on the back of the subwoofer, and all lights are steady on the transmitter.  But I hear nothing coming from the subwoofer?  I tried changing the input on my tv, but none other worked than the HMD1.  I then plugged in the transmitter to the audio out of my dvd player and plugged that back into my tv where it was, but still nothing.  Not sure what is wrong? Can anyone help?
    Thanks!
    Olivia

    You might have to post some pictures of your set up, that might make this easier. Or atleast post some model numbers as products are different even within manufactures product lines.  
    But, I still believe on Sony tv's you have to tell them you are using some time of audio out. 
    I dont' know why you're using ANY type of external sound without a A/V reciever anyways. Unless it's a soundbar. 
    Former BBY Home Theater Associate 2010 - 2012. Now I work as a graphic designer in the print and prepress industry.

  • Oracle Text Context index keeps growing. Optimize seems not to be working

    Hi,
    In my application I needed to search through many varchar columns from differents tables.
    So I created a materialized view in which I concatenate those columns, since they exceed the 4000 characters I merged them concatenating the columns with the TO_CLOBS(column1) || TO_CLOB(column)... || TO_CLOB(columnN).
    The query is complex, so the refresh is complete on demand for the view. We refresh it every 2 minutes.
    The CONTEXT index is created with the sync on commit parameter.
    The index then is synchronized every two minutes.
    But when we run the optimize index it does not defrag the index. So it keeps growing.
    Any idea ?
    Thanks, and sorry for my poor english.
    Edited by: detryo on 14-mar-2011 11:06

    What are you using to determine that the index is fragmented? Can you post a reproducible test case? Please see my test of what you described below, showing that the optimization does defragment the index.
    SCOTT@orcl_11gR2> -- table:
    SCOTT@orcl_11gR2> create table test_tab
      2    (col1  varchar2 (10),
      3       col2  varchar2 (10))
      4  /
    Table created.
    SCOTT@orcl_11gR2> -- materialized view:
    SCOTT@orcl_11gR2> create materialized view test_mv3
      2  as
      3  select to_clob (col1) || to_clob (col2) clob_col
      4  from   test_tab
      5  /
    Materialized view created.
    SCOTT@orcl_11gR2> -- index with sync(on commit):
    SCOTT@orcl_11gR2> create index test_idx
      2  on test_mv3 (clob_col)
      3  indextype is ctxsys.context
      4  parameters ('sync (on commit)')
      5  /
    Index created.
    SCOTT@orcl_11gR2> -- inserts, commits, refreshes:
    SCOTT@orcl_11gR2> insert into test_tab values ('a', 'b')
      2  /
    1 row created.
    SCOTT@orcl_11gR2> commit
      2  /
    Commit complete.
    SCOTT@orcl_11gR2> exec dbms_mview.refresh ('TEST_MV3')
    PL/SQL procedure successfully completed.
    SCOTT@orcl_11gR2> insert into test_tab values ('c a', 'b d')
      2  /
    1 row created.
    SCOTT@orcl_11gR2> commit
      2  /
    Commit complete.
    SCOTT@orcl_11gR2> exec dbms_mview.refresh ('TEST_MV3')
    PL/SQL procedure successfully completed.
    SCOTT@orcl_11gR2> -- query works:
    SCOTT@orcl_11gR2> select * from test_mv3
      2  where  contains (clob_col, 'ab') > 0
      3  /
    CLOB_COL
    ab
    c ab d
    2 rows selected.
    SCOTT@orcl_11gR2> -- fragmented index:
    SCOTT@orcl_11gR2> column token_text format a15
    SCOTT@orcl_11gR2> select token_text, token_first, token_last, token_count
      2  from   dr$test_idx$i
      3  /
    TOKEN_TEXT      TOKEN_FIRST TOKEN_LAST TOKEN_COUNT
    AB                        1          1           1
    AB                        2          3           2
    C                         3          3           1
    3 rows selected.
    SCOTT@orcl_11gR2> -- optimizatino:
    SCOTT@orcl_11gR2> exec ctx_ddl.optimize_index ('TEST_IDX', 'REBUILD')
    PL/SQL procedure successfully completed.
    SCOTT@orcl_11gR2> -- defragmented index after optimization:
    SCOTT@orcl_11gR2> select token_text, token_first, token_last, token_count
      2  from   dr$test_idx$i
      3  /
    TOKEN_TEXT      TOKEN_FIRST TOKEN_LAST TOKEN_COUNT
    AB                        2          3           2
    C                         3          3           1
    2 rows selected.
    SCOTT@orcl_11gR2>

  • My apple ID's seem not to be working

    Hi  for some reason l am having heaps of trouble with my IDs for apple TV.
    It has been working fine untill yesterday now its all gone to *#&#* and l cant even get apple to send me an email to change my passwords, which l should not have to do.
    It all started when l downloaded a purchased movie on my Ipad as l was watch something else on the TV, then when l tried to access this from my Apple TV nope cant see this purchase, however when l do to re purchase the rented movie its states do you want to purchase this again?? what the!! so the apple TV knows lve done this purchase but the system cannot find the purchase!!
    HELP
    l have tried logging in and reset passwords but to no avail, tried looking for the on my Imac, can see this but does not play on imac ... so l am at a bit of a loss at the moment.
    Apple please dont let this Apple TV be a lemon!

    Same here. It worked fine this week, and now it is kicking me out.

  • My loop statement in smartforms seems not to be working...

    Hello Experts,
    I am currently practicing smartforms and I am trying to display the records of my internal table.
    What I did was in my table under MAIN window I have put the statement:
    it_spfli into wa_spfli and also in my main area of my table I have a loop statement. Now, in one of my text
    i put wa_spfli-carrid, wa_spfli-countryfr, etc. But it still does not show any data.Help would be greatly appreciated.

    u will be getting a function module name for the smartform then
    goto se37-->enter the FM name -->search for the ITAB you r using then put a break point.
    come back to u r program the run.. controle will stops over there then check whether the data is populating or not.
    INPUT and OUTPUT patameters are for program line and INITIALIZATION tabs.. when you want to modify some data in these you need to give the veriable or ITABs u r using inside. so that system will determine the global declarations(veriable or ITAbs).
    for more info refer these links
    http://www.sap-img.com/smartforms/sap-smart-forms.htm
    http://www.sap-img.com/smartforms/smartform-tutorial.htm
    http://www.sapgenie.com/abap/smartforms.htm

  • Real Player seems not to be working properly.It downloads the video but I click "play", nothing appears on the screen.It worked ok till some days ago.I've tried resetting real player but nothing happens.How can I solve this?

    Real Player is not working properly.It downloads videos but when I click "play" ,it doesn't reproduce the video. I tried resetting Real Player but nothing happens.
    It worked fine  up until a couple of dyas ago.
    What can I do?

    compuma wrote:
    What can I do?
    Ditch RealPlayer and use a real audio app.

  • After upgrade to MLion most of my main accoungs seem not to be working. How do I fix?

    I upgraded, and mosty of my mail accounts now don't let me send mail, although I can get it. Any fix for this?

    Ditto; After upgrading to Mtn Lion and using Mac Mail and POP accounts, I am able to send email but not able to receive email. In the Advanced window of Preferences/Accounts, if I choose the Authentication method "Password", there is no place to confirm my User Name and Password for my outgoing SMTP server. Any help ideas? Thx

  • When I convert my pdf doc to word, the fonts go really weird and it also puts some text into boxes. when I try to select the test and change the font, it does not change it properly?

    When I convert my pdf doc to word, the fonts go really weird and it also puts some text into boxes. when I try to select the text and change the font, it does not change it properly? This is making it impossible to amend.

    Hi Janedance1,
    If the PDF that you converted already has searchable text, please try disabling OCR as described in this document: How to disable Optical Character Recognition (OCR) when converting PDF to Word or Excel. (If the PDF was created from a scanned document and doesn't already have searchable text, disabling OCR isn't a great option, as the text won't be searchable/editable in the converted Word doc.)
    Please let us know how it goes.
    Best,
    Sara

  • Cursor does not change with tool selection

    Has anybody experienced this?  My cursor suddenly does not change with the selection of tools when working on photos.  Once I roll over the picture the arrow is lost and becomes a strange 3 small things, so can't do any work accurately.  Still using PS 7 in Win 7.  This was not a problem previously.  Already uninstalled and reinstalled and problem is still there.  I have searched for where this can be fixed.  So far no luck.  Any suggestions?

    First answer, PS 7, not Elements.  Second answer, BIG THANKS, the dpi change corrected the problem. 
    It was an odd issue as PS was working fine for years and then suddenly the problem occured, even though I had not changed the dpi recently.
    A true glitch.  Thanks again for the fix.  Working fine again.

  • Sudden monitor seems not working after change HD

    Hi Folks,
    after I change my original HD which is made by Hitachi to Seagate Momentus XT, my sudden monitor seems not working again, in perviusly if I take my MBP up from table with a strong accelerate, a sound like "ka-da" would be heard from HD because of the arm in HD reset to its initial position, but now with the new HD, this issue has never happened again.
    anybody know why? please do me a favor, thank you.

    http://www.seagate.com/ww/v/index.jsp?name=st95005620as-momentus-xt-sata-3gbs-4g b-500gb-drv&vgnextoid=8ba8576b12b38210VgnVCM1000001a48090aRCRD&locale=en-US
    1-800-SEAGATE (1-800-732-4283)

  • My select select statement seems not to work...

    Hello experts,
    I am having trouble with my select statement below. Here is what I need to do:
    1. loop at itab it_equz.
    2. get single asset number(ANLNR) and description(SHTXT) from table ITOB where EQUNR =_equz-equnr.
    3. get single asset number(ANLN1), asset subclass(ANLN2 and subnumber(ORD42 from table ANLA where its asset(anln1) equals to the asset fetched by ITOB. (no. 2 step) and DEAKT eq '00000000'
    4. Now, I would get all fields(select single) in table ANLC where ANLN1 equals to asset fetched by ANLA and ANLN2 equals to ANLN2 fetched by ANLA and AFABE eq '01'.
    5.endloop.
    Now, the problem is that I can't seem to get the right values in table ANLC. Now, my boss said that the values that I must get in ANLC must not be deactivated. So I did that by getting the required fields(no 3 step) in table ANLA where its DEAKT is equal to '00000000'.
    Now, my select statement for ANLC seems not to work properly since I have the proper where conditions. Anyway, below is my select statement that I did:
    LOOP AT it_equz.  "no 1 step
    SELECT SINGLE anlnr shtxt FROM itob   "no 2 step
              INTO (it_itob-anlnr, it_itob-shtxt)
              WHERE equnr = it_equz_dum1-hequi.
    MOVE it_itob-anlnr TO it_finaltab-asset_dum.
                MOVE it_itob-anlnr TO it_finaltab-asset.
                MOVE it_itob-shtxt TO it_finaltab-description.
    SELECT SINGLE bukrs anln1 anln2 ord42   "no 3 step
                FROM anla                                  
                INTO (it_anla-bukrs, it_anla-anln1, it_anla-anln2,
                      it_anla-ord42)
                WHERE anln1 = it_finaltab-asset
                  AND bukrs IN r_iwerk
                  AND deakt = '00000000'.
    MOVE it_anla-ord42 TO it_finaltab-asset_sub.
                  WRITE it_finaltab-asset TO v_asset.
                  CONCATENATE v_asset '-' it_anla-anln2
                  INTO it_finaltab-asset_subnum.
    SELECT SINGLE bukrs anln1 gjahr afabe knafa kansw  "no 4 step
                              answl kaafa nafal aafav aafag
                              nafap aafap nafav nafag FROM anlc
                          INTO (it_anlc-bukrs, it_anlc-anln1, it_anlc-gjahr,
                                it_anlc-afabe, it_anlc-knafa, it_anlc-kansw,
                               it_anlc-answl, it_anlc-kaafa, it_anlc-nafal,
                               it_anlc-aafav, it_anlc-aafag, it_anlc-nafap,
                               it_anlc-aafap, it_anlc-nafav, it_anlc-nafag)
                            WHERE anln1 EQ it_finaltab-asset
                              AND anln2 EQ it_anla-anln2
                              AND bukrs EQ it_anla-bukrs
                              AND afabe EQ '01'.
    it_finaltab-accq_cost = it_anlc-kansw + it_anlc-answl.
                IF p_posdep = 'X'.
                  it_finaltab-acc_dep = it_anlc-knafa +
                                        it_anlc-nafav +
                                        it_anlc-nafag +
                                        it_anlc-kaafa +
                                        it_anlc-aafav +
                                        it_anlc-aafag.
                ELSE.
                  it_finaltab-acc_dep = it_anlc-knafa +
                                        it_anlc-nafav +
                                        it_anlc-nafag +
                                        it_anlc-kaafa +
                                        it_anlc-aafav +
                                        it_anlc-aafag +
                                        it_anlc-nafap +
                                        it_anlc-aafap.
                ENDIF.
    APPEND it_finaltab. CLEAR it_finaltab.
              APPEND it_equz_dum2. CLEAR it_equz_dum2.
              CLEAR it_itob. CLEAR it_anla. CLEAR it_anlc.
    endloop.

    Hi,
      Please avoid selection in loop. it will lead to major performance issue.
    avoid move statements ; instead use assignment.
    1st :- select the entire data into internal table
    eg:-
    SELECT anlnr shtxt FROM itob
    INTO table it_itob
    for all entries in it_equz
    WHERE equnr = it_equz-hequi.
    1st select
    2nd select.
    2nd :- now loop on ur internal table to get the desired result.
    it is good to work with internal table rather than select statements in loop.
    Regards

Maybe you are looking for

  • Modify work sheet in discoverer 10 g

    Dear all, i new in oracle discoverer and i need to change the sql query of a work sheet it reads from a table (Response_Details) and i need to change the name to fully (survey.Response_Details) i used import sql but it is not working plz help thanks

  • One finder window not behaving...any ideas?

    Hi all, For some reason, double-clicking Macintosh HD brings up a window minus sidebar and icon toolbar across the top - no other windows do this and it does it across all user accounts (whether previously created or new). Opening a new window operat

  • Fastest method to save (as a shortcut) or select a custom colour

    At http://forums.adobe.com/message/5524672#5524672, Dave Marchant graciously imparted that it's impossible to change the colour blend or colour in the following red box: Nonetheless, what are some faster ways to access/choose/save a custom colour tha

  • JSF AJAX through PhaseListener

    Can someone point to a reference article or blog which shows the PhaseListener approach of enhancing a JSF component for AJAX. A simple example on the way it is implemented will suffice

  • WIP account

    Hi, Can anyone tell me about wip account and its link in ps module. Thanks In advance, Bagi