Facing problem in getting data in different field

hi,
i have made a report in ALV format. n the whole code is this..
TABLES: VBAK,vbap.
type-pools: slis.       "ALV Declarations
SELECT-OPTIONS:
s_sales   for    vbak-kunnr    obligatory,
s_date    for    VBAK-audat    obligatory.
*Data Declaration
types: begin of s_sales,
  kunnr like vbak-kunnr,
  ernam like VBRP-ernam,
  audat like VBAK-audat,
  aufnr like VBAK-aufnr,
  KBMENG like vbap-KWMENG,
  matnr like vbap-matnr,
  matwa like vbap-matkl,
  end of s_sales.
DATA: IT_VBAKUK TYPE STANDARD TABLE OF s_sales INITIAL SIZE 0,
      WA_sales TYPE s_sales.
*ALV data declarations.
data: fieldcatalog type slis_t_fieldcat_alv with header line,
      gd_tab_group type slis_t_sp_group_alv,
      gd_layout    type slis_layout_alv,
      gd_repid     like sy-repid.
*start-of-selection.
START-OF-SELECTION.
  perform data_retrieval.
  perform build_fieldcatalog.
  perform build_layout.
  perform display_alv_report.
*&      Form  build_fieldcatalog
      text
form build_fieldcatalog.
  fieldcatalog-fieldname   = 'KUNNR'.
  fieldcatalog-seltext_m   = 'Customer Code'.
  fieldcatalog-col_pos     = 1.
  append fieldcatalog to fieldcatalog.
  clear  fieldcatalog.
  fieldcatalog-fieldname   = 'ernam'.
  fieldcatalog-seltext_m   = 'Customer Name'.
  fieldcatalog-col_pos     = 2.
  append fieldcatalog to fieldcatalog.
  clear  fieldcatalog.
  fieldcatalog-fieldname   = 'stadat'.
  fieldcatalog-seltext_m   = 'Order Date'.
  fieldcatalog-col_pos     = 3.
  append fieldcatalog to fieldcatalog.
  clear  fieldcatalog.
  fieldcatalog-fieldname   = 'aufnr'.
  fieldcatalog-seltext_m   = 'Order No'.
  fieldcatalog-col_pos     = 4.
  append fieldcatalog to fieldcatalog.
  clear  fieldcatalog.
  fieldcatalog-fieldname   = 'KWMENG'.
  fieldcatalog-seltext_m   = 'Quantity'.
  fieldcatalog-col_pos     = 5.
  append fieldcatalog to fieldcatalog.
  clear  fieldcatalog.
  fieldcatalog-fieldname   = 'matnr'.
  fieldcatalog-seltext_m   = 'Material Code'.
  fieldcatalog-col_pos     = 6.
  append fieldcatalog to fieldcatalog.
  clear  fieldcatalog.
  fieldcatalog-fieldname   = 'matkl'.
  fieldcatalog-seltext_m   = 'Material Description'.
  fieldcatalog-col_pos     = 7.
  append fieldcatalog to fieldcatalog.
  clear  fieldcatalog.
endform.                    "build_fieldcatalog
*&      Form  build_layout
      text
form build_layout.
  gd_layout-no_input          = 'X'.
  gd_layout-colwidth_optimize = 'X'.
endform.                    "build_layout
*&      Form  display_alv_report
      text
form display_alv_report.
  gd_repid = sy-repid.
  call function 'REUSE_ALV_GRID_DISPLAY'
    EXPORTING
      i_callback_program = gd_repid
      is_layout          = gd_layout
      it_fieldcat        = fieldcatalog[]
      i_save             = 'X'
    TABLES
      t_outtab           = IT_VBAKUK
    EXCEPTIONS
      program_error      = 1
      others             = 2.
  if sy-subrc <> 0.
  endif.
endform.                    " DISPLAY_ALV_REPORT
*&      Form  data_retrieval
      text
