Billing output not processed properly

when i applied output with output type (RD00) for invoice it is not activated properly. screen become blank.
kindly help me.

Dear Kiran,
Please look in these areas
Maintanance of the condition record in VV32 transaction
Check the printer related settings.
Check the transmision medum and partner function in the condition record.
Make sure that output program and smart form or script program have been assigned to the output type RD00..
And also chek is there any routine assigned in the requirement colomun of your output procedure control data.
The invoice document has been released to accounting or not.
I hope this will help you,
Regards,
Murali.

Similar Messages

  • Queues are not processed properly in BPM

    Hi all ,
    In BPM , the inbound queues of the process engine are not processed properly.
    Several message are sent to the process and the message queued in the QRFC queue.
    How to process those messages so that process instance gets created ?
    Kind regards
    Goutam

    Check steps I've detailed on this thread:
    Re: problem in triggering BPM engine
    Hope that helps
    James.

  • Invoice output not coming properly

    Dear Experts,
    I have maintained condition record for the billing type and assigned it to the printer. Some of the invoices output are coming properly but for 4 to 5 invoices, print out prview is just skipping and when I click for printing, the system throws an error  " output could not be issued" and the error is in green colour.  I am not able to understand the reason behind it.
    Can anybody help me out to solve the issue please.
    Thanks & Regards,
    Reji

    Dear Reji,
    T. Code: VF02/ VF03
    Key-in your Invoice No. and Don't hit "enter".
    On to the same Page, from Menu-bar, Click: Billing Document --> Issue Output to
    A Window: Output Output, will pop-up.
    Here, select the Output-line and Click Icon: Print Preview
    Now, you would able to see Invoice Preview, providing Output Condition record is maintained.
    If still, Invoice Preview doesn't appear, on to the same window: Output Output, Click Tab: Print Options.
    Another Window will pop-up. Here, maintain Output Device (say, LP01) and tick Box: Print Immediately, and OK.
    Again Select Output line and Click: Print Preview.
    Best Regards,
    Amit

  • Satellite Pro U200: VGA output not working properly when AC adapter was connected

    Hi,
    I have a problem with vga output. When I'm working on battery and connect my notebook to external monitor it's ok, but when I connect AC adaptor then start waving also bluetooth and wlan does not work properly. In other case when I remove battery from notebook and connect AC adaptor it works properly.
    thanks in advance

    As long as you use a CRT you should set the refresh rate new, at least 85Hz. Standard is 60Hz as far as I know, and that hurts in your eyes.
    The wireless lan behaviour is quite normal as long as your not right next to the access point. On battery power the wireless lan card reduces its energy consumption thus the connection will be poor if you dont have a perfect signal. You can turn this off in the iNTEL Pro/SET wireless software, where you can configure the adaptor. Try to change the powersafe mode to manual and full power, this should solve your problem.

  • WBS element output not coming properly .

    Hi ,
    I have a customized report with , project(proj-pspid) ,wbs element( prps-posid) as selection parameters . The output is coming preperly when project is given as output but is not coming properly when wbs element is given as input. I am using PSJ logical database . Not sure why in debugging while giving only wbs element it is going to 'Conversion_exit_abpsn_input' instead of teh conversion exit 'Conversion_exit_abpsp_input' . Any idea on how it can be resolved?

    Hi,
         Please refer the WBS element to PSPNR (PRPS-PSPNR) instead of prps-posid ,
         prps-posid refers to exit 'Conversion_exit_abpsn_input' and not 'Conversion_exit_abpsp_input'.
    Regards,
    Srini.

  • Condition-Dependent Output not processed

    Hello,
    I have configured conditions for output for purchase order documents (BUS2201) in the following path in SPRO > SAP Supplier Relationship Management > Cross-Application Basic Settings > Set Output Actions and Output Format > Condition-Dependent Document Output.
    The purpose for this is to check the purchase order status prior to sending out the PO as to ensure that only successfully replicated POu2019s are sent to suppliers.  When I create a PO that passes the conditions (iow the conditions are True), the output is generated in a Not Processed status.  I have to now process the output manually or by running program RSPPFPROCESS.  Once processed, output is successfully sent. 
    Note that the Time Of Processing setting is set as  u201CProcessing when saving documentu201D.  I would expect the output to be processed automatically by the system, but it is not.
    If I create a purchase order that does not pass the condition (iow the conditions are false) an output is also generated with a Not Processed status, but I am unable to process it due to the conditions that are not met.
    Please advise why the output that passes the condition is not processed automatically.
    Kind Regards
    Rene

    Hi, If you want to work with Condition-Dependent PO Output, you have
    to set the conditions for output in Define action for Purchase order
    output. Under Action determination and Action summarization you can
    choose from different option.  Also clean-up customizing inconsistencies using transaction SPPFCADM and adjust to determination technology  "Determination Using Conditions" to retest. Check note 564826 which may be helpful.
    Best Regards
    Lauren

  • Billing Error : Not processed

    Dear Gurus,
    I am facing a problem where I have created a Scheduling Agreement for a customer of 10 items and I have have maintained schedule lines for 4 Items and target quantities for the same. system is allowing me to deliver the 4 items but when I am trying to bill the items it is showing Not Processed and billing is not done.
    Although if I maintain target quantity and schedule line for the rest 6 items, then only system is allowing me to bill the 4 items.
    I checked the Copy control routine for LF=> F2  it is '003' and in it Message '069' is the reason for this error.
    I think this Error is occuring due to Incompletion Log but am unable to solve it.
    My requirment is I donot want to maintain the schedule lines & target quantity for the rest 6 items as i donot want to deliver the items immediatly, So I should be able to bill the first 4 materials, although I am creating a Scheduling agreement for all 10 items.
    Thanks & Regards,
    Arunava Sahana

    Hi,
    I tested this scenario in Sand Box.
    There is an incompletion log for the Item in the Sales order  for the CUSTOMER  MATERIAL in the ORDER DATA.
    Please check the Incompletion log in the sales order  and complete the data.
    Hope it will resolve.
    regards,
    santosh

  • Servlet output not displayed properly in Internet Explorer

    Hi All,
    I'm developing a servlet which uploads a file. After the servlet parses the request body, it stores the file contents as a binary string in the database. While displaying the contents of the attached file, the IE(Internet Explorer) is ignoring all the newlines and spaces. IThe same uploaded file when viewed through Firefox browser is being displayed properly. I've added some debug statements to print the filecontent before sending it to servlet output stream. They look exactly as they were in the uploaded file. The MIME type is application/octet-stream.
    I've also made the response to accept "ISO-8859-1" and "UTF-8" charsets, yet the IE is not rendering the file contents properly. The code looks like this,
    response.setContentType("text/html; charset= ISO-8859-1, UTF-8");
    byte[] buff = attachment.getAttachObject();
    OutputStream out = response.getOutputStream();
    out.write(buff);
    out.close();
    I've tried using PrintWriter also. I've tried changing the content types, character encodings of request and response objects, still couldn't resolve the issue. What really baffles me is that when it's displaying properly in Firefox, why can't it render properly in IE? I'm using Win XP SP2, and IE version is 6.0.29. The content which is being sent to the output stream contains newline and space characters, but they are not displayed in the browser. Did any one face this sort of issue? Your help is highly appreciated.
    Thanks,
    Tarun.

    Hi,
    Thanks for looking into the issue. Let me tell you that I've tried keeping various content-types like text/plain, text/xml etc, but in none of those cases the IE rendered the output properly. But with the same content-type i.e text/html or text/plain, Firefox is able to render the file content properly. I've tried a brutal force approach like below,
    response.setContentType("text/plain");
    PrintWriter out = response.getWriter();
    String str = new String(attachment.getAttachObject());
    char[] buff = str.toCharArray();
    for(i=0;i< buff.length; i++)
    int n = (int)buff;
    if(n == 10)
    out.println();
    else
    out.print(buff[i]);
    out.close();
    I was trying to print a newline whenever I find a newline character in the file content. Even this didn't work. Please suggest me some way to get rid of this problem.

  • EXCEL output not displaying properly

    We are using XML publisher 5.0 with Oracle Financial Applications.
    We have defined Viewer Options for Excel as
    File Format=Excel, Mime Type=application/vnd.ms-excel.
    The problem is when we use web based View requests, the excel comes up with XML code in it. We are not sure why excel is not interpreting the XML output.
    Please help.
    Thanks
    Kishore

    I can not see any option for excel viewing under sys admin -> profile -> system menu. The profiles available there are:
    Profile     Site     
    Viewer: Application for HTML                                   
    Viewer: Application for PCL                                   
    Viewer: Application for PDF                                   
    Viewer: Application for PostScript                                   
    Viewer: Application for Text     Microsoft Word                              
    Viewer: Application for XML     Browser                              
    Viewer: Default Font Size     10                              
    Viewer: HTML     C:\MSOffice\Winword\Winword.exe $$FILE$$                              
    Viewer: PDF     C:\Acrobat3\Reader\AcroRd32.exe $$FILE$$                              
    Viewer: PostScript     C:\MSOffice\Winword\Winword.exe $$FILE$$                              
    Viewer: Text                                   
    Please let me know where to set the xl profile value.
    Thanks
    Varun

  • Output not coming properly in SF

    Hi all,
    This is the select stmt i have written in the Program lines of Smartform.
    SELECT  VKORG  VBELN  FKTYP  VTWEG
                   FROM VBRK
                   INTO TABLE ITAB
                   WHERE  VBELN BETWEEN '0090022987'   AND
                   '0090023500'.
    but i am geting the output like this, even though i have all the records
    in the VBRK  Table.
    VKORG      VBELN               FKTYP             VTWEG
                     0090022987          1
                     0090022988          R
                     0090022989          R
                     0090022990          R
                     0090022991          R
    But the Actual values of  FKTYP are
    1000 ,but in the output it is appearing as 1
    R300, but in the output it is appearing as R.
    and rest of fields(vkorg vtweg) are not displaying.
    What could be the cause of Error ?
    Thanks in advance
    Krupali...

    Hello KR
    Check your table or template cell width . Make them wider.
    This is surely happening because of your table/template's cell size. Make it more broder so that the values and text doesn't break.
    Regards
    Swetha
    Edited by: Swetha on May 28, 2008 7:39 AM

  • JSF output not displaying properly in IE6

    I've create an application using JSC and developed a few CSS templates to go along. I've notice that the formatting look fine on Firefox and IE7 but not IE6 -
    I saved the generated JSF output page (from the browser), remove the first line: <?xml version="1.0"?> and tried to load it manually into IE6 and it rendered fine. So the culprit (other then IE6 of course) is this line: <?xml version="1.0"?>
    I read somewhere that if IE6 encounters <?xml version="1.0"?>, it switches it rendering engine to 5.5 (not sure if that's true or not).
    Is there any workaround to get my page to display correctly on IE6?
    Desperately,
    Jean

    Hi Jean.
    When I was using xml and xsl to learn how to create web pages I found an error, the same that you find when including css files (I found the first problem with absolute position to div tags).
    The only that I can say you is that your problem is no new. IE 6 works with some problems with combinations like xsl and css (the same happen with jsp and css).
    I was searching in forums but no one give me a solution. Be sure that the problem is in IE 6.
    Something that you can try is create a version of your css templates to use with IE 6. Usually the same CSS with some changes under conflicting values give you a good format in IE 6.
    Then you can create a copy of yours CSS files and use this copy changing conflictives values to show the format that you want in IE 6.
    Finally you must to use "something" that help you to find the version of navegator that get the page.
    (It sounds stupid but work for me).
    Good Luck Jean!

  • Repeat Output not comming properly

    hi
    when i issue output and see the print prevew every thing is comming properly in the layout.
    but when i click on button Repeat output button and if i issue the output again some of the data is missing in the layout can any one tell me what can be the reason
    thanks

    Hi Ram ,
    You check the refresh statement and clear statement in the code.... may be that u have used one of these and ur contents get deleted when again its executing.....
    Thanks & Regards
    Ashu Singh.

  • Output not getting properly

    Dear All,
    i am getting problem in  At new command, in my out put i am getting '****'  after first field, i refer some threads also then also not getting plz any body help me.
    Thanks.
    REPORT  ZLC_REP no standard page heading.
    line-size 250
    *line-count 36(4).
    TABLES : LFA1,BKPF,BSEG,BSAD.
    SELECT-OPTIONS : DATE FOR BKPF-BLDAT,
                     LC  FOR  BKPF-XBLNR.
    *SELECT-OPTIONS :
    TYPES : BEGIN OF TY_FINAL,
            XBLNR TYPE BKPF-XBLNR,
            BELNR TYPE BKPF-BELNR,
            LIFNR TYPE LFA1-LIFNR,
           LAND1 TYPE LFA1-LAND1,
            NAME1 TYPE LFA1-NAME1,
            BLDAT TYPE BKPF-BLDAT,
            BKTXT TYPE BKPF-BKTXT,
            dmbtr TYPE BSEG-dmbtr,
            END OF TY_FINAL.
    TYPES :  BEGIN OF TY_BKPF,
             BUKRS TYPE BUKRS,       "Company Code
             BELNR TYPE BKPF-BELNR,      "Doc.Number
             XBLNR TYPE XBLNR,
             BLDAT TYPE BLDAT,       "Vendor Invoice Date
             BKTXT TYPE BKTXT,
             END OF TY_BKPF.
    TYPES : BEGIN OF TY_BSEG,
            BUKRS TYPE BUKRS,      "Company Code
            BELNR TYPE BSEG-BELNR,
            dmbtr TYPE dmbtr,
            umskz type umskz,
            LIFNR TYPE BSEG-LIFNR,      "Vendor Number
            END OF TY_BSEG.
    TYPES  :BEGIN OF TY_LFA1,
            LIFNR TYPE LIFNR,
            NAME1 TYPE NAME1,
           LAND1 TYPE LAND1,
            END OF TY_LFA1.
    DATA : T_FINAL TYPE STANDARD TABLE OF TY_FINAL INITIAL SIZE 1,
           W_FINAL TYPE TY_FINAL.
    DATA : M_FINAL TYPE STANDARD TABLE OF TY_FINAL INITIAL SIZE 1,
           W1_FINAL TYPE TY_FINAL.
    DATA : T_BKPF TYPE STANDARD TABLE OF TY_BKPF INITIAL SIZE 1,
           W_BKPF TYPE TY_BKPF.
    DATA : T_BSEG TYPE STANDARD TABLE OF TY_BSEG INITIAL SIZE 1,
           W_BSEG TYPE TY_BSEG.
    DATA : T_LFA1 TYPE STANDARD TABLE OF TY_LFA1 INITIAL SIZE 1,
           W_LFA1 TYPE TY_LFA1.
           data : res type i.
    SELECT BUKRS
           BELNR
           XBLNR
           BLDAT
           BKTXT
           FROM BKPF INTO TABLE T_BKPF
           where BLDAT IN DATE
           AND XBLNR in  LC.
    IF T_BKPF IS NOT INITIAL.
    SELECT    BUKRS
              BELNR
              dmbtr
              umskz
              LIFNR
              FROM BSEG INTO TABLE T_BSEG
              FOR ALL ENTRIES IN  T_BKPF
             WHERE  BUKRS = T_BKPF-BUKRS
               WHERE BELNR = T_BKPF-BELNR
              and umskz = 'L'.
    ENDIF.
    IF T_BSEG IS NOT INITIAL.
      SELECT LIFNR
           LAND1
             NAME1
             FROM LFA1 INTO TABLE T_LFA1
             FOR ALL ENTRIES IN T_BSEG
             WHERE LIFNR = T_BSEG-LIFNR.
             ENDIF.
    *&       Sending Data to  Final Internal table                         *
    LOOP AT T_BKPF INTO W_BKPF.
    READ TABLE T_BSEG INTO W_BSEG WITH KEY BELNR = W_BKPF-BELNR.
    READ TABLE T_LFA1 INTO W_LFA1 WITH KEY  LIFNR = W_BSEG-LIFNR.
    W_FINAL-XBLNR = W_BKPF-XBLNR.
    W_FINAL-BELNR = W_BKPF-BELNR.
    *W_FINAL-LAND1 = W_LFA1-LAND1.
    W_FINAL-NAME1 = W_LFA1-NAME1.
    W_FINAL-BLDAT = W_BKPF-BLDAT.
    W_FINAL-BKTXT = W_BKPF-BKTXT.
    W_FINAL-dmbtr = W_BSEG-dmbtr.
    APPEND W_FINAL TO T_FINAL.
    delete adjacent duplicates from t_final comparing  belnr  dmbtr.
    ENDLOOP.
    clear w_final.
    SORT T_FINAL.
    lOOP AT T_FINAL INTO W_FINAL.
             AT NEW XBLNR.
             WRITE : 05  W_FINAL-XBLNR ,
                   15 W_FINAL-LIFNR, 30 W_final-name1.
             uline : /05(60).
             endat.
              WRITE : /05 w_FINAL-BELNR,
                     20 w_FINAL-LIFNR,
                      35 w_FINAL-BLDAT,
                      50 w_FINAL-BKTXT,
                      80 w_final-dmbtr.
                     90 w_final-name1.
             AT END OF XBLNR.
             SUM.
             uline /80(20).
             WRITE : /60 'LC TOTAL:',W_FINAL-XBLNR,80 W_FINAL-dmbtr.
             uline /80(20).
            res = sy-linct - sy-linno.
            reserve res lines.
             ENDAT.
             AT LAST.
             SUM.
             WRITE : /65 'GRAND TOTAL:',80 W_FINAL-dmbtr.
             uline /80(20).
             uline /80(20).
            res = sy-linct - sy-linno.
            reserve res lines.
             ENDAT.
             ENDLOOP.
            ENDLOOP.
             clear w_final.
    TOP-OF-PAGE.
    write :50 'LETTER OF CREDIT'.
    uline /05(150).
      WRITE : /05 'DOCUMENTNO',
             20 'VENDORNO',
              35 'DOCDATE',
              50 'DESCRIPTION',
              85 'AMOUNT'.
    uline /05(150).
      END-OF-PAGE.
      uline /05(50).
      write :/05 'end of page:',sy-pagno.

    Hi Mohamed
    Suppose I have a internal table itab and it has three field A B C
    now :
    Loop at itab.
    At new B.
    Write:itab-c.
    Endat.
    Endloop.
    If I will get **** in the output coz for control break statement all the fields on the right of the B will be showing **** for character fields.
    inorder to solve this pass it to work area.
    loop at itab into wa_itab.
    wa_itab1 = wa_itab.
    At new B.
    Use wa_itab1 inside the control break statement.
    Endat.
    Endloop.
    This is your code modified:
    REPORT ZLC_REP no standard page heading.
    line-size 250
    *line-count 36(4).
    TABLES : LFA1,BKPF,BSEG,BSAD.
    SELECT-OPTIONS : DATE FOR BKPF-BLDAT,
    LC FOR BKPF-XBLNR.
    *SELECT-OPTIONS :
    TYPES : BEGIN OF TY_FINAL,
    XBLNR TYPE BKPF-XBLNR,
    BELNR TYPE BKPF-BELNR,
    LIFNR TYPE LFA1-LIFNR,
    LAND1 TYPE LFA1-LAND1,
    NAME1 TYPE LFA1-NAME1,
    BLDAT TYPE BKPF-BLDAT,
    BKTXT TYPE BKPF-BKTXT,
    dmbtr TYPE BSEG-dmbtr,
    END OF TY_FINAL.
    TYPES : BEGIN OF TY_BKPF,
    BUKRS TYPE BUKRS, "Company Code
    BELNR TYPE BKPF-BELNR, "Doc.Number
    XBLNR TYPE XBLNR,
    BLDAT TYPE BLDAT, "Vendor Invoice Date
    BKTXT TYPE BKTXT,
    END OF TY_BKPF.
    TYPES : BEGIN OF TY_BSEG,
    BUKRS TYPE BUKRS, "Company Code
    BELNR TYPE BSEG-BELNR,
    dmbtr TYPE dmbtr,
    umskz type umskz,
    LIFNR TYPE BSEG-LIFNR, "Vendor Number
    END OF TY_BSEG.
    TYPES :BEGIN OF TY_LFA1,
    LIFNR TYPE LIFNR,
    NAME1 TYPE NAME1,
    LAND1 TYPE LAND1,
    END OF TY_LFA1.
    ****Added by Neha
    Data : BEGIN OF Wa_FINAL1,
    XBLNR TYPE BKPF-XBLNR,
    BELNR TYPE BKPF-BELNR,
    LIFNR TYPE LFA1-LIFNR,
    LAND1 TYPE LFA1-LAND1,
    NAME1 TYPE LFA1-NAME1,
    BLDAT TYPE BKPF-BLDAT,
    BKTXT TYPE BKPF-BKTXT,
    dmbtr TYPE BSEG-dmbtr,
    END OF Wa_FINAL1.
    DATA : T_FINAL TYPE STANDARD TABLE OF TY_FINAL INITIAL SIZE 1,
    W_FINAL TYPE TY_FINAL.
    DATA : M_FINAL TYPE STANDARD TABLE OF TY_FINAL INITIAL SIZE 1,
    W1_FINAL TYPE TY_FINAL.
    DATA : T_BKPF TYPE STANDARD TABLE OF TY_BKPF INITIAL SIZE 1,
    W_BKPF TYPE TY_BKPF.
    DATA : T_BSEG TYPE STANDARD TABLE OF TY_BSEG INITIAL SIZE 1,
    W_BSEG TYPE TY_BSEG.
    DATA : T_LFA1 TYPE STANDARD TABLE OF TY_LFA1 INITIAL SIZE 1,
    W_LFA1 TYPE TY_LFA1.
    data : res type i.
    SELECT BUKRS
    BELNR
    XBLNR
    BLDAT
    BKTXT
    FROM BKPF INTO TABLE T_BKPF
    where BLDAT IN DATE
    AND XBLNR in LC.
    IF T_BKPF IS NOT INITIAL.
    SELECT BUKRS
    BELNR
    dmbtr
    umskz
    LIFNR
    FROM BSEG INTO TABLE T_BSEG
    FOR ALL ENTRIES IN T_BKPF
    WHERE BUKRS = T_BKPF-BUKRS
    WHERE BELNR = T_BKPF-BELNR
    and umskz = 'L'.
    ENDIF.
    IF T_BSEG IS NOT INITIAL.
    SELECT LIFNR
    LAND1
    NAME1
    FROM LFA1 INTO TABLE T_LFA1
    FOR ALL ENTRIES IN T_BSEG
    WHERE LIFNR = T_BSEG-LIFNR.
    ENDIF.
    *& Sending Data to Final Internal table *
    LOOP AT T_BKPF INTO W_BKPF.
    READ TABLE T_BSEG INTO W_BSEG WITH KEY BELNR = W_BKPF-BELNR.
    READ TABLE T_LFA1 INTO W_LFA1 WITH KEY LIFNR = W_BSEG-LIFNR.
    W_FINAL-XBLNR = W_BKPF-XBLNR.
    W_FINAL-BELNR = W_BKPF-BELNR.
    *W_FINAL-LAND1 = W_LFA1-LAND1.
    W_FINAL-NAME1 = W_LFA1-NAME1.
    W_FINAL-BLDAT = W_BKPF-BLDAT.
    W_FINAL-BKTXT = W_BKPF-BKTXT.
    W_FINAL-dmbtr = W_BSEG-dmbtr.
    APPEND W_FINAL TO T_FINAL.
    delete adjacent duplicates from t_final comparing belnr dmbtr.
    ENDLOOP.
    clear w_final.
    SORT T_FINAL.
    lOOP AT T_FINAL INTO W_FINAL.
    wa_final1 = W_FINAL.  "Added by Neha
    AT NEW XBLNR.
    **Changed by Neha
    WRITE : 05 Wa_FINAL1-XBLNR ,
    15 Wa_FINA1L-LIFNR, 30 Wa_final1-name1.
    uline : /05(60).
    endat.
    WRITE : /05 w_FINAL-BELNR,
    20 w_FINAL-LIFNR,
    35 w_FINAL-BLDAT,
    50 w_FINAL-BKTXT,
    80 w_final-dmbtr.
    90 w_final-name1.
    AT END OF XBLNR.
    SUM.
    uline /80(20).
    WRITE : /60 'LC TOTAL:',W_FINAL-XBLNR,80 W_FINAL-dmbtr.
    uline /80(20).
    res = sy-linct - sy-linno.
    reserve res lines.
    ENDAT.
    AT LAST.
    SUM.
    WRITE : /65 'GRAND TOTAL:',80 W_FINAL-dmbtr.
    uline /80(20).
    uline /80(20).
    res = sy-linct - sy-linno.
    reserve res lines.
    ENDAT.
    ENDLOOP.
    ENDLOOP.
    clear w_final.
    TOP-OF-PAGE.
    write :50 'LETTER OF CREDIT'.
    uline /05(150).
    WRITE : /05 'DOCUMENTNO',
    20 'VENDORNO',
    35 'DOCDATE',
    50 'DESCRIPTION',
    85 'AMOUNT'.
    uline /05(150).
    END-OF-PAGE.
    uline /05(50).
    Regards
    Neha
    Edited by: Neha Shukla on Dec 13, 2008 7:05 PM
    Edited by: Neha Shukla on Dec 13, 2008 7:13 PM

  • RMBP 15" right channel output not working properly

    Hello,
    I recently purchased a Retina Macbook Pro 15" no more than 3 months ago.
    Today I just noticed that whenever I connect my headphones I can hear the left channel clearly but the right channel is a lower volume and distorted.
    at first I thought it was the headphones, but have tried various ones and it doesn't seem to be that.
    Also, output from the internal speakers sounds fine, same level on both channels and clear
    Has anybody had this problem?
    Thanks,
    moih

    Already tried zapping the PRAM, to no success...
    I'll definitely bring it to a Genius bar since it also has a problem i didn't disclose here where the USB on the left hand side intermmitently connects and disconnects whenever i connect my iDevice...
    Thanks anyways

  • VFRB / Billing output issues

    When running retro billing VFRB, entries in NAST (Output) table  has been updated with entries even before the debit or credit documents have been created. So we have entries in NAST with object id  $000000001 and so on instead of the correct billing document number. This has been a one time issue.
    Due to which we face issue when the batch job for output is processed RSNAST00.
    1. $000000001 records ends in error, this is Ok since these are junk records
    2. few of the document outputs is not getting process (all billing documents types included),  for exaple there are 100 documents to print only 97 gets printed. the balance 3 does not get printed. The 3 documents does not get processed by the program RSNAST00 when the variant considers all open document, the program ends in error because of the junk records. the documents gets printed if the document number is given explicitly.
    3. When the program is processed next day the new billing documents for  the day are processed correctly, but the previous days 3 documents does not get processed. and a few documents of the current day is also not processed, the program ends in error because of the junk records.
    4. this results in a a huge set of outputs not processed after a few days.
    Has any one seen similar behavior with VFRB, and with the RSNAST00 program.

    It seems that obvious solution is that you need to delete the "junk records". Look up the OSS notes - perhaps there is some solution already for NAST clean-up. Otherwise it shouldn't be difficult to create a short program for that.
    Even if you're "OK" with the records not being processed, it is quite clear that these records are causing interruption in the program's flow.
    As a work-around, you can exclude the "junk records" using 'Object key' parameter when running RSNAST00, but deleting such records would be an ultimate solution.
    I'd also look into how did you end up with such records to begin with. It is a highly unusual effect.

Maybe you are looking for

  • Is a file (or directory) writeable?

    I am using Visual Studio 2010 and am trying to find the answer to a very simple question (I thought).  Given the path of a file or a directory, is the user allowed to overwrite the file or write into the directory? I coded the following:             

  • How do I find the "Offline Media" or otherwise fix this?

    When I try to encode a particular 30 minute timeline (I have successfully encoded other shorter timelines for Blu-ray before, in between, and after getting errors on this timeline)  I get this error message - "Offline material is present in this expo

  • I am trying to set up my verizon cellular data account on my Ipad. When I go to "view account in settings its already on AT

    I am trying to set up my verizon cellular data account on my Ipad. When I go to "view account" in settings its already on AT&T, how do I change it to Verizon?

  • Signing a Midlet

    My midlet connects to a servlet through an Http connection. It works perfectly on the emulator, but when I run it on my mobile phone it throws an IO exception. I was wondering if signing a midlet would solve my problem. If not, what is the benefits o

  • Can't change desktop picture by right clicking mouse

    Hey guys,i don't know what happened to my mbp last night,usually by right clicking mouse,from the bottom of the popup menu bar,there is a "set desktop picture" but i can't find it.WHY!Plz anyone help,Thanks u all very much. BTW,preferences is working