Extractor Checker OK but actual Extract has no data!

Hi all,
Thanks for taking the time to read my post and for your help in advance
I have a simple custom function module in ECC6.0 which is getting employee information from LDAP.  This information is then tagged on to a few other fields and sent to BW.
I created a data source based on this function module and I'm trying to send the data to BW.  The Extractor checker is working fine and shows the right data. However, when I run the infopackage from BW I receive no data!
I checked the IDOCs as well and noticed that the info IDOCs are sent back to BW with 0 data records, which is telling me that the extractor is not sending back any data, despite it showing the data in the extract checker (RSA3)
Any thoughts?
Thanks,
Mamdouh

Thanks everyone,
The partner profile is ok, and when I test in RSA3 I see the data the I need - so running the extract in debug mode is fine, however running it in the background mode gives me 0 data records
I don't think it is an authorization error either !
Any thoughts?
Thanks again

Similar Messages

  • I've lost my iPhone5 like 40 hours ago. I already turned the Lost mode on with Find my iphone app. But my phone has no data plan so it could not connect to the internet at all. I reported to the police, too. What else can I do? Can anybody advise?

    I've lost my iPhone5 like 40 hours ago. I already turned the Lost mode on with Find my iphone app. But my phone has no data plan so it could not connect to the internet at all. I reported to the police, too. What else can I do? Can anybody advise?

    No...see the link I posted:
    If you did not enable Find My iPhone on your missing device
    If you did not enable Find My iPhone before it was lost or stolen, you can't use it to locate or protect your device, but you can still follow these steps:
    Change your iCloud password to ensure that no one else can use your device to delete or make changes to your iCloud data.
    Report your lost or stolen device to local law enforcement and your wireless carrier. Apple doesn't track or flag lost or stolen products, but you can use My Support Profile (supportprofile.apple.com) to find a list of serial numbers for products that you've purchased or registered with your Apple ID.

  • My Mac wants to 'initialise' my Seagate external harddrive but it already has saved data on it?

    My Mac wants to 'initialise' my seagate external harddrive but it already has data on it that I want to keep. What can I do to protect existing data?

    The message actually says it can't read it and it provides an opportunity to initialise it.

  • CC App shows Acrobat but actual install has nothing

    In the upper right-hand of my Mac, the CC app that runs there in the "toolbar?" displays the Adobe Acrobat icon, fully updated. But Acrobat does not work on my computer.
    So I went to look at the actual installation and there is no Acrobat installed there. Not even a partial version or a screwed up version. Nothing.
    I've done a spotlight search and it's not installed anywhere else on the computer either.
    What is going on and how do I fix it?
    I hate to even type this for fear it will lead someone down a rabbit hole because I really don't think it's relevant. But FWIW, which I think is nothing, the entire Abobe CC installation happens to be on an external drive. This has never caused a problem for any other of the 11 Adobe CC apps I've downloaded, BTW. And it's a necessity for lack of hard-drive space right now. Also, I don't have this problem on my second computer on which the Abobe CC suite is also installed on an external hard-drive.

    Moving this discussion to the Creative Cloud Download & Install forum.
    Diedre please see CC desktop lists applications as "Up to Date" when not installed - http://helpx.adobe.com/creative-cloud/kb/aam-lists-removed-apps-date.html which discusses the difficulty which you are currently experiencing.

  • ExecuteUpdate() returns 1 , but actually it has'nt updated the DB tables

    DATABASE USED : ORACLE 9i
    This is the function that is been called.
    althou, this returns a +ve ans. , saying that the db has been updated ; but when i login into the DB, i donot find the row updated.
    public void process(File dir) throws Exception
         FileInputStream fileIn = null;
         byte b[] = null;
         PreparedStatement stmt = null;
         PreparedStatement stmtBank = null;
         PreparedStatement stmtBrand = null;
         ResultSet rs = null;
         String updateBankInfoTable = "UPDATE ARBANKINFO SET ISSUERLOGO_LARGE = ? WHERE BANKID=?";
         String updateBrandInfoTable = "UPDATE ARBRANDINFO SET ISSUERLOGO_LARGE = ? WHERE BANKID=? and RANGEID = ?";
         int bankId = 0;
         int rangeId = 0;
         // FileNotFoundException or SecurityException might
         // be thrown while reading the files in this dir.
         try{
         fileIn = new FileInputStream(dir);
         }catch(Exception e)
              e.printStackTrace(p);
         String fileNameStr = dir.getName();
         if (fileNameStr!=null || fileNameStr.length()>0)
              // Read the file in a byte array
              long fileLen = dir.length();
              int readBytes = 0;
         int totalRead = 0;
         b = new byte[(int)fileLen];
         while((long)totalRead < fileLen)
         try {
                        readBytes = fileIn.read(b, 0, (int)fileLen);
                   } catch (IOException e1) {
                        e1.printStackTrace(p);
         totalRead += readBytes;
         if (fileIn != null)
         fileIn.close();
         try{
         if (bankIDString!=null)
              stmt = conn.prepareStatement("select BANKID,RANGEID from ARESENROLLPROCESS where MAINLOGOURL = ?" +
                   "and BANKID IN ("+bankIDString+")");
         else
              stmt = conn.prepareStatement("select BANKID,RANGEID from ARESENROLLPROCESS where MAINLOGOURL = ?");
         stmt.setString(1,fileNameStr);
         rs = stmt.executeQuery();
         int i =1;
         while (rs.next())
              bankId = rs.getInt("BANKID");
                   rangeId = rs.getInt("RANGEID");
                   i++;
                   if (rangeId!=0)
                        stmtBrand = conn.prepareStatement(updateBrandInfoTable);
                        stmtBrand.setBytes(1,b);
                        stmtBrand.setInt(2,bankId);
                        stmtBrand.setInt(3,rangeId);
                        if (stmtBrand.executeUpdate()==1)
                                                 p.println("Updated ARBRANDINFO table ");
                        else
                             // log in something
                                                 p.println("*** Column not found in ARBRANDINFO table");
                   else if (rangeId == 0)
                        stmtBank = conn.prepareStatement(updateBankInfoTable);
                        stmtBank.setBytes(1,b);
                        stmtBank.setInt(2,bankId);
                        if (stmtBank.executeUpdate()==1)
                                                 p.println("Updated ARBANKINFO table");
                        else
                                                 p.println("*** Column not found in ARBANKINFO table : " +
                                       "BANKID--> "+bankId);
                   if (stmtBank != null)
                   stmtBank.close();
              if (stmtBrand != null)
                   stmtBrand.close();
         }catch(Exception e)
              e.printStackTrace(p);
         if (stmt != null)
              stmt.close();
         if (stmtBank != null)
              stmtBank.close();
         if (stmtBrand != null)
              stmtBrand.close();
    Any suggestions ?????

    i don't see how not setting the autoCommit parameter
    has anything to do with this.If autocommit is false then an update will not be committed without an explicit commit()!
    >
    I would like to add one more thing in here, which m
    sorry i shud hav added; this particluar fn. does
    update a lot of row; but for some records, althou it
    does say that it has updated(java API ); but in
    reality it does not do it.
    That makes a lot fo difference! It does mean that it is probably not a commit problem but without this extra information my money was on a commit problem. Are you swallowing an exception without reporting it?

  • I can change Image Date, but file now has 2 dates associated with it!

    I have been able to successfully change the image date of the file using Timeature (I need to do this for a handful of images that have an incorrect date), as recommended elsewhere on the discussion board.
    What happens now is that:
    1. The metadata inspector shows the Image Date field as 9/1/02 12:00:00 PM PDT
    (this is correct - I set it to be that date and time, so that is great)
    2. When I click on the "EXIF" button at the bottom of the inspector (which allows me to choose what fields appear in the metadata inspector), the Image Date field is 2/1/04 9:51 AM GMT
    (this is the time the photo was taken, but it is what I am trying to change)
    So I now seem to have 2 image dates associated with the file.
    Any thoughts on how to "clear" the one I am trying to change?
    Thanks!

    Yeah, and worse the date set by Timeature is not set in the EXIF data so if you try to export the version the date you set won't go with the JPG. Even worse, I'm pretty sure the export will have the original photo's EXIF date, if it had one. You can get export to put the version date in the file name with the right export options.
    Export should really allow you to set the EXIF date on versions you export. One reason I bought Aperture was to be able to manage metadata so well that I wouldn't be beholden to it forever. Figured paying the big purchase price for Aperture was my ransom. We'll see in the next few versions if they fix this.
    The two dates are 1) the date in the per-version metadata and 2) the EXIF date in the original JPG. It doesn't modify the EXIF date in the original because Aperture doesn't modify the original by convention. Not updating EXIF data in the original jpg is probably right (IF they would provide a way to export all the version meta data into EXIFs).
    I've resorted to using some command line freeware jhead to set the EXIF dates before import for most of the stuff. You have to do that before the import though because once imported Aperture seems to ignore the EXIF date save for displaying it (to confuse you :-)).
    Since I don't actually care that the original JPG is preserved for me it would be nice to have a utility that read the date out of the latest version meta data and set the EXIF date on the original. That would compliment Timeature (which I find really really tedious and slow).
    Please correct me if I got this wrong!

  • What is extractor checker and use of it...?

    Hello,
    Could you please help to know about extractor checker and use of it.
    Thanks in advance,
    G Raghu.

    Hi..........
    The extractor checker comes packaged in Service API (SAPI), which enables you to create generic DataSources via transaction RSO2. The extractor checker has been available since very early SAP releases (both SAP_APPL including the 3.X track and BW including the 2.X track). It can be considered release-independent. It does not require the source system to be connected to the target BW system. For more information about SAPI, go to SAP Service Marketplace. You search SAP notes using the keyword u201CSAPI.u201D
    By running the extractor checker in the debug mode, you can learn a lot about the underlying application. I have been in situations where I had to work with application-specific standard extractors in areas that Iu2019m only vaguely familiar with. Running the extractor checker in the debug mode has helped me identify the base tables without a lot of effort.
    I have seen generic extractors delivering no data because of faulty logic/coding. The reaction on the BW side is usually one of bewilderment and disbelief. You can avoid this by running the extractor check before executing your InfoPackages from BW. Iu2019ll show you how to use this tool in a more effective way and explain why you might want to use it more frequently.
    For extraction of data we create datasource in the source system.............after that we replicate it in the BW side...............
    Now our datasource can extract data from any:
    Table or view
    Query
    Function mudule.................................
    Now to check whether thae datasource is working fine or not.........We have to go to RSA3 in the source system...........There we will give the Datasource name.................then we will execute.........then it will displsy the data it contains...............we can also check for a specific value......
    Hope this helps you..........
    Regards,
    Debjani........

  • Extractor checker problem

    Hello experts,
    I have done some enhancements to the billing data source (2LIS_13_VDITM) but i cant view that record in the extractor checker. But when I check the Delta queue i can view those new records.
    Please need ur inputs on this as to how we can view the records in RSA3. Its very important.
    Thanks in advance
    Rohit

    Hi,
    Sometimes its not possible to view the records for the changes using RSA3. Try to view them in both F and D modes using the extract checker.
    In this case, would suggest you to pull over the deltas upto the PSA and then check the changes there.
    Cheers,
    Kedar

  • My iphone 5C has incorrect date & time

    I recently did an update last week and still then my phone has lost the correct date & time, even on automatic settings.  It has not lost bluetooth and I am unamle to use i messaging.  I have tried a factory reset but it still has yesterdays date and likes the time of 21.39.
    Instead of smashing this phone up does anybody have any alternatives please as I am getting really ****** off.
    Thanks
    Jane

    To set the date and time, go to Settings-Date and Time-turn Set Automatically off- tap the date and time that appears on screen and change time.

  • I have a new MacBook Pro with OS10.8.2 and cannot get Contacts to print a list of addresses with pictures showing.  There is a check box selecting "picture" which has been checked - but no picture.  This worked fine on OS10.7.5.  Problem??

    I have a new MacBook Pro with OS10.8.2 and cannot get Contacts to print a list of addresses with pictures showing.  There is a check box selecting "picture" which has been checked - but no picture.  This worked fine on OS10.7.5.  Problem??

    First, back up all data immediately, as your boot drive might be failing.
    There are a few other possible causes of generalized slow performance that you can rule out easily.
    Reset the System Management Controller.
    If you have many image or video files on the Desktop with preview icons, move them to another folder.
    If applicable, uncheck all boxes in the iCloud preference pane.
    Disconnect all non-essential wired peripherals and remove aftermarket expansion cards, if any.
    Check your keychains in Keychain Access for excessively duplicated items.
    If you have more than one user account, you must be logged in as an administrator to carry out this step.
    Launch the Console application in the same way you launched Activity Monitor. Make sure the title of the Console window is All Messages. If it isn't, select All Messages from the SYSTEM LOG QUERIES menu on the left. If you don't see that menu, select
    View ▹ Show Log List
    from the menu bar.
    Select the 50 or so most recent entries in the log. Copy them to the Clipboard (command-C). Paste into a reply to this message (command-V). You're looking for entries at the end of the log, not at the beginning.
    When posting a log extract, be selective. Don't post more than is requested.
    Please do not indiscriminately dump thousands of lines from the log into this discussion.
    Important: Some personal information, such as your name, may appear in the log. Anonymize before posting. That should be easy to do if your extract is not too long.

  • Errors occurred during the extraction in RSA3 - Extractor Checker

    Hello,
    I'm trying to check the standard datasource - 0CRM_QUOTATION_I (CRM Quotation Item) in RSA3 (extractor checker) in the CRM system but it returns a pop-up 'Errors occurred during the extraction'.
    Could someone please let me know where and how to check the error as it is not very obvious from the pop-up?
    Many thanks.
    Regards,
    Sri.

    HI  Sri,
    Sometimes the BWA5 Adaptor settings are not properly transported to QA from DEV ,
    Try this ,
    Create a transport request manually from DEV again for the below object in TCODE : SE03 ( Objects in Requests --> Include Objects in a Transport Request  --> Under selection by type and name --> choose radio button --> Selected Objects and provide the below entries )
    R3TR   SMO4   0CRM_QUOTATION_I
    ( you will have to enter SM04 and datasource name only ,press enter it will pick up R3TR automatically ) and then transport to QA
    This should resolve the issue
    Regards,
    Sathya

  • How do I remove a credit/debit card from my account? I ask because I currently have a VISA gift/debit card with 50 dollars on it, but the money has run out so I want to usea new card. Also, there is no 'None' check option for payment type on my account.

    How do I remove a credit/debit card from my account? I ask because I currently have a VISA gift/debit card with 50 dollars on it, but the money has run out so I want to usea new card. Also, there is no 'None' check option for payment type on my account.

    Depending on how you created your account, "None" may or may not be an option. I believe it has something to do with whether the account was made through an App Store request or the regular iTunes Store. For example, my account allows no card but my father's doesn't allow there to be no card.
    To change the card, go to your account settings and change the information to your new card, and hit save.

  • Windows 10 shows the 2nd monitor has 1920x1080 but actually it is 50% less around 1080x840

    The resolution of the 2nd monitor, a Vizio VF551XVT 55-inch 1920x1080 HDTV connected through HDMI cable, shows 1920x1080 (Recommended) on the Windows 10’s Display Screen Resolution setting utility but the true resolution of the 2nd monitor is less than 50%; around 1080x840. All applications on the 2nd monitor displayed their header & boarder frames twice wider on screen, which waste/occupy lots of the 2nd monitor’s display area. Please advise how to correct this critical lower than the set/expected resolution problem of th 2nd monitor.  Thanks. The 1st/primary monitor in this case is a mobile PC Display (1920x1080), Lenovo Z710 Intel i7 4710MQ notebook with NVIDIA 840M GPU. Previously running under the Windows 8.1 OS with the same configuration, the 2nd monitor resolution was also displayed incorrectly but just initially right after the Windows 8.1 reboot, i.e. 2nd monitor shows 1920x1080 resolution but actually the 2nd monitor is about the same as Windows 10, the actual resolution is much/50% fewer than 1920x1080. However, the resolution of the 2nd monitor (HDTV) under Windows 8.1 can be corrected (worked around) by switching the main display from 1st to 2nd monitor, then switching main display back from 2nd to 1st, but such Win 8.1 work around doesn't work for Windows 10 OS . Also, please advise whether Lenovo, MS Windows or NVIDIA is responsible for the displays re-position issue. The re-position issue is, when a TV, PC, shared 2nd monitor is disconnected to watching TV, etc., Windows OS currently moves all the display positions, both active and minimized displays, from 2nd monitor to 1st/main monitor, but ideally would be just moving/re-position the active displays to the main/1st monitor and maintain/leave those minimized display positions intact, so when 2nd monitor reconnects back (done watching TV), user doesn’t need to re-align all the displays back to 2nd monitor again. Thanks for helps. 

    If you won't lose anything and if it is not a big hassle, I would re-install.
    Mainly because Win 10 TP is, after all, a beta OS. Too many possibilities of bugs and glitches. It is better off to reinstall.
    The latest build 9879 has a ISO download link. Use the ISO and burn it to a bootable DVd. Then use the DVD to do a clean reinstall.
    http://windows.microsoft.com/en-us/windows/preview-iso-update?os=win10

  • Apple customer service said there is a payment outstanding but checked bank and the money has been taken any answers plz

    Do you no why apple are saying there is a outstanding payments but the money has been taken from my account

    Hi Cristintia,
    Just expirenced something similar. After being loyal Apple customers for 10 years I was unable to receive support because Apple doesn't support all products sold in their stores nor do they consider iPhone part of their WiFi support network.
    We recently bought an iBaby to use with our iphones as monitors. We have purchased 3 new iphones in the past 2 months. We also have 2 iBooks, 1 imac desk top, and an Airport Express. While trying to install the iBaby the Airport Expressed stopped working. My internet provider told me I needed to contact Apple. After about 40 minutes on the phone, James a senior advisor told me Apple doesn't support any of the current products we have purchased and that I would have to pay $50 for support. After telling me the solution was simple.
    Apple support should value their loyal customers. This seems like a scam to me since we have paid support on all our past products and the iPhones we just purchased. This experience has jaded me from wanting to continue being an Apple customer.
    Irene

  • Blanks and Zeros in Extractor Checker S-API

    Hi All,
    I am currently having a problem with the Extractor Checker S-API.
    I have deleted and filled up the extractor 2LIS_13_VDITM (Billing) in our source system. After doing that, it seems that when I use Extractor Checker S-API to view the data, it returns me number of records but when I tried to open to the details to view the records, it returns me rows with zero value and blanks.
    I tried to look up the transaction code for billing, VF03 (Displaying Billing Document), it seems there are data.
    This issue does not occur a few weeks ago. The changes that occur in our source system is only on the security. It seems that there are some changes on the security of our user logon. Will this actually affect what data that we can extract?
    PS: Even so, when I tried to load it into BW, it shows number of records but it is not updated to the Data Store as there are blanks and zeros in the extractor.
    Hope to hear some reply on this with constructive answer. Thanks.

    Hi Robert,
    I have solved this issue. It was due to the EXIT_SAPLRSAP_001 that was placed by the consultant that does not display the data. The following is the code:
    I have actually remarked and it works.
    <b>CODE</b>
    *----Telesales Billing Requirement
    Begin of SSINGH code
    Sales Order Created on Date (VBAK-ERDAT) where VBAK-VBELN = VBRP-AUBEL
    Sales Order Created By (VBAK- ERNAM) where VBAK-VBELN = VBRP-AUBEL. This field is the same as ‘login’ in the functional spec. Its description is the same as ‘name’ in the func spec.
    Sales Document Type (VBAK-AUART) where VBAK-VBELN = VBRP-AUBEL. This field is the same as ‘order type’ in the functional spec.
    Actual PGI Date (LIKP- WADAT_IST) where LIKP-VBELN = VBRP-VGBEL. This field is the same as ‘delivery date’ in the functional spec
      when '2LIS_13_VDITM'.
       TYPES: BEGIN OF TY_KNA1,
               KUNNR LIKE KNA1-KUNNR,
               LAND1 LIKE KNA1-LAND1,
               NAME1 LIKE KNA1-name1,
               ORT01 LIKE KNA1-ort01,
               PSTLZ LIKE KNA1-pstlz,
               REGIO LIKE KNA1-regio,
               SORTL LIKE KNA1-sortl,
               STRAS LIKE KNA1-stras,
               TELF1 LIKE KNA1-telf1,
               TELFX LIKE KNA1-telfx,
               ADRNR LIKE KNA1-adrnr,
         END OF TY_KNA1.
       DATA: T_KNA1 TYPE STANDARD TABLE OF TY_KNA1.
       DATA: WA_KNA1 TYPE TY_KNA1.
        DATA: WA_MC13VD0ITM LIKE MC13VD0ITM.
        data: C_MC13VD0ITM  like MC13VD0ITM occurs 0 with header line.
       SELECT KUNNR LAND1 NAME1 ORT01 PSTLZ REGIO SORTL STRAS
                     FROM  KNA1 INTO TABLE T_KNA1
                     FOR ALL ENTRIES IN C_MC13VD0ITM
                     WHERE  KUNNR  = C_MC13VD0ITM-PKUNWE.
        C_MC13VD0ITM[] = C_T_DATA[].
        IF NOT  C_MC13VD0ITM[] IS INITIAL.
          loop at c_t_data into c_mc13vd0itm.
            l_tabix = sy-tabix.
            select single erdat auart ernam into
                (WA_MC13VD0ITM-erdat,WA_MC13VD0ITM-AUART,WA_MC13VD0ITM-ernam)
                from vbak where vbeln = WA_MC13VD0ITM-aubel.
            select single WADAT_IST INTO WA_MC13VD0ITM-WADAT_IST
               from likp where vbeln = WA_MC13VD0ITM-vgbel.
    get Shipping address for AU/AI requirement
    get name from KNA1 and then get address from ADRD table.
    PKUNWE
            modify c_t_data from WA_MC13VD0ITM index l_tabix.
            clear c_mc13vd0itm.
          endloop.
        ENDIF.
    END OF SSINGH code

