Filter a filtered recordset

DW CS3 - Access - ASP VBScript
I'm still learning SQL and trying to figure out how to filter down a recordset using parameters.   I want to filter one recordset twice in a specific order.  My first filter would pull records based on an item clicked from a form entitled "type".
          VIEW TYPE:  itemA  |  itemB  |  itemC
My second filter would pull records within the first set of records from a form entitled "search" (textfield keyword search).   All data is retrieved on the same page using method GET.  I'm using parameters for both forms, similar to the following example (I know the operator is incorrect).  Maybe my approach is infeasible?  None of my books or tutorials help since I'm not sure what to look for in order to do this, so any help would be appreciated.
SEACH Gender, Color, Type, Details
FROM myTable
WHERE Type LIKE %MMColParam% AND Details LIKE %MMColParam2%
MMColParam
Text
Request.Querystring.("type")
MMColParam2
Text
Request.Querystring("search")
Message was edited by: christinett

No other forms.
I have a similar db and page I've used as my experiment for SOCKS.  It is doing the exact same thing.  Here's the code:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
<!--#include file="../Connections/myconnection.asp" -->
<%
Dim rs_socks__MMColParam
rs_socks__MMColParam = "M"
If (Request.Querystring("gender")  <> "") Then
  rs_socks__MMColParam = Request.Querystring("gender")
End If
%>
<%
Dim rs_socks__MMColParam2
rs_socks__MMColParam2 = "%"
If (Request.Querystring("search")  <> "") Then
  rs_socks__MMColParam2 = Request.Querystring("search")
End If
%>
<%
Dim rs_socks
Dim rs_socks_cmd
Dim rs_socks_numRows
Set rs_socks_cmd = Server.CreateObject ("ADODB.Command")
rs_socks_cmd.ActiveConnection = MM_myconnection_STRING
rs_socks_cmd.CommandText = "SELECT * FROM tbl_apparel WHERE gender = ? AND details LIKE ?"
rs_socks_cmd.Prepared = true
rs_socks_cmd.Parameters.Append rs_socks_cmd.CreateParameter("param1", 200, 1, 255, rs_socks__MMColParam) ' adVarChar
rs_socks_cmd.Parameters.Append rs_socks_cmd.CreateParameter("param2", 200, 1, 255, "%" + rs_socks__MMColParam2 + "%") ' adVarChar
Set rs_socks = rs_socks_cmd.Execute
rs_socks_numRows = 0
%>
<%
Dim Repeat1__numRows
Dim Repeat1__index
Repeat1__numRows = -1
Repeat1__index = 0
rs_socks_numRows = rs_socks_numRows + Repeat1__numRows
%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>
<body>
<div align="center">
  <p>SOCKS</p>
    show socks for this gender: <a href="../FilterTests/FILTER_TEST6.asp?gender=M">male</a> |<a href="../FilterTests/FILTER_TEST6.asp?gender=F"> female</a> | <a href="../FilterTests/FILTER_TEST6.asp?gender=anyone">anyone</a>
  <form id="search" name="search" method="get" action="../FilterTests/FILTER_TEST6.asp?gender="<%=Request.QueryString("gender") %>">
    <p>search in above category for:
      <input name="search" type="text" id="search" value="<%= Request.QueryString("search") %>" />
        <input type="submit" value="search" />
      <a href="../FilterTests/FILTER_TEST6.asp">reset all</a></p>
  </form>
  <table cellpadding="5">
    <tr>
      <th scope="col">TYPE</th>
      <th scope="col">GENDER</th>
      <th scope="col">COLOR</th>
      <th scope="col">DETAILS</th>
    </tr>
    <%
While ((Repeat1__numRows <> 0) AND (NOT rs_socks.EOF))
%>
    <tr>
      <td><div align="center"><%=(rs_socks.Fields.Item("socks").Value)%></div></td>
      <td><div align="center"><%=(rs_socks.Fields.Item("gender").Value)%></div></td>
      <td><div align="center"><%=(rs_socks.Fields.Item("color").Value)%></div></td>
      <td><div align="left"><%=(rs_socks.Fields.Item("details").Value)%></div></td>
    </tr>
    <%
  Repeat1__index=Repeat1__index+1
  Repeat1__numRows=Repeat1__numRows-1
  rs_socks.MoveNext()
Wend
%>
  </table>