form data_retrieval.
  select vbakkunnr VBakernam VBAkaudat vbakaufnr vbapKWMENG vbapmatnr vbap~matkl
  up to 10 rows
    from vbak inner join vbap on vbakvbeln = vbapvbeln
    into table IT_VBAKUK.
endform.                    "data_retrieval
When a execute this query it get this result:
Customer code Customer No. Order Date      *Order No. *        *Quantity *        Material code  Material Description
0000001390     0000001390     0000001390     0000001390     0000001390     0000001390     0000001390
0000001175     0000001175     0000001175     0000001175     0000001175     0000001175     0000001175
0000001175     0000001175     0000001175     0000001175     0000001175     0000001175     0000001175
0000001175     0000001175     0000001175     0000001175     0000001175     0000001175     0000001175
0000001175     0000001175     0000001175     0000001175     0000001175     0000001175     0000001175
0000001001     0000001001     0000001001     0000001001     0000001001     0000001001     0000001001
0000002200     0000002200     0000002200     0000002200     0000002200     0000002200     0000002200
0000002200     0000002200     0000002200     0000002200     0000002200     0000002200     0000002200
0000002200     0000002200     0000002200     0000002200     0000002200     0000002200     0000002200
0000002200     0000002200     0000002200     0000002200     0000002200     0000002200     0000002200
You can see in all column data is repeating even tough i have given different field name...
Kindly give me solution of this problem.
Thanks n Regards.

hi,
i have these field:
*select VBAK~KUNNR VBAK~ERNAM VBAK~AUDAT VBAK~AUFNR VBAP~KWMENG VBAP~MATNR VBAP~MATKL
  up to 10 rows
    from VBAK inner join VBAP on VBAK~VBELN = VBAP~VBELN
    into table IT_VBAKUK.
endform.*
I want to add these field in my parameter by using WHERE clause but don't know how to restrict these field using where clause.
Kindly give me some example related to this.
Regards

