Give the exact solution

Hi ,,,
I want to use top-of -page in ALV for Hierarchical Lists.plz give me the right solution or coding for that.plz tell how we can use top-of -page in the ALV of hierarchical list.

REPORT  ZALV2 NO STANDARD PAGE HEADING
              MESSAGE-ID ZMSG.
**********************TABLES DECLARATION******************************
TABLES : VBAK,   " sales document header data
         VBAP.   " sales document item data
**********************TYPE POOL DECLARATION***************************
TYPE-POOLS : SLIS.
**********************TYPES DECLARATION*******************************
*TYPES : BEGIN OF TY_VBAK,
       VBELN TYPE VBAK-VBELN,
       ERDAT TYPE VBAK-ERDAT,
       ERNAM TYPE VBAK-ERNAM,
       AUART TYPE VBAK-AUART,
       NETWR TYPE VBAK-NETWR,
       END OF TY_VBAK.
*TYPES : BEGIN OF TY_VBAP,
       VBELN TYPE VBAP-VBELN,
       POSNR TYPE VBAP-POSNR,
       MATNR TYPE VBAP-MATNR,
       MEINS TYPE VBAP-MEINS,
       ZMENG TYPE VBAP-ZMENG,
       END OF TY_VBAP.
***********************INTERNAL TABLES********************************
*DATA :  IT_VBAK TYPE STANDARD TABLE OF TY_VBAK,
       IT_VBAP TYPE STANDARD TABLE OF TY_VBAP,
DATA :   IT_FIELDCAT TYPE SLIS_T_FIELDCAT_ALV.
" field catalog internal table
DATA : BEGIN OF IT_VBAK OCCURS 0,
" internal table for sales document header data
        VBELN TYPE VBAK-VBELN,        " sales document
        ERDAT TYPE VBAK-ERDAT,
        " date on which document was created
        ERNAM TYPE VBAK-ERNAM,
        " name of the person who created it
        AUART TYPE VBAK-AUART,        " sales document type
        NETWR TYPE VBAK-NETWR,
        " net value of the sales order in document currency
        END OF IT_VBAK.
DATA : BEGIN OF IT_VBAP OCCURS 0,
" internal table for sales document item data
        VBELN TYPE VBAP-VBELN,        " sales document
        POSNR TYPE VBAP-POSNR,        " sales document item
        MATNR TYPE VBAP-MATNR,        " material number
        MEINS TYPE VBAP-MEINS,        " base unit of measure
        ZMENG TYPE VBAP-ZMENG,        " target quantity in sales units
        END OF IT_VBAP.
DATA : TY_FIELDCAT TYPE SLIS_FIELDCAT_ALV,   " field catalog type
        TY_KEYINFO TYPE SLIS_KEYINFO_ALV.     " key information type
***********************VARIABLE DECLARATIONS**************************
DATA : REPID TYPE SY-REPID,                   " program name
       IT_HEADER TYPE SLIS_TABNAME,
       " table to store header data
       IT_ITEM TYPE SLIS_TABNAME.             " table to store item data
***********************SELECTION PARAMETERS***************************
SELECTION-SCREEN : BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-001.
SELECT-OPTIONS : S_VBELN FOR VBAK-VBELN.
" mulitple selection inputs for sales document
SELECTION-SCREEN : END OF BLOCK B1.
***********************INITIALIZATION*********************************
REPID = SY-REPID.
" variable having the program name
IT_HEADER = 'IT_VBAK'.
IT_ITEM = 'IT_VBAP'.
CLEAR TY_KEYINFO.
TY_KEYINFO-HEADER01 = 'VBELN'.
" comparing the keys and relating the header and item internal tables
TY_KEYINFO-ITEM01 = 'VBELN'.
TY_KEYINFO-HEADER02 = SPACE.
TY_KEYINFO-ITEM02 = 'POSNR'.
***********************VALIDATION CHECK*******************************
AT SELECTION-SCREEN.
PERFORM VAL_CHK.
" validation check for the input
**********************PROCESSING LOGIC********************************
START-OF-SELECTION.
PERFORM POP_HDR.
" populating the header data
PERFORM POP_ITEM.                             " populating the item data
PERFORM FIELD_CATALOG.
" mapping all the fields to the field catalog
PERFORM OUTPUT.
" displaying ouput using the function module
*&      Form  VAL_CHK
      text VALIDATION CHECK FOR SALES DOCUMENT
