Problem while fetching more records in SAP ABAP report program

Hello Frinds,
I have SAP ABAP report program which fetches data from usr02 table
Now, program is working fine with less number of records, bot in production there are more than 200000 records and either report gets timed out or there is run time error like buffer area not available.
Below is the fetch statement
SELECT bname FROM usr02 INTO TABLE lt_user
So, do I need to take records in small chunks, I do not think it is needed as I have worked on number of othere databases where there are number of records in single fetch statement and database itself take care of this.
Please provide me some approach to resolve this problem.

This will be very difficult for you.....
Since you are getting a time out error....it looks like, you are runnning this report in foreground....................
Try running it in background it will work...
ELSE....you have to fetch in small chunks....but the question is how will you do it. Since the USR02 only has BNAME as primary key...
Either put the BNAME as part of selection screen and fetch the data.....it will solve your problem....
Only fetch for those BNAME which is entered in the selection screen...
Hope it helps!

Similar Messages

  • Wireless using SAP ABAP Report programming

    Hi All Boss,
    I am doing my project Wireless program using SAP ABAP
    I need that project.
    so please send me wireless program for sap abap and screen shot.
    reply me urgent....
    Please donot forgot to all..

    This is not a program writing service.

  • Problem while inserting a record to infotype 416

    Iam facing a problem while inserting a record to the infotype 416 for a personnel no using the FM 'HR_INFOTYPE_OPERATION'.I have created a FM to insert a record to the infotype 416.In that FM iam using the FM 'HR_INFOTYPE_OPERATION' to create a record for infotype 416.while executing  my FM the FM 'HR_INFOTYPE_OPERATION' is returning the return value 0.But when i check in PA30 for the infotype 416,there is no record created for that personnel no.Also in the table PA0416 the record is not get created.SO what might be the problem.can anyone please provide me help on this.
    I have attached the code of my FM for ur reference.
    FUNCTION Y_ESS_FL_ENCASH.
    DATA: G_COMPENSATION_AMOUNT LIKE PA0416-AMONT,
          G_RETURN TYPE BAPIRETURN1.
    DATA T_PA0416 LIKE P0416 OCCURS 0 WITH HEADER LINE.
    CALL FUNCTION 'HR_READ_INFOTYPE'
        EXPORTING
           TCLAS                 = 'A'
           PERNR                 = '00000014'
           INFTY                 = '0416'
         BEGDA                 = sy-datum
         ENDDA                 =  sy-datum
           BYPASS_BUFFER         = 'X'
         LEGACY_MODE           = ' '
    IMPORTING
         SUBRC                 =
          TABLES
            INFTY_TAB             = T_PA0416
    EXCEPTIONS
      INFTY_NOT_FOUND       = 1
      OTHERS                = 2
        LOOP AT T_PA0416
        WHERE SUBTY = '1002'.
        ENDLOOP.
        IF SY-SUBRC <> 0.
          CALL FUNCTION 'BAPI_EMPLOYEE_ENQUEUE'
            EXPORTING
               NUMBER = '00000014'
            IMPORTING
               RETURN = G_RETURN.
          IF SY-SUBRC <> 0.
             MESSAGE I016(RP) WITH ' RECORD IS ALREADY LOCKED'.
          ENDIF.
          T_PA0416-PERNR = '00000014'.
          T_PA0416-SUBTY = '1002'.
          T_PA0416-INFTY = '0416'.
          T_PA0416-OBJPS = ''.
          T_PA0416-SPRPS = ''.
          T_PA0416-SEQNR = ''.
          T_PA0416-AEDTM = SY-DATUM.
          T_PA0416-UNAME = SY-UNAME.
          T_PA0416-ENDDA = SY-DATUM.
          T_PA0416-BEGDA = SY-DATUM.
          T_PA0416-NUMBR = '10'.
          T_PA0416-WGTYP = '1530'.
          T_PA0416-AMONT = '15000'.
          T_PA0416-WAERS = 'INR'.
          T_PA0416-QUONR = '1'.
          APPEND T_PA0416.
          CALL FUNCTION 'HR_INFOTYPE_OPERATION'
            EXPORTING
              INFTY                  = '0416'
              NUMBER                 = '00000014'
              SUBTYPE                = '1002'
      OBJECTID               =
      LOCKINDICATOR          =
             VALIDITYEND            = '31129999'
             VALIDITYBEGIN          = SY-DATUM
            RECORDNUMBER           = ''
              RECORD                 = T_PA0416
              OPERATION              = 'INS'
              TCLAS                  = 'A'
      DIALOG_MODE            = '0'
            NOCOMMIT               = 'X'
      VIEW_IDENTIFIER        =
      SECONDARY_RECORD       =
            IMPORTING
              RETURN                 = G_RETURN.
      KEY                    =
          IF G_RETURN+0(1) EQ 'E'.
                  MESSAGE I086(ZHR) WITH 'Record is not inserted in IT416'.
          ELSE.
              COMMIT WORK.
          ENDIF.
          CALL FUNCTION 'BAPI_EMPLOYEE_DEQUEUE'
            EXPORTING
              NUMBER = '00000014'
            IMPORTING
              RETURN = G_RETURN.
        ENDIF.
    ENDFUNCTION.

    Hi Murthy
    With a first glance, I think you have given a wrong parameter value to "validityend". It should be '99991231' not '31129999' .
    If your problem still persists, try inserting the data online from PA30. If your input causes no errors, then please state what the return parameter contains.
    Regards
    *--Serdar <a href="https://www.sdn.sap.com:443http://www.sdn.sap.comhttp://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.sdn.businesscard.sdnbusinesscard?u=qbk%2bsag%2bjiw%3d">[ BC ]</a>

  • Problem while Fetching BSAD

    Hi to all ,
    I' ve problem while fetching bsad for a report , in t-code se30 i've seen that it takes %89,1 performance of overall.
    SELECT belnr buzei dmbtr  blart budat augdt augbl sgtxt
       into table odemelerg
              FROM bsad
              WHERE bukrs EQ bukrs
                AND kunnr EQ kunnr
                AND ( umsks EQ space OR umsks IS NULL )
                AND ( umskz EQ space OR umskz IS NULL )
                AND augbl EQ i_augbl
                AND augdt GE i_budat
                AND gjahr EQ gjahr
                AND belnr NE i_belnr
                AND bsadbelnr NE bsadaugbl
                AND ( blart EQ blart_bt OR blart EQ blart_hf
                      OR blart EQ blart_mi ).
    here : blart_bt is declared as a constant type and its value is 'BT'. such as blart_hf, blart_mi
    How can I make this Select query working in a better performance
    Kind regards,
    Caglar

    Hi
    If you know the bill number:
    -1) Search FI document:
    Get header data
    select * from bkpf where AWTYP = 'VBRK'
                         and AWKEY = BILL NUMBER.
    EXIT.
    ENDSELECT.
    Get items data
    SELECT * FROM BSEG INTO TABLE T_BSEG
                           WHERE BUKRS = BKPF-BUKRS
                             AND BELNR = BKPF-BELNR
                             AND GJAHR = BKPF-GJAHR
                             AND KOART = 'D'.
    Payment:
    LOOP AT T_BSEG WHERE AUGDT <> '00000000'.
    IF T_BSEG-AUGBL <> _BKPF-BELNR
        T_BSEG-AUGDT <> _BKPF-BUDAT.
    SELECT * FROM BKPF INTO _BKPF
                        WHERE BUKRS = T_BSEG-BUKRS
                          AND BELNR = T_BSEG-AUGBL
                          AND BUDAT = T_BSEG-AUGDT.
       EXIT.
    ENDSELECT.
    SELECT * FROM BSEG APPENDING TABLE T_PAYMENT
                           WHERE BUKRS = _BKPF-BUKRS
                             AND BELNR = _BKPF-BELNR
                             AND GJAHR = _BKPF-GJAHR
                             AND KOART = 'D'.
    ENDIF.
    ENDLOOP.
    Partial payment
    SELECT * FROM BSAD INTO TABLE WHERE BUKRS = BKPF-BUKRS
                                    AND KUNNR = T_BSEG-KUNNR
                                    AND REBZG = BKPF-BELNR
                                    AND REBZJ = BKPF-GJAHR.
    Max

  • Problem while import u201CSAPKU60003 & SAPKNA7013u201D into SAP CRM 2007

    Gentlemen,
    I have a problem while import u201CSAPKU60003 & SAPKNA7013u201D into SAP CRM 2007,
    My current Support Package Level is:
    SAP_ABA       700     0015
    SAP_BASIS     700     0015
    PI_BASIS      2006_1_700     0006
    ST-PI     2005_1_700     0006
    CRMUIF         600     0003
    SAP_BW       700     0017
    SAP_AP                700     0012
    BBPCRM                600     0002
    First I had the following error:
       Syslog: k CQ3 : UMGSETTING&                                          rscpexcc 12
       GetDBMigrateCodePagesLangs uses TCP0D, TCPDB, TCP0C.
         0 entries from FUNCT (%/SAPCND/CNF_GET_RECORD_FROM_DB%) deleted.
         0 d /   0 i /   0 u /   6 = 100% ucf FUPARAREF
         6 entries for FUPARAREF imported (/SAPCND/CNF_GET_RECORD_FROM_DBA*).
         0 entries from RODIR (FUNC/SAPCND/CNF_GET_RECORD_FROM_DB) deleted.
         0 entries from RODIR (FUNC/SAPCND/CNF_GET_RECORD_FROM_DB) deleted.
         0 d /   0 i /   0 u /   1 = 100% ucf TFTIT
         1 entry for TFTIT imported (D/SAPCND/CNF_GET_RECORD_FROM_DB*).
       successfully set a temporary lock on table REPOSRC
       REPOS /SAPCND/LDETERMINATION$14                A replaced.
       REPOS /SAPCND/LDETERMINATIONU14                A replaced.
        [dev trc     ,00000]  Wed Nov 26 16:33:14 2008                         1315447  8.171484
        [dbdsoci.    ,00000]  *** ERROR => invalid offset 0 for placeholder 16
                                                                                    71  8.171555
       unsuccessful statement: EXEC SQL: SELECT ID,OBJECT,LANGU,TYP,VERSION FROM DOKIL WHERE (LANGU IN (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,
       dsql_open returned with unexpected error code 2
       Please contact the SAP support.
       End of Transport (0016).
       date&time: 26.11.2008 - 16:33:14
       5 warnings occured.
       3 errors occured.
       Main import
       End date and time : 20081126163314
       Ended with return code:  ===> 16 <===
    After I got this error I upgraded the Kernel from patch level 159 to 179,
    After that I restarted the update again but the system is still running on u201CIMPORT_PROPERu201D and dose not given any update,
    From Import logs of the queue I can see the following,
       Summary:
        24 DOCUT imported.
        16 DYNPS imported.
        30 DYNPT imported.
       387 REPOS imported.
        43 REPOT imported.
       Totally 505 Objects imported.
       Totally 3636 tabentries deleted.
       Totally 14 objects activated.
       Totally 12229 tabentries imported.
       62066888 bytes modified in database.
        [dev trc     ,00000]  Wed Nov 26 18:14:19 2008                         20996974  40.917838
        [dev trc     ,00000]  Disconnecting from ALL connections:                   30  40.917868
        [dev trc     ,00000]  Disconnecting from connection 0 ...                  287  40.918155
        [dev trc     ,00000]  Closing user session (con_hdl=0,svchp=00000000003005B8,usrhp=00000000002FB748)
                                                                                  5759  40.923914
        [dev trc     ,00000]  Detaching from DB Server (con_hdl=0,svchp=00000000003005B8,srvhp=00000000061530E8)
                                                                                    921  40.924835
        [dev trc     ,00000]  Now I'm disconnected from ORACLE                    8230  40.933065
        [dev trc     ,00000]  Disconnected from connection 0                        90  40.933155
        [dev trc     ,00000]  statistics db_con_commit (com_total=527, com_tx=307)
                                                                                    59  40.933214
        [dev trc     ,00000]  statistics db_con_rollback (roll_total=0, roll_tx=0)
                                                                                    52  40.933266
       Disconnected from database.
       End of Transport (0004).
       date&time: 26.11.2008 - 18:14:19
       2 warnings occured.
       Main import
       End date and time : 20081126181419
       Ended with return code:  ===> 4 <===
    Please advice me.
    Regards,
    Ahmed

    I have similar problem while updating support packages in SAP R/3 4.6C environment. 
    000 unsuccessful statement: EXEC SQL: SELECT ID,OBJECT,LANGU,TYP,VERSION FROM DOKIL WHERE (LANGU IN (?,?,?,?,?,?,?,?,?,?,?,?,?,?,
    000 dsql_open returned with unexpected error code 1                                                                             
    000 unsuccessful statement: EXEC SQL: SELECT ID,OBJECT,LANGU,TYP,VERSION FROM DOKIL WHERE (LANGU IN (?,?,?,?,?,?,?,?,?,?,?,?,?,?,
    000 dsql_open returned with unexpected error code 1                                                                             
    Here is an outline of series of events that happened:-
    We are applying in support packages in SAP R/3 4.6C HR Development
    (TFI) environment. We planned with installing all the SP stacks
    starting from 1 to 9.
    -Updated kernel, tp , r3trans and SPAM level to latest level.
    We received the following error in Import_Proper step of Support
    package upgrade. Though the step has been repeated after making sure
    that we have all the required files at OS level, we go this error
    repeatedly.
    Main import
    Transport request___: SAPKB46C52
    System______________: TFI
    tp path : tp
    Version and Release: 305.13.25 46D
    check-sum error in datafile after 9374854 bytes.
    Main import
    End date and time : 20081205192603
    Ended with return code: ===> 16 <===
    When we renamed Co-File & data_file at OS level to see if the files are
    created again and reran we got the following error.
    Main import
    Transport request___: SAPKB46C52
    System______________: TFI
    tp path : tp
    Version and Release: 305.13.24 46D
    Main import
    End date and time : 20081205185117
    Ended with return code: ===> 12 <===
    We tried importing the individual support package SAPKB46C52 from STMS
    and the transport cancelled at an earlier step with the same error.
    Dictionary import
    Transport request___: SAPKB46C52
    System______________: TFI
    tp path : tp
    Version and Release: 305.13.25 46D
    check-sum error in datafile after 9374854 bytes.
    Dictionary import
    End date and time : 20081205195929
    Ended with return code: ===> 16 <===
    While playing around I have deleted the transport from the tp buffer
    and added manually, before doing so I made a backup of tp buffer at OS
    level and I got following error though I reverted back to backed-up
    copy.
    - Error in phase: IMPORT_PROPER
    - Reason for error: TP_BUFFER_INCONSISTENCY
    - Return code: 0008
    - Error message: Wrong sequence of Packages in the tp buffer (e.g.
    SAPKB46C52 )
    I then tried to disassemble the package separately and reran the
    import queue. Now I have RC 8 on that support package.
    When I did R3trans -l on the datafile it completed successfully.
    D:\>R3trans -l \usr\sap\trans\data\RB46C52.SAP
    This is R3trans version 6.05 (release 46D - 27.10.08 - 16:32:00).
    R3trans finished (0000).
    I verified the size of file "CSR0120031469_0023301.PAT" and it is the
    same as mentioned in SSP.
    Let us know is there is a workaround.

  • Sap ABAP report cann't call excel which is installed actually.

    Hi experts:
        When I try to run a sap abap report to show data by calling Excel, a message popped up saying that "Excel has not been installed", however It has been installed on my computer and this error doesn't happen to my collegues,  would you please give me a hint why it happened?
        Frank

    Hi,
    Is it an ALV report....where u wanna see the data in excel format or U r using some other reportin to download data to excel sheet....be clear....
    Solution::::::::
    if its an ALV report...go to EXCEL->TOOL> MACRO>SECURITY>TRUSTED PUBLISHERS tab-->select the chk box "TRUST ACCESS TO VISUAL BASIC PROJECTS"....
    Thins it may solve ur issue...
    Reward all helpful answers.
    Thanks.

  • Use abap report program to print bar code instead of smartforms

    Do anyone know how to use abap report program to print bar code?

    Hi Celina,
    http://searchsap.techtarget.com/tip/1,289483,sid21_gci839063,00.html
    I hope this will help, also it depends on the barcode type like ARTNR-code 128...
    Regards,
    Sudhi

  • How to delete the all records in Ztable from report program

    Hi Guys,
    Good Day!
    How to delete all records in Ztable from report program(Means I want to clean Ztable records from report program) .  Please send me the code.
    Thanks & Regards,
    Reddy

    Use this.
    DELETE { {FROM target [WHERE sql_cond]}
           | {target FROM source} }.
    *But before deleting the rows please check if this Ztable is being used in any other programs or used by others.
    Check "where-used-list"
    in se11 give the table name
    utilities- where-used list.
    I hope this helps.
    thanks.

  • How to schedule an abap report program to run every day, weekend etc..

    Hi,
    I want to schedule an abap report program to run every day, week, fortnight or month and the output to be redirected to the printer. How to achieve this ?
    thanks

    Hi,
    go to t.code sm36 there give the name of the program which u want to eecute in background if u want u can give periodic that depends upon ur requirement from there in sm37 u can check the stauts and directly print from there
    hope i am clear to u
    plzz reward if it is useful...

  • Problem  while sending the mail from sap

    Hi experts,
                     I am facing some problem while sending mail from sap to external mail.
    this is th code i am using but it is not working. plz check and tell me.
    REPORT  ZMAIL_DEMO.
    data: maildata type sodocchgi1.
    data: mailtxt type table of solisti1 with header line.
    data: mailrec type table of somlrec90 with header line.
    start-of-selection.
    break-point.
    clear: maildata, mailtxt, mailrec.
    refresh: mailtxt, mailrec.
    maildata-obj_name = 'TEST'.
    maildata-obj_descr = 'Test'.
    maildata-obj_langu = sy-langu.
    mailtxt-line = 'This is a test'.
    append mailtxt.
    mailrec-receiver = 'SOME MAIL ID'.
    mailrec-rec_type = 'U'.
    append mailrec.
    call function 'SO_NEW_DOCUMENT_SEND_API1'
    exporting
    document_data = maildata
    document_type = 'RAW'
    put_in_outbox = 'X'
    tables
    object_header = mailtxt
    object_content = mailtxt
    receivers = mailrec
    exceptions
    too_many_receivers = 1
    document_not_sent = 2
    document_type_not_exist = 3
    operation_no_authorization = 4
    parameter_error = 5
    x_error = 6
    enqueue_error = 7
    others = 8.
    if sy-subrc = 0.   "( did not receive any mail) *
    write : 'mail sent'.
    endif.

    Hi,
    Please check with the following code.
    TABLES: KNA1.
    data for send function
    DATA DOC_DATA  LIKE SODOCCHGI1.
    DATA OBJECT_ID LIKE SOODK.
    DATA OBJCONT   LIKE SOLI OCCURS 10 WITH HEADER LINE.
    DATA RECEIVER  LIKE SOMLRECI1 OCCURS 1 WITH HEADER LINE.
    SELECT * FROM KNA1 WHERE ANRED LIKE 'C%'.
      WRITE:/ KNA1-KUNNR, KNA1-ANRED.
    send data internal table
      CONCATENATE KNA1-KUNNR KNA1-ANRED
                             INTO OBJCONT-LINE SEPARATED BY SPACE.
      APPEND OBJCONT.
    ENDSELECT.
    insert receiver (sap name)
      REFRESH RECEIVER.
      CLEAR RECEIVER.
      MOVE: 'any_email'_ TO RECEIVER-RECEIVER,                " SY-UNAME
            'X'      TO RECEIVER-EXPRESS,
            'U'      TO RECEIVER-REC_TYPE.
      APPEND RECEIVER.
    insert mail description
      WRITE 'Sending a mail through abap'
                     TO DOC_DATA-OBJ_DESCR.
    CALL FUNCTION 'SO_NEW_DOCUMENT_SEND_API1'
         EXPORTING
              DOCUMENT_DATA              = DOC_DATA
         IMPORTING
              NEW_OBJECT_ID              = OBJECT_ID
         TABLES
              OBJECT_CONTENT             = OBJCONT
              RECEIVERS                  = RECEIVER
         EXCEPTIONS
              TOO_MANY_RECEIVERS         = 1
              DOCUMENT_NOT_SENT          = 2
              DOCUMENT_TYPE_NOT_EXIST    = 3
              OPERATION_NO_AUTHORIZATION = 4
              PARAMETER_ERROR            = 5
              X_ERROR                    = 6
              ENQUEUE_ERROR              = 7
              OTHERS                     = 8.

  • NWDI setup, problem while deploying .sca files on SAP PI 7.1 server

    Hi
    I have a SAP PI 7.1 server. I want to setup DTR on it.
    From service market place i downloaded the required .sca files
    Location:
    Support Packages and Patches --> Browse our Download Catalog --> SAP NetWeaver and complementary products --> SAP NETWEAVER PI --> SAP NETWEAVER PI 7.1 --> Entry by Component --> Development Infrastructure --> SAP NetWeaver and complementary products --> SAP NETWEAVER PI --> SAP NETWEAVER PI 7.1 --> Entry by Component --> Development Infrastructure
    - DICBS25P_1-10003500.SCA
    - DICMS25P_1-10003499.SCA
    - DIDTR25P_1-10003501.SCA
    When i try to deploy these files using JSPM (option:- Business Packages)
    It is not able to deploy CMS and CBS files and its giving error.
    Error for DICMS25P_1-10003499.SCA
    Archive
    <server>\sapmnt\trans\EPS\in\DICMS25P_1-10003499.SCA for component sap.com/DI_CMS was admitted for deployment Deployment of archive
    <server>\sapmnt\trans\EPS\in\DICMS25P_1-10003499.SCA --> tcctsappl.sda for component sap.com/tcctsappl is rejected because it depends on missing components Detailed message: 1. Unresolved dependencies: sap.com/tcctstransport_api not found in the admitted batch items and the repository Deployment of archive
    <server>\sapmnt\trans\EPS\in\DICMS25P_1-10003499.SCA --> tcSLCMStsawebui.sda for component sap.com/tcSLCMStsawebui is rejected because deployment of other component it depends on is rejected Detailed message: 1. Unresolved dependency problem in chain of dependent item 'sap.com_tcSLCMSWebUI'. Deployment of archive
    <server>\sapmnt\trans\EPS\in\DICMS25P_1-10003499.SCA --> tcSLCMSWebUI.sda for component sap.com/tcSLCMSWebUI is rejected because deployment of other component it depends on is rejected Detailed message: 1. Unresolved dependency problem in chain of dependent item 'sap.com_tcSLdiindex'. Deployment of archive
    <server>\sapmnt\trans\EPS\in\DICMS25P_1-10003499.SCA --> tcSLdiindex.sda for component sap.com/tcSL~diindex is rejected because deployment of other component it depends on is rejected
    Error for DICBS25P_1-10003500.SCA
    Details message(s): Archive
    <server>\sapmnt\trans\EPS\in\DICBS25P_1-10003500.SCA for component sap.com/DI_CBS was admitted for deployment Deployment of archive
    <server>\sapmnt\trans\EPS\in\DICBS25P_1-10003500.SCA --> tc.CBS.Appl.sda for component sap.com/tc.CBS.Appl is rejected because deployment of other component it depends on is rejected Detailed message: 1. Unresolved dependency problem in chain of dependent item 'sap.com_tc.CBS.WebUI'. Deployment of archive
    <server>\sapmnt\trans\EPS\in\DICBS25P_1-10003500.SCA --> tc.CBS.WebUI.sda for component sap.com/tc.CBS.WebUI is rejected because deployment of other component it depends on is rejected Detailed message: 1. Unresolved dependency problem in chain of dependent item 'sap.com_tcdicbsjlinwd'. Deployment of archive
    <server>\sapmnt\trans\EPS\in\DICBS25P_1-10003500.SCA --> tcdicbsjlinwd.sda for component sap.com/tcdicbs~jlinwd is rejected because deployment of other component it depends on is rejected Detailed message: 1. Unresolved dependency problem in chain of dependent item 'sap.com_tc.CBS.Service'. Deployment of archive
    <server>\sapmnt\trans\EPS\in\DICBS25P_1-10003500.SCA --> tc.CBS.CommonPart.sda for component sap.com/tc.CBS.CommonPart is rejected because it depends on missing components Detailed message: 1. Unresolved dependencies: sap.com/tc.CBS.DBDefs not allowed between software types: primary-library --> JDDSCHEMA Deployment of archive
    <server>\sapmnt\trans\EPS\in\DICBS25P_1-10003500.SCA --> tc.CBS.Service.sda for component sap.com/tc.CBS.Service is rejected because deployment of other component it depends on is rejected Detailed message: 1. Unresolved dependency problem in chain of dependent item 'sap.com_tc.CBS.CommonPart'. See Deploy Controller log F:\usr\sap\PS2\DVEBMGS00\j2ee\JSPM\log\log_2011_11_21_16_44_12\deploy_2011-11-21_17-06-01.log for details.
    Please Help.
    Regards
    Osman Jabri
    Edited by: Osman Jabri on Nov 21, 2011 12:40 PM

    Deploy status is 'Admitted'
    Deployment Items -
         1. Client path '
    hydhtc130380d\sapmnt\trans\EPS\in\DICBS25P_1-10003500.SCA'
         Sdu info :name 'DI_CBS', vendor 'sap.com', location 'MAIN_APL70P25_D', version '1000.7.00.25.1.20110905193551'
              Deploy status is 'Admitted'
              Time statistics:
              Contained DCs:
              1.1:name 'tc.CBS.Appl', vendor 'sap.com', location 'MAIN_APL70P25_D', version '10937350', software type ('J2EE', sub type ''), dependencies :[( name 'tc.CBS.API', vendor 'sap.com') , ( name 'tc.CBS.CommonPart', vendor 'sap.com') , ( name 'com.sap.tc.Logging', vendor 'sap.com') , ( name 'com.sap.security.api.sda', vendor 'sap.com') ]          
                        Deploy status is 'Skipped'
                        Description:'1. Unresolved dependency problem in chain of dependent item 'sap.com_tc.CBS.WebUI'.'.
              1.2:name 'tc.CBS.WebUI', vendor 'sap.com', location 'MAIN_APL70P20_C', version '2930415', software type ('J2EE', sub type ''), dependencies :[( name 'tc.CBS.CommonPart', vendor 'sap.com') ]          
                        Deploy status is 'Skipped'
                        Description:'1. Unresolved dependency problem in chain of dependent item 'sap.com_tcdicbs~jlinwd'.'.
              1.3:name 'tcdicbs~jlinwd', vendor 'sap.com', location 'MAIN_APL70P20_C', version '2930416', software type ('J2EE', sub type ''), dependencies :[( name 'tc.CBS.CommonPart', vendor 'sap.com') ]          
                        Deploy status is 'Skipped'
                        Description:'1. Unresolved dependency problem in chain of dependent item 'sap.com_tc.CBS.Service'.'.
              1.4:name 'tc.CBS.CommonPart', vendor 'sap.com', location 'MAIN_APL70P25_D', version '10927802', software type ('primary-library', sub type ''), dependencies :[( name 'tc.CBS.API', vendor 'sap.com') , ( name 'tc.CBS.DBDefs', vendor 'sap.com') , ( name 'com.sap.tc.Logging', vendor 'sap.com') , ( name 'com.sap.security.api.sda', vendor 'sap.com') , ( name 'tcdtr.clientvfs-adl', vendor 'sap.com') , ( name 'opensql', vendor 'sap.com') , ( name 'com.sap.guid', vendor 'sap.com') , ( name 'sapxmltoolkit', vendor 'sap.com') , ( name 'tcCBSComponentLibrary', vendor 'sap.com') ]          
                        Deploy status is 'PrerequisiteViolated'
                        Description:'1. Unresolved dependencies:
    sap.com/tc.CBS.DBDefs     not allowed between software types: primary-library --> JDDSCHEMA'.
              1.5:name 'tc.CBS.Service', vendor 'sap.com', location 'MAIN_APL70P25_C', version '10522285', software type ('primary-service', sub type ''), dependencies :[( name 'tc.CBS.API', vendor 'sap.com') , ( name 'tc.CBS.CommonPart', vendor 'sap.com') , ( name 'com.sap.tc.Logging', vendor 'sap.com') , ( name 'tcdtr.clientvfs-adl', vendor 'sap.com') , ( name 'opensql', vendor 'sap.com') , ( name 'com.sap.guid', vendor 'sap.com') , ( name 'sapxmltoolkit', vendor 'sap.com') , ( name 'tcCBSComponentLibrary', vendor 'sap.com') ]          
                        Deploy status is 'Skipped'
                        Description:'1. Unresolved dependency problem in chain of dependent item 'sap.com_tc.CBS.CommonPart'.'.
              1.6:name 'tc.CBS.DBDefs', vendor 'sap.com', location 'MAIN_APL70P20_C', version '2929767', software type ('JDDSCHEMA', sub type ''), dependencies :[none]          
                        Deploy status is 'Admitted'
         2. Client path '
    hydhtc130380d\sapmnt\trans\EPS\in\DICMS25P_1-10003499.SCA'
         Sdu info :name 'DI_CMS', vendor 'sap.com', location 'MAIN_APL70P25_D', version '1000.7.00.25.1.20110905193601'
              Deploy status is 'Admitted'
              Time statistics:
              Contained DCs:
              2.1:name 'tcctsappl', vendor 'sap.com', location 'MAIN_APL70P25_C', version '10521775', software type ('J2EE', sub type ''), dependencies :[( name 'tcctstransport_api', vendor 'sap.com') ]          
                        Deploy status is 'PrerequisiteViolated'
                        Description:'1. Unresolved dependencies:
    sap.com/tcctstransport_api     not found in the admitted batch items and the repository'.
              2.2:name 'tcSLCMStsawebui', vendor 'sap.com', location 'MAIN_APL70P20_C', version '2930427', software type ('J2EE', sub type ''), dependencies :[( name 'tcSLCMSPCS', vendor 'sap.com') ]          
                        Deploy status is 'Skipped'
                        Description:'1. Unresolved dependency problem in chain of dependent item 'sap.com_tcSLCMS~WebUI'.'.
              2.3:name 'tcSLCMScversproxy', vendor 'sap.com', location 'MAIN_APL70VAL_C', version '1496430', software type ('J2EE', sub type ''), dependencies :[none]          
                        Deploy status is 'Admitted'
              2.4:name 'tcSLCMSconfigdbschema', vendor 'sap.com', location 'MAIN_APL70P20_C', version '2929860', software type ('JDDSCHEMA', sub type ''), dependencies :[none]          
                        Deploy status is 'Admitted'
              2.5:name 'tcSLCMSPCSDBSchema', vendor 'sap.com', location 'MAIN_APL70P20_C', version '2929768', software type ('JDDSCHEMA', sub type ''), dependencies :[none]          
                        Deploy status is 'Admitted'
              2.6:name 'tcSLCMSWebUI', vendor 'sap.com', location 'MAIN_APL70P23_D', version '7714571', software type ('J2EE', sub type ''), dependencies :[( name 'tcSLCMSPCS', vendor 'sap.com') , ( name 'tcSLCMSIDEClient', vendor 'sap.com') , ( name 'tccom.sap.tmw.clients~_ctsa_client', vendor 'sap.com') , ( name 'tc.httpclient', vendor 'sap.com') , ( name 'applocking', vendor 'sap.com') ]          
                        Deploy status is 'Skipped'
                        Description:'1. Unresolved dependency problem in chain of dependent item 'sap.com_tcSLdiindex'.'.
              2.7:name 'tcSLCMSTCSEar', vendor 'sap.com', location 'MAIN_APL70P25_D', version '10947857', software type ('J2EE', sub type ''), dependencies :[( name 'tc.CBS.API', vendor 'sap.com') , ( name 'com.sap.util.monitor.jarm', vendor 'sap.com') , ( name 'tc.httpclient', vendor 'sap.com') , ( name 'com.sap.tc.Logging', vendor 'sap.com') , ( name 'tcsecsecurestorageservice', vendor 'sap.com') , ( name 'tcdtr.clientvfs-adl', vendor 'sap.com') , ( name 'tcjmx', vendor 'sap.com') , ( name 'tcSLCMSUtil', vendor 'sap.com') , ( name 'com.sap.util.monitor.grmg', vendor 'sap.com') , ( name 'tcCBSComponentLibrary', vendor 'sap.com') ]          
                        Deploy status is 'Admitted'
              2.8:name 'tcSLCMS~cleanuptool', vendor 'sap.com', location 'MAIN_APL70VAL_C', version '1552404', software type ('FS', sub type ''), dependencies :[none]          
                        Deploy status is 'Admitted'
              2.9:name 'tcSLdiindex', vendor 'sap.com', location 'MAIN_APL70P25_D', version '10947869', software type ('J2EE', sub type ''), dependencies :[( name 'tcSLCMSPCS', vendor 'sap.com') , ( name 'tcSLCMSIDEClient', vendor 'sap.com') , ( name 'tcSLCMS~Util', vendor 'sap.com') , ( name 'security.class', vendor 'sap.com') ]          
                        Deploy status is 'Skipped'
                        Description:'1. Unresolved dependency problem in chain of dependent item 'sap.com_tcSLCMS~PCS'.'.
              2.10:name 'tcSLCMSPCS', vendor 'sap.com', location 'MAIN_APL70P25_D', version '10947869', software type ('J2EE', sub type ''), dependencies :[( name 'tc.CBS.API', vendor 'sap.com') , ( name 'tcSLCMSIDEClient', vendor 'sap.com') , ( name 'com.sap.security.api.sda', vendor 'sap.com') , ( name 'com.sap.lcr.api.cimclient', vendor 'sap.com') , ( name 'tcsecsecurestorageservice', vendor 'sap.com') , ( name 'tcdiscmtransport_api', vendor 'sap.com') , ( name 'com.sap.aii.ibtransportclient', vendor 'sap.com') , ( name 'applocking', vendor 'sap.com') , ( name 'tcdtr.clientvfs-adl', vendor 'sap.com') , ( name 'tcjmx', vendor 'sap.com') , ( name 'tcSLCMSUtil', vendor 'sap.com') , ( name 'security.class', vendor 'sap.com') , ( name 'tcCBSComponentLibrary', vendor 'sap.com') , ( name 'com.sap.util.monitor.jarm', vendor 'sap.com') , ( name 'tccom.sap.tmw.clients_ctsa_client', vendor 'sap.com') , ( name 'tcSLCMScversproxy', vendor 'sap.com') , ( name 'com.sap.aii.util.xml', vendor 'sap.com') , ( name 'tcSLCMS~TCSEar', vendor 'sap.com') , ( name 'com.sap.aii.util.misc', vendor 'sap.com') , ( name 'com.sap.guid', vendor 'sap.com') , ( name 'keystore', vendor 'sap.com') , ( name 'sapxmltoolkit', vendor 'sap.com') , ( name 'com.sap.exception', vendor 'sap.com') , ( name 'com.sap.util.monitor.grmg', vendor 'sap.com') ]          
                        Deploy status is 'PrerequisiteViolated'
                        Description:'1. Unresolved dependencies:
    sap.com/tccom.sap.tmw.clients_ctsa_client     not found in the admitted batch items and the repository'.
         3. Client path '
    hydhtc130380d\sapmnt\trans\EPS\in\DIDTR25P_1-10003501.SCA'
         Sdu info :name 'DI_DTR', vendor 'sap.com', location 'MAIN_APL70P25_D', version '1000.7.00.25.1.20110908142653'
              Deploy status is 'Admitted'
              Time statistics:
              Contained DCs:
              3.1:name 'tcjdiheartbeat~enterpriseapp', vendor 'sap.com', location 'MAIN_APL70P25_D', version '10937328', software type ('J2EE', sub type ''), dependencies :[none]          
                        Deploy status is 'Admitted'
              3.2:name 'tcdtrconsole~sda', vendor 'sap.com', location 'MAIN_APL70VAL_C', version '1586999', software type ('FS', sub type ''), dependencies :[none]          
                        Deploy status is 'Admitted'
              3.3:name 'tcdtrdbschema', vendor 'sap.com', location 'MAIN_APL70P20_C', version '2929861', software type ('JDDSCHEMA', sub type ''), dependencies :[none]          
                        Deploy status is 'Admitted'
              3.4:name 'tcdtrenterpriseapp', vendor 'sap.com', location 'MAIN_APL70P25_D', version '10937327', software type ('J2EE', sub type ''), dependencies :[none]          
                        Deploy status is 'Admitted'
    Nov 21, 2011 5:06:19 PM  [Info  ]:+++ Validation finished with status 'Success' +++[ deployerId=4 ]
    Nov 21, 2011 5:06:19 PM  [Path  ]:+++++ End  V A L I D A T E action +++++[ deployerId=4 ]. Total time:[#16: 18.367 sec]

  • Classical List to ALV format in sap abap report

    Hi All,
    I have a requirement to change the existing abap report in which teh output is dispalyed in classical list format.
    I want to convert this list report output into ALV format.
    COuld anyone please help me how to convert this from Classical list to ALV format?
    Thanks,
    Komal.
    Moderator message: sorry, this not the place to teach the basics, please search for available information. If you understand the classical list and how to use ALV, then you can also do the transfer yourself.
    Edited by: Thomas Zloch on Aug 12, 2011 4:44 PM

    This will be very difficult for you.....
    Since you are getting a time out error....it looks like, you are runnning this report in foreground....................
    Try running it in background it will work...
    ELSE....you have to fetch in small chunks....but the question is how will you do it. Since the USR02 only has BNAME as primary key...
    Either put the BNAME as part of selection screen and fetch the data.....it will solve your problem....
    Only fetch for those BNAME which is entered in the selection screen...
    Hope it helps!

  • SAP ABAP report in Portal

    Hi,
    I have a ABAP report which is created and i want to display this in Portal . Any idea how i can do the same.
    Would setting the ITS view to SA38 and ok code get the report screen directly ?
    Regard
    PN
    Message was edited by:
            Portal Newbie

    Hi
    Create a Transaction code for the report using se93.Probably you can select easy web Transaction to be the transaction type if you need to eliminate the menus that comes in a normal R/3 screen.
    In the portal you can use the Transaction Iview to create an Iview of your report.
    Hope this helps.
    Regards
    Mohamed Mansoor
    Message was edited by:
            Mohamed Mansoor Kasim

  • Abap Report programming

    Hi,
    I am sap abap/4 consultant working ina small firm in new delhi India. I am working on the fnancial report generation program ion abap/4.I am using the tables 'ska1','skat','bseg' tables. I am finding problem in fetching data from bseg table because the field 'saknr' i.e, G/L A/c number which primary key in both tables ska1 and skat but not in bseg. My question is how to fetch records from the two tables when no common primary key is exists? This is my first problem.
    My second problem is I find the field hkont in bseg table which is reference from the table skb1 with key saknr.but the values in hkont in bseg table didnot match with values in saknr of ska1 table.
    Please give me the solution of these two tables mentioned above.
    I am very greatful to you.
    <<removed by moderator>>

    Hi,
    As i understand u want the common data between the 3 tables
    use like this....
    Select * from databse table into table internal table 1 (ska1)
    Select * from databse table into table internal table 2 (s--)
    Now two internal tables get populated with key field ,
    in order to keep only common data b/w them use
    Loop at table 1
    Read table 2 with key table2-key field = table1-keyfield.
    if sy-subrc <> 0.
    Delete from internal table 2.
    endif.
    endloop.
    With this peace of code u get common key fields in internal table 2. now
    select from database table 3 into table internal table 3
                                         for all entries in internal table 2
    where (fields to be matched)
    For the second problem u can directly refer database tables
    table 1-field = table2-field.
    Thanks & regards
    Ruchi Tiwari
    Edited by: Ruchi Tiwari on Oct 30, 2008 4:31 AM

  • SAP Query - Report program generation

    Hello all,
    Now I'm developing SAP queries through Tr-cd:SQ01.
    As you know, every time (re)defining queries, we have to (re)generate the selection screen report programs, containing the input parameter for output format along with other input parameters.
    The problems are:
    1.
    I CAN select other layout formats on the selection screen in one system(Dev System) when I define the output format as "SAP List Viewer" in Tr-cd:SQ01 and generate the report program  (,while I CANNOT select other layout formats on another system, QA System.)
    2.
    When selecting other formats than "SAP List Viewer"
    in Tr-cd:SQ01, so difference between these two systems, that is, I can select all formats options on the selection screen.
    3.
    After redefining the formats as "SAP List Viewer" on the QA System, We CANNOT select other layout formats again while I remain to be able to select all options on the DEV system.
    I think the report program generation function in QA system operates normally, while there is somthing wrong with DEV system.
    Do you have any idea about this phenomenon?

    Hello Thomas, I appreciate your quick response and apologize for my late reply.
    After recieving your sugestion I continued process of trial & error only to find that the setting to generate the report program had been changed to old one for some reason.
    You can change the setting in the following way:
    Tr-cd:SQ02
    Settings -> Global Settings
    Check (or Uncheck) the box of "Always use the old report structure."

Maybe you are looking for

  • Stroking and filling doesn't work in paths expanded from Live Trace

    I’m using Adobe Illustrator CS4. I’m a complete beginner, though I’ve done a bit of reading about the basics.  After tracing a bitmap image (of black letters on a transparent background, in pdf format) using Live Trace, expanding it, and editing the

  • Identifying the line items on a posted document

    Hi guys! I am doing a program  Acounts Payable Voucher. On fb01, I made a transaction and posted it. After the document has been posted, Input Vat and Witholding Tax are included in the line item. The amount is already been calculated. My problem is

  • Organizing music on iPod Classic

    Is there a way to organize music on an iPod classic?  More specifically, I want albums sorted by artist and then year so they will be in the order of when they were released.  I know how to do this in iTunes (just click the column header and choose t

  • Swatch / pattern alignment

    I have a pattern I use frequently that is a B&W diagonal stripe. This is used in fairly small areas and for print (as shading for bar graphs and such). Recently my client noted that where the pattern tiles, the ends of the lines do not align perfectl

  • Why can someone use same icloud e-mail address as mine?

    Why can someone use same icloud e-mail address as mine? I Have found that the new facebook account has been set up in someone's name using my iclound e-mail.