Empty Record in Export

DRM Gurus:
I am new to DRM so please forgive my naive question.
When running an export, we are getting an empty record that just contains the fine "Y" but none of the other fields.
Do you know what could cause this?   We did inactivate a record, so would we get an empty row like this for the inactivate a record?    How can we get the record to show up in the export (since the end users do want inactive to be included).
Thanks in advance.
Mark Smith
100990|Oil Control Valve||103059|4|Y
|Y
100782|Charge Inlet||101473|4|Y
100782|DC Charging||101474|4|Y

Hello Mark,
Does the export include a Query Filter ?? If so, then go to the Query Definition and check if there are any properties selected on the "Columns" tab, or if the "Include criteria properties" check box is checked
- Un-check the check box and remove any properties if selected on columns tab in Query definition.
Thanks
Denzz

Similar Messages

  • DS 3.2 BW Load: Empty records in BW

    Hi All,
    i'm using DS 3.2 an BW 7.01 SP 5. I use the RFC Sever via Management Console and the configuration and connection between both is fine. ( my source was: https://wiki.sdn.sap.com/wiki/display/BOBJ/Loading+BW)
    After running the Infopackages i get a green request in the PSA but with empty records. I've tried switching between "Compare by name or by position" in the DS Designer mapping without success. I keep the mapping easy, i've tried with just a constant or just few Fields ...
    Thanks for any information
    Honore

    Thanks,  the setting UTF-8 solved the problem.
    Thanks a lot.
    Honoré

  • BW Extraction using DS returning empty records

    Hi
    I am trying to extract data using BO DS 3.2 into BW 7.0. I am using BW as well as ECC 6.0 as a source in two separate jobs. I have setup a new source system which for BO DS in BW.
    The RFSserver is up and running
    However whenever I am running the extract I am getting empty records i.e. records do get extracted but they are blank. The job runs successfully in BO DS. I cna see it in BW in rsmo as having run successfully.
    I have tried extracting to a flat file from BO DS and that returns records
    I have tried debugging by setting a breakpoint just after my transorm and just before it passes data to the transfer stucture. In all positions I am able to see data exept in my final target. In the PSA also i am getting null records.
    I have used an ABAP flow as weel as a normal Data Flow.
    Any help would be appretiated
    Thanks & Regards
    Vinieth

    Vinieth Kuruppath -
    Yes you can use ABAP DF inside normat data flow to extract the SAP ECC data into BODS. put SAP tables and join them with relevant queries. jott your queries with Data transport to hold the data. This all will be inside a single ABAP data flow.
    for BW Integration you have to use open hub destinationa mechanism. also see below link for modelling a connection between BO & BW
    BW 7.30: Modeling integration between SAP Business Objects Data Services and BW | Part 1 of 2 – Connect Source System
    hope it helps
    thx
    Deep

  • Query to find out empty records

    Hi experts,
    I want to find out those tables in my databases which does not have any records or data. I have many tables in my databases which are totally empty. Please help me to build a query . Which database view i should access to find out the tables with empty records? Please help.

    Hello,
    Just pass the user list you want to count and not admin users or other default users.
    SELECT owner, table_name, num_rows
          FROM dba_tables
          WHERE owner IN ('MYUSER','OTHERUSER');or this
    DECLARE
       CURSOR mycur
       IS
          SELECT owner, table_name, num_rows
          FROM dba_tables
          WHERE owner NOT IN ('SYS', 'SYSTEM', 'SYSMAN', 'OUTLN')
                AND iot_name IS NULL;
       v_sql     VARCHAR2 (100);
       v_count   NUMBER := 0;
    BEGIN
       FOR cur IN mycur
       LOOP
          v_sql     := NULL;
          v_count   := 0;
          v_sql     :=
             'select count (*) from ' || cur.owner || '.' || cur.table_name;
          EXECUTE IMMEDIATE v_sql INTO v_count;
          IF (v_count = 0)
          THEN
             DBMS_OUTPUT.put_line(   'Table name = '
                                  || cur.table_name
                                  || ' rows '
                                  || v_count);
          END IF;
       END LOOP;
    END;Regards

  • Hi All How to add an empty record into an table control in mpp

    Hi All,
            If my table control has 10 records , and I want to add an empty record when i click  a push button  for that what is the procedure to do it. please send me the source code for that its Urgent.
    Thanks&Regards.
    Bharat Kumar .

    WHEN 'INSL'.
    insert line above cursor position
          GET CURSOR FIELD FLD LINE LINNO OFFSET OFF.
          SET CURSOR FIELD FLD LINE LINNO OFFSET OFF.
          IF FLD CP 'IT_SPFLI*' AND SY-SUBRC = 0.
            IF LINNO >= 1.
              LINNO = LINNO + TC_SPFLI-TOP_LINE - 1.
              CLEAR IT_SPFLI.
              INSERT IT_SPFLI INDEX LINNO.
              TC_SPFLI-LINES = TC_SPFLI-LINES + 1.
            ELSE.
              CLEAR IT_SPFLI.
              APPEND IT_SPFLI.
              TC_SPFLI-LINES = TC_SPFLI-LINES + 1.
            ENDIF.
          ENDIF.
    Use the above code as sample
    Reemz

  • Hi All How 2 add empty record to table control

    Hi All,
    If my table control has 10 records , and I want to add an empty record when i click a push button for that what is the procedure to do it. please send me the source code for that its Urgent.
    Thanks&Regards.
    Bharat Kumar .

    Hi..
    In the PBO Module which is called before the LOOP on Table control .
    Give the code like this..
    DESCRIBE TABLE ITAB.
    if OK_CODE = 'ADD'.
    TABCON-LINES = SY-TFILL + 1.
    ELSE.
    TABCON-LINES = SY-TFILL .
    ENDIF.
    This will give the Additional line always when you click the ADD(some) button.
    <b>Reward if Helpful</b>

  • Re: Empty record in list item

    I would be very greatful it anybody could help me.
    I have created a recordgroup for list item and populated the same. All values are dispalyed properly but in addion one empty record is appear. how can i remove the empty record ? my syntax are as under:
    declare
    v_rg NUMBER;
    v_GrpID RECORDGROUP;
    begin
    v_GrpID := CREATE_GROUP_FROM_QUERY('DRVCODE', 'SELECT led_name ,led_name FROM master_ledger where cmp_code=:global.cmp_code ORDER BY 1');
    v_rg := POPULATE_GROUP(v_GrpID);
    IF v_rg = 0 THEN
    POPULATE_LIST('master_driver.tdrvname', v_GrpID);
    END IF;

    Just add the last line after your code... that is you set the value after populating the list-item;
    declare
    v_rg NUMBER;
    v_GrpID RECORDGROUP;
    begin
    v_GrpID := CREATE_GROUP_FROM_QUERY('DRVCODE', 'SELECT led_name ,led_name FROM master_ledger where cmp_code=:global.cmp_code ORDER BY 1');
    v_rg := POPULATE_GROUP(v_GrpID);
    IF v_rg = 0 THEN
    POPULATE_LIST('master_driver.tdrvname', v_GrpID);
    END IF;
    :master_driver.tdrvname:= v_value;where v_default_value is a variable containing the default value for your list_item (or the specific value that you want it to be pre-set, that could be a table stored value).

  • Can not create planning function types (for process empty records)

    Hi! SAP Experts,
         I want to copy 0RSPL_FORMULA to another function types for processing empty records, ZRSPL_FORMULA. I checked this function type via RSPLAN, there is no error!.   But when i try to use it in planning modeler. We found the error message "Infoobject 1FORMULA is does not available in version A". Do we need to create this infoobject?... Anyone know, please let me know.
    Thanks,
    Sake

    Hi!,
    Thanks for your help but I've already put that parameter,HIDDENFORMULAVARTAB->1FORMULA, in my planning function, ZRSPL_FORMULA. I validated it and no error found. But when I go to planning modeler, in web browser, and try to create a new planning function based on ZRSPL_FORMULA. I found the problem as I mention in previous message, "infoobject 1FORMULA is not available in version A". I try to search this infoobject in my system. The result is there is no this infoobject in my system. So, my question is do i need to create it with myself? What kind of infoobject i have to create? Key Figures or Characteristics?
    Anyway, If I have to do this, why 0RSPL_FORMULA still used as normal.
    Brgds,
    Sake

  • Copy function without writing empty records in BI Integrated Planning

    I've got the following data model:
    - one source cube which acts as a buffer, holding only a small amount of new data records
    - one target cube, which holds the whole amount of data
    - both are on the same aggregation level
    I want to do the following:
    - copy the new data in the source cube to the target cube
    - by doing this, I want only those records changed which are actually in the source cube. All other other data records of the target cube should stay unchanged
    The problem is:
    I tried this using the standard copy function, but if there are only a few data records in the source cube, the copy function sets all other records in the target cube to zero.
    Question:
    How can I change only the data records in the target cube which are copied from the source cube? I don't want the copy function to write empty records in the target cube for not copied records.

    Hi Aline,
    This is the normal functionality of the standard copy function. It will copy source to target if the characteristics matches and would post zeros to the other records in target.
    I got a similar requirement and I had gone with FOX for copying the data.
    Write the FOX to copy the key figures from source to target for all the characteristics in the target.
    Regards,
    Srinivas Kamireddy.

  • DNSMaint not clearing out empty records

    NW65 SP8 .DNSmaint.nlm version is 1.0 2004. We are trying to get this
    process to work. all of the parameters are set correctly and the utility
    runs. there are no errors but also none of the empty records are clearing
    out. here is the command we are using. The user created for this process has
    full rights. The partition in question has a read / write.
    load
    dnsmaint -User:dnscleaner.ccps -PASSWORD:xxxx -ZoneList:.tt_calvertnet_k12_md_us.TechTrailer.CCPS
    load
    dnsmaint -User:dnscleaner.ccps -PASSWORD:xxxx -ZoneList:.21_10_IN-ADDR_ARPA.TechTrailer.CCPS

    CCPS,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Visit http://support.novell.com and search the knowledgebase and/or check all
    the other self support options and support programs available.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://forums.novell.com)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://forums.novell.com/faq.php
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Forums Team
    http://forums.novell.com

  • Duplicate records in exported data

    I'm trying to export the inventory data with a wildcard (%) filter on the
    Workstation Name.
    If I run the same filter in a query from ConsoleOne, I don't see any
    duplicate records.
    If I run the data export, the exported data for some workstations will have
    a duplicate DN. Just the DN is duplicated, all the other fields are either
    empty or have some default value.
    I have also ran the manual duplicate removal process and have tried
    deleting the records all together using the InventoryRemoval service.
    Any other ideas?

    Dlee,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Do a search of our knowledgebase at http://support.novell.com/search/kb_index.jsp
    - Check all of the other support tools and options available at
    http://support.novell.com.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://support.novell.com/forums)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://support.novell.com/forums/faq_general.html
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://support.novell.com/forums/

  • The length of the recording and exporting truncated

    Hi there.
    It's my first venture into GarageBand. I have just a few questions.
    First, how can I tell the length of my recording without having to listen to the entire session? Dragging the indicator bar in the window to move it along takes a very long time, is there a quicker way to do this?
    Second, I have been exporting my files to iTunes to burn CD's. I am seeing that the file get's shortened in the process. It's not just a small clip, but rather edits out over 15 minutes on one file. Any thoughts? I called Apple and they knew nothing.

    To determine the length:
    - Switch the meter that shows bars and beats to minutes and seconds (by clicking on the clock icon).
    - Scroll to the end of the song.
    - Click into the timeline's ruler, and the cursor will be taken there, the meter showing the minutes and seconds.
    As for the export: Do you see the little purple triangle in the timeline, pointing to the left? That's your End of Song marker. Does it sit at the right position? If not, move it there and try exporting again. And since this little ******* is playing tricks sometimes, a more exact way of exporting is using the circle function and setting the circle section exactly from the beginning to the end of what you want to export.
    Oh, and by the way: How long is your recording? If it exceeds 999 bars, then GB will only export until bar 999, although your whole recording is still there.
    Come back and tell us what you found out!

  • How to differentiate the EMPTY Records and Null Values in DSO

    Hello....how is everyone here?? Ehehehe!
    I try to load some data from the flat file which contains some EMPTY data and Null Values for the records. The data type for the InfoObjects of the fields "Quantity" is "number". The sample data from the flat file (CSV) are as below:
    Food              Quantity
    Hamburger  -       12
    Cheese        -       0
    Vegetable      -               (Empty)
    When I try to load the above sample data to the DSO, I get the results of the data as follow:
    Food              Quantity
    Hamburger     - 12.000
    Cheese           -  0.000
    Vegetable         - 0.000
    In this case, how can the user differentiate whether the records is contain empty value of null values in DSO? This is kinda of hard to differentiate the both scenarios above. Is there any way to differentiate the scenarios described here?
    Thanks alot =)

    Hi Fluffy,
    It depends on the initial values of the data type
    The inital values For quantity/Currency/ Numbers it takes spaces as 0
    for char it is SPACE
    We cannot differeniate between space and null values.
    IF you have to force this then define quantity as char and load the data. we will not have units and aggregation in this case.
    Hope this helps.
    PV

  • Re-recording and exporting to QT

    When I re-record over a slide it is correctly recorded when I play the completed presentation in Keynote. However if I export it to QT, and when play the movie, it skips over the visual re-recorded slide, but the following slide has the recording for re-recorded slide plus the current slide. Is this a bug or has anyone experienced the same and found a solution?

    I have FCE 3.5 HD. I bought Motion 2 separately when it was an option, Compressor 2 came with the Motion package. I can export to Compressor 2 as well as roundtrip with Motion from FCE export. You can still find Motion or Motion 2 on Ebay as a separate app. Someday, when sales slide, Apple may release separate app. packages again. Until then After Effects CS3, which is the industry work horse, has a pretty good render module. Oh and you can buy that separately too!
    Ed

  • Empty sqaures[] in exported pdf stream - crystal api

    Hello,
    Web application using - CR4E version 2.0.16
    Reports design using Crystal Reports 2013
    I am exporting crystal report into pdf file format using crystal java api that gets shipped with Crystal reports for eclipse. The exported pdf stream returned by the api is saved in db as blob so that it can be viewed/sent to printer later. If I view the pdf blob saved in db using acrobat reader I can see the pdf is correct.
    But when I stream blob data directly to printer using java print service for print jobs and PDFRenderer.jar for PDF print pages, the output is empty sqaure blocks []. All the formatting is intact. I can also see number of rows.
    This seems to be the problem for exported pdf's from crystal api's or even if you manually export the pdf from crystal report and save the pdf file from file system in the db.
    Other PDF files work fine but not the ones exported from Crystal report.
    The font properties of the rpt exported pdf shows the encoding as 'Built-in' while the other pdf files has ANSI or other such encodings. That is the only difference I find between pdfs exported from Crystal and other pdf files.
    Can you please tell me how to resolve this?
    Best Regards,
    Bharat

    Hi Manas,
    I am also working on Exporting Crystal report to PDF  in java but facing some problem in accessing the database.
    The .rpt files are published in Crystal Report Server with DB info like server, database, user, password.
    When i am calling from java (Similar to your code), its giving error like JNDI name not found. But i am not using any JNDI binding.
    Do i need to configure database details in any configuration files such as CRConfig.xml etc. If yes, can you pass me some sample code.
    Your help highly appreciated.
    Thanks
    VK