</div>
</body>
</html>
<%
rs_socks.Close()
Set rs_socks = Nothing
%>

Similar Messages

  • How to define source value for filtered recordset (ASP)

    Hi,
    I'm using ASP & CS4. I have a search page which upon submission sends form parameters to a results page. The results page matches the search parameters to a recordset and returns the appropriate record/s.
    How can I take one of the values from the returned filtered recordset (which wasn't one of the original variables/parameters), and use it as a value to filter another recordset from another table? Do I have to create a parameter from that value, or can it be done in a SQL statement?
    Many thanks

    How many results are returned from the first recordset? Where is the second recordset to be displayed?
    If the first RS returns a single row and the second RS is displayed on the same page, you don't need to create anything. Just use the value of the column you want in the SQL statement. If you need to pass the value to another page, you can either set a session variable or pass the value in the querystring.

  • DATE_FORMAT in filtered recordset

    I am having trouble formatting the date with php/MySQL in a filtered recordset. I am looking at the tutorial on http://forums.adobe.com/thread/450108 which shows how to do it. I've gotten it to work for a regular query but it sends back errors when I try to insert it into a filtered recordset. Here is the code I am trying but it's not working.
    $blog_id = "-1";
    if (isset($_GET['blog_id'])) {
      $blog_id = $_GET['blog_id'];
    $query_blog_comments = sprintf("SELECT blog_id, blog, comment, display, DATE_FORMAT(date, '%W, %M %e, %Y') AS date_formatted FROM blog_comment WHERE blog_id = %s AND display = 1 ORDER BY blog_id ASC", GetSQLValueString($blog_id, "text"));
    Please tell me how to format a date for a filtered recordset. Thanks!

    Heya,
    Try this code:
    $blog_id = "-1";
    if (isset($_GET['blog_id'])) {
      $blog_id = $_GET['blog_id'];
    $query_blog_comments = sprintf("SELECT
    blog_id, blog, comment, display,
    DATE_FORMAT(date, '%%W, %%M %%e, %%Y')
    AS date_formatted
    FROM blog_comment
    WHERE blog_id = %s
    AND display = 1
    ORDER BY blog_id ASC",
    GetSQLValueString($blog_id, "text"));
    The difference is an extra '%' placed in each date variable of DATE_FORMAT

  • How to Filter a filtered Query with in a single query

    Hi all,
    Thanks in advance , Below is the query
    SELECT *
    FROM
    (SELECT MitarbeiterListe.IDMITARBEITERLISTE,
    MITARBEITERLISTE.JAHR ,
    MITARBEITERLISTE.mitarbeiter ,
    FIRMA.FIRMA ,
    Abteilung.Abteilung ,
    MitarbeiterStatus.mitarbeiterstatus ,
    MitarbeiterListe.OEVON ,
    MitarbeiterListe.OEBIS ,
    MitarbeiterListe.SAPPERSNR ,
    MitarbeiterListe.EKPreis
    ||'.00' "MitarbeiterListe.EKPreis",
    MitarbeiterListe.InfrastrukturkostenZuschlag
    ||'.00' "InfrastrukturkostenZuschlag",
    MitarbeiterListe.VerwaltungskostenZuschlag*100
    ||'%' "VerwaltungskostenZuschlag",
    MitarbeiterListe.Tagessatz ,
    MitarbeiterListe.Arbeitsort ,
    MitarbeiterListe.Titel ,
    MitarbeiterListe.Bemerkung ,
    BERECHTIGUNGEN.BENUTZERNAME
    FROM Firma
    INNER JOIN (Abteilung
    INNER JOIN MitarbeiterListe
    ON Abteilung.IDAbteilung = MitarbeiterListe.IDAbteilung
    INNER JOIN MitarbeiterStatus
    ON MitarbeiterListe.IDMITARBEITERSTATUS=MitarbeiterStatus.IDMITARBEITERSTATUS
    INNER JOIN BERECHTIGUNGEN
    ON MITARBEITERLISTE.IDBEARBEITER=BERECHTIGUNGEN.IDBENUTZER )
    ON Firma.IDFirma = MitarbeiterListe.IDFirma
    WHERE MitarbeiterListe.Jahr = :P9_SEL_JAHR
    AND Abteilung.IDOE =
    ( SELECT IDOE FROM OE WHERE OE = :P9_SEL_OE AND JAHR = :P9_SEL_JAHR
    ) temp
    Requirement is : we need to filter this query again based on column in select list . As using AND / OR operator we are not able to give desired result ..
    As in our case we are filtering the above query based on :P9_SEL_JAHR and :P9_SEL_OE variables ther is further requirement that we can also filter the filtered given query based on column vaue so we can get the specific columns value through bind variables and can use OR operator between them .but the problem is coming on merging the columns where case with the given query ..
    As for example if we use this afer the query
    OR/AND
    MitarbeiterStatus.mitarbeiterstatus = :P9_SL_MA_STAT OR
    MitarbeiterListe.OEVON = :P9_SL_OEVON OR
    MitarbeiterListe.OEBIS = :P9_SL_OEBIS OR
    MitarbeiterListe.SAPPERSNR = :P9_SL_SAPPERNR
    for the OR case the first query will be always true so it will not filter it baseed on column value and in case of AND the second query would return true ..so we would get filtered column value based on column bind varaible not the complete query result based on JAHR and OE bind variable.
    any way to satisfy these two cases within a single query ..suggesstions are welcomed and would be truly appreciated.
    Cheers
    sachin

    Not certain I've fully understood your required logic without examples, but I think you just need to use brackets:
    WHERE MitarbeiterListe.Jahr = :P9_SEL_JAHR
    AND Abteilung.IDOE =
    ( SELECT IDOE FROM OE WHERE OE = :P9_SEL_OE AND JAHR = :P9_SEL_JAHR)
    AND
    MitarbeiterStatus.mitarbeiterstatus = :P9_SL_MA_STAT
    OR MitarbeiterListe.OEVON = :P9_SL_OEVON
    OR MitarbeiterListe.OEBIS = :P9_SL_OEBIS
    OR MitarbeiterListe.SAPPERSNR = :P9_SL_SAPPERNR
    )

  • Should the "filter gallery" filters be displayed in CS5 64 bit filter menu?

    I would swear I had the "filter gallery" filters available (artistic, brush strokes, sketch...) from CS5 64 bit. But tonight I realised I can only see them in CS5 32 bit, not in the 64 bit version. Is this normal?
    Please note I'm *not* talking about them being grayed out due to the image being in 16 bit. It's just that they do not appear on the menu as they do in the 32 bit version. I've tried copying the filter gallery.8bf file from 32 version folder to 64 one, but it doesn't work.
    This is how my filter menu looks on each CS5 version (32 bit/64 bit):
    Thanks for your help.

    Thanks, I was pretty sure they should be there, but since I don't use them often, I was in doubt.
    I can't think of anything I did to remove the filter gallery - I'm really intrigued about how could it disappear (?). I supposed the 32 and 64 bit version of the 8bf file would be different, but wanted to give it a try just in case...
    After wasting some time trying to find the 64 bit "filter gallery.8bf" online, I've decided to just reinstall CS5 and yes, just as you say, now the filters are there. It's a good thing that reinstalling CS5 somehow keeps intact your preferences, workspace and 3rd party plugins! I just had to run the Adobe updater and everything's back to normal.
    Thanks for confirming this was an issue! Have a great day.

  • Filtering recordsets

    DW CS3 - MS Access - ASP
    I'm trying to learn how to create filters, and trying to filter a recordset with a dropdown menu. Here’s an example:
    1.      The db column to filter is called “Colors” and has duplicates of RED and BLUE. 
    2.      My form method is GET with action set to the same page. 
    3.      My dropdown menu is called “color” with items labels RED and BLUE, values RED and BLUE. 
    4.      I bind a Request.Querystring named “color” to the dropdown menu.
    5.      I create a new recordset, filtering by URL Parameter “color”. 
    The test values of RED or BLUE return correctly, but using the dropdown menu in preview is not working.  I'm sure I'm going about this all wrong, so any help is appreciated. 

    Too much experimenting on the dropdown menu, so I've tried to create another simpler filtering method via a link with a URL parameter.  Hopefully, I'm missing a simple step and the concept of filtering will all come together. (following instruction from DW3 The Missing Manual)
    I created a page called FILTER_TEST.asp.  Created a table with a repeat region for a recordset called "socks" with columns type and color. No filters. All records return fine.
    Created a form with the method GET and action FILTER_TEST.asp.  Typed the word "black" in the form, and linked it via property inspector file search with URL parameter ?color=black. Created another recordset called "color", filtering the color column by URL parameter color.  All records return, but no filtering occurs via the link.
    Here's the code:
    <%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
    <!--#include file="Connections/myconnection.asp" -->
    <%
    Dim rs_socks
    Dim rs_socks_cmd
    Dim rs_socks_numRows
    Set rs_socks_cmd = Server.CreateObject ("ADODB.Command")
    rs_socks_cmd.ActiveConnection = MM_myconnection_STRING
    rs_socks_cmd.CommandText = "SELECT * FROM tbl_apparel"
    rs_socks_cmd.Prepared = true
    Set rs_socks = rs_socks_cmd.Execute
    rs_socks_numRows = 0
    %>
    <%
    Dim rs_color__MMColParam
    rs_color__MMColParam = "1"
    If (Request.QueryString("color") <> "") Then
      rs_color__MMColParam = Request.QueryString("color")
    End If
    %>
    <%
    Dim rs_color
    Dim rs_color_cmd
    Dim rs_color_numRows
    Set rs_color_cmd = Server.CreateObject ("ADODB.Command")
    rs_color_cmd.ActiveConnection = MM_myconnection_STRING
    rs_color_cmd.CommandText = "SELECT * FROM tbl_apparel WHERE color = ?"
    rs_color_cmd.Prepared = true
    rs_color_cmd.Parameters.Append rs_color_cmd.CreateParameter("param1", 200, 1, 255, rs_color__MMColParam) ' adVarChar
    Set rs_color = rs_color_cmd.Execute
    rs_color_numRows = 0
    %>
    <%
    Dim Repeat1__numRows
    Dim Repeat1__index
    Repeat1__numRows = -1
    Repeat1__index = 0
    rs_socks_numRows = rs_socks_numRows + Repeat1__numRows
    %>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Untitled Document</title>
    </head>
    <body>
    <div align="center">
      <form id="form1" name="form1" method="get" action="FILTER_TEST.asp">
        <a href="FILTER_TEST.asp?color=black">black</a>
      </form>
      <table cellpadding="5">
        <tr>
          <th scope="col">SOCK TYPE</th>
          <th scope="col">COLOR</th>
        </tr>
        <%
    While ((Repeat1__numRows <> 0) AND (NOT rs_socks.EOF))
    %>
          <tr>
            <td><div align="left"><%=(rs_socks.Fields.Item("socks").Value)%></div></td>
            <td><div align="left"><%=(rs_socks.Fields.Item("color").Value)%></div></td>
          </tr>
          <%
      Repeat1__index=Repeat1__index+1
      Repeat1__numRows=Repeat1__numRows-1
      rs_socks.MoveNext()
    Wend
    %>
        </table>
    </div>
    </body>
    </html>
    <%
    rs_socks.Close()
    Set rs_socks = Nothing
    %>

  • Filtering recordset with session variable

    This has never happened to me before, but for some reason, my
    recordset that drives a dynamic table won't filter results based on
    a session variable. I know session variables are working because I
    have the session variable echo on the page (dragged-n-dropped my
    session variable from the Bindings panel to my page), and that
    works fine. So why can't I filter my recordset with the same
    session variable??? What's going on?
    PS: I've attached my result page's code to this
    message.

    Actually, problem solved. I moved " session_start()" above
    "$colname_rsSales = "-1" ", which did the trick.

  • DFS Subfolder Filter Not Filtering

    Server 2008R2
    Hi everyone,
    I'm troubleshooting a subfolder filter issue with DFS.  I followed the troubleshooting steps in the KB listed below and all went well.  There are no errors in the event viewer.
    http://support.microsoft.com/kb/272279
    Some thoughts:
    Since I applied the filter AFTER replication had occurred, will the filter still work?
    The filtered folder name has spaces in (for example: shipping & receiving).  Would this cause the filter not to function correctly?
    Any help appreciated!

    Hi,
    If applied a folder filter AFTER replication had occurred, the folder will stay on all servers. However, any new files/folders added to the folder do not replicate to any other server.
    The filtered folder name can have spaces in, the filter function still work.
    File and subfolder filters
    http://technet.microsoft.com/en-us/library/cc757726(v=ws.10).aspx
    Regards,
    Mandy
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Tabular:Row Filter - If filtering on child record you still get parent records back that are not "parents" of that child record

    I have a tabular model that has States (StateID, StateName)
    Then I have Cities (CityID, StateID,CityName)
    Employees(EmpID, CityID, Login ID)
    When I then go and setup a row filter so that my Employees table filters on their windows login name so they only see a few CITYIDs per employee.
    =Cities[CityID]=LOOKUPVALUE(Employees[CityID],Employees[Login Id],USERNAME(),Employees[CityID],Cities[CityID])
    The table Cities is related to States via PK States[StateID] and FK Cities[StateID] (so the arrow goes from Cities and points to States)
    What gets odd here is that when I connect with a user who only has cities in 2 states, I see OTHER states for which that user has no cities.
    I don't understand that.  If they have Cities of Des Moines (Iowa) and Madison (Wisconsin) why are they seeing any states other than those two states?
    The user sees ONLY the cities they are supposed to...why are they seeing States that aren't related to their cities?

    Hi,
    The DAX formula you posted was fine. Have you define the relationship between "Employees" and "Cities" tables(Employees->Cities)?
    Please go through the following articles regarding implement dynamic security by using row filters, maybe we have missed anything:
    Implement Dynamic Security by Using Row Filters:
    http://msdn.microsoft.com/en-us/library/hh479759(v=sql.110).aspx
    Dynamic Security in Tabular:
    http://www.bidn.com/blogs/ChrisSchmidt/ssas/4332/dynamic-security-in-tabular
    If you have any feedback on our support, please click
    here.
    Regards,
    Elvis Long
    TechNet Community Support

  • Resource list filter for filtering on timestamp

    Hi,
    We need to implement scenario where only XML form messages active in the timestamp are displayed to end users.
    For this we have done the following changes :
    1) The KM folder permissions are Everyone has read only role and Admin users has Full control
    2) IN XML form we have a property which has unique name.
    3) There is layout set created , collection rendered and resource rendered, CM repository for having the KM folder under /root
    4) the collection rendered has configuration of resource list filter
    5) the filters par file is deployed refering the blog : Resource list filter for Flexible UI navigation
    In this ,the code references the Folder path and checks for the filter property.
    6) the resouce list filter has the java class as the one from par file.
    still this is not working. Please let me know if I am missing something.

    Hi Kumar,
    this is not really correct. A NoClassFoundException is not part of Java core. There only <i>ClassNotFoundException</i> and <i>NoClassDefFound<u>Error</u></i> do exist.
    ClassNotFoundException is thrown when a class is explicitely tried to get loaded. See http://java.sun.com/j2se/1.4.2/docs/api/java/lang/ClassNotFoundException.html
    NoClassDefFoundError is thrown when a referenced class definition within a loaded class cannot be resolved. See http://java.sun.com/j2se/1.4.2/docs/api/java/lang/NoClassDefFoundError.html
    Also see for an overview http://publib.boulder.ibm.com/infocenter/wasinfo/v6r0/index.jsp?topic=/com.ibm.websphere.express.doc/info/exp/ae/rtrb_classload_viewer.html and/or http://dev2dev.bea.com/pub/a/2004/01/Webflow.html
    Hope it helps
    Detlev

  • Web Repository: Result Resource Filter not filtering

    I have an issue with the result of my Result Resource Filter. Maybe somebody can point me to my mistake ?
    In site B i have several languages that i don't want to show, since they are the same, but the URL is different.
    I am ending up with the same site appearing several times, where it should only appear twice (English and German)
    I have a site A, which also posseses the /index.php.
    The language parameter can appear twice when a language switch is done, but the last language parameter will be used.
    http://www.siteB.com/index.php?id=10&L=10&L=7
    http://www.siteB.com/index.php?id=10&L=11&L=7
    http://www.siteB.com/index.php?id=10&L=7
    http://www.siteB.com/index.php?id=10&L=8&L=7
    The only languages should be 7 and 0
    The result resource filter settings are :
    - Include Documents/ web-Pages : true
    - Item ID Mode : exclude
    - Item ID Pattern: siteB.com/index.php&L=8,siteB.com/index.php&L=9,siteB.com/index.php&L=10,  siteB.com/index.php&L=11
    I tried before just using "/index...." , but that did not work either. And i want to be sure that correct URL is filtered....
    With this setup i would excect, that only this pages appear:
    http://www.siteB.com/index.php?id=10&L=7
    http://www.siteB.com/index.php?id=10&L=0
    but they appear all.....
    Regards,
    Kai

    Hi Kai.
    Assuming your correct links may look like
    http://www.siteB.com/index.php?id=10&L=7
    http://www.siteB.com/index.php?id=7&L=0
    http://www.siteB.com/index.php?id=295&L=7
    try this expression:
    http://www\.siteB\.com/index\.php\?id=\d+\&L\=[07]
    Hope it helps.
    Best regards,
    Aliaksandr Zhukau

  • Apply XSL Filter (Repository Filters) to a folder

    Hi I have created an XSL stylesheet which I need to apply to all XML files in a specific folder.
    I have entered the path to stylesheet like “wcm://etc/stylesheet.xsl” and the path to the to the specific folder, and restarted the portal engine.
    When I view an XML file in the specified folder a tree structure of the xml-file is shown instead of the transformation.
    Have anyone any successful experience with this portal function.
    Regards
    John Stubbe

    Thanks I'll check it out.
    As long as I've been uing Photoshop, (since version 2.5) I've never used the automate features.
    I just never needed to apply the same actions to a series of images before.
    I'm using CS2 now.
    But I'll give it a try.
    I'll come back if I have questions.
    Mike

  • How to add filters to a recordset

    I have Dreamweaver cs5 and i need help adding a filter to a recordset. Right now I have 4 form inputs but only one recordset filter how can i add another 3 recodset filters to filter the mysql table which will be in a dynamic table?

    See if any of the old posts help you -
    ADF Tree search (filter)

  • Does anyone know how the cutout filter works and is there a way of achieving the same effect without using filters to get more control over final look?

    does anyone know how the cutout filter works and is there a way of achieving the same effect without using filters to get more control over final look?

    Several ways to get similar results.  Image > Adjustments > Posturize with low values similar to what you'd use n Cutout.  This is the most flexible way I can think of as you keep the image in RGB mode with layers intact.  A more radical approach would be to reduce bit depth using Indexed Colour.  You'll need to experiment with settings, try changing Forced to Primaries, and Matte to Foreground Color.  There's no going back from this route, although you can change the mode back to RGB to re-enable layers, adjustment layers etc.
    A nice thing about the Filter gallery filters is that you can change the layer to a Smart object with all the control that gives you.
    Now if only this forum could filter out bizarre content.

  • Why do some of the filters in the Filter Gallery turn my image orange?

    I've been trying to use some of the filters in the Filter Gallery, but most of the filters in the Sketch category inexplicably turn whatever image I'm working with orange. I've tried this with several images, and got the same results. They all give me an image which looks like this:
    http://i288.photobucket.com/albums/ll197/ASAPFergz/PhotoshopBug_zpsbnlramfa.png
    I may be new to Photoshop, but I don't think that's how it's meant to look ...
    Any ideas on what's causing this? Thanks.

    Many of the Filter Gallery filters use the foreground and background colors for their effect -- and you have one of those set to orange, and the other set to dark red.