Maybe you are looking for

  • How to switch off screen updates

    Hey there, fellow (extend)scripters, I have created a bunch of scripts that tackle the entire book, with many chapters, and performing lots of search-and-replace stuff. While testing, I want to see what is going on, so I have all documents open and I

  • Illustrator CC 2014 won't open "could not complete requested operation"

    I can not get my Illustrator CC 2014 to open any longer.  Lately when I try to open the program I get the following error; "Could not complete requested operation".  My other Creative Cloud applications, Photoshop, InDesign, and Acrobat are all worki

  • Call stored procedure in JDBC passing Array parameters

    Hi all, Im trying to call an Oracle Stored Procedure with JDBC. The problem is that my parameter is an Array (PL/SQL Type is "Table Of"). How can i call this procedure by passing right Java parameters to the Callable statement ?? In the Documentation

  • Google Analytic and .mac: URL address

    I want to track my site visits with Google Analytic: I have introduced with MassReplaceIt the HTML script necessary for Google to function in the html files of iWeb 08. When configuring my Analytic account I have given my domain name (site.com) in th

  • The publisher of the extension cannot be verified.

    Hi there, I'm trying to sign a manually created ZXP file using the ZXPSignCmd application. As the plugin comes as a part of a software package and installed by it, I can't generate a dummy certificate and re-sign the plugin using Adobe Exchange facil