-->  p1        text
<--  p2        text
FORM VAL_CHK .
SELECT VBELN
       ERDAT
       ERNAM
       AUART
       NETWR UP TO 1 ROWS
       FROM VBAK
       INTO CORRESPONDING FIELDS OF TABLE IT_VBAK
       WHERE VBELN IN S_VBELN.
IF SY-SUBRC <> 0.
MESSAGE I000 WITH 'NO HEADER DETAILS EXIST'.
ELSE.
SELECT VBELN
              POSNR
              MATNR
              MEINS
              ZMENG
              FROM VBAP
              INTO CORRESPONDING FIELDS OF TABLE IT_VBAP
              WHERE VBELN IN S_VBELN.
IF SY-SUBRC <> 0.
MESSAGE I000 WITH 'NO ITEM DETAILS EXIST'.
ENDIF.
ENDIF.
CLEAR IT_VBAK.
CLEAR IT_VBAP.
ENDFORM.                    " VAL_CHK
*&      Form  POP_HDR
      text POPULATING THE HEADER DETAILS
-->  p1        text
<--  p2        text
FORM POP_HDR .
SELECT VBELN
       ERDAT
       ERNAM
       AUART
       NETWR
       FROM VBAK
       INTO CORRESPONDING FIELDS OF TABLE IT_VBAK
       WHERE VBELN IN S_VBELN.
ENDFORM.                    " POP_HDR
*&      Form  POP_ITEM
      text POPULATING THE ITEM DETAILS
-->  p1        text
<--  p2        text
FORM POP_ITEM .
SELECT VBELN
       POSNR
       MATNR
       MEINS
       ZMENG
       FROM VBAP
       INTO CORRESPONDING FIELDS OF TABLE IT_VBAP
       WHERE VBELN IN S_VBELN.
ENDFORM.                    " POP_ITEM
*&      Form  FIELD_CATALOG
      text
