Routine Issue

Hi Experts,
I have a requirement using routine i need to pull the data into daily sales cube.
For daily sales cube data will get updated form billing cube, global history cube, sales order cube and sales agreement cube.  In these 4 cubes i have 0material infoobject. 
In daily sales cube we dont have 0material infoobject.  Now i have to pull the data using 0material.
For this i have routine but when i check the routine it is showing error message 0material table was not maintained in abap dictionary.  please find the below code.
DATA: output_package  TYPE STANDARD TABLE OF /bic/cs8sd_c02
      WITH HEADER LINE WITH NON-UNIQUE DEFAULT KEY INITIAL SIZE 0.
DATA:  BEGIN OF g_t_material OCCURS 0,
        material type.....
busgrp   type.......
       END OF g_t_material.
clear g_t_material.
Read from 0material
  SELECT material busgrp
         FROM 0material
           INTO TABLE g_t_material
           WHERE objvers = 'A'.
sort g_t_material.
LOOP AT DATA_PACKAGE .
    MOVE DATA_PACKAGE TO output_package .
Elec Family
    IF DATA_PACKAGE-material  <> 0  OR
   read table g_t_material with key material = data_package-material
        if sy-subrc eq 0.
         output_package-busgrp = g_t_material-busgrp.
      APPEND output_package.
    ENDIF.
endloop.
Regards
Prasad

Hi,
For Daily Sales Cube the data will get updated from billing cube, global history cube, sales order cube and schedule agreement cube.  In these cubes we have 0Material infoobject.  But in Daily sales cube we dont have 0material infoobject so i have assigned business group infoobject into the cube assigned it to dimension and activated the daily sales cube. 
My requirement is to get the Business Group values based on 0Material.  This Business Group is a Navigational Attribute in 0Material .
Elec Family infoobject is a navigational attribute in 0material.
Please find the below revised code
DATA: output_package TYPE STANDARD TABLE OF /bic/cs8sd_c02 WITH HEADER
LINE WITH NON-UNIQUE DEFAULT KEY INITIAL SIZE 0.
DATA:  BEGIN OF g_t_material OCCURS 0,
       material type /BI0/OIMATERIAL,
       busgrp type /BIC/OICBUSGRP,
       END OF g_t_material.
clear g_t_material.
Read from 0material
  SELECT material /BIC/CBUSGRP
         FROM /BI0/PMATERIAL
           INTO TABLE g_t_material
           WHERE objvers = 'A'.
sort g_t_material.
LOOP AT DATA_PACKAGE .
    MOVE DATA_PACKAGE TO output_package .
Elec Family
    IF DATA_PACKAGE-material  <> 0.
      read table g_t_material with key material = data_package-material.
        if sy-subrc eq 0.
         output_package-busgrp = g_t_material-busgrp.
         APPEND output_package.
       endif.
    ENDIF.
endloop.
This routine is fine but when i check the routine output_package-busgrp =g_t_material-busgrp  here it is throwing exception The data object "OUTPUT_PACKAGE" does not have a component called busgrp.
As business group is included as a stand alone infoobject in cube level.
do i need to write the routine at the object level ?
Regards
Prasad
Edited by: Vara Prasad on Oct 13, 2008 2:06 PM

