Urgent very urgent help regarding sales analysis and purchase analysis.

Respective all experts,
when i see a sales analysis and purchase analisys for a particular month or year i see only amount before discount and tax and that is not a actual net amount that includes tax amount also i want the total gross amount with including tax amount and net amount in sales and purchase analysis. And how will i enter more fields in form settings menu of sales analysis and purchase analysis.
Awaiting all expert advise,
Regards
saisakshi.

Hi,
For system reports like sales analysis and purchase analysis, they are hardcoded. There is no room for you to add anything if you cannot find it from the report.
If you need to customize it, you need to create your own report.
Thanks,
Gordon

Similar Messages

  • Urgent Help Regarding Storing Word and PFD Documents

    Dear Friends
    I want to store my word and pdf documents in my database using 8.1.7 for windows NT. It is quiet urgent so if any one of u guys could help me step by step . How to insert and retrieve my doc and pdf files in and from database.
    I'll be highly thankful to you.
    Regards

    The DBMS_LOB package does not support writing of data from BLOBS to the filesystem.
    An export method is defined for the intermedia doc type.
    NOTE: look at the notes and make sure the correct permissions are granted to the user for this method to work. This is in the 8.1.7 documentation which is not on OTN at this time...
    However, the intermedia does have an export method that was implemented as a java stored procedure.
    http://otn.oracle.com/doc/oracle8i_816/inter.816/relational_interface/mm_relat.htm#1078905
    You can write your own java stored procedure to write the file, place the document in an intermedia doc type and use the export method, or use the relational interface export() function.

  • Any help regarding iphone 4 and locks with o2

    any help regarding iphone 4 and locks with o2
    i just got my second hand iphone4
    and a friend of a friend said it was factory unlocked
    and received txt from o2 saying it was unlocked
    however when i got home i put my micro sim into it
    and
    itunes said
    "this sim card appears to be unsupported" or something similer
    it is factory unlocked because the model number in the settings is
    MC603B
    i rang o2 to ask for unlock. gave them the imei code and they said they have to send the request off to apple for a code

    i rang o2 to ask for unlock. gave them the imei code and they said they have to send the request off to apple for a code
    Obviously the iPhone was/is not unlocked or this would not be required, and there is your answer, which can take up to two weeks.

  • Sale registers and purchase registers

    can anybody help me to know wat do u mean by sales registers and purchase registers.im new to abap and is struggling to understand the flow of there purchase orders and sale orders  and registers.
    im writing a report program where im printing  both sales and purchase registers for a particular period.
    regards...
    Ajith.

    i a sending u the code for sale sregister give reward points if helpful
    Program ID       : zsales_register
    Transaction Code : *
    Author           : Pinak Pani Chaudhuri
    Description      : Sales Register Report
    Project          : SSSL
    Version          : 1.0
    Change History
        Date   |   Programmer   |   Corr. #   |   Description
               |                |             |
               |                |             |
    REPORT  ZSALES_REGISTER
               LINE-SIZE 351
               NO STANDARD PAGE HEADING
               LINE-COUNT 65
               MESSAGE-ID 00.
           TABLES                                                        *
    TABLES: VBRK,                          "Billing Document: Header Data
            VBRP,                          "Billing Document: Item Data
           BKPF,                          "Accounting document header
          t685t,                         "Conditions: Types: Texts
            KNA1,
            KONV.                          "Conditions (Procedure Data)
           INTERNAL TABLES AND STRUCTURES                                *
    *internal table for item data
    DATA: BEGIN OF IT_ITEM OCCURS 0,
             BUDAT LIKE BKPF-BUDAT,
             BELNR LIKE BKPF-BELNR,
             POSNR LIKE VBRP-POSNR,
             VBELN LIKE VBRK-VBELN,
             WERKS LIKE VBRP-WERKS,
             KUNAG LIKE VBRK-KUNAG,
             KNUMV LIKE VBRK-KNUMV,
             NAME1 LIKE KNA1-NAME1,
             BASE_PRICE LIKE KONV-KWERT,
             BAS_EXC_DUTY_RATE LIKE KONV-KBETR,
             BAS_EXC_DUTY_AMT LIKE KONV-KWERT,
             ECESS_RATE LIKE KONV-KBETR,
             ECESS_AMT LIKE KONV-KWERT,
             LST_VAT_RATE LIKE KONV-KBETR,
             LST_VAT_AMT LIKE KONV-KWERT,
             SUBCHARGE_RATE LIKE KONV-KBETR,
             SUBCHARGE_AMT LIKE KONV-KWERT,
             CST_RATE LIKE KONV-KBETR,
             CST_AMT LIKE KONV-KWERT,
             OTHERS LIKE KONV-KWERT,
             V_VAL LIKE KONV-KWERT,
             TOTAL LIKE KONV-KWERT,
          END OF IT_ITEM.
    *internal table to fetch customer name
    DATA: BEGIN OF IT_KNA1 OCCURS 0,
             NAME1 LIKE KNA1-NAME1,
          END OF IT_KNA1.
    *internal table for price data
    DATA: BEGIN OF IT_KONV OCCURS 0,
             KNUMV LIKE KONV-KNUMV,
             KPOSN LIKE KONV-KPOSN,
             KSCHL LIKE KONV-KSCHL,
             KBETR LIKE KONV-KBETR,
             KWERT LIKE KONV-KWERT,
          END OF IT_KONV.
    *Work area fro item internal table
    *data wa_item like it_item.
    *VARIABLES
    DATA: V_VBELN         LIKE VBUK-VBELN,
          V_VAL           LIKE KONV-KWERT,
          TOTAL           LIKE KONV-KWERT,
          V_PR00           LIKE KONV-KWERT,
          V_JEX2           LIKE KONV-KWERT,
          V_JCES           LIKE KONV-KWERT,
          V_JIN2_JIN6           LIKE KONV-KWERT,
          V_ZLSR           LIKE KONV-KWERT,
          V_JIN1           LIKE KONV-KWERT,
          V_OTHERS           LIKE KONV-KWERT,
          V_KSCHL LIKE KONV-KSCHL,
          V_TEMPVAL(15),
          V_BASIC_PRICE    LIKE KONV-KBETR,
          V_REPID   LIKE  SY-REPID.        "For report id
    *SELECTION SCREEN DEFINITIONS
      SELECTION-SCREEN BEGIN OF BLOCK B1.
      SELECTION-SCREEN BEGIN OF BLOCK B WITH FRAME TITLE TEXT-000.
      PARAMETERS: P_COMCOD LIKE BKPF-BUKRS." OBLIGATORY.
      SELECT-OPTIONS: S_DATE FOR BKPF-BUDAT." OBLIGATORY.
      SELECTION-SCREEN END OF BLOCK B .
      SELECTION-SCREEN BEGIN OF BLOCK B2 WITH FRAME TITLE TEXT-001.
      SELECTION-SCREEN BEGIN OF LINE.
      PARAMETERS: P_EX1 RADIOBUTTON GROUP RAD1.
      SELECTION-SCREEN COMMENT 5(50) TEXT-EX1.
      SELECTION-SCREEN END OF LINE.
      SELECTION-SCREEN SKIP 1.
      SELECTION-SCREEN BEGIN OF LINE.
      PARAMETERS: P_EX2 RADIOBUTTON GROUP RAD1 DEFAULT 'X'.
      SELECTION-SCREEN COMMENT 5(50) TEXT-EX2.
      SELECTION-SCREEN END OF LINE.
      SELECTION-SCREEN SKIP 1.
      SELECTION-SCREEN END OF BLOCK B2 .
      SELECTION-SCREEN END OF BLOCK B1.
    INITIALIZATION
      INITIALIZATION.
      V_REPID = SY-REPID.
    p_ex1 = 'X'.
    IF P_EX1 = 'X'.
        SELECTION-SCREEN BEGIN OF BLOCK B3 WITH FRAME TITLE TEXT-002.
        PARAMETERS: P_PLANT LIKE VBRP-WERKS." OBLIGATORY.
        SELECTION-SCREEN END OF BLOCK B3 .
    ENDIF.
    *START-OF-SELECTION
    START-OF-SELECTION.
      PERFORM GET_DATA.
    *END-OF-SELECTION
      IF NOT IT_ITEM[] IS INITIAL.
        PERFORM DISPLAY_DATA.
      ELSEif p_plant is initial.
        if p_ex1 = 'X'.
         MESSAGE S011(ZMSG).
        else.
         MESSAGE S012(ZMSG).
        endif.
      else.
       MESSAGE S012(ZMSG).
      ENDIF.
    *&      Form  GET_DATA
          text
    form for get data
    FORM GET_DATA.
    *Getting BKPF-VBRK-VBRP details based on selection values
      IF P_EX1 = 'X' .
        SELECT ABUKRS ABUDAT ABLART ABELNR AAWTYP AAWKEY
               BPOSNR BWERKS B~VBELN
               CKUNAG CVBTYP C~KNUMV
               INTO  CORRESPONDING FIELDS OF TABLE IT_ITEM
               FROM BKPF AS A
               JOIN VBRP AS B
               ON AAWKEY = BVBELN
               JOIN VBRK AS C
               ON BVBELN = CVBELN
               WHERE A~BUKRS = P_COMCOD AND
                     A~BUDAT IN S_DATE AND
                     A~AWTYP = 'VBRK' AND
                     ( A~BLART = 'DR' OR
                       A~BLART = 'DG' OR
                       A~BLART = 'DA' ) AND
                     B~WERKS = P_PLANT.
      ELSEIF P_EX2 = 'X'.
        SELECT ABUKRS ABUDAT ABLART ABELNR AAWTYP AAWKEY
               BPOSNR BWERKS B~VBELN
               CKUNAG CVBTYP C~KNUMV
               INTO  CORRESPONDING FIELDS OF TABLE IT_ITEM
               FROM BKPF AS A
               JOIN VBRP AS B
               ON AAWKEY = BVBELN
               JOIN VBRK AS C
               ON BVBELN = CVBELN
               WHERE A~BUKRS = P_COMCOD AND
                     A~BUDAT IN S_DATE AND
                     A~AWTYP = 'VBRK' AND
                     ( A~BLART = 'DR' OR
                       A~BLART = 'DG' OR
                       A~BLART = 'DA' ).
      ENDIF.
    *Getting KNA1 details based on selection values
      LOOP AT IT_ITEM.
        SELECT SINGLE NAME1 FROM KNA1 INTO IT_KNA1
                            WHERE KUNNR = IT_ITEM-KUNAG.
        APPEND IT_KNA1.
        MOVE IT_KNA1-NAME1 TO IT_ITEM-NAME1.
        MODIFY IT_ITEM.
        CLEAR IT_ITEM.
        CLEAR IT_KNA1.
      ENDLOOP.
    if not it_item[] is initial.
    *Getting pricing for the seleted values
      SELECT KNUMV KPOSN KSCHL KBETR KWERT
             FROM KONV
             INTO TABLE IT_KONV
             FOR ALL ENTRIES IN IT_ITEM
             WHERE KNUMV = IT_ITEM-KNUMV
             AND   KPOSN = IT_ITEM-POSNR.
      LOOP AT IT_KONV.
        IT_KONV-KBETR = IT_KONV-KBETR / 10.
        MODIFY IT_KONV.
        CLEAR IT_KONV.
      ENDLOOP.
    *Filling item table for rest
      PERFORM GET_VALUE.
    ENDFORM.
          FORM DISPLAY_DATA                                             *
      FORM TO DISPLAY OUTPUT                                            *
    TOP-OF-PAGE.
      WRITE: / 'The Sales Register from ', S_DATE-LOW, 'to', S_DATE-HIGH,
               P_COMCOD, P_PLANT.
      SKIP 2.
          FORM DISPLAY_DATA                                             *
    FORM DISPLAY_DATA.
      SORT IT_ITEM BY WERKS VBELN.
      IF P_EX1 = 'X'.
        WRITE: / 'posting date', 16 'billing doc', 30 'sold to party',
        55 'Name', 87 'base price',
        104 'basic exc rate', 122 'basic exc amt', 140 'ecess rate',
        161 'ecess amt', 175 'lst/vat rate', 192 'lst/vat amt',
        209 'surcharge rate', 227 'surcharge amt', 246 'cst rate',
        266 'cst amt', 284 'OTHERS', 301 'sub total'.
        WRITE: SY-ULINE.
        LOOP AT IT_ITEM.
          WRITE: / IT_ITEM-BUDAT, 15 SY-VLINE, 16 IT_ITEM-VBELN,
          30 SY-VLINE, 31 IT_ITEM-KUNAG, 45 SY-VLINE,
          46 IT_ITEM-NAME1, 80 SY-VLINE, 81 IT_ITEM-BASE_PRICE, 98 SY-VLINE,
          99 IT_ITEM-BAS_EXC_DUTY_RATE, 115 SY-VLINE,
          116 IT_ITEM-BAS_EXC_DUTY_AMT, 133 SY-VLINE,
          134 IT_ITEM-ECESS_RATE, 150 SY-VLINE, 151 IT_ITEM-ECESS_AMT,
          168 SY-VLINE, 169 IT_ITEM-LST_VAT_RATE, 185 SY-VLINE,
          186 IT_ITEM-LST_VAT_AMT, 203 SY-VLINE,
          204 IT_ITEM-SUBCHARGE_RATE, 221 SY-VLINE,
          222 IT_ITEM-SUBCHARGE_AMT, 239 SY-VLINE, 240 IT_ITEM-CST_RATE,
          256 SY-VLINE, 257 IT_ITEM-CST_AMT, 274 SY-VLINE,
          275 IT_ITEM-OTHERS, 292 SY-VLINE,
          293 IT_ITEM-V_VAL, 317 SY-VLINE, 318 IT_ITEM-WERKS,
          325 SY-VLINE, 326 IT_ITEM-BELNR.
    *write: sy-uline.
        ENDLOOP.
        WRITE: SY-ULINE.
        SKIP 1.
        WRITE:  81 V_PR00, 116 V_JEX2, 151 V_JCES, 186 V_JIN2_JIN6,
                221 V_ZLSR, 256 V_JIN1, 273 V_OTHERS, 291 IT_ITEM-TOTAL.
      ELSEIF P_EX2 = 'X'.
        SORT IT_ITEM BY WERKS VBELN.
        WRITE: / 'plant', 16 'billing doc', 35 'base price',
        55 'basic exc rate', 75 'basic exc amt', 95 'ecess rate',
        115 'ecess amt', 135 'lst/vat rate', 155 'lst/vat amt',
        175 'surcharge rate', 195 'surcharge amt', 215 'cst rate',
        235 'cst amt', 255 'OTHERS', 275 'sub total'.
        WRITE: SY-ULINE.
        LOOP AT IT_ITEM.
          WRITE: / IT_ITEM-WERKS, 15 SY-VLINE, 16 IT_ITEM-VBELN,
          35 SY-VLINE, 36 IT_ITEM-BASE_PRICE, 55 SY-VLINE,
          56 IT_ITEM-BAS_EXC_DUTY_RATE, 75 SY-VLINE,
          76 IT_ITEM-BAS_EXC_DUTY_AMT, 95 SY-VLINE,
          96 IT_ITEM-ECESS_RATE, 115 SY-VLINE, 116 IT_ITEM-ECESS_AMT,
          135 SY-VLINE, 136 IT_ITEM-LST_VAT_RATE, 155 SY-VLINE,
          156 IT_ITEM-LST_VAT_AMT, 175 SY-VLINE,
          176 IT_ITEM-SUBCHARGE_RATE, 195 SY-VLINE,
          196 IT_ITEM-SUBCHARGE_AMT, 215 SY-VLINE, 216 IT_ITEM-CST_RATE,
          235 SY-VLINE, 236 IT_ITEM-CST_AMT, 255 SY-VLINE,
          256 IT_ITEM-OTHERS, 275 SY-VLINE,
          276 IT_ITEM-V_VAL, 295 SY-VLINE.
    *write: sy-uline.
        ENDLOOP.
        WRITE: SY-ULINE.
        SKIP 1.
        WRITE:  36 V_PR00, 76 V_JEX2, 116 V_JCES, 156 V_JIN2_JIN6,
                196 V_ZLSR, 236 V_JIN1, 256 V_OTHERS, 276 IT_ITEM-TOTAL.
      ENDIF.
    ENDFORM.                               " DISPLAY_DATA
          FORM GET_VALUE                                                *
    TO FETCH THE PRICE FROM IT_KNA1 DEPENDING UPON CONDITION TYPE      *
    FORM GET_VALUE.
    *Getting BASE VALUE
    *clear total.
      LOOP AT IT_ITEM.
        PERFORM GET_PRICE.
      ENDLOOP.
    ENDFORM.
          FORM GET_PRICE                                                *
    FORM GET_PRICE.
      CLEAR V_VAL.
      LOOP AT IT_KONV WHERE KNUMV = IT_ITEM-KNUMV.
                                           " and   kposn = it_item-posnr.
        V_KSCHL = IT_KONV-KSCHL.
        CASE V_KSCHL.
    *For basic value
          WHEN 'PR00'.
            IT_ITEM-BASE_PRICE = IT_ITEM-BASE_PRICE + IT_KONV-KWERT.
            V_VAL = V_VAL + IT_KONV-KWERT.
            V_PR00 = V_PR00 + IT_KONV-KWERT.
          WHEN 'JEX2'.
            MOVE IT_KONV-KBETR TO IT_ITEM-BAS_EXC_DUTY_RATE.
        IT_ITEM-BAS_EXC_DUTY_AMT = IT_ITEM-BAS_EXC_DUTY_AMT + IT_KONV-KWERT.
            V_VAL = V_VAL + IT_KONV-KWERT.
            V_JEX2 = V_JEX2 + IT_KONV-KWERT.
          WHEN 'JCES'.
            IT_ITEM-ECESS_AMT = IT_ITEM-ECESS_AMT + IT_KONV-KWERT.
            V_VAL = V_VAL + IT_KONV-KWERT.
            V_JCES = V_JCES + IT_KONV-KWERT.
          WHEN 'JIN2'.
            IT_ITEM-LST_VAT_AMT = IT_ITEM-LST_VAT_AMT + IT_KONV-KWERT.
            V_VAL = V_VAL + IT_KONV-KWERT.
            V_JIN2_JIN6 = V_JIN2_JIN6 + IT_KONV-KWERT.
          WHEN 'JIN6'.
            IT_ITEM-LST_VAT_AMT = IT_ITEM-LST_VAT_AMT + IT_KONV-KWERT.
            V_VAL = V_VAL + IT_KONV-KWERT.
            V_JIN2_JIN6 = V_JIN2_JIN6 + IT_KONV-KWERT.
          WHEN 'ZLSR'.
            IT_ITEM-SUBCHARGE_AMT = IT_ITEM-SUBCHARGE_AMT + IT_KONV-KWERT.
            V_VAL = V_VAL + IT_KONV-KWERT.
            V_ZLSR = V_ZLSR + IT_KONV-KWERT.
          WHEN 'JIN1'.
            MOVE IT_KONV-KBETR TO IT_ITEM-CST_RATE.
            IT_ITEM-CST_AMT = IT_ITEM-CST_AMT + IT_KONV-KWERT.
            V_VAL = V_VAL + IT_KONV-KWERT.
            V_JIN1 = V_JIN1 + IT_KONV-KWERT.
          WHEN OTHERS.
            IT_ITEM-OTHERS = IT_ITEM-OTHERS + IT_KONV-KWERT.
            V_VAL = V_VAL + IT_KONV-KWERT.
            V_OTHERS = V_OTHERS + IT_KONV-KWERT.
        ENDCASE.
      ENDLOOP.
      TOTAL = TOTAL + V_VAL.
      MOVE V_VAL TO IT_ITEM-V_VAL.
      MOVE TOTAL TO IT_ITEM-TOTAL.
    v_pr00 = v_pr00 + it_item-base_price.
      MODIFY IT_ITEM.
      CLEAR IT_ITEM.
    ENDFORM.                               " GET_PRICE

  • How to download material sales text and purchase order text information

    Here is situation:
    goto MM03 transaction,
    Take any material -- and select below views
    1. sales text
    2. purchase order text
    i have to write the download program with the sales text and purchasing text information of all the materials.
    could you pls tell me in which table I will get all the above sales text and purchase order text infrmation.
    I think it will store in standard text. I checked STXH table also for getting information text object, text id, text name, language, etc.
    If anybody knows .. please share.
    Thanks in advance.
    Regards
    Raghu

    Declare internal tables as follows: - An example
    TYPES: BEGIN OF TY_PO_LINES,
         INCLUDE STRUCTURE TLINE.
         END OF TY_PO_LINES,
         TY_PO_LINES_T TYPE STANDARD TABLE OF TY_PO_LINES.
    TYPES: BEGIN OF TY_PO_TEXT,
           TDOBJECT TYPE TDOBJECT
           TDNAME TYPE TDOBNAME,
           TDID TYPE TDID,
           SPRAS TYPE SPRAS,
         TDLINES TYPE TY_PO_LINES OCCURS 0,
         END OF TY_PO_TEXT,
         PO_TEXT_T TYPE STANDARD TABLE OF TY_PO_TEXT.
    DATA: PO_TEXT TYPE TY_PO_TEXT_T
    PO text:
    Looping at your internal table which consists of PO number,
    SELECT TDID TDSPRAS FROM STXH INTO A INTERNAL TABLE say PO_TEXT
    TDOBJECT = EKKO "PO Header Text
    TDNAME = PO NUMBER
    SELECT TDID TDSPRAS FROM STXH INTO A INTERNAL TABLE say PO_TEXT
    TDOBJECT = EKPO "PO line item text
    TDNAME = PO NUMBER
    ENDLOOP
    Looping at PO_TEXT
    CALL FUNCTION 'READ_TEXT'
      EXPORTING
         ID = PO_TEXT-TDID
         LANGUAGE = PO_TEXT-TDSPRAS
         NAME = PO_TEXT-TDNAME
         OBJECT = PO_TEXT-TDOBJECT
      TABLES
         LINES = PO_TEXT-TDLINES
    ENDLOOP
    Follow the same above logic for material with suitable TDID you need to extract
    Hope this helps,
    SKJ

  • Standard program for unbilled  sales orders and purchase order items

    Can anyone advice,  is there any standard program which gives the unbilled sales order and purchase order items.

    Hi,
    Use the T.Code VA05/VA05n for list of all the sales order s which are open.
    Take T.Code:VA05N
    Select the option "Open Sales Orders".
    Execute.
    It will give you all the orders which are open.
    The standard program for this is:"SD_SALES_ORDERS_VIEW".
    The same you can also get by using the T.Code VF04.
    In this if your scenario is "Order related",then select the option "Order related".
    Else if it is "Delivery related",then select "Delivery-related".
    Execute.
    The standatd program for this is:"SDBILLDL".
    T.Code:VF05/VF05n is for list of billing documents.
    Regards,
    Krishna.
    Note:Pls search the forum.

  • Sales text and  Purchase Order Text

    Hi,
    in what tables are stored Sales text and Purchase Order Text of the material master ?
    Best Regards

    Hi
    All long text is stored in STXH and STXL.
    Object is MATERIAL.
    Text-Id for basic data text is GRUN
    Text-Id for purchase order text is BEST
    For sales order text it is text object MVKE with text-id 0001
    Go to SE37 function builder. Enter READ_TEXT and do a single test ( F8 )
    Enter your parameters and execute. Example below.
    NAME is a comibation of materialnumber (00000000008000000)WITH leading zeros
    if numeric and sales org (1000) plus distribution channel (10)
    Import parameters - Value
    CLIENT - 010
    ID - 0001
    LANGUAGE - E
    NAME - 000000000008000000100010
    OBJECT - MVKE
    ARCHIVE_HANDLE - 0
    LOCAL_CAT
    Just for future reference with regards to getting text id's etc.
    eg: PO texts.
    --> Go into the material master PO text
    --> Double click into the required text.
    --> Click the "GO TO" menu option.
    --> click Header.
    and all the info you need is there.
    Thanks..

  • Sales Order and Purchase Order linkage in tables  for third party orders

    Hi all ,
    For third party process order s
    In which table can I find the Sales order and Purchase Order linkage .
    thanks
    ksr

    Hi Sridhar ,
    Refer Table EKKN for PO and SO Linkage.
    Table EBKN for PR and SO Linkage.
    Regards
    Ramesh Ch

  • Uploading sales text and Purchase order text for material master

    Hi,
      I have created, material master with LSMW  byt not updated SALES TEXT and Purchase order text with LSMW  now i want to uplaod the sales and po text for material master can you give some link or ref. code to upload the text i have near 1000 items for which i want to uplaod text  when i have done the recording with SHDB  i have not found filed in recording.
    regards,
      zafar

    Hi,
    I have made the code in se38
    as below but still it is not working
    REPORT  ZTEST_TEXT.
      data: headerl like thead occurs 0 with header line.
      data itab3 like tline occurs 0 with header line.
    headerl-tdobject = 'MATERIAL'.
    headerl-tdname = '00000000000LSMW123'.          "(Material : 000000000300000560, Sorg : 0001, Dist channel: 01)
    headerl-tdid  = 'BEST'.
    headerl-tdspras = 'E'.
    append headerl.
    move '*' to itab3-tdformat.
    move 'Testing PO text' to itab3-tdline.
    append itab3.
    call function 'SAVE_TEXT'
      exporting
        header                = headerl
      insert                = ' '
       savemode_direct       = ' '
      tables
        lines                 = itab3
    exceptions
       id                    = 1
       language              = 2
       name                  = 3
       object                = 4
       others                = 5.
       IF SY-SUBRC = 0.
         CALL FUNCTION 'COMMIT_TEXT'
           EXPORTING
                OBJECT   = headerl-tdobject
                NAME     = headerl-tdname.
       ENDIF.
       break-point.
    regards,
    zafar

  • Difference Between Sales Org and Purchasing Org

    Hi,
    What is the difference between a sales organisation and purchasing organisation?
    Regards,
    Tracy

    Sales organization is responsible for selling the goods.
    Purchasing organization is responsible for purchasing the raw material or goods for the company.

  • Relationship between a Sales Order and Purchase Order

    Dear All,
    Can we create a relationship between a Sales Order and Purchase Order.? If yes, then how can we do that.
    or how can we relate supply and demand..
    Please update...
    many thanks in advance...

    It's easy
    refere to my blog for complete Query between
    OM - Req and POs.
    http://eoracleapps.blogspot.com/2009/04/oracle-order-to-cash-queries.html

  • Link between sales order and purchase order

    plz explain the link between the sales order and purchase request

    Hi Javed,
    Their are 2 scenario for this.
    1) You create a sales order and the system automatically creates a PR and then you convert to PO.This is third party sales.In PO account assignment the sales order number is directly copied to the PR And PO.
    2) You create a PO wrt to SO .The goods received will be reserved for that SO. third party PO Vendor will directly deliver the goods to customer.The delivery address is copied from sales order.
    Techincally
    EKKN table you have sales order and Item fields (VBELN and POSNR)
    using these fields search for the deliveries in LIPS table
    EKKN-VBELN = LIPS-VGBEL and
    EKKN-POSNR = LIPS-VGPOS
    Edited by: Raj on Jun 19, 2008 6:58 PM

  • Urgent help regarding iPhone 4 required

    Urgent help needed
    Hey guys, i just bought my new iPhone 4 16gb, factory unlocked.
    I just gave it to my uncle for a day as he wanted to use it,Bt I realized,
    Dat he is a super rough handler.
    He presses the touchscreen very very hard,he actually bangs his fingers
    On the screen.
    I wanted to ask whether anything would happen to the phone's touch in the future
    Due to extreme hard pressing of the screen ?(as in whether it would hamper the phones touch in future,If pressed hard ?)
    I know dis question seems to be very stuppid,but I am concerned
    As i jst Spent 40000 on it and I want it to work perfectly fine,atleast fr 2 yrs !
    Pls pls rply guys,plz m extremely worried.
     

    just tell him to give you the phone back and you won't have to worry about it. i have 1 nephew that somehow breaks everything he touches, whenever he asks to see my phone i just say "sorry, no".

  • Need Urgent Help Regarding Adobe Configuration

    Hi,
    I have been configured Adobs, i have been installed ADS,ACf... everything is perfect.
    But when i exceute my application, i m getting below error.
    kindly put some light on it. Its urgent....
    500   Internal Server Error
    Web Dynpro Container/SAP J2EE Engine/6.40
    Failed to process request. Please contact your system administrator.
    [Hide]
    Error Summary
    While processing the current request, an exception occured which could not be handled by the application or the framework.
    If the information contained on this page doesn't help you to find and correct the cause of the problem, please contact your system administrator. To facilitate analysis of the problem, keep a copy of this error page. Hint: Most browsers allow to select all content, copy it and then paste it into an empty document (e.g. email or simple text file).
    Root Cause
    The initial exception that caused the request to fail, was:
       com.sap.tc.webdynpro.pdfobject.core.PDFObjectRuntimeException: Processing exception during a "UsageRights" operation. Request start time: Tue Mar 11 19:37:23 IST 2008 com.adobe.ProcessingError: Credential login error while applying usage rights to PDF: C:\WINDOWS\Temp\adobewa_J2E_13496050\DM5449164447389649768.dir\DM3764139759016281423.tmp Specific error information: $$$/PDF/PDFCredentialLoginFailure2=error while logging into credential ^0 GeneralError: Operation failed. SecurityHandler.login:-1: The Digital ID specified is unknown. General error information: IDL:com/adobe/document/pdf/CredentialLoginFailure:1.0 Exception Stack Trace: com.adobe.ProcessingError: Credential login error while applying usage rights to PDF: C:\WINDOWS\Temp\adobewa_J2E_13496050\DM5449164447389649768.dir\DM3764139759016281423.tmp Specific error information: $$$/PDF/PDFCredentialLoginFailure2=error while logging into credential ^0 GeneralError: Operation failed. SecurityHandler.login:-1: The Digital ID specified is unknown. General error information: IDL:com/adobe/document/pdf/CredentialLoginFailure:1.0 at com.adobe.ads.request.UsageRights.execute(Unknown Source) at com.adobe.BaseADSRequest.doWork(Unknown Source) at com.adobe.AdobeDocumentServicesWorker.execute(Unknown Source) at com.adobe.AdobeDocumentServicesEJB.processRequest(Unknown Source) at com.adobe.AdobeDocumentServicesEJB.rpData(Unknown Source) at com.adobe.AdobeDocumentServicesLocalLocalObjectImpl0.rpData(AdobeDocumentServicesLocalLocalObjectImpl0.java:120) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:324) at com.sap.engine.services.webservices.runtime.EJBImplementationContainer.invokeMethod(EJBImplementationContainer.java:126) at com.sap.engine.services.webservices.runtime.RuntimeProcessor.process(RuntimeProcessor.java:157) at com.sap.engine.services.webservices.runtime.RuntimeProcessor.process(RuntimeProcessor.java:79) at com.sap.engine.services.webservices.runtime.servlet.ServletDispatcherImpl.doPost(ServletDispatcherImpl.java:92) at SoapServlet.doPost(SoapServlet.java:51) at javax.servlet.http.HttpServlet.service(HttpServlet.java:760) at javax.servlet.http.HttpServlet.service(HttpServlet.java:853) at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:390) at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:264) at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:347) at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:325) at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:887) at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:241) at com.sap.engine.services.httpserver.server.Client.handle(Client.java:92) at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:148) at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33) at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41) at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37) at java.security.AccessController.doPrivileged(Native Method) at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100) at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170) Caused by: com.adobe.document.pdf.CredentialLoginFailure: IDL:com/adobe/document/pdf/CredentialLoginFailure:1.0 at com.adobe.document.pdf.CredentialLoginFailureHelper.read(CredentialLoginFailureHelper.java:67) at com.adobe.document.pdf._PDFDocumentStub.setUsageRights(_PDFDocumentStub.java:284) at com.adobe.EJB_PDFAgent.setUsageRights(Unknown Source) ... 31 more
        at com.sap.tc.webdynpro.pdfobject.core.PDFObject.doSoapCall(PDFObject.java:374)
        at com.sap.tc.webdynpro.pdfobject.core.PDFObject.render(PDFObject.java:3710)
        at com.sap.tc.webdynpro.clientserver.adobe.pdfdocument.base.core.PDFDocumentRenderHandler.handle(PDFDocumentRenderHandler.java:139)
        at com.sap.tc.webdynpro.clientserver.adobe.pdfdocument.base.core.PDFDocumentProcessor.process(PDFDocumentProcessor.java:52)
        at com.sap.tc.webdynpro.clientserver.adobe.pdfdocument.base.core.PDFDocumentInteractiveFormHandlingContext.execute(PDFDocumentInteractiveFormHandlingContext.java:98)
        ... 31 more
    See full exception chain for details.
    System Environment
    Client
    Web Dynpro Client Type     HTML Client
    User agent     Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.1)
    Version     null
    DOM version     null
    Client Type     msie6
    Client Type Profile     ie6
    ActiveX     enabled
    Cookies     enabled
    Frames     enabled
    Java Applets     enabled
    JavaScript     enabled
    Tables     enabled
    VB Script     enabled
    Server
    Web Dynpro Runtime     Vendor: SAP, build ID: 7.0009.20060804145649.0000 (release=645_VAL_REL, buildtime=2006-08-05:15:08:24[UTC], changelist=413534, host=pwdfm101), build date: Mon Mar 10 16:04:58 IST 2008
    J2EE Engine     No information available
    Java VM     Java HotSpot(TM) Server VM, version:1.4.2_09-b05, vendor: Sun Microsystems Inc.
    Operating system     Windows XP, version: 5.1, architecture: x86
    Session & Other
    Session Locale     en_US
    Time of Failure     Tue Mar 11 19:37:44 IST 2008 (Java Time: 1205244464171)
    Web Dynpro Code Generation Infos
    local/TutWD_OnlineInteractiveForm
    SapDictionaryGenerationCore     6.4015.00.0000.20050816175946.0000 (release=630_SP_REL, buildtime=2005-10-18:21:32:04[UTC], changelist=363484, host=PWDFM067.wdf.sap.corp)
    SapDictionaryGenerationTemplates     (unknown)
    SapGenerationFrameworkCore     6.4015.00.0000.20050816182950.0000 (release=630_SP_REL, buildtime=2005-10-18:21:25:55[UTC], changelist=363586, host=PWDFM067.wdf.sap.corp)
    SapIdeWebDynproCheckLayer     6.4015.00.0000.20051004171749.0000 (release=630_SP_REL, buildtime=2005-10-18:21:39:50[UTC], changelist=370226, host=PWDFM067.wdf.sap.corp)
    SapMetamodelCommon     6.4015.00.0000.20050614174642.0000 (release=630_SP_REL, buildtime=2005-10-18:21:26:39[UTC], changelist=353586, host=PWDFM067.wdf.sap.corp)
    SapMetamodelCore     6.4015.00.0000.20050614174642.0000 (release=630_SP_REL, buildtime=2005-10-18:21:26:32[UTC], changelist=353586, host=PWDFM067.wdf.sap.corp)
    SapMetamodelDictionary     6.4015.00.0000.20050517181523.0000 (release=630_SP_REL, buildtime=2005-10-18:21:29:35[UTC], changelist=347688, host=PWDFM067.wdf.sap.corp)
    SapMetamodelWebDynpro     6.4015.00.0000.20050816183746.0000 (release=630_SP_REL, buildtime=2005-10-18:21:36:24[UTC], changelist=363604, host=PWDFM067.wdf.sap.corp)
    SapWebDynproGenerationCTemplates     6.4015.00.0000.20051018175352.0000 (release=630_SP_REL, buildtime=2005-10-18:21:56:02[UTC], changelist=372496, host=PWDFM067)
    SapWebDynproGenerationCore     6.4015.00.0000.20051004171749.0000 (release=630_SP_REL, buildtime=2005-10-18:21:40:18[UTC], changelist=370226, host=PWDFM067.wdf.sap.corp)
    SapWebDynproGenerationTemplates     6.4015.00.0000.20051018175352.0000 (release=630_SP_REL, buildtime=2005-10-18:21:56:02[UTC], changelist=372496, host=PWDFM067)
    sap.com/tcwddispwda
    No information available     null
    sap.com/tcwdcorecomp
    No information available     null
    Detailed Error Information
    Detailed Exception Chain
    com.sap.tc.webdynpro.clientserver.adobe.pdfdocument.base.core.PDFDocumentRuntimeException: Failed to  UPDATEDATAINPDF
         at com.sap.tc.webdynpro.clientserver.uielib.adobe.impl.InteractiveForm.afterHandleActionEvent(InteractiveForm.java:396)
         at com.sap.tc.webdynpro.clientserver.cal.ClientApplication.afterApplicationModification(ClientApplication.java:1132)
         at com.sap.tc.webdynpro.clientserver.cal.ClientComponent.afterApplicationModification(ClientComponent.java:887)
         at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.doRespond(WindowPhaseModel.java:573)
         at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.processRequest(WindowPhaseModel.java:152)
         at com.sap.tc.webdynpro.clientserver.window.WebDynproWindow.processRequest(WebDynproWindow.java:335)
         at com.sap.tc.webdynpro.clientserver.cal.AbstractClient.executeTasks(AbstractClient.java:143)
         at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.doProcessing(ApplicationSession.java:299)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessingStandalone(ClientSession.java:711)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessing(ClientSession.java:665)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doProcessing(ClientSession.java:232)
         at com.sap.tc.webdynpro.clientserver.session.RequestManager.doProcessing(RequestManager.java:152)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doContent(DispatcherServlet.java:62)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doGet(DispatcherServlet.java:46)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:390)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:264)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:347)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:325)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:887)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:241)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:92)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:148)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    Caused by: com.sap.tc.webdynpro.clientserver.adobe.pdfdocument.base.core.PDFDocumentRuntimeException: PDFDocument Processor failed to process Render Request.
         at com.sap.tc.webdynpro.clientserver.adobe.pdfdocument.base.core.PDFDocumentProcessor.process(PDFDocumentProcessor.java:55)
         at com.sap.tc.webdynpro.clientserver.adobe.pdfdocument.base.core.PDFDocumentInteractiveFormHandlingContext.execute(PDFDocumentInteractiveFormHandlingContext.java:98)
         at com.sap.tc.webdynpro.clientserver.adobe.pdfdocument.base.core.PDFDocumentInteractiveFormHandlingContext.execute(PDFDocumentInteractiveFormHandlingContext.java:121)
         at com.sap.tc.webdynpro.clientserver.uielib.adobe.impl.InteractiveForm.afterHandleActionEvent(InteractiveForm.java:341)
         ... 29 more
    Caused by: com.sap.tc.webdynpro.pdfobject.core.PDFObjectRuntimeException:
    Processing exception during a "UsageRights" operation.
    Request start time: Tue Mar 11 19:37:23 IST 2008
    com.adobe.ProcessingError: Credential login error while applying usage rights to PDF: C:\WINDOWS\Temp\adobewa_J2E_13496050\DM5449164447389649768.dir\DM3764139759016281423.tmp
    Specific error information:
    $$$/PDF/PDFCredentialLoginFailure2=error while logging into credential ^0
    GeneralError: Operation failed.
    SecurityHandler.login:-1:
    The Digital ID specified is unknown.
    General error information:
    IDL:com/adobe/document/pdf/CredentialLoginFailure:1.0
    Exception Stack Trace:
    com.adobe.ProcessingError: Credential login error while applying usage rights to PDF: C:\WINDOWS\Temp\adobewa_J2E_13496050\DM5449164447389649768.dir\DM3764139759016281423.tmp
    Specific error information:
    $$$/PDF/PDFCredentialLoginFailure2=error while logging into credential ^0
    GeneralError: Operation failed.
    SecurityHandler.login:-1:
    The Digital ID specified is unknown.
    General error information:
    IDL:com/adobe/document/pdf/CredentialLoginFailure:1.0
         at com.adobe.ads.request.UsageRights.execute(Unknown Source)
         at com.adobe.BaseADSRequest.doWork(Unknown Source)
         at com.adobe.AdobeDocumentServicesWorker.execute(Unknown Source)
         at com.adobe.AdobeDocumentServicesEJB.processRequest(Unknown Source)
         at com.adobe.AdobeDocumentServicesEJB.rpData(Unknown Source)
         at com.adobe.AdobeDocumentServicesLocalLocalObjectImpl0.rpData(AdobeDocumentServicesLocalLocalObjectImpl0.java:120)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at com.sap.engine.services.webservices.runtime.EJBImplementationContainer.invokeMethod(EJBImplementationContainer.java:126)
         at com.sap.engine.services.webservices.runtime.RuntimeProcessor.process(RuntimeProcessor.java:157)
         at com.sap.engine.services.webservices.runtime.RuntimeProcessor.process(RuntimeProcessor.java:79)
         at com.sap.engine.services.webservices.runtime.servlet.ServletDispatcherImpl.doPost(ServletDispatcherImpl.java:92)
         at SoapServlet.doPost(SoapServlet.java:51)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:390)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:264)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:347)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:325)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:887)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:241)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:92)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:148)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    Caused by: com.adobe.document.pdf.CredentialLoginFailure: IDL:com/adobe/document/pdf/CredentialLoginFailure:1.0
         at com.adobe.document.pdf.CredentialLoginFailureHelper.read(CredentialLoginFailureHelper.java:67)
         at com.adobe.document.pdf._PDFDocumentStub.setUsageRights(_PDFDocumentStub.java:284)
         at com.adobe.EJB_PDFAgent.setUsageRights(Unknown Source)
         ... 31 more
         at com.sap.tc.webdynpro.pdfobject.core.PDFObject.doSoapCall(PDFObject.java:387)
         at com.sap.tc.webdynpro.pdfobject.core.PDFObject.render(PDFObject.java:3710)
         at com.sap.tc.webdynpro.clientserver.adobe.pdfdocument.base.core.PDFDocumentRenderHandler.handle(PDFDocumentRenderHandler.java:139)
         at com.sap.tc.webdynpro.clientserver.adobe.pdfdocument.base.core.PDFDocumentProcessor.process(PDFDocumentProcessor.java:52)
         ... 32 more
    Caused by: com.sap.tc.webdynpro.pdfobject.core.PDFObjectRuntimeException:
    Processing exception during a "UsageRights" operation.
    Request start time: Tue Mar 11 19:37:23 IST 2008
    com.adobe.ProcessingError: Credential login error while applying usage rights to PDF: C:\WINDOWS\Temp\adobewa_J2E_13496050\DM5449164447389649768.dir\DM3764139759016281423.tmp
    Specific error information:
    $$$/PDF/PDFCredentialLoginFailure2=error while logging into credential ^0
    GeneralError: Operation failed.
    SecurityHandler.login:-1:
    The Digital ID specified is unknown.
    General error information:
    IDL:com/adobe/document/pdf/CredentialLoginFailure:1.0
    Exception Stack Trace:
    com.adobe.ProcessingError: Credential login error while applying usage rights to PDF: C:\WINDOWS\Temp\adobewa_J2E_13496050\DM5449164447389649768.dir\DM3764139759016281423.tmp
    Specific error information:
    $$$/PDF/PDFCredentialLoginFailure2=error while logging into credential ^0
    GeneralError: Operation failed.
    SecurityHandler.login:-1:
    The Digital ID specified is unknown.
    General error information:
    IDL:com/adobe/document/pdf/CredentialLoginFailure:1.0
         at com.adobe.ads.request.UsageRights.execute(Unknown Source)
         at com.adobe.BaseADSRequest.doWork(Unknown Source)
         at com.adobe.AdobeDocumentServicesWorker.execute(Unknown Source)
         at com.adobe.AdobeDocumentServicesEJB.processRequest(Unknown Source)
         at com.adobe.AdobeDocumentServicesEJB.rpData(Unknown Source)
         at com.adobe.AdobeDocumentServicesLocalLocalObjectImpl0.rpData(AdobeDocumentServicesLocalLocalObjectImpl0.java:120)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at com.sap.engine.services.webservices.runtime.EJBImplementationContainer.invokeMethod(EJBImplementationContainer.java:126)
         at com.sap.engine.services.webservices.runtime.RuntimeProcessor.process(RuntimeProcessor.java:157)
         at com.sap.engine.services.webservices.runtime.RuntimeProcessor.process(RuntimeProcessor.java:79)
         at com.sap.engine.services.webservices.runtime.servlet.ServletDispatcherImpl.doPost(ServletDispatcherImpl.java:92)
         at SoapServlet.doPost(SoapServlet.java:51)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:390)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:264)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:347)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:325)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:887)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:241)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:92)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:148)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    Caused by: com.adobe.document.pdf.CredentialLoginFailure: IDL:com/adobe/document/pdf/CredentialLoginFailure:1.0
         at com.adobe.document.pdf.CredentialLoginFailureHelper.read(CredentialLoginFailureHelper.java:67)
         at com.adobe.document.pdf._PDFDocumentStub.setUsageRights(_PDFDocumentStub.java:284)
         at com.adobe.EJB_PDFAgent.setUsageRights(Unknown Source)
         ... 31 more
         at com.sap.tc.webdynpro.pdfobject.core.PDFObject.doSoapCall(PDFObject.java:374)
         ... 35 more
    Thanks in Advance,
    Amarnath

    Hi,
    I have the same problem.
    I installed on my notebook the Trail Versions of:
    SAP NetWeaver Application Server 7.00/Java AS 7.00
    SAP NetWeaver Developer Studio Version: 7.0.14
    Acrobat Reader 7.0.9
    Internet explorer 7.0.5730.13
    "ACF and actual credential
    I downloaded the latest credential file and configured it like in the guide. But if i run my dynpro application with an interactive Form UI, i still get this Exception:
    com.sap.tc.webdynpro.pdfobject.core.PDFObjectRuntimeException: Processing exception during a "UsageRights" operation. Request start time: Thu Mar 27 11:54:12 CET 2008 com.adobe.ProcessingException: Credential login error while applying usage rights to PDF: C:\usr\sap\J2E\tmp\adobewa_J2E_9974850\DM-8684076772818111858.dir\DM-7911804062774021804.tmp Specific error information: error while logging into credential ^0 GeneralError: Operation failed. SecurityHandler.login:-1: The digital ID specified is unknown. Exception Stack Trace: com.adobe.ProcessingException: Credential login error while applying usage rights to PDF: C:\usr\sap\J2E\tmp\adobewa_J2E_9974850\DM-8684076772818111858.dir\DM-7911804062774021804.tmp Specific error information: error while logging into credential ^0 GeneralError: Operation failed. SecurityHandler.login:-1: The digital ID specified is unknown. at com.adobe.ads.operation.UsageRights.execute(Unknown Source) at com.adobe.ads.operation.ADSOperation.doWork(Unknown Source) at com.adobe.ads.operation.CachableOperation.doWork(Unknown Source) at com.adobe.ads.request.Request.processOperations(Unknown Source) at com.adobe.ads.request.Request.process(Unknown Source) at com.adobe.AdobeDocumentServicesEJB.processRequest(Unknown Source) at com.adobe.AdobeDocumentServicesEJB.rpData(Unknown Source) at com.adobe.AdobeDocumentServicesLocalLocalObjectImpl0_0.rpData(AdobeDocumentServicesLocalLocalObjectImpl0_0.java:120) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:324) at com.sap.engine.services.webservices.runtime.EJBImplementationContainer.invokeMethod(EJBImplementationContainer.java:126) at com.sap.engine.services.webservices.runtime.RuntimeProcessor.process(RuntimeProcessor.java:157) at com.sap.engine.services.webservices.runtime.RuntimeProcessor.process(RuntimeProcessor.java:79) at com.sap.engine.services.webservices.runtime.servlet.ServletDispatcherImpl.doPost(ServletDispatcherImpl.java:92) at SoapServlet.doPost(SoapServlet.java:51) at javax.servlet.http.HttpServlet.service(HttpServlet.java:760) at javax.servlet.http.HttpServlet.service(HttpServlet.java:853) at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:401) at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266) at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:386) at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:364) at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:1039) at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:265) at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95) at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:175) at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33) at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41) at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37) at java.security.AccessController.doPrivileged(Native Method) at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:102) at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:172) Caused by: com.adobe.document.pdf.CredentialLoginFailure: IDL:com/adobe/document/pdf/CredentialLoginFailure:1.0 at com.adobe.document.pdf.CredentialLoginFailureHelper.read(CredentialLoginFailureHelper.java:67) at com.adobe.document.pdf._PDFDocumentStub.setUsageRights(_PDFDocumentStub.java:284) at com.adobe.ads.remote.EJB_PDFAgent.setUsageRights(Unknown Source) ... 33 more
    Whats the problem with the credential ? im trying to find a solution for this problem since 2 days.

  • URgent: Help regarding SQL Query

    Hi ,
    I need help regarding an sql query.
    Sample Data:
    ITEM_TYPE  ITEM_NUM   UNIT_PRICE QUANTITY       LINE_TOTAL
    ITEM         1            5         10           50
    ITEM         2           10         5            50
    ITEM         1            5          5            25
    ITEM                       2         10           20
    TAX                                               16.5
    TAX                                              -3.5I would like to display the data as
    ITEM_TYPE ITEM_NUM  UNIT_PRICE          QUANTITY          LINE_TOTAL
    ITEM       1          5                 15               145
                  2         10                  5 
                              2                 10
    TAX                                                          13.0
    Line_total = unit_price * QuantityThanks in Advance
    G.Vamsi Krishna
    Edited by: user10733211 on Aug 5, 2009 7:42 AM
    Edited by: user10733211 on Aug 5, 2009 7:49 AM
    Edited by: user10733211 on Aug 5, 2009 8:12 AM
    Edited by: user10733211 on Aug 5, 2009 8:22 AM
    Edited by: user10733211 on Aug 5, 2009 8:24 AM

    Hi,
    Try this, use some analytics:
    SQL> with t as (
      2  select 'item' item_type, 1 item_num, 5 unit_price, 10 quantity, 50 linetotal from dual union all
      3  select 'item', 2, 10, 5, 50 from dual union all
      4  select 'item', 1, 5, 5, 25 from dual union all
      5  select 'item', null, 2, 10, 20 from dual union all
      6  select 'tax', null, null, null, 16.5 from dual union all
      7  select 'tax', null, null, null, -3.5 from dual
      8  ) -- actual query starts here:
      9  select item_type
    10  ,      item_num
    11  ,      unit_price
    12  ,      sum_qty
    13  ,      case when sum_lt = lag(sum_lt) over ( order by item_type, item_num )
    14              then null
    15              else sum_lt
    16         end  sum_lt
    17  from ( select item_type
    18         ,      item_num
    19         ,      unit_price
    20         ,      quantity
    21         ,      sum(quantity) over  ( partition by item_type, item_num ) sum_qty
    22         ,      sum(linetotal) over ( partition by item_type )           sum_lt
    23         ,      row_number() over ( partition by item_type, item_num  order by item_type, item_num ) rn
    24         from   t
    25       )
    26  where rn=1;
    ITEM   ITEM_NUM UNIT_PRICE    SUM_QTY     SUM_LT
    item          1          5         15        145
    item          2         10          5
    item                     2         10
    tax                                           13
    4 rows selected.
    edit
    And please use the code tag, instead of clunging with concats.
    Read:
    http://forums.oracle.com/forums/help.jspa
    Edited by: hoek on Aug 5, 2009 5:15 PM
    edit2
    Also nulls for item_type:
    ops$xmt%OPVN> with t as (
      2  select 'item' item_type, 1 item_num, 5 unit_price, 10 quantity, 50 linetotal from dual union all
      3  select 'item', 2, 10, 5, 50 from dual union all
      4  select 'item', 1, 5, 5, 25 from dual union all
      5  select 'item', null, 2, 10, 20 from dual union all
      6  select 'tax', null, null, null, 16.5 from dual union all
      7  select 'tax', null, null, null, -3.5 from dual
      8  ) -- actual query starts here:
      9  select case when item_type = lag(item_type) over ( order by item_type, item_num )
    10              then null
    11              else sum_lt
    12         end  item_type
    13  ,      item_num
    14  ,      unit_price
    15  ,      sum_qty
    16  ,      case when sum_lt = lag(sum_lt) over ( order by item_type, item_num )
    17              then null
    18              else sum_lt
    19         end  sum_lt
    20  from ( select item_type
    21         ,      item_num
    22         ,      unit_price
    23         ,      quantity
    24         ,      sum(quantity) over  ( partition by item_type, item_num ) sum_qty
    25         ,      sum(linetotal) over ( partition by item_type )           sum_lt
    26         ,      row_number() over ( partition by item_type, item_num  order by item_type, item_num ) rn
    27         from   t
    28       )
    29  where rn=1;
    ITEM_TYPE   ITEM_NUM UNIT_PRICE    SUM_QTY     SUM_LT
           145          1          5         15        145
                        2         10          5
                                   2         10
            13                                          13
    4 rows selected.If you really need a space instead of nulls, then simply replace the nulls by a space....
    Edited by: hoek on Aug 5, 2009 5:18 PM

Maybe you are looking for