-->  p1        text
<--  p2        text
FORM FIELD_CATALOG .
TY_FIELDCAT-TABNAME = 'IT_VBAK'.
TY_FIELDCAT-FIELDNAME = 'VBELN'.
TY_FIELDCAT-SELTEXT_L = 'DOC NO'.
TY_FIELDCAT-COL_POS = 1.
TY_FIELDCAT-OUTPUTLEN = 10.
APPEND TY_FIELDCAT TO IT_FIELDCAT.
CLEAR TY_FIELDCAT.
TY_FIELDCAT-TABNAME = 'IT_VBAK'.
TY_FIELDCAT-FIELDNAME = 'ERDAT'.
TY_FIELDCAT-SELTEXT_L = 'DATE'.
TY_FIELDCAT-COL_POS = 2.
TY_FIELDCAT-OUTPUTLEN = 8.
TY_FIELDCAT-DATATYPE = 'DATS'.
APPEND TY_FIELDCAT TO IT_FIELDCAT.
CLEAR TY_FIELDCAT.
TY_FIELDCAT-TABNAME = 'IT_VBAK'.
TY_FIELDCAT-FIELDNAME = 'ERNAM'.
TY_FIELDCAT-SELTEXT_L = 'NAME'.
TY_FIELDCAT-COL_POS = 3.
TY_FIELDCAT-OUTPUTLEN = 12.
APPEND TY_FIELDCAT TO IT_FIELDCAT.
CLEAR TY_FIELDCAT.
TY_FIELDCAT-TABNAME = 'IT_VBAK'.
TY_FIELDCAT-FIELDNAME = 'AUART'.
TY_FIELDCAT-SELTEXT_L = 'DOC TYPE'.
TY_FIELDCAT-COL_POS = 4.
TY_FIELDCAT-OUTPUTLEN = 4.
APPEND TY_FIELDCAT TO IT_FIELDCAT.
CLEAR TY_FIELDCAT.
TY_FIELDCAT-TABNAME = 'IT_VBAP'.
TY_FIELDCAT-FIELDNAME = 'VBELN'.
TY_FIELDCAT-SELTEXT_L = 'DOC NO'.
TY_FIELDCAT-OUTPUTLEN = 10.
APPEND TY_FIELDCAT TO IT_FIELDCAT.
CLEAR TY_FIELDCAT.
TY_FIELDCAT-TABNAME = 'IT_VBAP'.
TY_FIELDCAT-FIELDNAME = 'POSNR'.
TY_FIELDCAT-SELTEXT_L = 'ITEM'.
TY_FIELDCAT-OUTPUTLEN = 6.
TY_FIELDCAT-DATATYPE = 'NUMC'.
APPEND TY_FIELDCAT TO IT_FIELDCAT.
CLEAR TY_FIELDCAT.
TY_FIELDCAT-TABNAME = 'IT_VBAP'.
TY_FIELDCAT-FIELDNAME = 'MATNR'.
TY_FIELDCAT-SELTEXT_L = 'MAT NO'.
TY_FIELDCAT-OUTPUTLEN = 18.
APPEND TY_FIELDCAT TO IT_FIELDCAT.
CLEAR TY_FIELDCAT.
TY_FIELDCAT-TABNAME = 'IT_VBAP'.
TY_FIELDCAT-FIELDNAME = 'MEINS'.
TY_FIELDCAT-SELTEXT_L = 'UNITS'.
TY_FIELDCAT-OUTPUTLEN = 3.
TY_FIELDCAT-DATATYPE = 'UNIT'.
APPEND TY_FIELDCAT TO IT_FIELDCAT.
CLEAR TY_FIELDCAT.
TY_FIELDCAT-TABNAME = 'IT_VBAP'.
TY_FIELDCAT-FIELDNAME = 'ZMENG'.
TY_FIELDCAT-SELTEXT_L = 'QUANT'.
TY_FIELDCAT-OUTPUTLEN = 13.
TY_FIELDCAT-DATATYPE = 'QUAN'.
APPEND TY_FIELDCAT TO IT_FIELDCAT.
CLEAR TY_FIELDCAT.
ENDFORM.                    " FIELD_CATALOG
*&      Form  OUTPUT
      text
-->  p1        text
<--  p2        text
FORM OUTPUT .
CALL FUNCTION 'REUSE_ALV_HIERSEQ_LIST_DISPLAY'
  EXPORTING
  I_INTERFACE_CHECK              = ' '
   I_CALLBACK_PROGRAM             = REPID
  I_CALLBACK_PF_STATUS_SET       = ' '
  I_CALLBACK_USER_COMMAND        = ' '
  IS_LAYOUT                      =
   IT_FIELDCAT                    = IT_FIELDCAT
  IT_EXCLUDING                   =
  IT_SPECIAL_GROUPS              =
  IT_SORT                        =
  IT_FILTER                      =
  IS_SEL_HIDE                    =
  I_SCREEN_START_COLUMN          = 0
  I_SCREEN_START_LINE            = 0
  I_SCREEN_END_COLUMN            = 0
  I_SCREEN_END_LINE              = 0
  I_DEFAULT                      = 'X'
  I_SAVE                         = ' '
  IS_VARIANT                     =
  IT_EVENTS                      =
  IT_EVENT_EXIT                  =
    I_TABNAME_HEADER               = IT_HEADER
    I_TABNAME_ITEM                 = IT_ITEM
  I_STRUCTURE_NAME_HEADER        =
  I_STRUCTURE_NAME_ITEM          =
    IS_KEYINFO                     = TY_KEYINFO
  IS_PRINT                       =
  IS_REPREP_ID                   =
  I_BYPASSING_BUFFER             =
  I_BUFFER_ACTIVE                =
IMPORTING
  E_EXIT_CAUSED_BY_CALLER        =
  ES_EXIT_CAUSED_BY_USER         =
  TABLES
    T_OUTTAB_HEADER                = IT_VBAK
    T_OUTTAB_ITEM                  = IT_VBAP
EXCEPTIONS
  PROGRAM_ERROR                  = 1
  OTHERS                         = 2
