Fill Table Initially

Hello everybody,
im fairly new to webdynpro abap, so this might be a very simple question. but since i couldn't find a similar posting i simply ask:
i created a DB table storing customer data and a function module cust_getAll which returns all available customer-entries.
this works fine.
afterwards i created a simple webdynpro, containing a table to display these entries. I created the service-call, binded the table and so on. if i add a button triggering this service-call, it works well.
but on "startup" the table gets displayed empty. what i actually want is to fill this table via cust_getAll when the dynpro gets startet.
can you link me a tutorial, or name the step i missed?
thanks a lot.
Best regards
Philipp

HI,
Initially if you want to fill the table from the function module do one-thing.
Go to component controller
There go to methods tab, there you can see WDDOINIT method.
Double click it, then initialize the importing parameter elements of the component context.
This is done by just click code wizard, and there select set and choose importing parameters
of the function module.
once you initialize the importing parameters, call the function module.
Now your table will be filled with values once you start the browser.
Check this link
Link[Service call|http://wiki.sdn.sap.com/wiki/display/WDABAP/WebdynproApplicationtocalltwoBAPIsfordisplayingtheFlightdetailsusingtab+strips]
Now just use idea from the above example and try to initialize the import parameters of the function module.
It will fill your requirement.
Regards and Best wishes.

Similar Messages

  • How to fill table control by these FMs

    Hi,
    How to fill table control rows by using function module dynp_update_fields or dynp_values_update. I have a custom screen wherein i have few input/output fields at the top. F4 help has already been defined for these fields and i want to populate/refresh a table control available in the same screen w.r.t., value chosen by user from F4 help. please let me know how to use these FMs for this or if there is any other way to do this.
    Rgds

    Look at FM DYNP_GET_STEPL which provides  povstepl  index to be able to update field values in correct row of table control with  DYNP_VALUES_UPDATE (and to read correct value with DYNP_VALUES_READ  too)
    NB: If you need to update multiple rows, I'm not sure that can be done in POV, you may be required to modify the internal table and trigger PAI/PBO cycle with a suppress dialog, or method/FM to trigger ok_code.
    Regards,
    Raymond

  • Fill table using different statements for each field (newbie question)

    Hi all, I'm about to fill table table1 (field1, field2, etc.) using different statements (and maybe variables) for each field.
    My statements are too different to combine them into one query, but my example is simple:
    statement 1:
    SELECT ttt AS field1 FROM dual
    statement 2:
    SELECT yyy AS field2 FROM dual
    Each statement returns one value. Maybe I need some variable for each value, so var_field1 = field1, var_field2 = field2, etc.
    As a result I have to fill table table1 using my variables, so it must be some procedure.
    I know I can do it using one statement below, but I have more than 100 queries, so they should be executed one by one.
    with t1 as(
    select (SELECT 'ttt' FROM dual) field1, (SELECT 'yyy' FROM dual) field2 from dual
    select * from t1;
    Could you please show me some example, how this procedure should be written?
    Thanks ahead.

    This hasn't got anything to do with Oracle Reports, but here we go anyway. Your query can simply be:
    with t1 as(
    select 'ttt' field1, 'yyy' field2 from dual
    select * from t1;
    FIE FIE
    ttt yyy
    1 row selected.But maybe your example was an over simplification of your problem.

  • Sample Records, need ideas, Fill Table SQL samples

    Say that I need to select 500 records of the berst quality for a Store number 77, by some Spend column, say it is: SPEND_12_MONTHS
    I picked say 45 records/rows from this one Table, and I need to fill the other 455 on the spend column from a 2nd Table,
    how would I do that ?
    Just looking for general ideas, so I have no Sample of code to show, but the rows would be Distinct with no duplicates
    on the Customer_id (primary key).
    I have a need to do this on a handful of Stores, not just 1, but trying to get an idea, so for example:
    Store | Primary Table 1 | Fill Table 2
    1-----------45--------------------------455
    2-----------23--------------------------477
    3-----------11--------------------------489
    The reason why I need to pull from the First Table is that it has Priority #1, and Table 2, Priority #2. In Table #1 there isn't that many records, so that's why I need to fill from Table 2.
    Thank You!
    Am on Oracle 10G R2

    I am not sure if I get you correctly.
    You have:
    table1 Top Prio Customers (small number)
    table2 All Customers.
    now you want to query all 500 customers preferable from table1 if they exist there otherwise from table2. The Customer_ID is unique in each table and consitent in both tables.
    Right?
    There are many ways...
    SELECT t1.*
    from table1 t1
    UNION ALL
    SELECT t2.*
    from table2 t2
    left join table1 t1
    on t1.Customer_id = t2.Customer_id
    where  t1.Customer_id is NULL;You can also use NOT EXISTS not this LEFT trick works quite fast in all ORACLE versions, but for 500 rows, who cares.

  • Fill table control

    Hello gurus
    I have created a screen with a table control, this table control needs to be filled with the content of an internal table when displaying the screen.
    If I fill this internal table in the associated report before
    CALL SCREEN 100.
    Then it the table control is filled when executing the report.
    But if I fill it after
    CALL SCREEN 100.
    or if I call the screen via the transaction the table control is empty.
    I have tried filling the internal table in the module called by the PBO but it does not work either.
    Thanks for your help
    Thibault

    >
    Thibault Jacobs wrote:
    > Hello gurus
    >
    > I have created a screen with a table control, this table control needs to be filled with the content of an internal table when displaying the screen.
    >
    > If I fill this internal table in the associated report before
    >
    CALL SCREEN 100.
    > Then it the table control is filled when executing the report.
    >
    > But if I fill it after
    >
    CALL SCREEN 100.
    > or if I call the screen via the transaction the table control is empty.
    >
    > I have tried filling the internal table in the module called by the PBO but it does not work either.
    >
    > Thanks for your help
    >
    > Thibault
    CALL SCREEN 100 calls the screen and all the processing then passes to the PBO and PAI of that screen.  Refreshing the itab after the CALL SCREEN is totally useless since this would only happen after you have exited from the screen and returned to your report program. 
    If you wish to change the contents of your itab after the initial insert that you have carried out in your report, you need to do it in the screen PBO.  Look up the SAP help on the flow logic of screens.

  • 0FI-CA module, cube 0FC_C08 & 0FC_C09 dataflow? question abt filling tables

    Hello all,
    We are currently working on BI7.0 and ERP6.0. I am trying to understand the data flow for these two cubes 0FC_C08 and 0FC_C09.
    When I see the data flow in BW, I see there is an infosource 0FC_BP_ITEMS, which feeds to DSO 0FC_DS05 which feeds to DSO's 0FC_DS06 (Open Items) and 0FC_DS07 (Cleared Items) which feed to 0FC_C08 and (Open items) and 0FC_C09 (Cleared items).
    0FC_BP_ITEMS -> 0FC_DS05 -> 0FC_DS06 and 0FC_DS07 -> 0FC_C08 and 0FC_C09...
    Now what I am looking for is what do these two datasources feed to ?
    0FC_CI_01    FICA Cleared Items for Interval
    0FC_OP_01  FI-CA Open Items at Key Date
    Also I have another question like:
    1.      Run tcode FPBW that fills data to table DFKKOPBW, and then you will see data in RSA6 for datasource 0FC_OP_01.
    2.     Run tcode FPCIBW that fills data to table DFKKCIBW, and then you will see data in RSA6 for datasource 0FC_CI_01.
    My question is do we have to do this on periodic basis or do we have to do it every time before we run infopackage to load data in BW? What are the key dates or date interval we can use for those two tcodes?
    Please anyone who has worked on it can give some ideas
    Thanks all for your help in advance.
    Kiran
    Edited by: Kiran Mehendale on May 16, 2008 4:40 PM

    0FC_CI_01 FICA Cleared Items for Interval
    --This Data Source will feed InfoCube: 0PSCD_C01
    and
    0FC_OP_01 FI-CA Open Items at Key Date
    --This Datasource will feed infoCube: InfoCube: 0PSCD_C02
    http://help.sap.com/saphelp_nw70/helpdata/EN/41/3d30113dfe6410e10000000a114b54/frameset.htm
    From this link you will be able to check out the data sources as well as any information on the infocubes.
    hope this helps.
    Matt

  • Desktop office integration : Creating and filling tables in a word document

    Hi all,
    I want to create a table in a word document and then fill it with data. The word processor interface has only 'insert_table' methods which can download the data in an ABAP internal table to an already
    existing table in a word document, but in my case I also want to create the word table,  titles etc. in the word document. Has someone experience with such kind of a requirement or have someone an example for it? 
    Kind Regards,
    Sükrü

    Hi,
    May this one will help you.
    CREATE OBJECT wordapp 'Word.Application'.
    CALL METHOD OF wordapp 'Documents' = documents.
    CALL METHOD OF documents 'Add' = thisdoc.
    CALL METHOD OF thisdoc 'Activate'.
    GET PROPERTY OF wordapp 'Selection' = selection.
    SET PROPERTY OF wordapp 'Visible' = 1.
    CALL METHOD OF selection 'TypeParagraph'.
    CALL METHOD OF selection 'TypeText'
      EXPORTING #1 = 'New Document'.
    GET PROPERTY OF wordapp 'Tables' = tables.
    CALL METHOD OF tables 'Add' = thistable.
    SET PROPERTY OF thistable 'NumRows' = 2.
    SET PROPERTY OF thistable 'NumColumns' = 2.
    or you can check
    CALL METHOD OF wordobj 'TABLEINSERTTABLE'
    EXPORTING
    #01 = 2
    #02 = 3.
    aRs

  • Mass activity run to fill tables FKKMAKO,FKKMAZE,FKKMACTIVITIES

    Dear All,
    As per help.sap.com, it is mentioned that we need to do mass activity run for filling these Dunning tables(FKKMAKO,FKKMAZE,FKKMACTIVITIES). It is not mentioned the mass activity run names to fill these tables.
    Please help me , what are the mass activity run to update these tables.

    NA

  • Fill table cells with color % depending on cell content

    Hi.
    I'm working on a document with a lot of tables filled with percentages. The tables are originally on a Word document and the table cells are tinted according to their content: a value of 20% on the cell corresponds to a tint of 20%. This is done automatically on the Word document through a conditional formatting option that applies a graded color scale. Is there any way to do this in InDesign? I tried placing the tables and tried all options, but the color is not imported. Perhaps a script or a GREP style?
    Thank you.

    Conditional formatting in Word is done via formula, but in Excel it is handled more "on the surface" and Excel's conditional formatting carries into InDesign nicely via Place or Paste. It could be worth considering moving those tables into Excel.
    InDesign doesn't do this kind of formatting as a native function, but it couldn't hurt to ask about possible scripted solutions in the Scripting Forum.

  • Filling table field on basis of selected value

    Hello,
    The model has a form (Quotation header) and a table (Quotation lines). In the header I have the Default Engine , which is a push button [(layout)|http://img410.imageshack.us/img410/3998/quotation1ff6.jpg]. On click displays a pop-up with list of available engines. e,g: Eng1, Eng 2 ,  Eng3 
    The default engine selected is Eng2.
    The table [layout|http://img379.imageshack.us/img379/6149/quotationlayoutmy4.jpg] , has you see in the image also has a Engine field, which get's filled on  click of Add button to Eng2 ( on the basis of the default engine selected). For the first add it is ok. On the click of second add, if the default engine is changed to Eng1 then the first row which had Eng2 also gets changed to Eng1.
    In short, each row should / can have different engines.
    Please let me know how to solve this. Thank you in advance.
    Best regards,
    Dharmi

    I used a databridge to solve this issue.

  • How to fill table from datatable(MySQL)

    hi;
    I am starting with Visual web java server faces, and I want to fill a Table using an information from MySQL data base, i am trying to modify a example code I have found on netbeans totorials but they are using droplist and I want firts to use a texfield to set a "name" and button to search using a MySQL query to seek on data table and get the return and set it to Table.
    Basicly I dont Know HOW to connect a data base using same code like a desktop application but in Visual Web Java Server Faces.
    thank you in advance.
    Miguel V.

    Hi;
    I hava done this code but still geting a mistake with tomcat
    Next steps i follow to conectand display on data table:
    1.-Create conecction with MySQL usen service.
    2.-On service drag "directorio" to Table
    3.-Binding all objets (Textfield1, Table and Button)
    4.-On button1 create the next code:
    Object optener =3;
    //set the dataprovider with element number 3, on DIRECTORIO.ID of datatable directorio
    directorioDataProvider.setCursorRow(directorioDataProvider.findFirst("DIRECTORIO.ID", optener));
    //Get the row with same ID=3
    getSessionBean1().getDirectorioRowSet().setObject(1, optener);
    //Shows the inf on table
    getSessionBean1().getDirectorioRowSet().execute();
    directorioDataProvider.refresh();

  • Urgent!!!  at new - filling table

    Can u tell why inside of " AT NEW / ENDAT" all the contents of internal table are initial?
    i need them.
    example,
    LOOP AT TLZK.
       AT NEW BUDAT.
       T_RESULT-ERFMG = summa.
       MODIFY T_RESULT TRANSPORTING ERFMG WHERE BUDAT = ZBUDAT.
        T_RESULT-NPP = NPP.
       T_RESULT-ERFMG = T_RESULT-ERFMG + TLZK-ERFMG.
        T_RESULT-RSNUM = TLZK-RSNUM.
        T_RESULT-RSPOS = TLZK-RSPOS.
        T_RESULT-LGORT = TLZK-LGORT.
        T_RESULT-UMLGO = TLZK-UMLGO.
        T_RESULT-BUDAT = TLZK-BUDAT.
        APPEND T_RESULT.
        CLEAR SUMMA.
        NPP = NPP + 1.
      ENDAT.
       zbudat = WA_TLZK-budat.
       summa = summa + WA_TLZK-ERFMG.
      ENDLOOP.

    HI,
    Move the data to a temporary internal table:
    LOOP AT TLZK.
    ITEMP[] = TLZK[].
    AT NEW BUDAT.
    T_RESULT-ERFMG = summa.
    MODIFY T_RESULT TRANSPORTING ERFMG WHERE BUDAT = ZBUDAT.
    T_RESULT-NPP = NPP.
    * T_RESULT-ERFMG = T_RESULT-ERFMG + ITEMP-ERFMG.
    T_RESULT-RSNUM = ITEMP-RSNUM.
    T_RESULT-RSPOS = ITEMP-RSPOS.
    T_RESULT-LGORT = ITEMP-LGORT.
    T_RESULT-UMLGO = ITEMP-UMLGO.
    T_RESULT-BUDAT = ITEMP-BUDAT.
    APPEND T_RESULT.
    CLEAR SUMMA.
    NPP = NPP + 1.
    ENDAT.
    zbudat = WA_TLZK-budat.
    summa = summa + WA_TLZK-ERFMG.
    ENDLOOP.

  • Filling Table Control

    Hi,
    I have a problem in filling the Table Control.
    Requirement:
    The screen contains a input field . When user presser ENTER based on his input i am fetching its details and filling first line of table control.  when user gives second input its corresponding details should be displayed in the Table Control's First Line. i.e. the previous details should go to second line.
    how to achieve this, please help me.

    Hi,
    Welcome to SDN,
    For your issue do one thing,
    keep one more field in the internal table which you are using to pass value to the table control with integer data type
    and  whenever your append the it to this table add one to this entry and before give it to the table control sort it in the Descending order...
    This will do it ...
    hope this helps you,
    Regards,
    Abhijit G. Borkar

  • Tree table-initially expand all nodes raises error when closing a node 11g

    Hello,
    Frank Nimphius posted a blog entry about how to initially display all the nodes in a tree or table here:
    [http://thepeninsulasedge.com/frank_nimphius/2007/12/19/adf-faces-rc-initially-expanding-all-nodes-in-a-tree-or-tree-table/|http://thepeninsulasedge.com/frank_nimphius/2007/12/19/adf-faces-rc-initially-expanding-all-nodes-in-a-tree-or-tree-table/]
    This works very well. However, when the user tries to close a node, a NullPointerException is thrown.
    Below is the stacktrace.
    Does anyone know how to work around that issue?
    java.lang.NullPointerException
         at org.apache.myfaces.trinidad.model.RowKeySetTreeImpl$Search.find(RowKeySetTreeImpl.java:608)
         at org.apache.myfaces.trinidad.model.RowKeySetTreeImpl._setContained(RowKeySetTreeImpl.java:496)
         at org.apache.myfaces.trinidad.model.RowKeySetTreeImpl.add(RowKeySetTreeImpl.java:97)
         at oracle.adfinternal.view.faces.renderkit.rich.TableRendererUtils.decodeDisclosedRowKeys(TableRendererUtils.java:774)
         at oracle.adfinternal.view.faces.renderkit.rich.table.BaseTableRenderer.decodeIncompatiblePropertyKey(BaseTableRenderer.java:198)
         at oracle.adf.view.rich.render.RichRenderer.decode(RichRenderer.java:203)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.__rendererDecode(UIXComponentBase.java:1089)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.decode(UIXComponentBase.java:714)
         at org.apache.myfaces.trinidad.component.UIXTreeTable.decode(UIXTreeTable.java:133)
         at org.apache.myfaces.trinidad.component.UIXCollection.processDecodes(UIXCollection.java:193)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl$ApplyRequestValuesCallback.invokeContextCallback(LifecycleImpl.java:1113)
         at org.apache.myfaces.trinidad.component.UIXCollection.invokeOnComponent(UIXCollection.java:1030)
         at javax.faces.component.UIComponent.invokeOnComponent(UIComponent.java:731)
         at javax.faces.component.UIComponent.invokeOnComponent(UIComponent.java:731)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.invokeOnComponent(ContextSwitchingComponent.java:153)
         at javax.faces.component.UIComponent.invokeOnComponent(UIComponent.java:731)
         at javax.faces.component.UIComponent.invokeOnComponent(UIComponent.java:731)
         at javax.faces.component.UIComponent.invokeOnComponent(UIComponent.java:731)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.invokeOnComponent(ContextSwitchingComponent.java:153)
         at oracle.adf.view.rich.component.fragment.UIXPageTemplate.invokeOnComponent(UIXPageTemplate.java:208)
         at javax.faces.component.UIComponent.invokeOnComponent(UIComponent.java:731)
         at javax.faces.component.UIComponent.invokeOnComponent(UIComponent.java:731)
         at javax.faces.component.UIComponent.invokeOnComponent(UIComponent.java:731)
         at javax.faces.component.UIComponentBase.invokeOnComponent(UIComponentBase.java:664)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:303)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:175)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:265)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:292)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
         at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:181)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
         at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:85)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:279)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._invokeDoFilter(TrinidadFilterImpl.java:239)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:196)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:139)
         at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
         at edu.wisc.csa.web.ApplicationSessionExpiryFilter.doFilter(ApplicationSessionExpiryFilter.java:66)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
         at edu.wisc.csa.web.ResponseHeaderFilter.doFilter(ResponseHeaderFilter.java:36)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
         at oracle.security.jps.wls.JpsWlsFilter$1.run(JpsWlsFilter.java:85)
         at java.security.AccessController.doPrivileged(Native Method)
         at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:257)
         at oracle.security.jps.wls.JpsWlsSubjectResolver.runJaasMode(JpsWlsSubjectResolver.java:250)
         at oracle.security.jps.wls.JpsWlsFilter.doFilter(JpsWlsFilter.java:100)
         at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:65)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
         at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3496)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(Unknown Source)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2180)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2086)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1406)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)

    OK I have tried Frank's suggestion about the 2 entries in the managed bean and it works but I cannot collapse my child node !
    I have a Master-Detail-Detail setup.
    In the Grandparent I have this :
    RowKeySet rks = new RowKeySet(true);
    table1.setDisclosureState(rks);
    this.grandParentTable = table1;
    and in my Parent table I have this :
    RowKeySet rks = new RowKeySet(true);
    table2.setDisclosureState(rks);
    this.parentTable = table2;
    ie the same.
    In my child I have nothing just the default accessors.
    The collapse works OK for the Grandparent but when I click Hide for the Parent it does not do anything - no error message either.
    cheers

  • Fast method to fill Table with ring controls from index

    Dear Users,
    I have a rather big table that contains one row with ring control cells.
    Teh table is filled from a few arrays before usage and the user is supposed change the value of certain cells by selecting the ring items.
     I have 2 questions:
    1.) is there a fast way to fill the ring items (value list ) of a complete column ?
         All cells should have the same ring elements.
         (The function InsertTableCellRangeRingItem() is rather slow...)
    2.) is there a fast way to fill the column using an array of ring indices ?
         I have an array of indeces present that I want to use to fill the whole column at one.
         Using SetTableCellValFromIndex() is rather slow. I would need a function SetTableCellRangeValFromIndex
         Is there any possibility ?
    Thanks for your help !!!

    This is the LabVIEW board. You probably want CVI or Measurement Studio.
    Try to take over the world!