Similar Messages

  • End Routine issue

    I am adding new records to the result_package in the end routine.
    How will I populate the SID and datapakid values to my new records?
    I am not able to code these fields in the end routine as they are not available and they get filled dynamically.
    Are there any system fields that hold SID value and data package value?
    Please help.
    Thanks.

    I have added move-corresponding code from result_package and it has solved my issue.
    Thanks.

  • End Routine Issue - It does not move data from E_T_RESULT to RESULT_PACKAGE

    Hi,
    I am facing an issue with end routine. I have gone through previous posts on, how to write end routine and all.I wrote the end routine accordingly.
    Here is my scenario,
    I have 0CUST_SALES master data , which has all the Sales Org, Distribution Channel and Division, Sold to Party, Sales Grp and Sales Dist.
    I am getting , Sold to party and Distribution channel at the field routine.
    I am using, Sold to Party and Dist Channel and Division = '01'- whatever i populated using a field routine  and trying to get the Sales Org, Sales Grp and Sales Dist at the end routine.
    It looks like, all the code that i wrote seems correct but it does not populate any values into RESULT_PACKAGE.
    Here is the code I wote at the end routine. I am not sure, whats wrong in it. I used, this link to write this routine :
    http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/203eb778-461d-2c10-60b3-8a94ee91cbfc&overridelayout=true
    Global Declaration----
      DATA : BEGIN OF IT_CUST_SALES,
        DIV TYPE /bi0/pcust_sales-DIVISION,
        DIST_CH TYPE /bi0/pcust_sales-DISTR_CHAN,
        SALES_ORG TYPE /bi0/pcust_sales-SALESORG,
        CUST_SAL TYPE /bi0/pcust_sales-CUST_SALES,
        SALESDIST TYPE /bi0/pcust_sales-SALES_DIST,
        SALESGRP TYPE /bi0/pcust_sales-SALES_GRP,
        END OF IT_CUST_SALES.
    DATA: T_CUST_SALES LIKE TABLE OF IT_CUST_SALES.
    Start of End Routine
       SELECT DIVISION DISTR_CHAN SALESORG CUST_SALES SALES_DIST SALES_GRP
        from
        /bi0/pcust_sales INTO TABLE T_CUST_SALES for all entries in
        RESULT_PACKAGE
        where CUST_SALES = RESULT_PACKAGE-SOLD_TO
         AND DISTR_CHAN = RESULT_PACKAGE-DISTR_CHAN
         AND DIVISION = '01'.
        LOOP AT RESULT_PACKAGE INTO e_s_result.
          READ TABLE T_CUST_SALES INTO IT_CUST_SALES
              WITH KEY CUST_SAL = e_s_result-SOLD_TO
                 DIST_CH = e_s_result-DISTR_CHAN
                 DIV = '01'.
          IF SY-SUBRC EQ 0 .
            MOVE IT_CUST_SALES-SALES_ORG TO E_S_RESULT-SALESORG.
            MOVE IT_CUST_SALES-SALESDIST TO E_S_RESULT-SALES_DIST.
            MOVE IT_CUST_SALES-SALESGRP TO E_S_RESULT-SALES_GRP.
            APPEND E_S_RESULT  TO  E_T_RESULT .
          ENDIF.
        ENDLOOP.
        REFRESH RESULT_PACKAGE.
        MOVE E_T_RESULT[] TO RESULT_PACKAGE[] .
    End End Routine
    Data comes into E_T_RESULT but it does not move to RESULT_PACKAGE. Any inputs will be helpful.
    Regards,
    Kumar

    Hi Hegde,
    Declaration is same , its like this.
       datA: e_s_result type tys_TG_1.
        data: e_t_result type tyt_TG_1.
    I don't know, when i inserted this code in this post, initially it was OK but once i post i also saw , its not that read friendly.
    FYI, i am trying to put the code again, lets see if it works.
      SELECT DIVISION DISTR_CHAN SALESORG CUST_SALES SALES_DIST SALES_GRP
        from    /bi0/pcust_sales INTO TABLE T_CUST_SALES for all entries in
        RESULT_PACKAGE   where CUST_SALES = RESULT_PACKAGE-SOLD_TO
         AND DISTR_CHAN = RESULT_PACKAGE-DISTR_CHAN
         AND DIVISION = '01'.
        LOOP AT RESULT_PACKAGE INTO e_s_result.
          READ TABLE T_CUST_SALES INTO IT_CUST_SALES
              WITH KEY CUST_SAL = e_s_result-SOLD_TO
                 DIST_CH = e_s_result-DISTR_CHAN
                 DIV = '01'.
          IF SY-SUBRC EQ 0 .
            MOVE IT_CUST_SALES-SALES_ORG TO E_S_RESULT-SALESORG.
            MOVE IT_CUST_SALES-SALESDIST TO E_S_RESULT-SALES_DIST.
            MOVE IT_CUST_SALES-SALESGRP TO E_S_RESULT-SALES_GRP.
            APPEND E_S_RESULT  TO  E_T_RESULT .
          ENDIF.
        ENDLOOP.
        REFRESH RESULT_PACKAGE.
        MOVE E_T_RESULT[] TO RESULT_PACKAGE[] .
    Regards,
    Kumar

  • Update Routine Issue

    Hello!
    This is with regards to my previous post.
    Help with Update Routines
    I'm facing an issue & need some help.
    I have a NUMC field (in calendar month/year). I'm trying to map 0FISCPER to 0CALMONTH, but unable to do that. The system is providing me just one option "0AEDAT" as Source Char. The Fiscal year variant is V6. When I assign to 0AEDAT & try to activate it, error msg is "IC=ZPM_C45 IS=8ZPM_O50 error when checking the update rules"
    I'm not sure how to proceed?
    Could someone help on this?
    Thanks!

    Hi dear,
    if you have to fill your fiscal year/period (0FISCPER) starting from a calendar year/month you have to write a routine for it !!!
    Insert this code:
    (where you have to replace calmonth in comm_structure-calmonth with the name of your calmonth field, and if your calmonth has a format with seven digit, like MMMYYYY)
    CALL FUNCTION 'UMC_CALMONTH_TO_FISCPER'
    EXPORTING
    I_PERIV = comm_structure-fiscvarnt
    I_CALYEAR = comm_structure-calmonth+3(4)
    I_CALMONTH = comm_structure-calmonth+1(2)
    IMPORTING
    E_FISCPER = result .
    Hope now is clear !
    Bye,
    Roberto

  • Info Package Routine issue.

    Hi I was working on an info package routine. I have to load somw documents based some some criterias. My question is how may values can i append for loading Document No. i have somwhere about 400,000 records. I'll have all those doc no's in an Internal table... Can i append all those and load or is there any limit for doing so.
    Thanks in Advance.

    Hi Siva,
    I would suggest to use range instead of appending the document numbers one by one. Its not best of approach.
    You can maintain a transparent table with different range values if you don't have sequential values. Write a routine in the info-package to restrict the document number to the ranges.
    Hope it helps.
    Thx.
    Soumya

  • Update Rule - Routine Issue

    Hello All,
          I have an Update Rule between ODS and InfoSource. I have the following routine for 0CALQUARTER. I cannot figure out why it is not being populated in the ODS. I see that 0FISCPER  is being populated in the ODS. What am I missing. I am attaching the code below.
    Thanks.
    Regards,
    bw_newbie
    Routine:
    PROGRAM UPDATE_ROUTINE.
    $$ begin of global - insert your declaration only below this line  -
    TABLES: ...
    DATA: v_qtr(1).
    DATA:   ...
    $$ end of global - insert your declaration only before this line   -
    FORM compute_data_field
      TABLES   MONITOR STRUCTURE RSMONITOR "user defined monitoring
      USING    COMM_STRUCTURE LIKE /BIC/CSZFI_SL_A129_TT
               RECORD_NO LIKE SY-TABIX
               RECORD_ALL LIKE SY-TABIX
               SOURCE_SYSTEM LIKE RSUPDSIMULH-LOGSYS
      CHANGING RESULT LIKE /BIC/AZFI_O12900-CALQUARTER
               RETURNCODE LIKE SY-SUBRC "Do not use!
               ABORT LIKE SY-SUBRC. "set ABORT <> 0 to cancel update
    $$ begin of routine - insert your code only below this line        -
    fill the internal table "MONITOR", to make monitor entries
    result value of the routine
      IF              COMM_STRUCTURE-FISCPER+4(3) = '000' OR
                           COMM_STRUCTURE-FISCPER+4(3) = '001' OR
                          COMM_STRUCTURE-FISCPER+4(3) = '002' OR
                          COMM_STRUCTURE-FISCPER+4(3) = '003'.
                                    v_qtr = 1.
              ELSEIF       COMM_STRUCTURE-FISCPER+4(3) = '004' OR
                           COMM_STRUCTURE-FISCPER+4(3) = '005' OR
                           COMM_STRUCTURE-FISCPER+4(3) = '006'.
                                    v_qtr = 2.
              ELSEIF       COMM_STRUCTURE-FISCPER+4(3) = '007' OR
                           COMM_STRUCTURE-FISCPER+4(3) = '008' OR
                           COMM_STRUCTURE-FISCPER+4(3) = '009'.
                                    v_qtr = 3.
             ELSEIF        COMM_STRUCTURE-FISCPER+4(3) = '010' OR
                           COMM_STRUCTURE-FISCPER+4(3) = '011' OR
                           COMM_STRUCTURE-FISCPER+4(3) = '012' OR
                           COMM_STRUCTURE-FISCPER+4(3) = '013' OR
                           COMM_STRUCTURE-FISCPER+4(3) = '014' OR
                           COMM_STRUCTURE-FISCPER+4(3) = '015' OR
                           COMM_STRUCTURE-FISCPER+4(3) = '016'.
                                    v_qtr = 4.
             ENDIF.
      CONCATENATE COMM_STRUCTURE-FISCPER(4) v_qtr INTO RESULT.
    if abort is not equal zero, the update process will be canceled
      ABORT = 0.
    $$ end of routine - insert your code only before this line         -
    ENDFORM.

    You may have to put the following line in your update rule after changing the result.
    RETURNCODE = 0.
    Regards.
    Sanjay
    Message was edited by:
            Sanjay Sinha

  • Create routine issue in transformation

    Hi Gurus,
    I am trying to create a routine in transformation. I am getting an error "CLASS CL_RSTRAN_GEN" not found.
    The class "CL_RSTRAN_GEN" was adressed in the ABAP program  "CL_RSTRAN_STEP_ROUT===========CP". However, no class definition was found.
    Do you think any OSS notes I need to apply for this error ?
    Please advice.
    Thanks
    Liza

    refer OSS Note: 998730

  • Cube Routine issue

    Hi Guys
    Here is the problem, I have an update rule its has Charecteristic "Customer Number". The file coming in has customer numbers obviously. A few customer number coming in are correct which should go through and few are not correct. Now i should run a validation to accept the correct number and if there are any wrong customer number i shuld update it with the new number given.
    I need to write a routine which does this validations. Could some one help me with the code ASAP.
    Regards
    Chris

    Hi chris,
    if you have stored Correct (A) and Not Correct (B) Customer Number in a Master Data (C) to make the check you can use Start Routine of the Update Rules. Here a sample code.
    data: begin of t_C occurs 0,
              B like C-B,
              A like C-A,
            end of t_C.
    select * into corresponding fields of table t_C
    from C where not B is null and OBJVERS = 'A'.
    LOOP AT DATA_PACKAGE.
    IF DATA_PACKAGE-B IS NOT INITIAL.   
    read table t_C with key B = DATA_PACKAGE-B.
    IF sy-subrc = 0.
    DATA_PACKAGE-B = t_C-A.
    ENDIF.
    MODIFY DATA_PACKAGE.
    ENDIF.
    ENDLOOP.
    Ciao.
    Riccardo

  • Issue in Pricing Formulae

    Hi Sap gurus,
    I am facing one issue in pricing. I am getting this error in my effective pricing condition.
    "Inactive via formulae of incorrect". Can any body please give me some lights on the issue?
    Thanks.
              chetali

    Hi Chetali,
    As per your error mssage I came to know that this is related to some routine issue which is assigned to that 'effective pricing condition'
              So, Please check the settings related to the requirement ,alternative calculation type and alternative condition base value routines of that condition type.
    Also check the logic involed in the routines with the ABAPer help.
    I hope it will help you
    Regards,
    Murali.

  • Powerbook 17 Display resets

    I have a Powerbook G4 17" and every 2 or 3 mins the desktop disappears/blinks for about a second and resets. Every window that's open on the desktop closes and goes back to the way the desktop was when the computer started up. I'm wondering if this has to do with the battery. Does anyone have this problem or heard of it? Please share!!!

    I have to force reboot, (control/openapple/pwr)
    then start up in "safe mode" by holding down the
    shift key
    right after I hear the chime from the reboot.
    After everything comes back on,
    I restart once again .........
    and everything is fine.
    I only have a problem with this dark screen thing
    when I plug in the AC plug
    when my PB is closed and asleep
    and then try to wake it up.
    To not get the dark screen problem this is what I
    do:
    First wake up PB while on battery power til I see the
    screen.
    Then I plug in the AC plug.
    When I forget to do this, then I have the dark screen
    problem.
    I tried your suggestion, Dennis and it works -partially. The system sleeps properly and awakens if not plugged in to AC. However, if during the sleep the AC is plugged in to recharge, the powerbook goes into an odd 'code blue' kind of state whereby on the interval of the sleep cycle of the white lid button LED, the system applies the paddles and wakes the drive, the audio port, firewire, the DVD etc. and then cycles them down again. Interrupting the reverie produces the familiar black screen and no activity and the necessary force-power-off-then-power-on routine to proceed. It sounds like a power management routine issue. Does this light up any neurons for anyone? Ideas?
    I'm not sure if this is helping anyone to diagnose the problem, or if anyone at Apple is even reading these discussions, but thanks to you there is a partial work-around.
    cheers and thanks
    G4 Powerbook 1.33   Mac OS X (10.4.5)   defibrillator paddles

  • About LCA Trace

    Hello Experts,
        Can some one explain me what is LCA Trace?
    How and when it is generated and also a short note abt /SAPAPO/OM01 and /SAPAPO/OM01 transaction.
    Thanks in advance.
    Best Regards,
    Siva.

    Hello Siva,
    -> you asked on the MAXDB/liveCache forum about the LCA trace,
    & recommend to trace the problem in SCM - APO forum:
        Re: Is livecache used during ATP check?
    It's looking strange for me.
    -> In the LCA trace, which is written on the liveCache server in the liveCache Rundirectory, additional information will be written - tracing LCA Objects, if the trace level is changed, and this information will help the LCA developers<!!> to get clear on the LCA routine issue.
    The LCA developers or LCA development support will create the LCA trace in the customer system with agreement to the customer of the needed level, if it is necessarily for the further analysis of the LCA routine problems.
    -> Please create the ticket to the component 'BC-DB-LCA', if you have the LCA routine issues.
    -> Please also see the info at
          Re: /sapapo/om02 - LiveCache Tracing for Optimization Run problems
    Thank you and best regards, Natalia Khlopina

  • X.509v3 KeyUsage for an SSL Server

    Hello,
    Apparently, JSSE clients (incl. 1.0.2) will not trust an SSL server if its cert has a critical keyUsage extension that does not include the digitalSignature usage. However, I have come across a number of CAs which routinely issue SSL server certs including a critical keyUsage extension which only has the keyEncipherment usage.
    I came across a posting in the comp.lang.java.security newsgroup where the author indicated he subitted this behavior as a bug to Sun, but it's not currently showing up in the bug database.
    Does any one know if JSSE is correct in requiring the digitalSignature usage? Where can I find an authoritative answer? Also, what's Sun's position on the matter?
    Thanks in advance,
    Chase

    Here's a work around for this problem. I've tested it only on 1.3.1_01, so YMMV.
    The idea is to wrap the default X509TrustManagers with a new Manager that intercepts the isServerTrusted method. From there, you can wrap the first certificate in the chain with a new X509Certificate object that reports that the digitalSignature KeyUsage is present for all certs.
    Now when the REAL isServerTrusted is called, the certificate will report that digitalSignature is present -- even if it isn't.
    It may be possible to approach this from the other side and change the default CertificateFactory...but I haven't really looked into that...and probably won't.
    Wayne
    ---BEGIN CODE FRAGMENT---
    //Create TrustStore
    KeyStore ts = KeyStore.getInstance("JKS");
    InputStream truststream = new FileInputStream(truststore);
    ts.load(truststream, trustphrase.toCharArray());
    //Get Trust Factory
    TrustManagerFactory tmanagerFac = TrustManagerFactory.getInstance("SunX509");
    tmanagerFac.init(ts);
    //Wrap the TrustManagers
    TrustManager[] trustManagers = tmanagerFac.getTrustManagers();
    for(int mancount=0; mancount<trustManagers.length; mancount++) {
    if(trustManagers[mancount] instanceof X509TrustManager) {           
    TrustManager tempMan =
    new FixedX509TrustManager((X509TrustManager)trustManagers[mancount]);
    trustManagers[mancount] = tempMan;
    //Create Context
    SSLContext context = SSLContext.getInstance("TLS");
    context.init(
    kmanagerFac.getKeyManagers(), //very similar to creating TrustManagerFactory, code not provided.
    trustManagers,
    null);
    //Now you can pull SocketFactory's and ServerSocketFactory's off this SSLContext.
    //SUPPORTING CLASSES
    * Wrapper class for X509TrustManager.
    * It intercepts calls to isServerTrusted() to replace the base certificate
    * with a FixedX509Certificate which will report that the digitalSignature
    * flag is set in the KeyUsage extension.
    * By default, the Sun implementation of JSSE requires Server certs to have
    * the digitalSignature flag set. However, many production certs do not have
    * this set because it probably SHOULDN'T be set.
    * By using this class to wrap all the X509TrustManagers in your SSLContext,
    * you can defeat this bug, and restore order to the universe.
    private class FixedX509TrustManager implements X509TrustManager {
    private X509TrustManager tm_ = null; //wrapped trustmanager
    public FixedX509TrustManager(X509TrustManager tm) {
    tm_ = tm;
    //replace the base cert with a cert that has a forced digitalSignature Usage.
    public boolean isServerTrusted(X509Certificate[] chain) {
    if(chain.length > 0) {
    X509Certificate forcedCert = new FixedX509Certificate(chain[0]);
    chain[0] = forcedCert;
    return tm_.isServerTrusted(chain);
    public boolean isClientTrusted(X509Certificate[] chain) {
    return tm_.isClientTrusted(chain);
    public X509Certificate[] getAcceptedIssuers() {
    return tm_.getAcceptedIssuers();
    * Wrapper class for X509Certificate.
    * Calls to getKeyUsage() are intercepted to always report that the digitalSingature
    * usage flag is set.
    * @see FixedX509TrustManager
    private class FixedX509Certificate extends X509Certificate {
    private X509Certificate cert_ = null; //the wrapped cert
    public FixedX509Certificate(X509Certificate cert) {
    cert_ = cert;
    // "Override" to force every cert to have digitalSignature set.
    public boolean[] getKeyUsage()
    boolean[] bits = cert_.getKeyUsage();
    if(bits.length > 0) {
    bits[0] = true; //force digitalSignature.
    return bits;
    //Just wrap the rest of the methods....
    public void checkValidity()
    throws CertificateExpiredException, CertificateNotYetValidException
    cert_.checkValidity();
    public void checkValidity(Date date)
    throws CertificateExpiredException, CertificateNotYetValidException
    cert_.checkValidity(date);
    public int getVersion()
    return cert_.getVersion();
    public BigInteger getSerialNumber()
    return cert_.getSerialNumber();
    public Principal getIssuerDN()
    return cert_.getIssuerDN();
    public Principal getSubjectDN()
    return cert_.getSubjectDN();
    public Date getNotBefore()
    return cert_.getNotBefore();
    public Date getNotAfter()
    return cert_.getNotAfter();
    public byte[] getTBSCertificate()
    throws CertificateEncodingException
    return cert_.getTBSCertificate();
    public byte[] getSignature() {
    return cert_.getSignature();
    public String getSigAlgName()
    return cert_.getSigAlgName();
    public String getSigAlgOID()
    return cert_.getSigAlgOID();
    public byte[] getSigAlgParams()
    return cert_.getSigAlgParams();
    public boolean[] getIssuerUniqueID()
    return cert_.getIssuerUniqueID();
    public boolean[] getSubjectUniqueID()
    return cert_.getSubjectUniqueID();
    public int getBasicConstraints()
    return cert_.getBasicConstraints();
    public boolean hasUnsupportedCriticalExtension()
    return cert_.hasUnsupportedCriticalExtension();
    public Set getCriticalExtensionOIDs() {
    return cert_.getCriticalExtensionOIDs();
    public Set getNonCriticalExtensionOIDs()
    return cert_.getNonCriticalExtensionOIDs();
    public byte[] getExtensionValue(java.lang.String ext)
    return cert_.getExtensionValue(ext);
    public byte[] getEncoded() throws CertificateEncodingException
    return cert_.getEncoded();
    public PublicKey getPublicKey()
    return cert_.getPublicKey();
    public int hashCode()
    return cert_.hashCode();
    public String toString()
    return cert_.toString();
    public void verify(PublicKey key) throws CertificateException, NoSuchAlgorithmException,
    InvalidKeyException, NoSuchProviderException, SignatureException
    cert_.verify(key);
    public void verify(PublicKey key, String provider) throws CertificateException, NoSuchAlgorithmException,
    InvalidKeyException, NoSuchProviderException, SignatureException
    cert_.verify(key, provider);
    </pre>
    ---END CODE FRAGMENT---

  • Print Jobs Stuck in Print Que

    I have a USB printer connected to my MacPro (Leopard), the driver is correct, has been reloaded, print system reset, etc., all of the expected fixes for routine issues. I've replaced the USB cord, tried another identical printer, etc.
    About 2 in 5 print jobs go to the print que but stop there. I work around it by unplugging the usb cord, re-plugging, and pressing resum on the print que. Occasionally I have to do that twice, but it never fails to work. What a pain-in-the-arse#$!!@ Network printers always seem to work.
    There have been several similar posts over time, most of which seem to die. I don't want to install a third party driver, alter the CUPS, or do anything else other than use the OS I purchased. This seems to occur with several brands of printer (mine is an HP), so I've got to believe that it is an OS problem.
    Can anyone own up to it? Is there a fix in the works? I've had printing issues with OSX since the initial OS (which could not respect margins, printer features, etc.). I've never had an issue with Windows (it just seems to work).
    Help!

    Hmm. I have an HP printer that's behaved fine, but I've moved it to my iBook (running Tiger) so I can print wirelessly.
    It may be an issue with the driver or the software. I'm guessing the software was written for the PPC machines, and that might be causing the problem.
    The way I've checked this is to open up "Activity Monitor" (Applications>Utilities) and find the processes related to your HP printer (usually begin with "hp") under kind what's shown?
    You might want to look into the CUPS idea presented earlier as it may give you better results.
    ~Lyssa

  • Where is that "Comcast Guarantee" and care about the "customer experience"?

    Where is your Comcast Guarantee? Empty words, AGAIN? "We’re constantly pushing the boundaries of innovation and creativity, and that includes the customer experience. Our customers deserve the best experience every time they interact with us, and improving upon that is our number one priority." "We will always be on time within your 2 hour appointment windowor you’ll receive a $20 credit*.As a courtesy, we will call you before we arrive at your home. And if we fail to arrive for a scheduled visit during the appointment window, we will credit you $20*." "We will resolve routine issues in one visit or you’ll receive a $20* credit.After the first visit to your home, if we do not satisfactorily complete installation or can’t resolve a routine issue, we will credit you $20*. Additionally, we won’t charge you for a service visit that results from a Comcast equipment or network problem." "We will treat you and your home with courtesy and respect.Our technicians will display their Comcast identification clearly when they arrive at your home. They will be trained and equipped to complete the job on the first visit. Our Customer Account Executives (CAEs) will be courteous and knowledgeable when you contact us." I think your word to the customer is worthless. You obviously don't believe a customer's time is valuable, but the recording claims "we value your time". More empty words. You sent a tech to my house that took my cable box for no reason, and left me with terrible service, and a fake follow up appointment. He would NEVER have taken a box from a man, but a woman alone in her home he's allowed to walk all over. Now,after hours and hours and hours of phone calls, messages to the forum, and more comcast no-show for another follow up appointment, more phone calls and appointments, I am back to where I was BEFORE Comcast sent out a tech - still with the original problem that cannot be solved, but at least I have a signal and a box. No one is stepping up to honor Comcast's guarantee. No one has offered to credit my account for anything. No one has contacted me about my bill. I did try to contact billing, and they don't know anything about what kind of mayhem this tech caused me and Comcast, and they want to tell me about a credit applied to my account when $2 was taken off my bill last month that I have no knowledge of, as if I was given a gift. I asked for a supervisor, and had a terrible connection with her over Comcast's equipment. She hung up on me, wasting another 30 minutes of my time.  

    Did you register your suite? Did you lose the installer (if downloaded) or the CD's (if purchased)?
    If you didn't register, there's not much that you or they can do. Of course you know that when you download an installer, you should save a backup for these situations.
    That being said, this forum is for a specific product (Adobe Contribute) and isn't visited by too many folks. If you go to the feedback forum, you may actually find someone that can help.
    Feedback forum: http://forums.adobe.com/community/general/adobedotcom_feedback
    Good luck.

  • DataLoading Failure while using Infosource

    Hi experts,
    For the infoobject 0GLACCEXT , we have written nested transformations.
    From 0GL_ACCOUNT_TEXT (DS) ---> ZGL_ACCOUNT_TEXT (IS) ---> 0GLACCEXT . And we created only one DTP (0GL_ACCOUNT_TEXT ---> 0GLACCEXT ), since we couldnt find an option to create DTP for INFOSOURCE.
    We have included infosource so as to resolve some routine issue.
    We loaded data till PSA and when we tried to run the DTP, it got failed by throwing the following error.
    *Transformation inactive; request cannot be executed*
    Can anyone suggest what i need to do to correct the same.
    At the sametime please let me know how we can create DTPs , if we are loading from
    DATASOURCE -
    > INFOSOURCE -
    > INFOPROVIDER
    Thanks in Advance.
    Regards,
    Anju

    Transformation Inactive;request cannot be executed
    Message no. RSBK257
    If experiencing above message no, then its not the issue with transformation, rather u have to debug that DTP load.
    In my case, when I debug (for above error) the DTP load , I found the actual issue with SID table value.
    Error when writing the SID 10033950 (value "10033950") in table /BIC/S0PERSON
    To fix this, I had to delete (from SE14) complete data from the above SID table, and scheduled DTP load, and that worked.

Maybe you are looking for

  • Mysterious message while processing PO in SRM 4.0

    Hi    We have a proxy communication between SRM 4.0 and XI 3.0 setup inorder to send out approved POs to vendors from SRM through XI. The SRM business system has been setup in the SLD with the proper logical system name attached to the business syste

  • Out put file is not genrated when calling xml reports from OAF page

    Dear all i am calling xml reports from OAF page the out put file is not generated i am writing this code public int tradingrequest(String quoid, String costoder,int orgid) try OADBTransaction tx = (OADBTransaction)getOADBTransaction(); java.sql.Conne

  • PRO5 Expense manager getting auto approved

    Hi All, When i go to PR05, and enter the travel expenses and save, system should save the trip in request recorded stage where as the system is saving the data in approved stage. Could anyone let us know what is causing this error. Thanks and regards

  • Prevent object link to PR items which are released

    Hi, I want to prevent any DIR from doing a object link to PR which is released. From PR side once it is released it does not allow to add any more object link but from DMS I can link to it. I want to avoid this. Any way to achieve this. Regards Abhi

  • Authorization object assignment on USERS

    Hi, i have to maintain authorization objects in transaction types and users in our company, such that the executives (management of all org. units) of the company are able to see all the transactions including activities within the whole company. on