IF SY-SUBRC <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.
ENDFORM.                    " OUTPUT

Similar Messages

  • Need the exact solution to process the same order in 2 different Exercise duty

    Dear Sir,
    We are facing the inconvenience in adopting to the new Tax structure. Partially processed orders are having the old tax structure and the new order with new taxes. Our consultants are suggesting to short close the order and upload it freshly. This will affect my FIFO process. Kindly provide the solution or what can be done for this problem.

    Hi Neha,
    You check in these areas
    The accounting keys should be different in two pricing procedure.
    -->In One procedure is for revenue (ERL).
    -->In other procedure (Accruals)two account keys one is account key and Accrual key (ERB and ERU).
    Condition record shoul be maintained difeferently based on the document type.
    -->Also check the G/L account assignment with respect to the account keys in VKOA transaction.
    I hope it will help you,
    Regards,
    Murali.

  • Which query will gives the exact one day difference:

    SELECT COUNT(*) AS tot FROM Test WHERE DATETIME BETWEEN TO_DATE('01/01/2012 12:00:00 AM', 'DD/MM/YYYY hh:mi:ss am') AND TO_DATE('01/02/2012 11:59:59 PM', 'DD/MM/YYYY hh:mi:ss am')
    SELECT COUNT(*) AS tot FROM Test WHERE DATETIME BETWEEN TO_DATE('01/01/2012 00:00:00 AM', 'DD/MM/YYYY hh:mi:ss am') AND TO_DATE('01/01/2012 11:59:59 PM', 'DD/MM/YYYY hh:mi:ss am')

    hI,
    First lets assume that you did not mean to have the 1-feb-2012 in the last date of the first select.
    SELECT COUNT(*) AS tot FROM Test WHERE DATETIME BETWEEN TO_DATE('01/01/2012 12:00:00 AM', 'DD/MM/YYYY hh:mi:ss am') AND
    TO_DATE('01/02/2012 11:59:59 PM', 'DD/MM/YYYY hh:mi:ss am')
    --           XXBut you want 1-jan-2012.
    Then I would not use between for this but trunc for beter readability like:
    TAB AS
    select to_date('2012/01/01 00:00:00', 'YYYY/MM/DD HH24:MI:SS') DATETIME FROM DUAL union all
    select to_date('2012/01/01 12:17:22', 'YYYY/MM/DD HH24:MI:SS') DATETIME FROM DUAL union all
    select to_date('2012/01/01 23:59:59', 'YYYY/MM/DD HH24:MI:SS') DATETIME FROM DUAL union all
    select to_date('2012/01/02 00:00:00', 'YYYY/MM/DD HH24:MI:SS') DATETIME FROM DUAL union all
    select to_date('2012/01/02 12:17:21', 'YYYY/MM/DD HH24:MI:SS') DATETIME FROM DUAL
    SELECT
      TO_CHAR(DATETIME,'YYYY/MM/DD HH24:MI:SS') DATETIME
    FROM
      TAB
    WHERE
      TRUNC(DATETIME) = to_date('2012/01/01', 'YYYY/MM/DD')
    ;You may look into an function based index on trunc(datetime) for preformance
    Regards,
    Peter

  • How do I Find the exact version of safari on my ipad

    I have used whatismybrowser.com but it does not give the exact version only safari 6.
    Thank you

    Should work better than 2007, but I beleive file uploads, unless you are using an app such as iCab that has document/file storage, will still be an issue. You will want to do some serious testing against your SharePoint deployment, including any custom solutions or third party web parts you may have added.
    Expecting Microsoft to support iOS native apps just might not be realistic. They still refuse to put out an iOS version of Office even though it completed development over six monthsd ago (at least rumor has it). Guess I am being cynical, but I don't think that is an accident or oversight (I support a sizable collection of workspaces myself).

  • Cannot trust calculator 50g to give the right answer

    50G gives the wrong answers:
    Pick equation from Library:  APPS; Equation Library, F1, F1, Plane Geometry, Rectangle, F1, enter number for b and h, solve for A. ( Lets go with b=6, h=2, and A will become 12). So far so good.
    Now R-Shift NUM.SLV; pick Solve Equation, Leave A the way it is, and change for example b, and solve for h.
    Do that a couple of times sooner or later you will get Following:
    A=12_cm sq
    b=3_cm
    h=3.99999999999_cm
    You have a 50-50 chance of getting the right answer or something ending with .0000000001 or.99999999998 or whatever.
    Deleting variables doesn't change much.
    I have duplicated this on other 50G's, all running latest ROM.
    Anyone has a solution?
    Thanks

    wolven wrote:
    There is the right answer and there is the HP answer, that's as simple as that.
    One would think that a calculator could do a job of an 8 year old.
    Unfortunately 50g fails to do that in terms of speed and accuracy.
    The HP-50g is correct  considering the constraints of a 12-digit machine.
    I would like to encourage you to expand your understanding of numerical computations.
    I would suggest you read material for example by Prof. W. Kahan.
    Start with: A logarithm too clever by half
    Now some calculators may seem to find the exact solution, but do they really? See the following on rounding:
    http://www.cs.berkeley.edu/~wkahan/Mindless.pdf
    (a shorter presentation on the subject: http://www.cs.berkeley.edu/~wkahan/Mind1ess.pdf )
    If, after reading the above and doing some more research, you have more questions - please feel free to ask.
    If you wish to have more accuracy, I could point you to programs that can help increase the accuracy of the 50g.
    Kind regards.
    Note: I do not work for HP, I just like playing with calculators :-)

  • The replay of the song isn't possible because the song isn't available or through DRM is restricted. All the songs are buyed in the iTunes Store. Give it a solution to activate the songs on my ipod touch ?

    Hello together, I've a problem with some songs in my playlists on my new ipod touch. The error message says that the replay of the song isn't possible because the song isn't available or through DRM is restricted. All the songs are buyed in the iTunes Store. Give it a solution to activate the songs on my ipod touch ?

    Do the non-syncing songs play in iTunes?
    Were the syncing and non-syncing songs purchased with the same account?
    Can you directly download the the songs to the iPod? See:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store

  • Please give the solutions ASAP.

    Hi Friends,
    Please give the solutions  if you know 100% correct...please don't go for slice and dice method.
    1. Which of the following is true of SID tables?
    a. SID tables are not part of the basic star schema
    b. The SID table links the dimension table to the fact table
    c. SID values in a SID table are only numeric
    d. Navigation attributes use the standard SID table
    e. The SID table links the master data and dimension tables.
    2. Which of the following parallel processes could have locking problem
       A. Hierarchy attr. change run    B.Loading Master data from Info object from various source systems. C  Roll up of Aggregates on Infocube D. Selective deletion Info cube / ODS E. Loading Info cube / ODS
    a. A & C
    b. A & B
    c. Â & D or E
    d. A&B, A &C, D &E.
    3. The transactional ODS will have the following tables.
    a. Active table
    b. Change log
    c. New table
    d. Active and New table
    e. no table.
    4. Which components of the BW star schema use SID?
    a. Dimensions
    b. Key Figures
    c. Characteristics
    d. Navigational Attributes
    e. Units
    5. Which of the following statements are true about aggregates?
    a. Once an aggregate is deactivated all data is deleted
    b. Time-dependent hierarchy structures with time dependent navigational attributes are allowed in aggregates
    c. More than one key characteristic is permitted in aggregates
    d. Time dependant characteristics are permitted in aggregates
    6. Where can you initially specify PSA or IDOCS?
    a. Transfer methods tab in the transfer rules
    b. In the scheduler
    c. In the communication structure
    d. In the assignment of the Infosource
    7. Why do you need a communication and transfer structure?
    a. for loading attributes
    b. for loading text
    c. for loading Transaction data
    d. for loading hierarchies
        8. What are the types of attributes?
    a. Navigational and text     
    b. Display and navigational     
    c. Display and calculated      
    d. Text and display     
    9. What is the role of the application components section?
    a. Organization of InfoSource
    b. Organization of Source System
    c. Organization of Infocubes
      10.  What is PSA the abbreviation for?
           a. Persistence Staging Area
            b. Permanent staging area
            c. Pre staging area
           d. None of the above
    11. If some data is missing, can you run full loads with selections in deltas?
            a. yes
             b. no
    12. Where can we decrease or increase the time limit for an IP to be in yellow state?
           a. IP settings.
           b. Technical status tab
           c. Update rules
    d. Data target.
    13. Multiproviders can include?
    a. All infocubes only
    b. ODSs only
    c. Infocubes, ODSs and infoobjects
    d. Infoobjects only.
    14. Which of the following reside on the BW system?
    a. Plug-In
    b. V1 Update queue
    c. InfoSource
    d. Extraction structure
    e. ODS.
    15. What are the two fact tables?
    a. E table, F table
    b. P table, E table
    c. F table, H table
    d. M table, A table.

    Hi,
    1. Which of the following is true of SID tables?
    c. SID values in a SID table are only numeric
    e. The SID table links the master data and dimension tables.
    2. Which of the following parallel processes could have locking problem
    a. A & C
    3. The transactional ODS will have the following tables.
    a. Active table
    4. Which components of the BW star schema use SID?
    a. Dimensions
    c. Characteristics
    d. Navigational Attributes
    5. Which of the following statements are true about aggregates?
    b. Time-dependent hierarchy structures with time dependent navigational attributes are allowed in aggregates
    c. More than one key characteristic is permitted in aggregates
    6. Where can you initially specify PSA or IDOCS?
    a. Transfer methods tab in the transfer rules
    7. Why do you need a communication and transfer structure?
    c. for loading Transaction data
    8. What are the types of attributes?
    b. Display and navigational
    9. What is the role of the application components section?
    a. Organization of InfoSource
    10. What is PSA the abbreviation for?
    a. Persistence Staging Area
    11. If some data is missing, can you run full loads with selections in deltas?
    b. no
    12. Where can we decrease or increase the time limit for an IP to be in yellow state?
    a. IP settings.
    13. Multiproviders can include?
    c. Infocubes, ODSs and infoobjects
    14. Which of the following reside on the BW system?
    c. InfoSource
    e. ODS.
    15. What are the two fact tables?
    a. E table, F table
    Regards
    Sunil

  • The feature wifi hotspot is missing from my settings in my ipad ios 7. please give me a solution.

    the feature wifi hotspot is missing from my settings in my ipad ios 7. please give me a solution.

    First thing to do is to check with your cellular service provider to make sure that this feature is included with your cellular data Servoce contract.

  • I want to know the exactly when the Kinect gives depth frame and color frame in a period of one frame

    Hi, I'm currently using Kinect for Windows v2 to get a blurry sequence of color frames as well as corresponding depth frames. 
    It seems to me that the depth frame is acquired after the exposure time of the color frame. I am using the sample in the CoordinateMappingBasic to acquire the depth frame and the color frame at the same time. 
    But as i've found out by the aligned depth map with color frame, i think Kinect gives depth frame at the end of the exposure time of color frame. I've tried to obtain timestamps by calling a function iColorFrame->get_relative_time, and for the same number
    the timestamps show that depth frame is acquired prior to color frame, which opposes what i said above.. 
    Is there some way that i can know the exact time the Kinect gives depth frame and color frame in a period of one frame.
    Thank you in advance.

    Depth is generated based on IR information so when you acquire the frame, that is when it was created. Using the Multisource Frame Reader(MSFR) this does a lot under the covers to align the color and depth frame. If you want to do your own synchronizing,
    you can use a polling thread to acquire depth on one and color on the other and do your own mechanism that is similar to MSFR. You will never get Color and Depth to align exactly on a particular timestamp. Since color is its own camera, the only thing
    you can be assured of is when the color frame is acquired, the runtime will give you the closest depth frame that will align to it.
    Carmine Sirignano - MSFT

  • QUEUE_NAME is initial Frank Schmitt cau u give the solution?

    Hi Frank,
    My Scenario is Webservices-XI-BW...
    While sending data from webservices the response i get is QUEUE_NAME is initial... this i am getting since i am using QOS--EOIO,
    Can u tell me how u have solved this solution which u posted in sdn long back...
    Result:
    <SAP:Error>
    <SAP:Category>XIServer</SAP:Category>
    <SAP:Code>INTERNAL.ATTRIBUTE_INITIAL</SAP:Code>
    <SAP:P1>QUEUE_NAME</SAP:P1>
    <SAP:Stack>Attribute QUEUE_NAME is initial</SAP:Stack>
    </SAP:Error>
    I am also getting same error ...
    please can u let me know how u have solved this
    Regards,
    Sridhar
    Message was edited by: sridhar reddy kondam

    Hi Michael,
    Thanks for u r reply,
    I am not using Soap Adapter, I am using XI adapter, and followed the Doc how to send XML data to BW using the doc
    http://service.sap.com/~sapidb/011000358700011142902001E/HOWTOSENDXMLDATATOBW.DOC
    My scenarion is XI-BW integration.
    Here I am trying to send XML data as mentioned in the doc.. i can see the messeges if i give the QOS as EO but if i give EOIO then the said response i am getting...
    Request u to give solution or suggestion...
    Regards,
    sridhar

  • HT6533 Where can I find the third party app? I'm really in trouble that I can't record and check my blood  glucose. Of cause I exported the data from app, but It's not readable for me. Please reply ASAP and give me other solution.

    Where can I find the third party app?
    I'm really in trouble that I can't record and check my blood  glucose.
    Of cause I exported the data from app, but It's not readable for me.
    Please reply ASAP and give me other solution.

    You find third-party apps in the App Store. What app are you looking for? Due to problems, Apple removed the ability to record that information in Health. You can always go back to whatever you used before three weeks Health was released. Why can you not check and record your blood glucose? I would assume you check it using blood samples and a glucose meter which has nothing to do with your phone. You should be able to record it in any number of apps, from Notes to purpose made third-party apps.

  • I am trying to change my password, but not remember the security questions and not access recovery email. Please give me a solution.Ana Maria Cappatto Simoes/ F. 11.50414433

    I am trying to change my password, but not remember the security questions and not access recovery email. Please give me a solution.Ana Maria Cappatto Simoes/ F. 11.50414433

    Welcome to the Apple Community.
        1.    Start here (change country if necessary) and navigate to 'Password and Security', reset your security questions using the link provided, you will receive an email to your rescue address, use the link in the email and reset your security questions.
        2.    If that doesn't help, you don't receive a reset email or you don't have a rescue address, you should contact AppleCare who will initially try to assist you with a reset email or if unsuccessful will pass you to the security team to reset your security questions for you.
        3.    If you are in a region that doesn't have international telephone support try contacting Apple through iTunes Store Support.

  • TS1702 Whenever i download any application, i got this message-" the application not installed on the iPhone because an unknown error occurred (0xE800000C)"...Please give me some solutions to resolve this issue..

    Whenever i download any application, i got this message-" the application not installed on the iPhone because an unknown error occurred (0xE800000C)"...Please give me some solutions to resolve this issue..

    Read here:
    http://support.apple.com/kb/TS3221

  • I have laptop with digital persona (finger scanning) to automatic feed the passwords. it was working properly with the older version of firefox but is not working with the latest version of the firefox. why? give me a solution.

    i have laptop with digital persona (finger scanning) to automatic feed the passwords. it was working properly with the older version of firefox but is not working with the latest version of the firefox. why? give me a solution.

    Please authorize ADE 3 with same credentials that you used with older version of ADE

  • I'm trying to take a vector object, say a flower, offset a path then get a vector path around the outside edge of the offset.  I take my flower, add a stroke, offset that stroke then select Add from Pathfinder which gives me visually the exact offset peri

    I'm trying to take a vector object, say a flower, offset a path then get an independent vector path around the outside edge of the offset. 
    I take my flower, add a stroke, offset that stroke, then select Add from Pathfinder which gives me visually the exact offset perimeter shape I'm looking for.  The problem is that it isn't a vector path in it's own right.  Is there a way to get Illustrator to recognize the offset stroke as it's own vector path? 
    Please forgive me if my terminology is off as I'm not a formally trained graphic artist.

Maybe you are looking for