Populate table for CS3

Having finally done the upgrade from CS2 - my good 'ol "Populate Table" script seems to lock up in CS3 each time I use it. The app doesn't crash - it seems to be open but the document window disappears.
I'm wondering if the script is incompatible with CS3.
Has anyone found a script that works in CS3?

Oooooookay. I just had my cursor in the first cell.
I just drag selected the whole table in ID and pasted and it worked.

Similar Messages

  • Problem using stored procedure to populate table for report

    I have a report that in one instance the user wants the quantity data pulled from a smaller subset of data. My thought was to create a global temporary table and then use a stored procedure to populate this table then pass the table name in a lexical that contains the table name. So my query in the report stays the same except for the lexical table name. This all seems to work except for the procedure populating the table. I thought it might be the global temporary table so I created a real table. When I run the procedure from the command prompt the table gets populated. When I run the procedure in the before report trigger I get nothing. When I run the procedure from the command line and leave the data, then run the report I get updated data in the table, but nothing returned to the report. Any ideas, questions, solutions?
    Thanks
    Andy Hendrickson

    Hi Andy Hendrickson,
    Let me understand your problem correctly.
    1) When you run the procedure from command prompt the table gets populated. It is clear.
    2)When you run the procedure in before report trigger you get nothing. Let us analyze why but for now it is clear.
    3) What you mean by "I run the procedure from the command line and leave the data, then run the report I get updated data in the table, but nothing returned to the report."
    Can you please explain a bit more and also update code snippets of what you are using ?
    Thanks,
    Vinod
    Oracle Reports Team

  • Unable to Populate Table

    Create a View Object (Not Based on Entity). Created a Custom Page With Table, columns under the table ref. To populate the Table Added Rows to the View , but the records don't appear on the Table. Should I be doing more to view the rows in the Table.
    Getting the error
    "No current row for View (HPClaimsTabVO1)"
    Code used to Populate Table
    for (int i=0; i < dd.length; i++)
    Movie[] ff = dd.getMovies();
    for (int j=0; j < ff.length; j++)
    OARow poRow = (OARow)poVO.createRow();
    poRow.setAttribute("Theater", dd[0].getName());
    poRow.setAttribute("Address", dd[0].getAddress());
    poRow.setAttribute("Movie", ff[j].getName());
    poVO.insertRow(poRow);
    }//j loop
    } //fpr i loop;

    Hi,
    This error comes when there is no row in the VO.
    In the Process Request call a method and in AM create a row in this vo. // Already explained
    AM CODE:-
    public void InitTest()
    OAViewObject vo = (OAViewObject)getPClaimsTabVO1();
    if (!vo.isPreparedForExecution())
    vo.executeQuery();
    Row row = vo.createRow();
    vo.insertRow(row);
    row.setNewRowState(Row.STATUS_INITIALIZED);
    Thanks
    --Anil                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • How do we populate the SIGN_POST table for routing server

    Hi,
    How do we populate the SIGN_POST table for routing server…? We having the Street data network... we have populated the NODE, EDGE and PARTITION tables from street data. Is there any procedure available for populating the SIGN_POST table from street data? ARE there any predefined methods available?
    Thanks and Regards
    Aravindan

    This data has to come from the data provider.
    There are no procedures to populate this information, if this
    data is not available for your data set.
    For example, NAVSTREETS from NAVTEQ has this data as part
    of their street network data.
    siva

  • Update routine to populate value for field ZDOCCATG(Document category)

    Hi Experts,
       I need to populate  data for field ZDOCCATG(Document Category) based on the value of the below  two fields,
    1. 0deb_cre_lc(Debit / credit Amount)
    2. 0ac_doc_typ(Belegart)
    The logic is as follows:
    if 0deb_cre_lc > '0'.
         if 0ac_doc_typ == 'dz'.
          ZDOCCATG = Disputes.
         else
      ZDOCCATG = Invoices.
       end If.
    else
    if 0ac_doc_typ < '0'.
    ZDOCCATG = Credits.
    end if.
    I need to write the update routine to get the values assigned for Document category based on these two fields. When i open the routine for the field ZDOCCATG, i can see the below screen:
    PROGRAM UPDATE_ROUTINE.
    $$ begin of global - insert your declaration only below this line  -
    TABLES: ...
    DATA:   ...
    $$ end of global - insert your declaration only before this line   -
    FORM compute_data_field
      TABLES   MONITOR STRUCTURE RSMONITOR "user defined monitoring
      USING    COMM_STRUCTURE LIKE /BIC/CS80FIAR_O03 - (Communication structure)
               RECORD_NO LIKE SY-TABIX
               RECORD_ALL LIKE SY-TABIX
               SOURCE_SYSTEM LIKE RSUPDSIMULH-LOGSYS
      CHANGING RESULT LIKE /BIC/AZOARFSCM00-/BIC/ZDOCCATG
               RETURNCODE LIKE SY-SUBRC "Do not use!
               ABORT LIKE SY-SUBRC. "set ABORT <> 0 to cancel update
    $$ begin of routine - insert your code only below this line        -
    fill the internal table "MONITOR", to make monitor entries
    result value of the routine
      RESULT = .
    if abort is not equal zero, the update process will be canceled
      ABORT = 0.
    $$ end of routine - insert your code only before this line         -
    ENDFORM.
    Please let me know the code to be inserted (based on the logic mentioned above) in the above screen . Thanks
    Regards,
    Kavitha Jagannath

    Hi Kavitha,
          Supposing the technical name of fields is /bic/0deb_cre_lc and /bic/0ac_doc_typ use the code below at the marked position.
    PROGRAM UPDATE_ROUTINE.
    $$ begin of global - insert your declaration only below this line -
    TABLES: ...
    DATA: ...
    $$ end of global - insert your declaration only before this line -
    FORM compute_data_field
    TABLES MONITOR STRUCTURE RSMONITOR "user defined monitoring
    USING COMM_STRUCTURE LIKE /BIC/CS80FIAR_O03 - (Communication structure)
    RECORD_NO LIKE SY-TABIX
    RECORD_ALL LIKE SY-TABIX
    SOURCE_SYSTEM LIKE RSUPDSIMULH-LOGSYS
    CHANGING RESULT LIKE /BIC/AZOARFSCM00-/BIC/ZDOCCATG
    RETURNCODE LIKE SY-SUBRC "Do not use!
    ABORT LIKE SY-SUBRC. "set ABORT <> 0 to cancel update
    $$ begin of routine - insert your code only below this line -
    fill the internal table "MONITOR", to make monitor entries
    result value of the routine                 
    <----- Paste the code below as shown here --->
    if comm_structure-/bic/0deb_cre_lc > 0.
      if comm_structure-/bic/0ac_doc_typ == 'DZ'.
       result = 'DISPUTES'.
      else
       result = 'INVOICES'.
      endIf.
    elseif comm_structure-/bic/0deb_cre_lc < 0.
      result = 'CREDITS'.
    end if.
    <----
    >
    if abort is not equal zero, the update process will be canceled
    ABORT = 0.
    $$ end of routine - insert your code only before this line -
    ENDFORM.
    Regards:
    Jitendra
    Edited by: Jitendra Gupta on Oct 15, 2009 3:05 PM

  • Tables for delivery and stock transport orders

    Hi Members,
    I have a requirement where i have to display (in a report output) a requirement quantity of deliveries and stock transport orders which are displayed in MD04 transaction for particular material and plant.
    I don't know which tables these quantities sit into.
    If you know please help.
    Points will be suitably rewarded.
    Reagrds,
    Boby

    >
    Boby wrote:
    > Hi Members,
    >
    > I have a requirement where i have to display (in a report output) a requirement quantity of deliveries and stock transport orders which are displayed in MD04 transaction for particular material and plant.
    > I don't know which tables these quantities sit into.
    > If you know please help.
    > Points will be suitably rewarded.
    >
    > Reagrds,
    > Boby
    if you only have to display deliveries and stock transport orders you can take LIKP and LIPS for the deliveries and LTAK and LTAP for transport orders.
    for all the other elements displayed by MD04 we would have to know about your setup: are you using dispo-areas (which would populate tables MDMA ...) so in that case please provide more information.

  • How to populate table editor which has dropdown by index in a column

    Hi Experts,
    I have a table editor with 3 columns.
    Column 1. DD By Index - Subjects
    Column2: marks ( input field )
    column3: Result ( text view)
    On an action of button on top of the view, i am getting the data for column2 and 3 and populating the node but i am unable to populate the column 1 Dropdown by Index.
    My Node looks like this:
    Node_Parent
       Node_DD
          Subject_Text
       Marks
       Result
    When i get the internal table for Node_parent i am not getting Node_dd in that, so i am populating Marks and Result. binding it.
    again looping on lt_parent and binding the node_dd.
    it works fine when there is one row in lt_parent, its going for dump when its more than 2 records.
    What am i missing while binding the subnode Node_DD while looping?
    Any clue is highly appreciated.
    Note: I am not using Supply Function to populate the subnode.
    Ajay
    Edited by: ajay matam on Aug 1, 2011 12:40 PM

    Hi,
    Parent Node and Child node has cardinality 0 to N only.
    I am getting the child node of the parent.
    Lo_node_parent->get_child_node ( name = 'Node_dd' )
    i am trying to bind an internal table to Lo_node_parent but i am getting a dump with error
    "COMPONENTCONTRLLER.1.PARENT.2.NODE_DD.NODE_DD" does not exist.
    Binding works when there is one record in Parent node
    loop at lt_parent into ls_parent.
    binding the child node
    endloop.
    above thing works fine when there is one record, but when there are more than 1 record i am getting the above error.
    Ajay
    Edited by: ajay matam on Aug 1, 2011 1:40 PM

  • How to populate data for 2LIS_40_REVAL, 2LIS_43_POSCAS and 2LIS_44_POSREC

    Hi
    How to populate data for 2LIS_40_REVAL, 2LIS_43_POSCAS and 2LIS_44_POSREC datasources at RSA3?
    I'm very new to retail BI.
    I think there is no setup tables for Retail infosources.
    Any IDoc or BAPI activation is required or other procedure?
    We are in BI-700 SAPKW70015 support pack R/3 side
    and SAP_BW 700 Support pack SAPKW70016 &
    BI_CONT 703 Support pack SAPKIBIIP9 BI side
    Can anyone guide me how to load data?
    Points assured
    Thanks in advance
    Ramana P

    Dear Ramana,
    There is no setup table for POSCAS and POSREC.This has to be popuated with a BADI Implementation. 
    As of PlugIns 2002_1_470 and 2002_2_470, POS data is update into BW the 2LIS_44_POSREC and 2LIS_43_POSCAS extractors using a BADI. To be able to update data into BW, the relevant implementation for the BADI must be activated in each case. You can activate the implementation in transaction SE19. The implementations are as follows:
    POS_EX_REC_PI2003_1 for extractor 2LIS_44_POSREC
    POS_EX_CAS_PI2003_1 for extractor 2LIS_44_POSCAS
    Once the activation of BADI , create the back ground jobs for the 44 application and the data is pushed into Delta queue and it can be loaded into BI .
    Hope this helps you.
    Thanks,
    Krishna Charan

  • Is it mandatory to populate USER_SDO_GEOM_METADATA for each spatial column ?

    Hello,
    I would like to know if we HAVE to populate the metadata table for a geometry column that will never be indexed.
    (I know that in the documentation it is said "For each spatial column,
    you must insert an appropriate row into the USER_SDO_GEOM_METADATA view.")
    Thanks
    Hugues

    Hi Hugues,
    There are many spatial operations that make use of the user_sdo_geom_metadata table, not all of them index related (operators).
    If your data hasn't been migrated to 8.1.6 format then not much will work if user_sdo_geom_metadata is not populated.
    If your data is migrated:
    You won't be able to validate your data (we check the data to the bounds of the coordinate system).
    You won't be able to use linear referencing (also known as dynamic segmentation).
    You won't be able to use any spatial operators (which require a spatial index).
    You won't be able to use coordinate systems (or least some parts of coordinate systems).
    The above might only be a partial list.
    hope this helps, and regards,
    dan

  • Internal table for F4 help

    I want to populate values for F4 help. But for the field for which I need F4 help, the values are present in the value range at the domain level of the data element of the field in the table. So how do I fill up the internal table?
    Thanks and regards
    Radhika

    Hi,
    use the table mentioned under fields Value Table in  the select statement.
    It would be having the that fileld for which you want F4 help. Your internal table should also have the same field. Fetch value in thst field only.
    regards,
    Pankaj

  • Mapping table for the hierarchies in bw & R3

    Hello,
    We have a requirement of createing a mapping table for the hierarchies of one of the BW-object  and the corresponding R/3-Hierarchies.
    sturucture on table should be as given below,
    BW-Hierarchy Name   |    R/3- Hierarchy Name   |     Frequency of loading |
    please advice.
    Thanks
    NM

    Hi,
    Product Group is master data for material master. It is part of Matreial Clssification data in R/3.
    Please check if you are having the same already loaded as attribute of Material master. I guess it will be there, if it s not there then you should try to load the same in material master object which you are using in all the cubes.
    If the maintinenece in master data is nopt possible then you got to populate the same in cube.
    There will be a combination of keys (materail/plant/prduct family etc.. ( for which Product group will be unique). then load product with the help of these key combinations in all the cubes via update routine.
    There is one more way to have this but which is performance intensive.
    You may create one master data object called Product Group and keep material number as attribute (with compunding all other key fileds to get the unique combination). Then you may create an infoset using cubes and this master data object. Join the materail numbers in all. Display this object in report.
    I hope it will help.
    Thanks,
    S

  • Executed SSIS packege doesn't populate table

    I've created SSIS package (take data from flat csv file and populate table to database) and when I execute it from IS everything goes fine but when I do the same throught mvc web application I've made, I can't do this despite I see clearly from the logs
    that my ssis package is proceeding fine and end with Sucess status. What is wrong? Why I the results are different depending on the way of execution? How can I debug the process of execution throught the web since I don;t have any error logs?
    Thank
    Arth81

    Hi Arth,
    As this thread is not belong to C# forum, For professional
    answer we need to move to SSIS forum.
    Thanks

  • Create tree list table for my pages

    Please, How do i populate a tree list table for my application pages for navigation if i have report1 on page number 1 and form 1 on page number 2 and how do i choose my root.

    Hi,
    Try giving the time constraint as T and the custom table in the Time cnstr. Tab. field.
    Check Infotype 0006 for reference, which has the subtype selection.
    Regards,
    Balaji. D

  • Populate Table using GUID

    A (hopefully) quick and simple question that i've been unable to find the answer to.  I've retrieved the GUID of an invoice from a Credit note in CRM, but i've been unable to use the BDI_GUID to populate a table of BDI related to said invoice.
    I've tried the following:
    SELECT * INTO lt_invoice_bdi
      FROM /1BEA/CRMB_BDI
      WHERE BDI_GUID = lv_invoice_bdi.
    LOOP AT /1BEA/CRMB_BDI
      INTO lt_invoice_bdi
      WHERE BDI_GUID = lv_invoice_bdi.
    I have created the lt_invoice_bdi as the data type /1BEA/S_CRMB_BDI_WRK.  Can anyone advise where i'm going wrong?
    Thanks,
    Andy

    Thanks, i've tried what you suggested, but got the error 'Statement in context not permitted' when trying to activate the form (i'm running this as a form routine within the creditnote smartform), which is the same error i had previously trying to use SELECT * INTO statement. 
    The lv_invoice_guid is defined as type CRMT_OBJECT_GUID
    EDIT
    Found i'd not put a . after my end form.  This is the form routine as it stands in full:
          FORM GET_INVOICE_BDI
          Get the BDI table for the preceeding invoice
    FORM get_invoice_bdi USING lv_invoice_bdi
                         CHANGING lt_invoice_bdi TYPE /1BEA/S_CRMB_BDI
    SELECT * INTO table lt_invoice_bdi
    FROM /1BEA/CRMB_BDI
    WHERE BDI_GUID = lv_invoice_bdi.
    ENDFORM.
    Upon activation i get the error " 'LT_INVOICE_BDI' is not an internal table.  'Occurs n' specification is missing"
    Edited by: Andrew Gough on Mar 9, 2011 11:47 AM

  • Types of tables for databases

    I'm making a table for a recordset which is ultimately for a
    Log In User behavior. What do i need to do with my table values to
    properly create a website that users can log into and have
    information that they can alter to make their profiles personal.
    (think like a forum or like youtube). and also work so that users
    can upload images and that a moderator (me) can monitor them.
    My knowledge of how databases work is extremely limited, so
    any help is appreciated but don't be surprised if I dont fully
    understand what you are saying. I have, however had experience with
    Dreamweaver and am running a website through my school.
    Using:
    Dreamweaver CS3
    Hostgator Cpanel
    Hostgator MySQl server

    You are embarking on a somewhat complex journey. One of the
    most common problems we see here are from developers that are
    building dynamic websites without a solid understanding of database
    design. The result is usually a flawed design and they then have
    the perpetual job of creating kludges to make it run.
    So it's good that you asked the question but it can't really
    be answered here in a single post. The best thing I can suggest is
    that before you start building you get a good book on database
    design fundamentals and study it for at least a few months. Then
    make sure you start with a reasonable technical requirements and
    design document. The extra work you put up front will pay off in
    the long run.

Maybe you are looking for

  • How do I get Itunes Store to open on my new computer?

    Our Itunes store will not open on our brand new computer and is doing the same thing as our old computer did. The bar looks like it's loading underneath "Itunes Store" but then it stops. My husband is knowledgeable about computer stuff and couldn't g

  • Price Difference disappear

    Hi All, Our system is activated Material Ledger I have a material with price control S, in Material Price Analysis have some column: Quatnity, Valuation, Price Diff, Price,.. and all of that <> 0. Now I use CKMM to change price control from S to V. A

  • [GNOME], [Firefox] (still) defaults to GIMP for PDF files

    I've installed Arch Linux with GNOME twice this past year, on both i686 and x86-64 systems. Both times, I've installed GNOME with it's default PDF reader, Evince, as well as GIMP for image editing (of course). Firefox, regardless of my preferences in

  • Flash + PopUp Blockers = Solution?

    Hi. I use flash to make full-flash web-sites. My most recent one is given at: " http://www.imeranews.gr". As you may notice, in order to open the site in full-screen I have to use a pop-up window - which by default all browsers block it. I of course

  • PID v5.0 compatability with LV 8.0

    Hello, Where can I read up on the pros-n-cons of upgrading the PID Control Toolset v5.0 to v7.0 working with Labview 8.0? Definitely worth it? Don't bother? Is the issue a non-issue? Thnx.