Similar Messages

  • Problem in assigning date valje to field

    Hi,
    I have  a problem in assignning date value to field.
    i am retriving date from a table and assigning it to a field which is date type in the form.. but it is not reflecting..
    Error: form Bad Value..
    how to assign the date values in the form..
    Mahi

    Hi mahendra,
    I think the Bad Value Error Occurs only if the databound datasource in the form must have different data type...
    oForm.DataSources.UserDataSources.Add("eDate", SAPbouiCOM.BoDataType.dt_DATE, 10);
      SAPbouiCOM.EditText oEdit;
      oEdit = oForm.Items.Item("1").Specific;
      oEdit.DataBind.SetBound(true, "", eDate);
    with Regards,
    MadhuSudhana Rao.G

  • Single query to get data from different databases

    i need to capture certain fields from certain tables in database 1 and certain fields from certain tables in database 2 into one file using a single SQL statement.
    i tried searching on the net
    i found that dblinks can help
    but iam not sure if ill be able to create dblinks in my situation which is:
    i need to get data from oracle to be copied to mysql
    this is not a replication acitivity, but i need certain fields from one database and certain from the other
    so what iwas thinking is, if i use an sql query to get all the fields (i need around 40) from the different oracle databases and create a singlefile with one insert per select, i can then read that file into mysql
    instead of creating multiple sql queries for each table and creating separate files and eventually separate tables in mysql.
    can anyone help me here?
    or maybe suggest another approach.
    thanks

    Hi,
    I think dblink is the only option available to get data from different databases. It will work for your case too.
    CREATE DATABASE LINK db_link CONNECT TO user_name IDENTIFIED BY  password USING 'instance_name'you must have the system privilege 'create database link' to create db links. This way you can get the required data and put it in a table in oracle. But i dont know how to put this data from oracle table to Mysql.
    HTH
    Muneer

  • Facing problem in saving data without overlapping in for loop

    Hi,
    I am facing problem in writting data withou overlapping if i run outer loop for 2 or more times and in inner for loop i am getting array in a way I want but when i try to build that array with logging temperature i am not able to do it. Please guide me through ths.
    Thank You
    Hnagpal
    Solved!
    Go to Solution.
    Attachments:
    data storage.vi ‏31 KB
    what i am getting.xlsx ‏10 KB
    what i want.xlsx ‏10 KB

    Thanks odessy27, Matthew Kelton, for replying.
    Matthew Kelton: Thanks for the solution i am adding outer loop so that i can increase the number of row. I am using it for some application which require me to save data several time and i used random number here but originally instead of random number there will be power meter reading and i want to save it every hour and plot it. I am also attaching a file what i made I don't know is this a good way or not. Actually i will also beneeded to plot a graph. But again how to increase a row and without replacing previous data i can write another row.
    Yes i want to make one row for each iteration.
    I attached both files in 2009 version.
    Thank You
    Himanshu Nagpal 
    Attachments:
    desired result.xlsx ‏10 KB
    data storage (1).vi ‏26 KB
    data storage.vi ‏37 KB

  • Not getting data for 1 field in ODS

    Hi BW Experts,
    I am loading the data from R/3 to BW.I have loaded the data through PSA.The data is available in New data field. After activating the ODS, for 1 field the data is not uploaded and in the report, the values are not displaying.
    I have checked the Transformations also. it is mapped correctly.But still i am not getting data for that field.
    Thanks,
    Siva.

    Thanks for the Update
    1. What is your Service Pack Level?
      Service Pack is 0016
    2. Are you able to see the data in PSA?
       Yes I can see the data in PSA
    3. After load, are you able to see the value in New table?
       Yes i can able to see the data in New data table
    4. Anywhere, are you doing the SORTING of Data Package?
       No I have not sorted the data Package.I have not written any coding on this
    I have not written any coding in transformation also.
    Thanks,
    Siva.

  • Facing problem with a date column in select query

    Hi,
    I am facing problem with a date column. Below is my query and its fainling with " invalid number format model" .
    Query: SELECT *
    FROM EMP
    WHERE trunc(LAST_UPDATED) >= to_date(to_char(22-05-2009,'dd-mm-yyyy'),'dd-mm-yyyy')
    LAST_UPDATED column is "DATE" data type.
    Please help me Thanks

    Radhakrishna Sarma wrote:
    SeánMacGC wrote:
    WHERE LAST_UPDATED >= to_date('22-05-2009','dd-mm-yyyy');
    You do not need the TRUNC here in any case.
    I don't think so. What if the user wants only data for 22nd May and the table has records with date later than 22nd also? In that case your query willl not work. In order for the Index to work, I think the query can be written like this I think Sean is right though. Use of TRUNC Function is quiet useless based on the condition given here, since the to_date Function used by OP will always point to midnight of the specified date, in this case 22-05-2009 00:00:00.
    Regards,
    Jo
    Edit: I think Sean proved his point... ;)

  • Facing Problem in getting WSRP folder inside Portal_Home/j2ee folder.

    Hi friends,
    Currently i am facing problem in getting "WSRP" folder inside Portal_Home/j2ee folder.Let me explain in detail.While installing oracle portal i tried to upgrade from 10.1.2 to 10.1.4.Where mura.bat was executed fine.I got the message that it was successfully executed.Generally after upgrading to 10.1.4 it will show new folder " WSRP" inside Portal_Home/j2ee folder. But this time everything was fine but it is not showing that WSRP folder where remaining folders such as Home,OC4J_Portal,OC4J_Wireless was there.Is there any problem in installation.But when i create provider it is showing WSRP option in drop down list.In my previous installation everything was fine.It was showing WSRP folder.But this time it was not showing .What may be the reason for this??
    Thanks in advance.,
    Bala S Murugan.,

    Hi,
    What NWDS are you using.
    This may occur due to version problem.
    You may trying to deploy the application that it build in  NW04s(IDE) and trying to run in NW04 portal.
    Can you give me your verisons
    Raghu

  • Problem in getting data into database with standard direct input program

    HI All,
    I am having problem which is not updating the records in MM01 or MM02 with standard direct input program. i have data in internal table. from that table i am trying to upload into database by using background job MRP_MATERIAL_MASTER_DATA_LOAD.
    when i execute my program it is showing message job is started. then i go into sm37 and seethe job status by executing. there also i am seeing job completed succesfully.
    but if i go to mm03 and find the materials are updated or created there i couldn't find the material numbers which are from internal table.
    So if ny one help me it wil be great.
    Thanks in Advance
    Venkat N

    Hi Anil,
    Thanks for your answer, but i am facing problem is i have material no and denominator and Actual UOM and nominator field values in the flat file.....
    by using RMDATIND direct input program with MRP_MATERIAL_UPLOAD as job name for background job while uploading data into database.
    here i am not getting data in to database, but when i execute the job in sm37 it is showing that message job processing successfully completed...this is my status..
    if u can help me in this it will be gr8ful..
    Thanks,
    Venkat N

  • Split data into different fields in TR

    I have a flat file with space (multiple spaces between different fields) as a delimiter. The problem is, file is coming from 3rd party and they don't want to change the separator as comma or tab delimited CSV file. I have to load data in ODS (BW 3x).
    Now I am thinking to load line by line and then split data into different objects in Transfer rules.
    The Records looks like:
    *009785499 ssss BC sssss 2988 ssss 244 sss 772 sss  200
    *000000033 ssss AB ssss        0  ssss   0 ssss 0 ssss 0
    *000004533 ssss EE ssss        8  ssss   3 ssss 2 ssss 4
    s = space
    Now I want data to split like:
    Field1 = 009785499
    Field2 = BC
    Field3 = 2988
    Field4 = 244
    Field5 = 772
    Field6 = 200
    After 1st line load, go to 2nd line and split the data as above and so on. Could you help me with the code pleaseu2026?
    Is it a good design to load data? Any other idea?
    I appreciate your helps..

    Hi,
    Not sure how efficient this is, but you can try an approach on the lines of this link /people/sap.user72/blog/2006/05/27/long-texts-in-sap-bw-modeling
    Make your transfer structure in this format. Say the length of each line is 200 characters. Make the first field of the structure of length 200. That is, the length of Field1 in the Trans Struc will be 200.
    The second field can be the length of Field2 as you need in your ODS, and similarly for Field3 to Field6. Load it as a CSV file. Since there are no commas, the entire line will enter into the first field of the Trans Structure. This can be broken up into individual fields in the Transfer Rules.
    Now, in your Start Routine of transfer rules, write code like this (similar to the ex in the blog):
    Field-symbols <fs> type transfer-structure.
    Loop at Datapak assigning <fs>.
        split <fs>-Field1 at 'ssss' into <fs>-field1 <fs>-field2 <fs>-field3....
        modify datapak from <fs>
    endloop.
    Now you can assign Field1 of Trans Struc to Field1 of Comm Struc, Field2 of Trans Struc to Field2 of Comm Struc and so on.
    Hope it helps!
    Edited by: Suhas Karnik on Jun 17, 2008 10:28 PM

  • I am facing problem to get text file from application sever

    Hi This is lokesh.
    Actually my requirement is to craete sales orders by getting file from other server.for that i have used shell script to connect that server.Ok i am connecting to that different server(not sap server) successfully.
    But my problem is getting text file from application SERVER.
    That different server people will send the file name as 'DDHHMMSS' (Days,Hours,Minutes,Seconds).
    Just suppose if they will send today means that file name will come as 20103025. and with in half an hour if they again send that file file means that file name as '20110025'.
    like that file name is always varies.So how can i read that type of text files from the application server.
    and one more thing that is there chance to read morethan one text file from application server.
    Pls guide me if u know the solution.PLs this requirement is urgent.
    Regards,
    Lokeshgoud

    Hi..,
    <b>Just execute this program ... this is for the files received in JUST 3 MINS...</b>
    change it according to your requirement !!
    data time type sy-uzeit value '100000'. <i>"<<----start time</i>
    data file(8) type c value '20'.
    do 180 times. <i>" <<----- for 3 minutes</i>
    add sy-index to time.
    concatenate file time into file.
    write / file.
    OPEN DATASET FILE FOR INPUT IN TEXT MODE ENCODING DEFAULT.
    IF SY-SUBRC EQ 0.
    PERFORM READ_DATASET.
    ENDIF.
    file = '20'.
    time = '100000'.
    ENDDO.
    <b>form read_dataset.
    read the file here with the file name <b>FILE</b>.
    endform.</b>
    regards,
    sai ramesh

  • Facing  problem while loading data into XI

    Hi All,
    I am facing a peculiar problem while loading data into XI when we load small amount of data say 5-10 records these records gets processed, but when we try to load a bit higher volume say 100-500 which comes out to be around 7 record s per second then the record processing gets stalled. That is it gives a message that "recorded for outbound processing".
    So can any body throw some light on it and can tell us why we rare facing such problem and how can we resolve that problem.
    Thanks in Advance.
    Regards
    rahul

    Hi rahul,
    Deregistering and Registering the Queue is a temporary solution.
    The better way to this would be to Tune your Xi system as already mentioned by Vijaya as mentioned in the guide ,
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/70ada5ef-0201-0010-1f8b-c935e444b0ad
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/7fdca26e-0601-0010-369d-b3fc87d3a2d9
    Regards,
    Bhavesh

  • Get data into custom field.

    hi all,
    Can you please tell me how to get data of particular Business Partner field into the custom field which is enhanced in the business activity (BO:bus2000126) of activity partner.
    Regards,
    Ankush.

    hi,
    ->For getting data from table into Adobe Forms, you need to add code in your WD application only.
    -> You create an UI Element (Interactive Form) for the adobe forms in the Layout.
    -> Give the name of your form (Zpdf) in the Template Source property.
    -> A pop up will appear asking you to make contexts in your application by its own.
    -> Click on Ok and then context will also appear in your Wd application.
    -> Now you can use the context and write the code for getting values in Wddoinit or anywhere you want.
    -> Write select/query or call a FM to fetch the data into an internal table.
    ->Finally bind the internal table with the Contexts created.
    Check out this link :
    /people/bhawanidutt.dabral/blog/2007/11/15/how-to133-integrate-adobe-form-on-webdynpro-for-abap-and-deploy-it-on-portal
    I hope it helps.

  • How to get data from  different SEGMENTs

    Hi;
    My requirement is to first of all retrieve the data from different segments in run time.
    I mean, i have to execute t/code WE19 and the idoc will be given after that an user exit would called where i have to retrieve the data from different segments and then it would store in an internal table for further calculation.
    Can you all please guide me how to retrieve the data via ABAP code in runtime so that it can store in an internal table.
    Regards
    Shashi

    write code lke this ..
    form post_idoc tables idoc_data structure edidd
                                    idoc_status structure bdidocstat .
    loop at idoc_data .
      case idoc_data-segnam .
        when 'zsegment1'.
           move idoc_data-sdata to wa_zsegment1 .
        when 'zsegment2'.
          move idoc_data-sdata to wa_zsegment2 .
       when 'zsegmentn'.
          move idoc_data-sdata to wa_zsegmentn.
      endcase .
    endloop.
    After this write code to move data to int table from work area .
    endform .
    Hope this helps u....

  • Problem in getting data on button submit

    I have 3 combo boxes in a form & a button on the other html form
    when the user will change the combo box, the form will be submitted with the values of all three combo boxes.
    And when the button is pressed it will again submit the form along with all the values of comboboxes & same values in different variables. I am doing this so the new variables can be used to call the discoverer sheet & old can be used to mantain the state of the combo boxes.
    The datasheet will not be populated on change of combo boxes, but will only show the data when the button is pressed.
    The problem i am getting the user is not getting the required data on the first click of the button, but when the button is pressed for the second time, the user will get the required result.
    Follwing is the chunk of code that I am using.
    <html>
    <head>
    <title>Untitled Document</title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    </head>
    <script type="text/javascript">
    function myFunc(){
         document.forms["form1"].elements["GRP"].disabled=false;
         document.forms["form1"].elements["RGN"].disabled=false;
         var i = document.forms["form1"].elements["GRP"].value;
         var j = document.forms["form1"].elements["RGN"].value;
         var k = document.forms["form1"].elements["BR"].value;
         if(j == 0){
              submitform();
         else{
              submitform();
         if(k == 0){
              submitform();
         else{
              //makeGRPDisable();          
              //makeRGNDisable();          
              submitform();
    function submitform()
    document.form1.submit();
    function submitform2()
    document.form2.submit();
    var queryString;
    function getParameter( parameterName ) {
    queryString = window.location.search.substring(1).toLowerCase();
    //alert(queryString);
    //if (queryString.length==0) {return "null";}
    var parameters = new Array();
    parameters = queryString.split('&');
    for(var i = 0; i < parameters.length; i++) {
    //alert(parameters);
    //alert(parameters[i].indexOf(parameterName));
    if (parameters[i].indexOf(parameterName.toLowerCase())>=0) {
    //alert(parameters[i]);
    var parameterValue = new Array();
    parameterValue = parameters[i].split('=');
    return parameterValue[1];
    return null;
    var Pgid = getParameter('_pageid');
    var Gid = getParameter('GRP');
    var Rid = getParameter('RGN');
    var Bid = getParameter('BR');
    var Gid2 = getParameter('GRP2');
    var Rid2 = getParameter('RGN2');
    var Bid2 = getParameter('BR2');
    var ALid = getParameter('AL');
    </script>
    </head>
    <body>
    <table width="100%" border="1" cellpadding="0" bordercolor="#F26520" bgcolor="#FFFFFF">
    <tr>
    <td>
    <form name="form1" action="http://cdbo:7778/portal/page? method="GET">
    <oracle>
    declare
    theUser varchar2(30) := portal.WWCTX_API.get_user;
    Uid2 varchar2(30);
    begin
    htp.p('<input type="hidden" name="_pageid" value="553,142908" />');
    htp.p('<input type="hidden" name="_dad" value="portal" />');
    htp.p('<input type="hidden" name="_schema" value="PORTAL" />');
    htp.p('<input type=hidden name="AL" value=' || :v_al_id || '>');
    IF :v_al_id=0 THEN
    IF :v_group_id=0 AND :v_region_id=0 AND :v_branch_id=0 THEN
         htp.p('<select name="GRP" onChange="submitform()">');
         htp.p('<option value=0>All</option>');
         for i in (select groupcode, groupshortname from GROUPS@cdb)
         loop
              htp.p('<option value="' || i.groupcode || '">' || i.groupshortname || '</option>');
         end loop;
         htp.p('</select>');
         htp.p('<select name=RGN onChange="myFunc()">');
         htp.p('<option value=0>All</option>');
              htp.p('</select>');
         htp.p('<select name=BR onChange="submitform()">');
         htp.p('<option value=0>All</option>');
         htp.p('</select>');
    END IF;
    END IF;
    END;
    </oracle>
    </form>
    </td>
    <form name="form2" action="http://cdbo:7778/portal/page? method="GET">
    <td>
    <oracle>BEGIN
    IF :v_group_id=0 AND :v_region_id=0 AND :v_branch_id=0 THEN
         htp.p('<input type="hidden" name="_pageid" value="553,142812" />');
         htp.p('<input type="hidden" name="_dad" value="portal" />');
         htp.p('<input type="hidden" name="_schema" value="PORTAL" />');
         htp.p('<input type=hidden name="AL" value=' || :v_al_id || '>');
         htp.p('<input type=hidden name="GRP" value=' || :v_group_id || '>');
         htp.p('<input type=hidden name="RGN" value=' || :v_region_id || '>');
         htp.p('<input type=hidden name="BR" value=' || :v_branch_id || '>');
         htp.p('<input type=hidden name="GRP2" value=' || :v_group_id || '>');
         htp.p('<input type=hidden name="RGN2" value=' || :v_region_id || '>');
         htp.p('<input type=hidden name="BR2" value=' || :v_branch_id || '>');
         htp.p('<input type=button value=Submit onClick=submitform2()>');
    END IF;
    END;
    </oracle>
    </form>
    </td>
    </tr>
    </table>
    </body>
    </html>
    Regards
    AkS!

    AkS,
    I think I get it. You want the user to be able to change the combo boxes as they like, but the report is only refreshed when they click on the submit button. I don't understand why you need to refresh the screen each time a combo is selected, but I'm guessing that the values in the second and third combo boxes will vary depending on the selection made in the first.
    You could achieve this using AJAX calls, but that gets into a whole new game.
    I'm puzzled about the if ... then test to see that the fields are all set to 0 (that equates to "all" I think. If I read your code right, that means the form is only displayed if the user selects all from each combo. There's also a closing " mark missing at the end of the form action (you should't need the question mark - it will be added automatically).
    Using a GET method is good because you can see the parameters on the url, but It might be helpful to change the type of the inputs in form2 from hidden to text fields so you can see what Portal is seeing. It won't change the functionality, but it may help you see if the values are being set at the correct time.
    Finally, have you checked the cache settings for the page?
    I can't think of anything else to suggest.
    Patrick.

  • Facing problem in transferring data in APD

    Hi All,
    I have a query which has 2 structures and so the in normal conditions also when the query is executed it takes a lot of time to execute and the output file is also huge.
    Now the client wants to automate this query by adding one new field in it by using the APD.
    I tried using the approach
    Query -> hide columns -> Routine(to add the new field) -> hide columns -> PC file
    This thing was working when there was a filter condition for only 2 sales offices but after removing the filter there are 22 sales offices and I am getting a "Run time error" or "Memory low error".
    So i tried the 2nd approach i.e.
    Query -> transformation -> DSO1(direct update) -> DSO(standard)
    but here also i am facing the same problem.
    Please give me a good solution as this issue has to be completed ASAP.
    Thanks in advance.

    Hi,
    For trial purpose I have set a filter in which only 3 sales offices will be used out of 20. But still I am facing the same "Memory low" error. The sales offices I have considered have less data as compared to other sales offices but still I am facing this issue I dont know is this happening.
    Can you guys share some info on this.

Maybe you are looking for

  • My Photosmart D110 series printer prints random documents all on its own

    I turned on the my Photosmart D110 series printer after being away for a few days and discovered that it was halfway through installing an update that I hadn't ordered.  I quickly aborted this process, but not before the printer began relentlessly pr

  • Can anyone explain erratic power charging?

    I have a 13" 2009 MBP.  The charging is very erratic. When it is plugged in, it can say that it is charging even though the percentage is dropping.  It can be plugged in all night and not charge at all while the color on the LED light is orange.  It

  • How to identify a CDATA section in DOM API?

    I'm having a problem reading a CDATA section from using the DOM API. A call to Node.getNodeType() doesn't return CDATA_SECTION_NODE as expected but returns TEXT_NODE. Also, a call to getValue() doesn't return <![CDATA[<foo>]]> but returns <foo> inste

  • How to identify recurring instance of a report using Query Builder

    Hi, I am having a report scheduled for four different set of  parameters.  I want to identify the instances pertaining to each schedule.  I tried the last successful instance but it gives only the last instance detail. Kindly help me Thanks and Regar

  • Count rows in an internal table

    Anybody how knows how I can count rows in my internal table?