Maybe you are looking for

  • Seeburger : DECRYPTION ERROR

    Hi guys, I'm having the following error : I'm using Seeburger AS2 adapter and I'm trying to receive a message from an external partner. I've the corresponding configs on the sender agreement from the external partner: sender agreement Sender Configur

  • GARAGE BAND disk is too slow. (prepare) (-10001)

    Hi, Im trying to edit some mp3 files in separated tracks in GB on my NEW Macbook Air 2013 with 4gb ram and 128 flash drive, this files are between 170mb and 221 MB, so this message comes on: disk is too slow. (prepare) (-10001) garageband... what can

  • How do you date and time stamp pictures and videos using a EOS Rebel T3?

    I am needing to utilize date and time stamping on videos and photos in my work.  The pictures and videos must display time, a date, and reference number.  I have gone through the cd, owner's manuel and software manuel and I am unclear if I can perfor

  • Query output into ODI variable

    Hi, I want to take the output (multiple rows and multiple columns) into an ODI variable of Text type. I have created the variable and put the query and set the variable type as Text type. But when I send the value of this variable to other variable,

  • IPSec secured L2TPv3 - one way traffic in L2 tunnel

    Sigh... after 7 hours battling coming here because I've exhausted all my options to find an answer for my problem. So here is the topology - standard (boring) IPSec secured L2TPv3 tunnel: on one side - 897 connected to a DSL box, on another side - 19