Profit Centers(CEPCT) selection with Wild Characters(*) condition

HI, I'm trying to select Profit centers from CEPCT table for the given profit center parameter. here I'm trying with wild characters.
for example: 1.
* check if wild character exists
    FIND c_st IN p_i_profit_ctr.
    IF sy-subrc EQ 0.
* replace * with %
      REPLACE ALL OCCURRENCES OF c_st IN p_i_profit_ctr WITH c_pr.
* get profit center list for given pattern
      SELECT prctr  "Profit Center
             ktext  "General Name
          FROM cepct INTO TABLE t_profit_ctr
        WHERE spras = c_en              "english language
        AND   prctr LIKE p_i_profit_ctr.   "profit center
CEPCT table data is:
Profit Center
0000001000  
0000002000  
CORPORATE   
(1) when I try with C*, i'm getting properly.
(2)when I try with 1, I'm getting it properly.
(3) when I try with 1*, not getting data even if 1000 is available. this is beacuse leading zeores in the table.
Could anyone please help me out how do I write a qeury to rectrive the above. (Note: we may not be sure how many zeroes to be included, I hope this is not good practive to include zeroes because in case of 200/2000 which will not work and for chars which will not be good code)
thanks in advance.

Hi,
Its better to specify a range for profit center in the selection screen and he use in your query as follows:
Example :
ranges r_profcent FOR GLPCA-RPRCTR.
Query to fetch Range:
SELECT PRCTR INTO R_PROFCENT-LOW
  FROM CEPC
  WHERE ( PRCTR BETWEEN '0000001111' AND '0000009999'
    OR PRCTR = 'DUMMY' )
    AND KOKRS = '1000'.
    R_PROFCENT-SIGN = 'I'.
    R_PROFCENT-OPTION = 'EQ'.
    APPEND R_PROFCENT.
Use of range in Query:
  SELECT  REFDOCNR RPRCTR BLDAT  BUDAT
  FROM GLPCA CLIENT SPECIFIED
  APPENDING CORRESPONDING FIELDS OF TABLE ITAB1
  WHERE RCLNT = SY-MANDT
    AND RPRCTR IN R_PROFCENT
    AND RACCT IN GLACNO
Hope it could help you out.
Regds,
Anil

