Shopping cart analysis report - help required.

Hi Frendz,
i have a following requirement:
to analyze the time taken by Purchasing department to process the shoppin carts from the time it is received by procurement team to time it is approved or rejected.
Fileds we are considering are:
Shopping Cart,
Route,
Requisitioner,
Material Group,
Document Type
Please let me know which datasource suits this requirement with all the above mentioned fields.
Thanks in advance.
Sasi

Hi ,
It seems like Sales data.
Please check if E1_VBKV_1, E1_VBKV_2 data source are useful.
Hope it helps.
Regards,
Tulasi

Similar Messages

  • Add custom field in the selection screen for shopping cart monitor report

    Hello,
    refering to the notes 458591 an 672960, in order to add custom field at item level, we get the structure INCL_EEW_PD_ITEM_CSF.
    But this doesnt make it appear on the "Shopping Cart Monitor Report" selection screen.
    So should I try adding it in the existing interface of the badi bbp_sc_mon ?

    hello Yann,
    ok I will implement that. Is it possible to change the interface of the badi method to  include more data if we want to check the role of the user who is executing the shopping cart monitor report and accordingly do the settings of field display ? Or calling a function module inside the method to get the attributes of sy-uname would be easier?
    rita

  • Approved shopping carts not displayed in shopping cart status report

    Hi Gurus
    we are facing an  issue in shopping cart status report.  When the approver selects 'Approved by me' in shopping carts status report system is not showing any list.  There are number shopping carts approved by the user . Other selection like selection period, status , completed indicator were selected properly.  But if the approver selects 'Rejected by me' the system is showing all the shopping carts approved, rejected, and awaiting approval related to the approver.
    This is happning with one user only.  We had checked user authorization and parameters and every thing is fine . Aslo compared the same with other users for whom this report is working fine . We are in SRM 5.5 extended caassic senario.
    Any suggestions/solutions on this
    VB SAS

    In olden days of SRM , we forcily assign account assignment for PR which do not have accounting data in the PR to create a successful SC in SRM and remove the account assignment while creating a PO in the backend.
    but since your in SRM 7.0
    and also you made ensure that your PR has account assignment but it is not sitting in the cockpit.
    and your shopping card trying to create a PO and failed right?
    since it has incomplete data , how PO is creating. How system can create a PO without vendor.
    escalate to SAP bvia OSS message
    BR
    Muthu

  • Shopping Cart creation through describe requirement not working.

    Dear All,
             We are in to technical upgrade of SRM 4.0 to 5.0 (CS). With SRM 5.0 we have ECC6 as a backend system.
             On SRM 5.0, we could successfully create SC from Internal Goods/Services & against that shopping cart a PO gets created in backend. But when we try to create shopping cart from describe requirement the system throws following error messages,
    1.     Enter company code
    2.     No logical system for FI maintained. Inform system admin.
    3.     Error in account assignment for item 1
    4.     Error in partner transfer
    5.     Not possible to calculate tax
    Plz, help to solve this error.
    Regards,
    Vivek

    Hi
    Try to clear one by one error
    What is the company code in BAsic data of SC?
    Run a report BBP_CHECK_CONSISTENCY for that user for sc.
    Howerver verify these following configuration.
    Implementation Guide (IMG): Supplier Relationship Management ® SRM Server ® Cross-Application Basic Settings ® Account Assignment ® Define Account Assignment Categories
    Implementation Guide (IMG): Supplier Relationship Management ® SRM Server ® Cross-Application Basic Settings ® Account Assignment ® Define G/L Account for Product Category and Account Assignment Category- here there is a setting Product category, Accounr assigmnment (CC,WS , logical system name anf Gl acount) check it upi.
    Most of the data comes from your org structure only. However check it your settings which i mentioned.
    regards
    Muthu

  • Po Quotation analysis report query required

    Hi,
    Please help me with the po quotation analysis report query.its urgent
    Navigation : PO form - > RFQ s and Quotations - > Quotation Analysis form
    Thanks in advance,
    Madhan

    Madhan87 wrote:
    Hi,
    Please help me with the po quotation analysis report query.its urgent
    Navigation : PO form - > RFQ s and Quotations - > Quotation Analysis form
    Thanks in advance,
    Madhan
    How To Find the VIEW or TABLE That Populates a Form So That a 'Custom Report' Can Be Created Using Same VIEW or TABLE (Doc ID 604772.1)
    Thanks,
    Hussein

  • Purchase Requisition & Shopping cart status report

    Hi
    Is there any standard BW report by which we can get the Purchasing Requisition , Shopping Cart & its status report.
    Thanks in advance
    Amit

    I have got standard report which is close to my need.
    However I cannot find the below 2  datasources mentioned as per the SAP document
    0BBP_DOC_ITM_1  Document Flow (Item Information) 
    0BBP_DOC_HDR_1  Document Flow (Header Information) 
    Any pointers hoe to find them.
    Regards
    Amit

  • About shopping cart.  Please help!

    How can I add some statements to the following program to check whether the selected item has been tried to add to the shopping cart the second time so that the user can be warned "You can only choose this item once!"?
    Here is the servlet that adds the chosen item to the cart by invoking the add(String) method of the ShoppingCart class.
    import java.io.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.sql.*;
    import java.util.*;
    public class CatalogServlet extends HttpServlet {
    public void doGet (HttpServletRequest request, HttpServletResponse response)
    throws ServletException, IOException, NullPointerException
    Connection dbConn=null;
    PreparedStatement p_pt=null;
    ResultSet rs_pt=null;
    PrintWriter out = null;
    try
    //load JDBC-ODBC Bridge driver
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    //establish database connection using ODBC
    dbConn = DriverManager.getConnection("jdbc:odbc:cartlet");
    catch (ClassNotFoundException e) //Class.forName throws
    System.out.println("JDBC-ODBC bridge not found!");
    return;
    catch (SQLException e) //DriverManager.getConnection throws
    System.out.println("SQL exception thrown in init!");
    return;
    try{
    // set content-type header before accessing the Writer
    response.setContentType("text/html");
    // Additions to the shopping cart
    HttpSession clientSession = request.getSession( true );
    ShoppingCart vBasket = (ShoppingCart)clientSession.getValue("thecart");
    if ( vBasket == null ){
    System.out.println("NO CART");
    vBasket = new ShoppingCart();
    clientSession.putValue("thecart", vBasket);
    System.out.println("MADE THE CART");
    out = response.getWriter();
    // then write the data of the response
    out.println("<html>" +
    "<head><title> CD Catalog </title></head>" +
    "<body bgcolor=\"#ffffff\">" +
    "<center>" +
    "<hr> <br> " +
    "<h1>" +
    "<font size=\"+3\" color=\"red\">CD </font>" +
    "<font size=\"+3\" color=\"purple\">Catalog</font>" +
    "</h1>" +
    "</center>" +
    "<br> <hr> <br> ");
    String the_item=null;
    String movieToAdd = request.getParameter("ic");
    if (movieToAdd != null) {
    p_pt = dbConn.prepareStatement("select itemid, item from item_master where itemid=?");
    p_pt.setString(1, movieToAdd);
    rs_pt = p_pt.executeQuery();
    if (rs_pt.next()) {
    the_item=rs_pt.getString("itemid");
    out.println("<p><h3>" + "<font color=\"#ff0000\">"
    + "You just added <i><BR>" + "<IMG SRC=\"http://eric-fyp:9111/emovie/"
    + rs_pt.getString("item") + "\">"
    + "<BR></i> " + "to your shopping cart</font></h3>");
    vBasket.add(the_item);
    System.out.println("ADDED");
    System.out.println("Here are the items");
    Hashtable shoppeditems = vBasket.getItems();
    Enumeration enum = shoppeditems.keys();
    while (enum.hasMoreElements()) {
    System.out.println((String)enum.nextElement());
    out.println("</body></html>");
    out.close();
    catch(SQLException ex)
    out.println("<HTML>");
    out.println("<HEAD><TITLE>Database Error!</TITLE>");
    out.println("</HEAD>");
    out.println("<BODY><H3>Error</H3><h6>" + ex.getMessage() +"</h6>");
    out.println("</BODY>");
    out.println("</HTML>");
    catch (Exception e)
    System.out.println(e.getMessage());
    finally
    if (rs_pt!=null) {
    try{
    rs_pt.close();
    catch (SQLException e) {}
    if (p_pt!=null) {
    try{
    p_pt.close();
    catch (SQLException e) {}
    if (dbConn!=null) {
    try{
    dbConn.close();
    catch (SQLException e) {}
    public String getServletInfo()
    return "CatalogServlet.java";
    Here is the ShoppingCart class
    import java.util.*;
    public class ShoppingCart {
    Hashtable items = null;
    public ShoppingCart() {
    items = new Hashtable();
    public void add(String movieId) {
    Integer sc_value=null;
    int sc_i_value=0;
    if(items.containsKey(movieId)) {
    sc_value = (Integer)items.get(movieId);
    sc_i_value=sc_value.intValue();
    sc_i_value++;
    items.remove(movieId);
    items.put(movieId, new Integer(sc_i_value));
    System.out.println("UPDATED!!");
    else {
    items.put(movieId, new Integer(1));
    public Hashtable getItems() {
    return items;
    Hope anyone can help! Thx!

    After you retrieves the shopping cart items from the database, store the items in a HashSet, so when the user adds a new item, you just need to check whether the HashSet contains that item, if it is already in the set, show the warning. If not exist, insert the item to your database. You can use the response.sendRedirect() method to redirect the user to a warning page.
    HashSet is a very good data structure since it doesn't contain duplicate elements. It is also extremely fast.
    String itemID = 2323; // some item id in your catalog
    HashSet itemset = new HashSet();  // you should add your existing cart items to this HashSet
    // no do the checking
    if(itemset.contains(itemID) {
    response.sendRedirect("warning.jsp"); // forward it to a warning page
    return;   // processing no further
    } else {
    // in here, do the db update, and display the cart to the user

  • Shopping Cart .. need help..URGENT!!

    can somebody help me regarding abt my shopping cart.. i have successfully add the item to the cart.. but the problem is, whenever i add the same item in the cart, the quantity does not increased by one.. instead it duplicate itself in the cart... ?!?!?!?
    below are the codes...
    cart.java
    package OnlineShopBeans;
    import java.util.*;
    public class cart {
    private int noItems = 0;
    private Vector prodNames = new Vector(4);
    private Vector prodPrices = new Vector(4);
    private Vector prodSize = new Vector(4);
    private Vector prodColour = new Vector(4);
    private Vector prodOther = new Vector(4);
    private Vector prodQty1 = new Vector(4);
    /* Create a new cart */
    public cart() {};
    /* Add a shopper item */
    public void addItem(String strName, String dPrice, String dSize,String dColour,String dOther, String dQty) {
    noItems++;
    prodNames.add(strName.trim());
    prodPrices.add(dPrice);
    prodSize.add(dSize);
    prodColour.add(dColour);
    prodOther.add(dOther);
    prodQty1.add(dQty);
    /* Remove a shopper item */
    public void removeItem(int itemIndex) {
    if (itemIndex >= 0) {
    noItems--;
    prodNames.remove(itemIndex);
    prodPrices.remove(itemIndex);
    prodQty1.remove(itemIndex);
    prodSize.remove(itemIndex);
    prodColour.remove(itemIndex);
    prodOther.remove(itemIndex);
    /* Update the quantities */
    public void updateQtys(String[] qtys) {
    for (int i=0; i < qtys.length; i++) {
    prodQty1.setElementAt(qtys, i);
    /* Clear all items */
    public void clearItems() {
    noItems = 0;
    prodNames.clear();
    prodPrices.clear();
    prodQty1.clear();
    prodSize.clear();
    prodColour.clear();
    prodOther.clear();
    /* Get all items' ProdName */
    public String[] getProdNames() {
    String[] allProdNames = new String[noItems];
    for (int i = 0; i < noItems; i++) {
    allProdNames[i] = (String)prodNames.elementAt(i);
    return allProdNames;
    public double[] getProdPrices(){
    double[] allProdPrices = new double[noItems];
    for (int i = 0; i < noItems; i++) {
    allProdPrices[i] = Double.parseDouble((String)prodPrices.elementAt(i));
    return allProdPrices;
    public String[] getProdSize() {
    String[] allProdSize = new String[noItems];
    for (int i = 0; i < noItems; i++) {
    allProdSize[i] = (String)prodSize.elementAt(i);
    return allProdSize;
    public String[] getProdColour() {
    String[] allProdColour = new String[noItems];
    for (int i = 0; i < noItems; i++) {
    allProdColour[i] = (String)prodColour.elementAt(i);
    return allProdColour;
    public int[] getProdQty1() {
    int[] allProdQty1 = new int[noItems];
    for (int i = 0; i < noItems; i++) {
    allProdQty1[i] = Integer.parseInt((String)prodQty1.elementAt(i));
    return allProdQty1;
    public String[] getProdOther() {
    String[] allProdOther = new String[noItems];
    for (int i = 0; i < noItems; i++) {
    allProdOther[i] = (String)prodOther.elementAt(i);
    return allProdOther;
    this is some of the code.jsp
    <% if (actionType.equals("add")) {
    String prodName = request.getParameter("name");
    String prodSize = request.getParameter("s");
    String prodColour = request.getParameter("co");
    String prodPrice = request.getParameter("price");
    String prodQ = request.getParameter("qty");
    String prodOther = request.getParameter("ot");
    int found=0;
    for (int j=0; j < prodLength.length; j++) {
    if (prodName.equals(prodLength[j])) {
    found = 1;
    //what should i type here???? }
    if (found == 0) {
    cart.addItem(prodName, prodPrice, prodSize, prodColour,prodOther, prodQ);

    hi.. JSP is a new thingy for me.. i appreciate if u can help me in solving these 2 problems.. thanks..
    i have write a new code and now i can update the quantity when the user click "add to cart" on the same item.. but i need ur help.. i have 2 problems..
    (1):
    if i had a textbox for the buyerto enter how many qty they want to purchase for that item, then update the qty respectively to how many the buyer want.
    e.g. first enter 5 qty... display 5 in the cart. then enter 2 qty.. display 7 in the cart..
    how will the code be?? should it be in the java beans??? or the cart.jsp??
    (2):
    i cannot remove the item in the cart.. try to remove one item at a time.. but the system does not remove the item.. can u also help me in this..
    below are the new code..
    ---JAvaBeans---
    public class ShoppingCart {
           //private int noItems = 0;
         Vector products = new Vector();
              public void addProduct(Product i){
                   boolean productFound = false;
                   Enumeration productEnum= getProducts();
                   while(productEnum.hasMoreElements()){
                             Product product = (Product)productEnum.nextElement();
                             if(product.getId().equals(i.id)){
                                  productFound = true;
                                  //product.quantity += 1;
                                  product.quantity += product.quantity;
                                  break;
                   if(!productFound){
                        products.addElement(i);
              public void deleteProduct(String id){
               Enumeration productEnum = getProducts();
                   while(productEnum.hasMoreElements()){
                             Product product = (Product)productEnum.nextElement();
                             if(product.getId().equals(id)){                                             
                                  products.removeElement(product);
                                  break;                         
              public void emptyCart(){
                   products = new Vector();
              public int getNoProducts(){
                   return products.size();     
              public Enumeration getProducts(){
                   return products.elements();
              public double getTotal(){
                   Enumeration productEnum = getProducts();
                   double total=0;
                        while(productEnum.hasMoreElements()){
                             Product product = (Product)productEnum.nextElement();
                             total = total + product.getTotal();
                        return total;
    JSP Page-
    <%@page import="java.util.*"%>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <HTML>
    <HEAD>
    <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
    <META name="GENERATOR" content="IBM WebSphere Studio">
    <META http-equiv="Content-Style-Type" content="text/css">
    <LINK href="theme/Master.css" rel="stylesheet" type="text/css">
    <TITLE>viewsc1.jsp</TITLE>
    </HEAD>
    <BODY>
    <jsp:useBean id="sCart" class="product.ShoppingCart" scope="session"/>
    <%@page import="product.Product"%>
         <table width="80%" border="0" align="center">
           <tr>
             <td align="center"><img src="image/title.jpg" width="450" height="80"></td>
           </tr>
           <tr>
             <td align="center" height="90">�</td>
           </tr>
           <tr>
             <td align="center" height="210">
                 <table width="98%" border="1" height="142">
                   <tr>
                     <td height="129">
                       <table border="0" width="100%">
                         <tr>
                           <td colspan="8" bgcolor="#CCCC99" align="center" height="22">
                             <img src="image/vsc.jpg" width="300" height="50">
                           </td>
                         </tr>
                         <tr>
                           <td height="15" colspan="8"></td>
                         </tr>
    <%
    String name= request.getParameter("name");
    if(name!= null){
         if(name.equals("delete")){
              String id = request.getParameter("Id");
              out.println(id);
              sCart.deleteProduct(id);
    if(sCart.getNoProducts()!=0){%>
            <tr>
              <td height="15" align="center" width="20%"><B>Item ID</B></td>         
              <td height="15" align="center" width="20%"><B>Item Name</B></td> 
              <td height="15" align="center" width="11%"><b>Size</b></td>
              <td height="15" align="center" width="9%"><B>Colour</b></td>                               
              <td height="15" align="center" width="13%"><b>Price</b></td>     
              <td height="15" align="center" width="10%"><b>Qty</b></td>
              <td height="15" align="center" width="12%"></td>
              <td height="15" align="center" width="12%"><b>Total:</b></td>
            </tr>
    <%     
              Enumeration products =sCart.getProducts();
              while(products.hasMoreElements()){
                   Product product = (Product)products.nextElement();
              %>
              <tr>        
              <td height="15" align="center" width="20%"><B><%=product.getId() %></B></td> 
              <td height="15" align="center" width="11%"><b><%=product.getName() %></b></td>         
              <td height="15" align="center" width="9%"><B><%=product.getSize() %></b></td>
              <td height="15" align="center" width="9%"><B><%=product.getColour() %></b></td>                                                          
              <td height="15" align="center" width="13%"><b><%=product.getPrice() %></b></td>          
              <td height="15" align="center" width="9%"><B><%=product.getQuantity() %></b></td>     
              <td height="15" align="center" width="9%"><B><%=product.getOther() %></b></td>
              <td height="15" align="center" width="10%"><b><%=product.getTotal() %></b></td>
               <td align='center'><a href="viewsc1.jsp?name=delete&Id=<%=product.getId() %>">Remove</a></td>
            </tr>
    <%          } %>
    <tr>
    <td height="50" valign="bottom" colspan="8" height="15" align="right" width="12%"><b>Total:</b><%=sCart.getTotal() %></td>
    </tr>
    <%
    }else{
         out.println("Your Shopping cart is Empty<BR>");
    %>
    <tr>
                      <td colspan="8" height="15" align="center">
                        <a href=chooseCategory.jsp><IMG border="0" src="image/BtnContinueshop.gif" width="153" height="27"></a>
                        <a href=EmptyCart.jsp><IMG border="0" src="image/BtnEmptyBsk.gif" width="75" height="27"> </a>
                        <a href=checkout.jsp><IMG border="0" src="image/BtnCheckOut.gif" width="156" height="27"></a>
                    </td>
                    </tr>
                  </table>
    </BODY>
    </HTML>

  • Contract Analysis Report - Help needed pls.

    Hi Gurus,
    I have below requirement.
    To analyze the contracts created in purchasing(in SAP). The report shall help to analyse the Contracts that are due to expire in next 12 months.
    Now I need a suitable datasource and business content ods/cube.
    Required characters are: Contract no, Vendor, Purchasing group, created on,start date,end date etc.
    Report to run for contract end date between today's date and next year. For ex if user is running report on 05-oct-2007, the report should display all the contracts having end date between 05-oct-2007 and 04-oct-2008.
    Please help me.
    Thanks,
    Sasi

    Hi
    Take the <b>VBRK-KNUMV field  and pass it to KONV-KNUMV</b> table field along with all the Condition types (KSCHL) fields to get the amounts (KBETR and KWERT) fields
    Regards
    Anji

  • Report help required

    hai all,
    i had a requirement where i have to place reports in one report.
    is it possible to do it
    if so what r the prerequistes
    thanks in advance
    Rgds,
    Ravindra.

    Hi Ravindra,
    Place the cursor where you want to insert the query and then do the Insert!
    Yes. Workbook has properties. After query is added, just right click on any part of the query and select 'Properties'. Note that these properties are specific to BEX.
    Regards,
    Sree

  • Master (Multi Records) Detail Report (Help Required)

    We need Help for Master Detail Report that returns information for all departments and their employees. e.g.
    Page-1
    master Record: Accounts Depts Detail
    Detail Record: Accounts Empoyees Detail
    Page-2
    Master: Department-2 Detail
    Detail: Department-2 Employees Detail
    We are using Apex3.1
    Best Regards
    Jazib

    Hi,
    Changing the Detail part of the page to show all employees in all departments for a city wouldn't be too difficult. The main issue, I think, would be the page structure as, presumably would need to create new departments somewhere and, perhaps, add employees directly into that department?
    For example, if you have a DEPT/EMP master/detail pair of pages, when you click on a department on the report page, the top of the form page would show the department you have selected rather than the city for that department. You could change this to show the city instead, but where would you create new departments?
    Assuming that you can work through that, I should be able to explain how to have a detail form that handles multiple departments.
    Andy

  • Want to change standard iw72 report. help require.

    IW72 - sap standard report. to dispaly service order details
    I want to display SalesOrder no. in IW72.
    Please give me the link between sale order and service order.

    hi,
    i got d link.  now this thread is closed.

  • Web reporting  help required

    hai BW gurus,
       can some body tell how to go about deactivating the exort to CSV file and export to MS excell in the tool bar of the web applications.
        thanks in advance.
    Rgds,
    Ravindra.

    Hi,
    this depends which default template you are using
    BW 3.0 (0QUERY_TEMPLATE):
    Please follow instructions in
    http://help.sap.com/saphelp_bw33/helpdata/en/45/685b3ebd564644e10000000a114084/frameset.htm
    Create a copy of 0QUERY_TEMPLATE and use the functionality upload and download from server. Do not edit directly in WAD.
    In the document find the  "Display Export Excel" Comment and "Display Export CSV" Comment, and delete or comment those td tags.
    Then make your template the new default template.
    In BW 3.5 with 0ADHOC the procedure is quite the same, but you have to copy 2 templates 0ADHOC and 0ADHOC_TABLE.
    In 0ADHOC_TABLE find also the same Comments and delete or comment the following area. Save the template under a new name.
    In 0ADHOC search for 0ADHOC_TABLE. Should be somehow look like
        <param name="TEMPLATE_ID" value="0ADHOC_TABLE"/>
             ITEM:            GR1Toolbar
    and change 0ADHOC_TABLE to your template name.
    Save this template to a new name and set it as default template (see link above).
    Heike

  • Workflow for shopping cart

    Hi experts
    I am in SRM 7.0 and triing to use Process controled workflow, I have done some configurations for shopping cart aproval but no workflow is started and in shopping cart appear as in aproval.
    What cold be missing?
    Thanks
    Nilson

    Hi Guys
    Urgent
    In Sourcing cockpit field having morethan 1000 line item Shopping cart.  Could anyone help me to get the sourcing cockpit shopping cart entire report in a single report.
    We use to download the report morethan on hour on a daily basis.If anyone help me out for this really appriciated.

  • Shopping Cart - PO created in the backend

    Hi,
    Many SC have been approved but no PO was created in the backend ECC due to various reason, I want to know all the SC which was approved and whose PO was not created in the backend, Is there any way to find it???
    regards,
    Prabhu

    Hi Prabhu,
    Which version of SRM system you are in ? and waht scenario  you have implemented i.e classic or extended classic scenario ?
    There are  OSS Notes available which have correction report in them which can gives you list of errreneous shopping cart that could help.
    please refer to below OSS Note to see if that help.
    729967
    728536
    if none of that help the logic would be to get all item guid from CRM_JEST which has status as I1111 active for those item GUID you can get the  header guid from CRMD_ORDERADM_I and the from header guid you can get the SC number from CRMD_ORDERADM_H.
    Hope this helps.
    Cheers
    Iftekhar Alam

Maybe you are looking for

  • My iPod is useless now... (a eulogy)

    Has anyone experienced difficulty exchanging a broken iPod? I bought one back in August 2004 and it died spontaneously less than a year later and was exchaged under the one-year warranty. No need to describe the irritation of having to go back and re

  • IMac Hot Corners stopped working

    I have a wireless mouse and keyboard. Mouse has new batteries. Hot corners worked yesteday but no matter how I set them in System Preferrences, they do not work today. Any suggestions?

  • Issue w deleting photos on my ipod

    I just downloaed photos to my ipod and I can't figure out how to delete them? In itunes - I don't see a photos directory under my ipod - I just see Music, Movies, etc.

  • Cash journal amount limit

    Hi, We are setting up the cash journal and one of the items to customize is the Amount Limit. We set up an amount limit, however the system does not validate the amount when entering or posting documents in the cash journal, Someone knows what is mis

  • DOCUMENTS, PHOTOS, CASH MEMOS

    HOW DO I COPY DOCUMENTS AND PICTURES THAT ARE IN MY EXTERNAL PORTABLE HARD DRIVE? HOW DO I COPY THE DOCUMENTS AND PHOTOS THAT ARE IN MY COMPUTER? I AM NOT ABLE TO ADD NEW ITEMS TO THE CASH MEMOS THAT I HAVE ON TEXT EDIT PAGES, UNLESS I TRANSFER THE E