Maybe you are looking for

  • Why can't I synch my music to my iPad?

    I have tried to synch my iPad with my iTunes music and video library to no avail. I can't even watch movies or listen to songs that I've purchased using my iPad, on my iPad.

  • DW MX Site Definitions for Verizon FIOS? Mac

    Hello, Everyone, First time poster, longtime user/dabbler. All help is greatly appreciated. I'm using DreamWeaver MX for Mac and trying to do a site definition for Verizon FIOS. The instructions on their web site do not work, are sketchy at best anyw

  • No Log Found-OBIEE 11.1.1.5

    Hi, We are using OBIEE 11.1.1.5. I am not able view log in Presentation Server-->Manange Session It shows No Log Found. Thanks

  • How to retrieve day between two dates?

    Hi all, Hope doing well, sir i am retrieving day between two dates in sql server like this. select datediff(day,'2012-10-03 00:00:00.000','2012-10-05 00:00:00.000') and getting result that is: 2 but how this type of query i'll use in oracle? thanks,

  • Firefox mailto yahoo not working keeps asking passwords and not generate an email

    Firefox "mailto" to yahoo not working. Will click on an email link on another website, it will go to yahoo and ask for password even though i already logged into yahoo earlier. Goes to the yahoo mail but does not generate an email. I am on windows vi