Similar Messages

  • New GL Profit Centers not updated with Reposting of costs in CO

    Hi,
    There is one concern, which I am not able to address.
    In case one reposts primary costs to different cost centers which in turn has different profit centers, the PCA report gets updated since it is posted in CO.
    However, in case of New GL Profit center reports the values are displayed in the original profit center posted and not in the reposted profit center. I understand that the reposting is done only in CO, but then there would be a mismatch in the PCA reports and the New GL profit center reports.
    Please suggest any solution to this.

    Hi
    check the path and see if Account Determination between CO & FI is active for the variant defined and assigned to your company code:
    IMG>Financial Accounting>Financial Accounting Global Settings>Ledgers>Real time Integration between Controlling & FI>Define variants for Real Time Integration.
    Regards
    Sanil Bhandari

  • I need a report in SAP which allows multiple Profit centers selection with

    Hi,
        Cany anybody help me with below issue -
    I need a report in SAP which allowing multiple Profit centers selection with :
    - Profit Center #
    - Profit center Name
    - Profit center long text
    - Profit Center group
    - the related PC node showing the BU and the product category group.
    Let me know is there any report which can provide us with all this details.
    With regards.

    Hi,
    I recommend the PCA standard drill-down or interactive reports accessible via the follwoing menu path:
    Accounting --> Enterprise Controlling --> PCA --> Infosystem --> Reports for PCA
    There are several reports which allow entering profitcenter groups or profitcenters.
    Long Text is not possible. Makes also no sense to report on Long Text.
    Best regards,
    Andreas

  • Posting to Different Profit Centers with different g/l s, condition wise

    Dear Experts,
    I am fasing a posting issue in contract.
    I have different conditions in contract,and depends on the condition,flow type ,A/c symbol , I have different g/l for each condition.
    At Contract level (General Data screen) I am giving one profit Centre(XXX).while posting , all the conditions are hitting at the same profit centre(XXX) only, instead of hitting the relevant profit centers which are mentioned at Condition G/l level.
    Some times it is hitting at the correct G/L, but profit center showing the same one(XXX) which mentioned at header level.
    My requiremnt is to hit the corresponding profit centers & G/L s only.
    Please help me to fix this issue.
    Thanks in advance,
    Regards
    Eswar

    Hi Deepak,
    thank you for your explanation. But did you really manage to get 2 different profit centers in one contract at the same time?
    I checked it in my system. It is possible, of course, to change the profit center, but this change is then valid for all conditions of the contract.
    - The profit center is changeable only in the standard term for organisational assignment.
    - If an additional organisational term is created the profit center field is greyed out.
    - When the profit center is changed in the standard organisational assignment term this affects all conditions.
    This is the actual standard behaviour.
    Example:
    Create a new contract:
    organizational assignment standard: profit center A
    organizational assignment 10 (deviating): profit center B    <<< should never be possible, because the field profit center is greyed out
    I am wondering how you managed to get his though and waiting for your remarks.
    Regards, Franz

  • How to use a select statement with chinese characters?

    I am currently developing a java servlet<using tomcat 4.x> which allows me to use select statement to retrieve results from the Microsoft SQL Server 2000 database. I am using a simple form to get the parameter for querying. The main problem i'm facing is that there are chinese information in the SQL database, but i can't retrieve it through the sql statement with the chinese characters input<thru the form with the help of NJ STAR>in the WHERE condition. When i execute the statement, it returns me no results even though the rows are present in the database.
    Does anyone have the solution to using chinese words in the WHERE clause of the select statement to retrieve results with columns which contains chinese characters? Please help me. Thanks everyone. :)
    PS: when i cut and paste those characters in the sql database and paste onto java.. it is ??? in questionmarks.. but when i paste them into excel 2000.. its shown as chinese chars again..
    please heelppp~~

    Greetings,
    PS: when i cut and paste those characters in thesql
    database and paste onto java.. it is ??? in
    questionmarks.. but when i paste them into excelThis is why the SELECT is not returning any results.
    You need to set the character encoding set on your
    statement and parameters for the characters to be
    properly translated. Refer to the charsetName
    parameter in the String class constructor in your API
    docs and also to
    $JDK_DOCS/guide/intl/encoding.doc.html in your JDK
    documentation.
    2000.. its shown as chinese chars again..Because Office programs are performing the same kind
    of character translation with the appropriate MS APIs.
    please heelppp~~Regards,
    Tony "Vee Schade" Cookis it possible for you to show me some coding examples? i don't really understand what is to be done in order to set the char set and what does it really do.. tried reading up but still dun understand.. :(
    pardon my shallow knowledge of java..
    ok..
    The thing is when i used an insert statement with chinese characters of GBK format hardcoded into the java servlet and then i use the insert statement to insert the chars into the database, it cannot be seen as a chinese word when i off the NJStar. and then it can be searched out with my current form of servlet.. below is my coding of the servlet..
    note: i've set my html file to charset = GBK
    //prototype of Search engine...
    //workable for GBK input and output...
    import java.io.*;
    import java.io.OutputStream;
    import java.io.IOException;
    import javax.servlet.http.*;
    import javax.servlet.ServletException;
    import java.util.*;
    import java.sql.*;
    import java.nio.charset.Charset;
    public class SearchBeta extends HttpServlet {
         private Vector musicDetails = new Vector();
         private String query = "";
         public void service (HttpServletRequest req, HttpServletResponse res) throws IOException, ServletException, UnsupportedEncodingException {
              query = req.getParameter ("T1");
              System.out.println("before:"+query);
              String type = req.getParameter ("D1");//type
              query = req.getParameter ("T1");
              //query = "������";
              System.out.println("after:"+query);
              getResults(type,query);
              System.out.println("locale = :"+req.getLocale());
              res.setContentType ("text/html;charset=GBK");
              PrintWriter out = res.getWriter();
              out.println("<html>");
              out.println("<head>");
              out.println("<body bgcolor = \"black\">");
              out.println("<font face = \"comic sans ms\" color=\"Cornsilk\">");
              if (query.length()==0)
                   out.println ("Please key in your search query.");
              else if (musicDetails.size()==0)
                   out.println ("Sorry, no results matching your search can be found.");
              else {
                   out.println("<center>");
                   out.println("<table cellspacing = \"50\">");
                   int i = 0;
                   //Display the details of the music
                   while (i<musicDetails.size()) {
                        Results details = (Results)musicDetails.get(i);
                        String dbArtist = "";
                        String dbAlbum = "";
                        String dbTitle = "";
                        String dbCompany = "";
                        dbAlbum = details.getAlbum();
                        dbTitle = details.getTitle();
                        dbCompany = details.getCompany();
                        dbArtist = details.getArtist();
                        try{
                             dbAlbum = new String(dbAlbum.getBytes("ISO-8859-1"),"GBK");
                             dbTitle = new String(dbTitle.getBytes("ISO-8859-1"),"GBK");
                             dbCompany = new String(dbCompany.getBytes("ISO-8859-1"),"GBK");
                             dbArtist = new String(dbArtist.getBytes("ISO-8859-1"),"GBK");//correct translation.
                        catch(UnsupportedEncodingException e){
                             System.out.print(e);
                             e.printStackTrace();
                        String dbImage_loc = details.getImage();
                        out.println("<tr>");
                             out.println("<td><table>");
                                  out.println("<img src=C:\\Program Files\\Apache Group\\Tomcat 4.1\\webapps\\examples\\ThumbNails\\"+dbImage_loc+">");
                             out.println("<tr>");
                                  out.println("<th><font color=\"violet\"> Artist: </font></th>");
                                  out.println("<td><font color=\"Cornsilk\">"+dbArtist+"</font></td>");
                             out.println("</tr>");
                             out.println("<tr>");
                                  out.println("<th><font color=\"violet\"> Title: </font></th>");
                                  out.println("<td><font color=\"Cornsilk\">"+dbTitle+"</font></td>");
                             out.println("</tr>");
                             out.println("<tr>");
                                  out.println("<th><font color=\"violet\"> Company: </font></th>");
                                  out.println("<td><font color=\"Cornsilk\">"+dbCompany+"</font></td>");
                             out.println("</tr>");
                             System.out.println("album: "+ dbAlbum);
                             out.println("<tr>");
                                  out.println("<th><font color=\"violet\"> Album: </font></th>");
                                  out.println("<td><font color=\"Cornsilk\">"+dbAlbum+"</font></td>");
                             out.println("</tr>");
                             System.out.println("company: "+ dbCompany);
                             out.println("</table></td>");
                        out.println("</tr>");
                        i++;
                   out.println("</table>");
                   out.println("</center>");
              out.println("</font>");
              out.println("</body>");
              out.println("</head>");
              out.println("</html>");
              out.close();
              //to remove all the elements from the Vector
              musicDetails.removeAllElements();
         //get Searched Music Details and store in Results object which is stored in musicDetails vector
         public void getResults (String type, String searchQuery) {
              try {
                   Class.forName ("com.microsoft.jdbc.sqlserver.SQLServerDriver");
                   Connection con = DriverManager.getConnection("jdbc:microsoft:sqlserver://localhost:1433;DatabaseName=music","sa","kokkeng");
                   Statement stmt = con.createStatement();
                   String query = "SELECT * FROM MusicDetails WHERE "+type+" = '"+searchQuery+"'";
                   ResultSet rs = stmt.executeQuery(query);
                   while (rs.next()) {
                        String artist = rs.getString("Artist");
                        String title = rs.getString("Song");
                        String company = rs.getString("Company");
                        String album = rs.getString("Album");
                        String image_loc = rs.getString("Image");
                        Results details = new Results (artist,title,company,album,image_loc);
                        musicDetails.add(details);
                   stmt.close();
                   con.close();
              catch (Exception e) {
                   System.out.println(e.getMessage());
                   e.printStackTrace();
    with the above servlet i created, i can search out the data in the database which i've inserted through the insert statement. I still can't search for things i've keyed into the database directly using NJStar..
    thank you so much for helping.. really hope any one else who knows the answer to this will reply too... thank you all so much...
    -KK

  • KE28 - problem with Profit Centers

    Hi Gurus,
    I have segments with several profit centers.
    On one profit center I have costs. On the remaining I have revenues.
    I want to distribute costs from the first profit center to the others by revenues they have.
    Is it possible?
    THX
    G

    Hi G
    In your case, Dist Lvl will be PC.
    In selection criteria, if you enter the Source PC and choose Sales revenue as Tracing factor, will that not work??
    Usually, Top Down works when you wanna allocate from a higher level to lower level. In your case, the level is same I.e. Sender and Receiver both are PCs
    If the above suggestion does not work, then you need to identify one more characteristic along with source or target PCs. Say, Dist channel. In this case, choose PC as Dist Lvl and Dist channel in the selection criteria
    Br. Ajay M

  • Plant transfer with margin with different profit centers

    Dear Experts,
    We have a scenario wherein we manufacture the product at plant 100 and sell through plant 200.
    As per new requirement, above plant transfer should be done with the margin.
    Example:
    Plant 100, product Std price: 1000
    At the time of transfer to plant 200, product price should be 1500.
    Rs. 500 will be the fixed margin for the year. next year it may change.
    Plant 100, Prodcut price: 1000, profit center 101
    Plant 200, product price 1500, profit center 201
    Please guide me hoe to set up above case
    Thanks

    Hello Simi,
    You can define a new condition type for the price at the second plant 200 (say ZP01 in the below screenshot) and maintain this condition type once in a year using MEK1. The condition class of this should be B - prices
    Also, both plant 100 and 200 will need to have price control Standard at 1000 and 1500 respectively.
    Now define a condition type(say Z000 in the screenshot below) and call it STO notional profit/margin ( I call this notional as you are gaining a profit from 'selling' to your own plant). This condition type should have condition class A -Discount/Surcharge
    In the pricing procedure, assign subtotal E against condition type P101 (this standard condition type automatically picks Standard price in plant 100). Against ZP01, assign subtotal D.
    Now against Z000 assign calculation type 12 (calculates ZP01 - P101). Against Z000, maintain an accrual key ZW1 (say) and assign this to an 'STO profit' G/L in OBYC.
    Your postings in PGI should look as below in the 2nd screenshot. The profit centers in my case is the same, however, you can maintain different profit centers in Plant data 1 for the material in the 2 plants.

  • Having Multiple Material Codes with Different Profit Centers in one Plant

    Hi,
    Can someone explain me what impact it will have, if there are different Material Codes with multiple profit centers in a single plant? For example, say Material 1 has Profit Center as PC1 and Material 2 has Profit Center as PC2 and they are in a single plant. Will this have impact on Financial Transactions?
    Thanks and Regards,
    Sameer Joshi

    Hi Sameer
    No negative impact.. It is very much possible and logical
    All the purchases made - > Stocks and vendor liability will be tagged to the PC of the Material
    All the sales made -> COGS, Revenue and Customer Liability will be tagged to the PC of the material, unless you overwrite using a Substitution
    Br, Ajay M

  • Bydefault selection of profit centers during material master creation.

    Dear SAP Experts,
    My business wants that when ever they want to create a new material the profit center field should come bydefault after the selection of the plant.
    Each plant has been associated with a profit center.
    Is it possible , If yes then How.
    Please guide me.
    Regards
    Debjeet Banerjee

    There is no direct link of profit center and plant , the profit center is linked with plant via material master.So you cannot default the profit center when you select the plant while creating the MMR.
    Better try with any custom table were you can make this link and default it while creation of material master.

  • Profit centers with COPA

    Hi,
    I have a few doubts about the need of EC-PCA in a project where COPA is being implemented.
    The client would like to get info about the profitabilyty of organisation units as well as products, groups of products, clients and so on.
    However he is unable to assign materials to only one profit center (which would be production departaments in this case). Different Finished goods, semi finished goods, wares and services can be assigned to more than one production departament. (a material index cannot be assigned to only one PC in this case).
    What would u advise me? Should I use EC-PCA but change the PC hierarchy or COPA is enough for these purposes?
    Best wishes,
    Karol
    Message was edited by:
            Karol W

    Dear Karol,
    Here the some infirmation is about Profit center related and cost center.hope this infirmation will helps you
    You would need check the design of PCA and what the business wants to use PCA for. For example do you want to produce P&L Statements and or Balance Sheets by Profit centers etc.
    In terms of the cost center assignment to profit centers, the main use of this is to ensure that all costs posted to a cost center will be simultaneously posted to the assigned Profit center. Now in PCA configuration you have to create a "Dummy Profit Center", the consequence of this is that if a profit center cannot be derived (for example if you do not maintain a profit center in the material master) or from the cost center or a profit center is not entered in a posting, the entry will be automatically posted to the "Dummy" profit center.
    In terms of design, we are faced, in certain circumstances when we design PCA along the product lines for example, what to do with certain postings such as bank charges or admin costs, which are not directly attributable to the product line.
    One way to treat these, is to Create a "Corporate" or "ADMIN" Profit center and assign all the service cost centers to this Profit center and at month end re-allocate to the Product Line Profit center via Distribution or Assessment for example based on sales volume or fixed amounts or percetntages or SKF's to make the reporting more meaningful
    create additional profit centers and assign all admn, IT other than production cost centers to either Common, Admin or Corporate profit centers. Suggest you create following non product cost centers
    1) Corporate
    2) Admin
    3) Product Common
    Assign profit centers to cost centers logically
    In MM master records assign product related profit centers to RM and FG / SFG material types. This takes care from material accounting point of view in PCA
    For transfer of costs collected in Non Product related profit centers proceed as follows
    1) Create PCA assessment Cycles
    2) At month end allocate these expenses and check cost in non product profit centers is zero.
    3) Decide on the allocation basis
    4) This ensures that you have PCA wise all P&L items accounted.
    5) You can then design PCA wise report painter reports for PCA wise P&L
    Hope the above will help you
    Prem.

  • Problems on selecting views with french characters into column names

    Hi All,
    I have views with column names such as "Détermination Planimétriq" or "Année de construction:*";
    I can get in my c# function this columns names from ALL_VIEWS dictionary table, but if I try to make a selectionby use of an OracleCommand, Oracle returns an "Invalid identifier" error:
    SELECT "Détermination Planimétriq" FROM mytable;
    System.Data.OracleClient.OracleException (0x80131938): ORA-00904: "Determination Planimetriq": invalid identifier at System.Data.OracleClient.OracleConnection.CheckError(OciErrorHandle errorHandle, Int32 rc) at ...
    Any suggestion?...

    Be wary of using character codes outside the Western European "simple" alphanumeric [A-Z0-9] for object names, i.e. columns, table names, function and procedure names, and so on.
    First reason, there is a 30 character limit for most object names, and characters that have to be spelled out with unicode characters take more space, i.e.:
    select dump( 'Détermination Planimétriq'  ) from dual;
    DUMP('D?TERMINATIONPLANIM?TRIQ')
    Typ=96 Len=29: 68,239,[ ... ]Although the varchar string for that column name looks like 25 characters, it needs room for 29 to store the e<acute> character. And could also depend on the client settings. Using case sensitive names is not a best practice, its better to avoid specifying objects with the double quotes.
    http://docs.oracle.com/cd/E11882_01/server.112/e26088/sql_elements008.htm#i27570

  • Dynamic select query with dynamic where condition

    Hi all,
    I want to use the dynamic select query with dynamic where condition. For that I used the below code but I am getting dump when using this code.
    Please advice, if there is any other way to achieve this requirement.
    Thanks,
    Sanket Sethi
    Code***************
    PARAMETERS: p_tabnam      TYPE tabname,
                p_selfl1      TYPE edpline,
                p_value       TYPE edpline,
                p_where1      TYPE edpline .
    DATA: lt_where    TYPE TABLE OF edpline,
          lt_sel_list TYPE TABLE OF edpline,
          l_wa_name   TYPE string,
          ls_where    TYPE edpline,
          l_having    TYPE string,
          dref        TYPE REF TO data,
          itab_type   TYPE REF TO cl_abap_tabledescr,
          struct_type TYPE REF TO cl_abap_structdescr,
          elem_type   TYPE REF TO cl_abap_elemdescr,
          comp_tab    TYPE cl_abap_structdescr=>component_table,
          comp_fld    TYPE cl_abap_structdescr=>component.
    TYPES: f_count TYPE i.
    FIELD-SYMBOLS : <lt_outtab> TYPE ANY TABLE,
    *                <ls_outtab> TYPE ANY,
                    <l_fld> TYPE ANY.
    struct_type ?= cl_abap_typedescr=>describe_by_name( p_tabnam ).
    elem_type   ?= cl_abap_elemdescr=>describe_by_name( 'F_COUNT' ).
    comp_tab = struct_type->get_components( ).
    comp_fld-name = 'F_COUNT'.
    comp_fld-type = elem_type.
    APPEND comp_fld TO comp_tab.
    struct_type = cl_abap_structdescr=>create( comp_tab ).
    itab_type   = cl_abap_tabledescr=>create( struct_type ).
    l_wa_name = 'l_WA'.
    CREATE DATA dref TYPE HANDLE itab_type.
    ASSIGN dref->* TO <lt_outtab>.
    *CREATE DATA dref TYPE HANDLE struct_type.
    *ASSIGN dref->* TO <ls_outtab>.
    * Creation of the selection fields
    APPEND p_selfl1 TO lt_sel_list.
    APPEND 'COUNT(*) AS F_COUNT' TO lt_sel_list.
    ** Creation of the "where" clause
    *CONCATENATE p_selfl1 '= '' p_value ''.'
    *            INTO ls_where
    *            SEPARATED BY space.
    *APPEND ls_where TO lt_where.
    * Creation of the "where" clause
    APPEND p_where1 TO lt_where.
    * Creation of the "having" clause
    l_having = 'count(*) >= 1'.
    * THE dynamic select
    SELECT          (lt_sel_list)
           FROM     (p_tabnam)
           INTO CORRESPONDING FIELDS OF TABLE <lt_outtab>.
    *       WHERE    (lt_where).

    Hi Sanket,
    The above given logic of mine works for you, put the code in the If condition and try-
    just like below:
    IF NOT P_EBELN IS INITIAL.
    lt_where = '& = ''&'' '.
    REPLACE '&' WITH p_ebeln INTO lt_where.
    REPLACE '&' WITH field_value INTO lt_where.
    SELECT (lt_sel_list) INTO CORRESPONDING FIELDS OF TABLE <lt_outtab>
    FROM (p_tabnam)
    WHERE (lt_where).
    ENDIF.
    thanks\
    Mahesh

  • Balances of sevaral profit centers with various currencies in same report?

    Experts,
    Is there any report where we can see Profit Center wise and Currency Wise balances as of any mid period (Say Fortnightly) but in the same report?
    i.e; Balances of sevaral profit centers with various currencies in the same report.
    - Nilesh

    Nilesh,
    You can refer to drill down reports in Profit center accounting :-
    http://help.sap.com/saphelp_46c/helpdata/en/cc/36428094f311d2b47a006094b9b0a5/content.htm
    Thanks
    Nishan D

  • Import profit centers with DTW

    Hi All,
    Is it possible to import profit centers into the SAP B1 2007A with DTW, ?
    I have to create 50 profit centers in a company, I cannot find template to import profit centers in the DTW:
    Is it possible?
    Another way to use copy express, because these profit centers are in another B1 company, but I cannot find the possibility in the Copy Express to copy profit centers. Where can I find?
    Thanks: Veronika

    Hi,
    Their are no ways... Even by programming, no interface exists in the DI-API for this object.
    Your only solution is either to create them from hand or by direct import in the DB (which I don't recommend).
    Regards,
    Eric

  • Select three tables data with Same where condition

    Hi i want sum data in three tables with same where condition. how can i do this code very simple.
    SELECT SUM(SIGNA) FROM dbo.tblPLAG 
    WHERE   VERSION='ACTUAL' AND STATS='ST_Z010'
    AND FACILITY='FA_2003'
    AND  TD IN  ( SELECT TIMEID FROM Time   WHERE   ID BETWEEN 
     @YEAR+'.'+(SELECT RIGHT ('000'+ CAST (@PERIOD-6 AS varchar), 3)) 
     AND   
    @YEAR +'.'+(SELECT RIGHT ('000'+ CAST (@PERIOD AS varchar), 3)))
       

    Try following
    SELECT SUM(t1.SIGNA) + sum(t2.SIGNA) + sum(t3.SIGNA) and you query, it will add the SUMs of each table.. hopefully it will work

Maybe you are looking for

  • Migrate from Crystal Report XI R2 to Business Objects XI R2

    Hello friends, As per end of licence life cycle for Crystal report, we need to migrate our 30 crystal reports to BO xi r2. First thing i need to ask is that ...is this possible to migrate from Crystal report XI R2 to BO xi R2 ? If yes than where i ca

  • Cover Flow view in iTunes 7

    I really like the cover flow view but it seems the albums are keyed on Artist so if different tracks have different artists, they show up as multiple albums in the cover flow view. Is there any way to make it key on Album name instead? iMac 20" Core

  • Vendor Material no

    Hi All, I would like to create new query from which i wanted to know the GRIN made against Vendor material no. WHich table shall i use in this case

  • Erase/Install Customized

    Initial problem: After software update, iMac wouldn't go passed gray screen with spinning gear. Have done Archive/Install, then went to Erase/Install. It seems to work, however, when attempted to update to 10.4.11 back to same problem. Erase/Install

  • Why is there an "Untitled CD" in Places in my finder window

    ...when I'm not trying to bur a CD or anything?