Maybe you are looking for

  • Sales Areas

    Dear SapGurus, i am having four Disributon channels saying D1,D2,D3 and D4. No common customer will exits in any distribution channel. there are four devisinons say C1,C2,C3 and C4. there some common customer will do the business in All divisions. i

  • Problem in Marshalling code !!(JAXB)

    Hi, I'm trying for marshalling code. If I want this xml output after compilation. <EMDValueObject> <Input> * <QueryParams> * <Param> * <Name>some-input-parameter-name</Name> * <Value>value-of-the-input-param-passed-from-http-request</Value> * </Param

  • How can I tell when a video has captions?

    Is there a way (an icon or something) to tell when a video has captions? I've paid for several videos only to find out that none of them has captions. How can I tell whether a video has captions before I buy it? A related question-- Are there any vid

  • Icloud with 2 devices

    When I try to update my ipad it says that my icloud is too full.  I have an iphone and ipad.  My daughter has an ipod touch.  I have changed her icloud and itunes to her own account.  Why is it saying I'm exceeding my free amount?  Do I need separate

  • In Query of Query, can't use LEFT() function?

    Hi All, I've got an LDAP query that I use for our employee directory. I then do a Query of Queries and do LEFT(SN,1) to separate out by first character of last name [A,B,C,D,E...] etc. I had this working just fine in Railo CFM, but now I'm using Adob