Using IF in a for each loop which is grouped by two fields

Hi ,
My requirement is to filter the Payment records ,based on the parameter input date and also group by based on two of the Fields and calculate the sum of the payment Amounts.
I have created a for each loop with the group by first on one field and then the other field.
My question is where should I put my IF condition based on parameter dates ?
If condition would be if Created = Date Parameter .CAn anybody help where I should insert the IF condition in the below code.
Ex:
<?for-each-group:Payments;./Created?>
Display Date : Created
<?for-each-group:current-group();./CreatedByName?>
Table      :      CreatedByName     count of Payments           Sum of Amount
<?end for-each-group?>
<?end for-each-group?>
thanks.

Hi ,
I got the result by putting the filter in [ ]
Ex:
<?for-each-group:Payments[PaymentStatus != 'New';./CreatedDate?>
here I am filtering the records based on [Payment Status != New] and then group by Created Date .
Similarly I can new another condition as well in the same statement
<?for-each-group:Payments[PaymentStatus != 'New'][PaymentMethod != 'Cash'];./CreatedDate?>
Regards.

Similar Messages

  • SSIS Help For each Loop Container

    I need a little help with this process that I am developing. I am fairly new to SSIS so please bear with me. I have done research online so If I seem limited in my knowledge please apologize me.
    Requirement: I have a folder where we will have flat files monthly they could be one or more...
    each file will have the following name standard "123456.EEAKQ2.EASDREWA12A.BID".
    What I need to do is maintain a table which will have filename and date when it was added to the folder.
    I have created a package with the following components "For each loop" which grabs files from a source folder.
    This is where I am stuck. I need to grab the file name from the path and insert it into the table.
    Can someone help me with this?
    Thank you
    FM
    FM

    See similar requirement implemented here
    What you need is to declare and use a variable inside for each loop to get filename each time. Then you may use script task to check for pattern within the file for identifying correct files
    http://visakhm.blogspot.in/2012/05/package-to-implement-daily-processing.html
    Please Mark This As Answer if it solved your issue
    Please Vote This As Helpful if it helps to solve your issue
    Visakh
    My Wiki User Page
    My MSDN Page
    My Personal Blog
    My Facebook Page

  • Excel Sheet Looping: For each loop from variable Enumerator

    Hi,
    Is it possible to do excel sheets looping using For each loop Enumerator as "For Each loop from Variable enumerator" ? If yes, please help.
    Also,
    I have an excel file with 10 sheets, but want to loop only 5 sheets. Please help..how can i achieve this. 
    Actually i tried with
    1> stored the 5 sheets name into a variable (say 'SheetsName') of type string using script task
    2> For each loop container
       enumerator - 'For each ADO Schema Rowset enumerator'
       connection: ADO
       schema: 'Tables'
       variable mapping: 'User::SheetsName'
    3> Within For each loop container added a data flow task
    4> Inside DFT - excel source - 
       Data access Mode: 'Table Name or view name variable'
       Variable Name: 'SheetsName'
    but this loops through all the 10 sheets irrespective of only 5 sheets names stored in the variable "SheetsName".
    Please help...
    Please Mark as Answer if my post solved your problem or Vote As Helpful if this helps. Blogs: www.sqlserver2005forum.blogspot.com

    >> Is it possible to do excel sheets looping using For each loop Enumerator as "For Each loop from Variable enumerator" ? If yes, please help.
    I don't think so. To loop through all worksheets of Excel For ADO.NET Schema Rowset Enumerator is the only option.
    Please refer:
    https://msdn.microsoft.com/en-us/library/ms345182(v=sql.110).aspx
    >> I have an excel file with 10 sheets, but want to loop only 5 sheets
    So you have configured For Each loop container which loops throgh all sheets and returns you sheet name to variable "SheetName".
    Drag and drop one Sequence Container inside ForEach Loop Container and connect it to Data Flow Task.
    Right click on connector and use expression: (which will check if current sheet is one of 5 required sheets)
    @User::SheetName == "FirstSheet" ||  @User::SheetName == "SecondSheet" || .....
    Below blog demonstrates kind of simillar steps:
    http://www.bidn.com/blogs/MikeDavis/ssis/559/ssis-skip-certain-files-in-a-for-each-loop 
    -Vaibhav Chaudhari

  • How to use for each loop in XSLT when my source is a multilayout file and db

    How do I use a for each loop in XSLT when my source is multilayout file and db .
    My multilayout file is basically contain 2 kind of data one for employee and another for dependent.
    Now my requirement is I want to read each line of data whether it is it is employee or dependent do a join with db and write it in my target file.
    eg :  File content
    1 RichaKumari 311289 TCS INDIA
    2 KiarnKumar 456782 BRO RichaKumari 311289 INDIA
    2 Ravi            456882 BRO RichaKumari 311289 INDIA
    eg : db Content
    311289 RichaKumari TCS INDIA Bangalore [email protected]
    Now in Final File I need something like this :
    1 RichaKumari 311289 TCS INDIA
    2 KiarnKumar RichaKumari 311289 TCS INDIA
    2 Ravi            RichaKumari 311289 TCS INDIA
    here 1 and 2 are the identifier which will decide which layout to follow .

    Hi,
    I think you'll need two nested for-each's... Something like...
    <xsl:for-each select="$root/row[layout = 1]">
    <xsl:variable name="employee" select="."/>
    ... write employee ...
    <xsl:for-each select="$root/row[layout = 2 and dependentid = $employee/id]">
    ... write dependent ...
    </xsl:for-each>
    </xsl:for-each>
    Cheers,
    Vlad

  • Loading accdb file using for each loop in to single target table

    I have 3 accdb file as below in single folder, in control flow I have created a for each loop to loop through all the below file.  In dataflow task I have created oledb source using connection manager to point to first file a1.accdb. I am trying
    to load all the file into single below mentioned target table, here It is only loading first file it is not looping through other two file.
    This I have tried to load .txt files and csv files it is working perfectly but similarly when I try to load access db file table it is not working, can any one of you help me?
    1. a1.accdb contains only one table  a1tab ( col1 col2 col3 )  
    2. a2.accdb  contains only one table  a2tab  ( col1 col2 col3 )
    3. a3.accdb  contains only one table  a3tab   ( col1 col2 col3 )
    I have a target table with similar structure as source
    Target table <TargetTable> Col1 Col2 Col3
    aak

    Thanks Arthur, please find below response
    How do you handle the different table names?  Cant we handle it in a similar manner, how we handle the .csv/.txt files with different name and similar structure for sources(multiple files) and target (single table)
    Is it good to drop the idea of for each loop and create a separate task for each accdb file? to be loaded to same target table( performance wise etc.. any justification would be helpful)
    You must handle the connection string dynamically?
    Can you help me with the logic for handling connection string dynamically
    aak

  • Is there any way to use a For Each Loop for each property of an User Defined Type?

    Is there any way to use a For Each Loop for each property of an User Defined Type? That would be very handy!
    Jorge Barbi Martins ([email protected])

    Alas, no, not in VBA.
    Regards, Hans Vogelaar (http://www.eileenslounge.com)

  • "for each" loop - under the hood question

    Question about the for each loop. Is it optomized? I think this is a poor use of memory management -
    for (int i = 0; i < stop; i++) {
    Object obj = new Object();
    doSomething(obj);
    }And this is the ideal, using the same object -
    Object obj = new Object();
    for (int i = 0; i < stop; i++) {
    doSomething(obj);
    }So underneath the hood, which is the for each loop comparable to? I love the syntax, it's very clean-looking in the code, but at the same time I don't want to hurt performance.

    Question about the for each loop. Is it optomized? I
    think this is a poor use of memory management -
    for (int i = 0; i < stop; i++) {
    Object obj = new Object();
    doSomething(obj);
    }And this is the ideal, using the same object -
    Object obj = new Object();
    for (int i = 0; i < stop; i++) {
    doSomething(obj);
    }So underneath the hood, which is the for each loop
    comparable to? I love the syntax, it's very
    clean-looking in the code, but at the same time I
    don't want to hurt performance.That depends on YOU. You CANNOT write a for-each loop for the code you provided. A for-each loop requires an Iterable. (I think that's what it requires--it at least requires something to iterate over, not just an index variable as you have.)
    Consider the following, however:
    Object o1 = new Object();
    for (Foo foo : fooList) {
        Object o2 = new Object();
         foo.doStuff(o1, o2);
    } It will be equivalent to this:Object o1 = new Object();
    for (Iterator iter = foo.iterator(); iter.hasNext();) {
        Foo foo = (Foo)iter.next();
        Object o2 = new Object();
        foo.doStuf(o1, o2);
    } How could it be any different? It has to keep the behvior of the "old fashioned" iteration.

  • For Each Loop: Enumerator Configuration In the For each loop Editor Help needed

    Hi All,
    I have a package that runs and updates a table with everytime someone adds a flat file in the source folder. One of the requirement is to upload files with the following
    ACA Flat files will have a naming convention of “ACA_ccyy_<julian date>”  : How can I add this?
    Under Files this is how I have setup the qualifies "ACA_*.*"
    Is there anyway to pass the entire naming convention in the file section? If so how can I ?
    Please help?
    FM

    As you have ACA_*.* set in Files Filter, it will return all the files from the folder which start with ACA_.
    You can have one dummy Sequence Container inside FE Loop Container. Connect it to your starting task and do right click on Precedence Constraint and write the expression the way you want by using SSIS functions. If the expression is evaluated to True only
    then it will go to the next task.
    In this way you can skip Non-ACA files.
    Please refer:
    SSIS Skip Certain Files in a For Each Loop
    - Vaibhav

  • Want to print a dark line as seperator in table row  for each loop

    Hi,
    I have a collection of data
    I have to print it in a table but condition is it should print a dark line as separator in table for each loop & also have to print a dark line in the end of table.
    means Some thing like below
    Table Headings
    Data1
    Data1.1
    Data1.2
    Data2
    Data2.1
    Data2.2
    Please help ..
    Bunty
    Message was edited by:
    bunty_india

    Well what does your looping code look like?
    Are you using scriptlets? or JSTL forEach?
    Do you have nested loops?
    What is your data structure?
    Your question about knowing which is the last line in the table requires knowing all of these things. Help us to help you.

  • Inside for-each loop

    hi,
    I gave one for-each loop inside one row, the table which am using has three columns and two rows, at first row there are column headings and second row first column i started for-each loop and ended end for-each loop at third column. Now I am getting displayed multpile rows for each occurence of elements that is fine but How can I get rid of lines which is occuring between each rows. Is there any way to deal this.
    Thanks :)

    send me you template and xml to my id in profile.

  • SSIS For Each Loop Container

    Hello All,
    I have some files within sub folders. Below is the layout 
    C:\Source\01012015\Sample_1.csv
    C:\Source\01012015\Sample_2.csv
    C:\Source\02012015\Sample_1.csv
    C:\Source\02012015\Sample_2.csv
    C:\Source\03012015\Sample_1.csv
    C:\Source\03012015\Sample_2.csv
    I want
    to copy entire folder contents from source to destination including the sub folders and the files
    I am using for each loop container which reads the files form 01012015 folder, is there any way to read
    all the files from each and every folder(01012015, 02012015,03012015)?
    The destination should be like this. 
    C:\Archive\01012015\Sample_1.csv
    C:\Archive\01012015\Sample_2.csv
    C:\Archive\02012015\Sample_1.csv
    C:\Archive\02012015\Sample_2.csv
    C:\Archive\03012015\Sample_1.csv
    C:\Archive\03012015\Sample_2.csv
    Thanks, Shyam.

    Hi Shyam,
    According to your description, you want to copy entire folder contents including the sub folders and the files from source to destination.
    Based on my research, we should use Foreach File Container together with File System Task to achieve your requirement. For more details, please refer to the following links:
    https://social.msdn.microsoft.com/forums/sqlserver/en-US/4d99ebef-df43-44ad-9794-1d729cbf52e9/ssis-foreach-loop-copy-within-subfolders
    http://www.sql-programmers.com/for-each-loop-container.aspx
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • For-each loop atom not executing in B1if processing step

    Dear All,
    I have designed scenario in B1if in which Inbound is SAP ERP(ECC) IDOC and Outbound is UDO object. In this scenario I have loop placed in it, on the basis of IDOC fields I am executing query but it's not going inside the loop, I have entered correct path in loop. Please see attached image of processing, for loop path and inbound message.
    for-each path : /vpf:Msg/vpf:Body/vpf:Payload[./@Role='S']/ZSD_IDOC_B1_JW_ASN/IDOC/ZSD_SEG_B1_ASN_SO
    Inbound Message :
    - <Payload Role="S" mode="0">
    - <ZSD_IDOC_B1_JW_ASN xmlns="">
      <?msgid 150402232456625499260A1301F349C4?>
    - <IDOC BEGIN="1">
    - <EDI_DC40 SEGMENT="1">
      <TABNAM>EDI_DC40</TABNAM>
      <MANDT>120</MANDT>
      <DOCNUM>0000000000425819</DOCNUM>
      <DOCREL>731</DOCREL>
      <STATUS>30</STATUS>
      <DIRECT>1</DIRECT>
      <OUTMOD>2</OUTMOD>
      <EXPRSS />
      <TEST />
      <IDOCTYP>ZSD_IDOC_B1_JW_ASN</IDOCTYP>
      <CIMTYP />
      <MESTYP>ZSD_MSG_B1_ASN</MESTYP>
      <MESCOD />
      <MESFCT />
      <STD />
      <STDVRS />
      <STDMES>ZSD_MS</STDMES>
      <SNDPOR>SAPJED</SNDPOR>
      <SNDPRT>LS</SNDPRT>
      <SNDPFC />
      <SNDPRN>JED120</SNDPRN>
      <SNDSAD />
      <SNDLAD />
      <RCVPOR>B1IFPORT</RCVPOR>
      <RCVPRT>LS</RCVPRT>
      <RCVPFC />
      <RCVPRN>B1IFSYS</RCVPRN>
      <RCVSAD />
      <RCVLAD />
      <CREDAT>20150402</CREDAT>
      <CRETIM>175415</CRETIM>
      <REFINT />
      <REFGRP />
      <REFMES />
      <ARCKEY />
      <SERIAL>20150221173915</SERIAL>
      </EDI_DC40>
    - <ZSD_SEG_B1_ASN_SO SEGMENT="1">
      <SO_CREATE_DATE>04000205</SO_CREATE_DATE>
      <DELIVERY_DATE>04000205</DELIVERY_DATE>
      <CARD_CODE>04000205</CARD_CODE>
      <CARD_NAME>04000205</CARD_NAME>
      <SO_POSTING_DATE>04000205</SO_POSTING_DATE>
      <CUST_REF_NO>04000205</CUST_REF_NO>
      <PO>04000205</PO>
      <PO_ITEM>04000</PO_ITEM>
      <PO_MATERIAL>0400020504000205</PO_MATERIAL>
      <PO_QUANTITY>040002050400020</PO_QUANTITY>
      <PO_UOM>400</PO_UOM>
      <BOM_COMPONENT1>04000205</BOM_COMPONENT1>
      <BOM_COMPONENT2>04000205</BOM_COMPONENT2>
      <_--357F4>04000205</_--357F4>
      <ITEM_CODE>04000205</ITEM_CODE>
      <ITEM_NAME>04000205</ITEM_NAME>
      <QUANTITY>04000205</QUANTITY>
      <GROSS_WT>04000205</GROSS_WT>
      <NET_WT>04000205</NET_WT>
      <PCSPERPKT>0400020504000205</PCSPERPKT>
      <CUST_REQ_PKTWT>04000205</CUST_REQ_PKTWT>
      <ECC_BATCH>04000205</ECC_BATCH>
      <ECC_BATCH_QUALITY>04000205</ECC_BATCH_QUALITY>
      <SO_NO>04000205</SO_NO>
      <SO_ITEM>040002</SO_ITEM>
    - <ZSD_SEG_B1_ASN_CHARS SEGMENT="1">
      <S_PROD_TYPE>S_CRCACF</S_PROD_TYPE>
      <S_PROD_FORM>S_CRCACF</S_PROD_FORM>
      <S_PLANT>S_CRCACF</S_PLANT>
      <S_SUB_CON_SENDING_MAT>S_CRCACF</S_SUB_CON_SENDING_MAT>
      <S_JSW_GRADE>S_CRCACF</S_JSW_GRADE>
      <S_THICK_MM>S_CRCACF</S_THICK_MM>
      <S_WIDTH_MM>S_CRCACF</S_WIDTH_MM>
      <S_EQ_SPEC>S_CRCACF</S_EQ_SPEC>
      <S_UNITISATION>S_CRCACF</S_UNITISATION>
      <S_EDGE_CON>S_CRCACF</S_EDGE_CON>
      <S_COIL_ID_MM>S_CRCACFS_CRCACF</S_COIL_ID_MM>
      <S_PACKAGING_TYPE>S_CRCACF</S_PACKAGING_TYPE>
      <S_OIL_TYPE>S_CRCACF</S_OIL_TYPE>
      <S_OILING_CODE>S_CRCACF</S_OILING_CODE>
      <S_OIL_REQ>S_CRCACF</S_OIL_REQ>
      <S_END_APPN>S_CRCACF</S_END_APPN>
      <S_INT_EDGE_CON>S_CRCACF</S_INT_EDGE_CON>
      <S_SKINPASS_REQ>S_CRCACF</S_SKINPASS_REQ>
      <S_SURFACE_FINISH>S_CRCACF</S_SURFACE_FINISH>
      <S_ROUGHNESS_CODE>S_CRCACF</S_ROUGHNESS_CODE>
      <S_TOL_TYPE>S_CRCACF</S_TOL_TYPE>
      <S_THICK_TOL_TYPE>S_CRCACF</S_THICK_TOL_TYPE>
      <S_THK_TOL_MM_UPPER>S_CRCACF</S_THK_TOL_MM_UPPER>
      <S_THK_TOL_MM_LOWER>S_CRCACF</S_THK_TOL_MM_LOWER>
      <S_WDTH_TOL_MM_UPPER>S_CRCACF</S_WDTH_TOL_MM_UPPER>
      <S_WDTH_TOL_MM_LOWER>S_CRCACF</S_WDTH_TOL_MM_LOWER>
      <S_LENGTH_TOL_MM_UPPER>S_CRCACF</S_LENGTH_TOL_MM_UPPER>
      <S_LENGTH_TOL_MM_LOWER>S_CRCACF</S_LENGTH_TOL_MM_LOWER>
      </ZSD_SEG_B1_ASN_CHARS>
      </ZSD_SEG_B1_ASN_SO>
    - <ZSD_SEG_B1_ASN_SO SEGMENT="1">
      <SO_CREATE_DATE />
      <DELIVERY_DATE />
      <CARD_CODE />
      <CARD_NAME />
      <SO_POSTING_DATE />
      <CUST_REF_NO />
      <PO />
      <PO_ITEM />
      <PO_MATERIAL />
      <PO_QUANTITY />
      <PO_UOM />
      <BOM_COMPONENT1 />
      <BOM_COMPONENT2 />
      <_--357F4 />
      <ITEM_CODE />
      <ITEM_NAME />
      <QUANTITY />
      <GROSS_WT />
      <NET_WT />
      <PCSPERPKT />
      <CUST_REQ_PKTWT />
      <ECC_BATCH />
      <ECC_BATCH_QUALITY />
      <SO_NO />
      <SO_ITEM />
    - <ZSD_SEG_B1_ASN_CHARS SEGMENT="1">
      <S_PROD_TYPE />
      <S_PROD_FORM />
      <S_PLANT />
      <S_SUB_CON_SENDING_MAT />
      <S_JSW_GRADE />
      <S_THICK_MM />
      <S_WIDTH_MM />
      <S_EQ_SPEC />
      <S_UNITISATION />
      <S_EDGE_CON />
      <S_COIL_ID_MM />
      <S_PACKAGING_TYPE />
      <S_OIL_TYPE />
      <S_OILING_CODE />
      <S_OIL_REQ />
      <S_END_APPN />
      <S_INT_EDGE_CON />
      <S_SKINPASS_REQ />
      <S_SURFACE_FINISH />
      <S_ROUGHNESS_CODE />
      <S_TOL_TYPE />
      <S_THICK_TOL_TYPE />
      <S_THK_TOL_MM_UPPER />
      <S_THK_TOL_MM_LOWER />
      <S_WDTH_TOL_MM_UPPER />
      <S_WDTH_TOL_MM_LOWER />
      <S_LENGTH_TOL_MM_UPPER />
      <S_LENGTH_TOL_MM_LOWER />
      </ZSD_SEG_B1_ASN_CHARS>
      </ZSD_SEG_B1_ASN_SO>
      </IDOC>
      </ZSD_IDOC_B1_JW_ASN>
      </Payload>

    Hi Bastian,
    Thanks for response.
    In Graphical For-Each Loop I have used xpath </vpf:Msg/vpf:Body/vpf:Payload[./@Role='S']/ZSD_IDOC_B1_JW_ASN/IDOC/ZSD_SEG_B1_ASN_SO> and its correct as per the input message which I have shown in discussion, please correct me if I have done wrong inn xpath expression.
    As per my understanding I can not write loop in xslt because on the basis of some fields I am querying from database, if there is another way to achieve this please let me know.
    Thanks

  • For each loop container executing multiple times....

    Hi,
    We are using SQL SERVER version 2005.
    I am having a For each loop container and inside that container there are multiple Sequence containers and inside each sequence containers there are Execute SQL Tasks (which are just stored procedures).
    Now, when i run sequence containers individually they are running perfectly fine.
    But when I run the whole For each loop container, it is just running and running multiple times without ending the process.
    I really couldnt figure out what would be the issue?
    Any ideas????
    Thanks....

    Hi grk666,
    To check whether the values stored in the object type variable are correct, you can disable all the Sequence Containers within the Foreach Loop Container, and add a Script Task with the following code to display the string type variable value (supposing
    you use the string type variable StrVar to store the value retrieved from the object variable):
    MsgBox(Dts.Variables(“StrVar”).Value.ToString())
    It would be helpful if you could post a screenshot to show the package execution at runtime in BIDS.
    Regards,
    Mike Yin
    TechNet Community Support

  • Studio Creator 2 for-each loop error

    Hi,
    I am using Studio Creator 2 early Access 2. The JDK is using 1.5. But when I use for-each loop. There is an error - source 1.4 for-each loop is not support, try -source 1.5.
    Why ?
    Thanks
    Wilson

    Hi Wilson,
    Please take a look at the following threads in the EA forum at the Feedback Programs Portal.
    https://feedbackprograms.sun.com/project/forum/thread.html?cap={3F4DA363-16D3-4D4C-920C-992ECB054B6D}&forid={CC6B8562-F896-4A44-ACB6-4684BDD05E19}&topid={8D824969-544E-407A-8D4A-C375CC577169}
    https://feedbackprograms.sun.com/project/forum/thread.html?cap={3F4DA363-16D3-4D4C-920C-992ECB054B6D}&forid={CC6B8562-F896-4A44-ACB6-4684BDD05E19}&topid={C124D2B1-562A-4638-AD52-A6954A2112E0}
    As youcan see JDK 1.5 is not completely supported and the engineers are aware of this and are working hard on the issue.
    We also request you to post Creator 2 EA 2 related queries at the Feedback Programs Portal for which the URL is:
    https://feedbackprograms.sun.com/login.html
    Cheers
    Giri

  • Package Help needed For each Loop container

    Hello all,
    I need a bit of advice, I`m a newbee to SSIS so I`m learning. Here`s what I need. I have a EDI 837 file which needs to be converted and inserted into a sql table. These are multiple files and I need to maintain them with a monthly load. So I have a source
    folder where these files will be dumped. I created a Package which will grab the files process the EDI aspect inserts into the data into table. This is the story on a high level.
    Here`s what I did.
    Created a For each loop container.
    I have a stored proc which takes in a 837 files and gets the fields what I want and it inserts it into a staging table from there I have a data flow task which pipes it into my production table.
    Inside the loop first task is to exec the Stored Proc but my question is once a file is picked up from for each loop I need the file to be inserted into a table which I am referencing in my store proc. All the EDI conversion takes place in my SP and it references
    the table..
    My question is the For each loop container picks up the files but where does the data goes?? Can someone help me out
    FM

    The foreach loop container (file enumerator) only returns the filename or filepath which you can use as a parameter in an Execute SQL Task or within an expression on a connection manager (which can be used in a Data Flow). So it doesn't do anything with
    the file. You have to add a task within the loop to do something with the file (Execute SQL Task/Data Flow Task/File System Task/etc.).
    Please mark the post as answered if it answers your question | My SSIS Blog:
    http://microsoft-ssis.blogspot.com |
    Twitter

Maybe you are looking for

  • Help writing javascript with c:out tag

    Hi I'm having trouble mixing javascript and jstl and could use some pointers! I need to write a flash object tag on the fly using javascript, and to also use <c:out> to define the flashvars parameter. So for example, at the top of my page I do someth

  • How to set up "Find My iPod Touch" 3G without MobileMe

    Hi, I have an iPod touch 3G and want to set up "Find My iPod Touch" on it, as described here: http://www.apple.com/ipodtouch/find-my-ipodtouch-setup/ I'm running OS 4.3.4 (8K2) and have iTunes 10.4.1.  I have an AppleID but not a MobileMe account.  I

  • How can i tell when a device was installed on my iphone

    I didn't install a type of bluetooth device on my phone, and I am trying to see when it was installed.  Any thoughts?

  • Inserting new section creates 2 pages at a time, cannot delete one

    Hi, Building out a series of two page templates, and I cannot insert a blank page, or even duplicate, without pages creating two new pages. When I try to delete one, both vanish. When I duplicate, the third page matches the original first, and there

  • Multi-State Non-Resident Tax

    Hello, In the case where you have employees who live in one state but who may work in multiple states during a pay period (i.e. traveling sales employees, or consultants) how are you handling the collection of time spent in each state for payroll tax