Can we release a report in the SAP BOR ?

How to release a report in the SAP BOR ?
tell me the steps.

Hi,
The report you get in BOR is accessible through SE38 also. You can work with it as usual reports.
Regards,
Renjith Michael.

Similar Messages

  • How to add a report into the SAP-SCRIPT .using PERFORM ......ENDPERFORM

    My question is that How to add a report into the SAP-SCRIPT .
    by using PERFORM ......ENDPERFORM
    I don't know how to used it .

    Hi Sandeep,
    Please check this link
    http://help.sap.com/saphelp_40b/helpdata/en/d1/803279454211d189710000e8322d00/content.htm
    http://www.allinterview.com/showanswers/37425.html
    Calling ABAP Subroutines: PERFORM
    You can use the PERFORM command to call an ABAP subroutine (form) from any program, subject to the normal ABAP runtime authorization checking. You can use such calls to subroutines for carrying out calculations, for obtaining data from the database that is needed at display or print time, for formatting data, and so on.
    PERFORM commands, like all control commands, are executed when a document is formatted for display or printing. Communication between a subroutine that you call and the document is by way of symbols whose values are set in the subroutine.
    Syntax in a form window:
    /: PERFORM <form> IN PROGRAM <prog>
    /: USING &INVAR1&
    /: USING &INVAR2&
    /: CHANGING &OUTVAR1&
    /: CHANGING &OUTVAR2&
    /: ENDPERFORM
    INVAR1 and INVAR2 are variable symbols and may be of any of the four SAPscript symbol types.
    OUTVAR1 and OUTVAR2 are local text symbols and must therefore be character strings.
    The ABAP subroutine called via the command line stated above must be defined in the ABAP report prog as follows:
    FORM <form> TABLES IN_TAB STRUCTURE ITCSY
    OUT_TAB STRUCTURE ITCSY.
    ENDFORM.
    The values of the SAPscript symbols passed with /: USING... are now stored in the internal table IN_TAB . Note that the system passes the values as character string to the subroutine, since the field Feld VALUE in structure ITCSY has the domain TDSYMVALUE (CHAR 80). See the example below on how to access the variables.
    The internal table OUT_TAB contains names and values of the CHANGING parameters in the PERFORM statement. These parameters are local text symbols, that is, character fields. See the example below on how to return the variables within the subroutine.
    From within a SAPscript form, a subroutine GET_BARCODE in the ABAP program QCJPERFO is called. Then the simple barcode contained there (u2018First pageu2019, u2018Next pageu2019, u2018Last pageu2019) is printed as local variable symbol.
    Definition in the SAPscript form:
    /: PERFORM GET_BARCODE IN PROGRAM QCJPERFO
    /: USING &PAGE&
    /: USING &NEXTPAGE&
    /: CHANGING &BARCODE&
    /: ENDPERFORM
    / &BARCODE&
    Coding of the calling ABAP program:
    REPORT QCJPERFO.
    FORM GET_BARCODE TABLES IN_PAR STUCTURE ITCSY
    OUT_PAR STRUCTURE ITCSY.
    DATA: PAGNUM LIKE SY-TABIX, "page number
    NEXTPAGE LIKE SY-TABIX. "number of next page
    READ TABLE IN_PAR WITH KEY u2018PAGEu2019.
    CHECK SY-SUBRC = 0.
    PAGNUM = IN_PAR-VALUE.
    READ TABLE IN_PAR WITH KEY u2018NEXTPAGEu2019.
    CHECK SY-SUBRC = 0.
    NEXTPAGE = IN_PAR-VALUE.
    READ TABLE IN_PAR WITH KEY u2018BARCODEu2019.
    CHECK SY-SUBRC = 0.
    IF PAGNUM = 1.
    OUT_PAR-VALUE = u2018|u2019. "First page
    ELSE.
    OUT_PAR-VALUE = u2018||u2019. "Next page
    ENDIF.
    IF NEXTPAGE = 0.
    OUT_PAR-VALUE+2 = u2018Lu2019. "Flag: last page
    ENDIF.
    MODIFY OUT_PAR INDEX SY-TABIX.
    ENDFORM.
    Best regards,
    raam

  • Publishing a Report in the SAP Portal

    Hi,
    I am able to create a report using Web Application Designer. I am also able to publish it. Once logging into SAP BW, I can see a shortcut of my web report in the SAP Menu. When I click on this report, it redirects me to a site, opening my web browser automatically, and opening a link to my created report.
    My question is: Is there a general site wherein I can log in and access my report? I want users to access a single link and choose their reports from there; instead of them logging into SAP BW, and clicking on the shortcut to access the report
    My follow up question is: the link to my report appears to be a long link. Can I change the link to my report to make it more easier to memorize for my users?
    I am looking forward to your reply experts!
    Regards
    Ramon

    Hi,
    If u have an access to the portal u cn directly log on to the portal and there u can executer the reports which are assigned to u.
    http://help.sap.com/saphelp_nw04/helpdata/en/a3/7b583c2439e66fe10000000a114084/content.htm
    Hope this information helps u........
    Assigning Points is the way of saying Thanks in SDN
    Regards
    Ramakrishna Kamurthy

  • How to  include a report  into the  SAP-SCRIPT

    plz tell me 
    How to  include a report  into the  SAP-SCRIPT
    ASAP

    creat a z report like this....................
    REPORT  zmmgl_picklist1.
    TABLES : likp,ltap,ltak.
    data : lv_NUM1 type c .
    data : lv_NUM type c.
    *&      Form  get_data1
          text
         -->IN_DATA    text
         -->OUT_DATA   text
    FORM get_data1 TABLES in_data STRUCTURE  itcsy
                         out_data STRUCTURE itcsy.
    READ TABLE in_data WITH KEY name = 'LTAP-VBELN'.
    lv_NUM = lv_NUM1 + 1.
    out_data-name = 'lv_NUM'.
      out_data-value = lv_NUM .
    APPEND out_data.
    endform.
    *&      Form  get_data
          This form is to read  details from  LIKP    *
         -->IN_DATA    text
         -->OUT_DATA   text
    FORM get_data TABLES in_data STRUCTURE  itcsy
                         out_data STRUCTURE itcsy.
      READ TABLE in_data WITH KEY name = 'LTAK-VBELN'.
      Select single bldat from likp into likp-bldat where lgnum = ltap-lgnum.
      out_data-name = 'LIKP-BLDAT'.
      out_data-value = likp-bldat.
      APPEND out_data.
       READ TABLE in_data WITH KEY name = 'LTAK-VBELN'.
      Select single vstel from likp into likp-vstel where lgnum = ltak-lgnum .
      out_data-name = 'LIKP-VSTEL'.
      out_data-value = likp-vstel.
      APPEND out_data.
    READ TABLE in_data WITH KEY name = 'LTAK-VBELN'.
      Select single kunnr from likp into likp-kunnr where lgnum = ltap-lgnum.
      out_data-name = 'LIKP-KUNNR'.
      out_data-value = likp-kunnr.
      APPEND out_data.
    ENDFORM.                    "get_data.
    after this go to the script editor......
    /: perform get_data in program zmmgl_picklist1.
    /: using &ltap-vbeln&                 (Reference field.this field          should be there in both program and script.....)
    /:changing &likp-bldat&         
    /:changing &likp-vstel&
    /:changing &likp-kunnr&
    \[removed by moderator\]
    Regards
    Anbu
    Edited by: Jan Stallkamp on Jun 10, 2008 2:26 PM

  • How can I produce a report of the people asked to complete a form and their response?

    How can I produce a report of the people asked to complete a form and their response?

    Thanks. I cover four different sites. We are using the same questions for the four sites. Each site has a different client base (with different users). So I am inviting persons to complete the form in an ad-hoc basis following training sessions (so far I have trained 10 out of 57). The responses will be viewed by two or three Managers. The problem is that it is difficult to see who has started filling out the form, who has not even looked at it, and those who have completed it. So for example at the moment I have a zero response to my requests to complete the form, although some people may be working on the form?
    Russell W H Bulley C.Eng B.Eng MIET
    Critical Engineering Manager
    MITIE – Delivering FM for Lloyds Banking Group
    5 Limeharbour Court, Limeharbour, London, E14 9RH
    M: 07900704196
    www.MITIE.com<http://www.mitie.com/>
    Follow us:
    Description: Description: Description: Description: Description: Description: Description: twitter_32<http://twitter.com/mitie_group_plc>[Description: Description: Description: Description: Description: Description: Description: facebook_32]<http://www.facebook.com/mitiepeople> Description: Description: Description: Description: Description: Description: Description: linkedin_32 <http://www.linkedin.com/company/mitie?trk=fc_badge>  Description: Description: Description: Description: Description: Description: Description: youtube_32 <http://www.youtube.com/user/MITIEGroupPLC>  Description: Description: Description: Description: Description: Description: Description: rss_32 <http://www.mitie.com/rss>  Description: Description: Description: Description: Description: Description: Description: flickr_32 <http://www.flickr.com/mitie_group_plc

  • How to find the report for the SAP query (Query exists in table AQLQCAT)

    Hello Experts,
    I need to find the tables used in the SAP Query but i don't have access to transaction SQ01,SQ02 and SQ03 to check the same.
    Therefore i checked table AQLQCAT and got the SAP Queries in the system. Then searched for the reports that would have been generated for the same passing  AQusergroupquery name*  in transaction SE38.
    But unfortunately the program does not exists for the given paramenter.
    Could you please let me know how to get the report name for the SAP Query.
    Secondly please suggest any other way of checking the tables used in the SAP Query.
    Also the table name from where i can download the SAP Queries.
    Thanks in advance.
    Regards,
    Rahul Sinha

    I suggest you a simple method.
    Execute the query. When the selection screen is showed,  go to menu and click to SYSTEM->STATUS.
    Check the program name and double click it to access the program code.
    Search for tables or functions into the source code in order to understand where data are taken.
    If you do not find anything , go to the program atttribute and check for logic database, sometimes they are used....
    Best regards.

  • How to open Crystal Report from the SAP GUI ?

    Hi experts,
        We have developed some reports for our ECC 6.0 system by using Crystal Report 2008 and SAP integration kit , these reports are published to BO edge 3.1 server.  To view the report, our user have to open IE and login Infoview first.
       For convenience, we want to open Crystal report from SAPGUI directly without login BOE, How can we do it? 
    Thanks.

    Hi
    please take a look here
    Crystal Reports
    Regards,
    STratos

  • Central instance can not startup when i install the SAP /DB2 9 env

    Hi,
    could  anybody help me?   I just installed the SAP /db2 V9.1 on HACMP cluster envrioment . By now , the SCS, ASCS, DB instance installation have been  OK, Unfortunately , an
    error occurs when I installed the CI.
    the error message is that "ABAP Database db must be started on remote server "  i check the trans.log , the error message is "DbSlConnect to 'AE1' as 'sapae1' failed"  the detail informatioin ,please check the the following trans.log.  but i can startup and activate the database, i can connect to db with sapae1 and sapae1 user with password. 
    first i install the DB2 software and db2 instance with the virtual hostname dbae1. i found the hostname in the db2cfg.log is not virtual hostname but physical name. i don't know what happens.  In order to keep the hostname the same, i installed the CI on sapaix01, the error message is the same as before.  i have upgrade the sap kernel and reinstall the CI again, the error is the same as before too Could you give me some suggestion.
    First  let me describe our cluster enviroment
    For CI, and DI are not a Single point of failure  , so the DI and CI
    are out of cluster.     The cluster enviroment just includes the
    SCSASCS and DB instance. SCSASCS is installed on sapaix02, DB instance is installed on sapaix01
       1. Host name 
    sapaix01  : DB instance and DI  (visual hostname dbae1)
    sapaix02:   SCS,ASCS, CI        (visual hostname scsae1)
      2. file systems  (sapaix01 DB instance )
    Sapaix01
    Filesystem    512-blocks      Free %Used    Iused %Iused Mounted on
    /dev/hd4         6291456   4792544   24%     2808     1% /
    /dev/hd2        13107200   6175040   53%    73295    10% /usr
    /dev/hd9var     13107200  12816904    3%     1336     1% /var
    /dev/hd3        61603840  35610304   43%     3844     1% /tmp
    /dev/fwdump       786432    785656    1%        4     1%
    /var/adm/ras/platform
    /dev/hd1         1048576   1016152    4%      213     1% /home
    /proc                  -         -    -         -     -  /proc
    /dev/hd10opt     4194304   2512624   41%     6241     3% /opt
    /dev/lvusrsapae1d10   41943040  41935984    1%        4     1%
    /usr/sap/AE1/D10      (Local file system)
    /dev/lvdb2ae1   20971520  20927640    1%       38     1% /db2/AE1
    /dev/lvdb2logs   20971520  18346424   13%       25     1%
    /db2/AE1/log_dir
    /dev/lvdb2archive   41943040  41935984    1%        4     1%
    /db2/AE1/log_archive
    /dev/lvae1sapdata1  104857600  18817168   83%       47     1%
    /db2/AE1/sapdata1
    /dev/lvae1sapdata2  104857600  18817400   83%       48     1%
    /db2/AE1/sapdata2
    /dev/lvae1sapdata3  104857600  18817184   83%       48     1%
    /db2/AE1/sapdata3
    /dev/lvae1sapdata4  104857600  18817168   83%       48     1%
    /db2/AE1/sapdata4
    /dev/lvdb2db2ae1   20971520  19874760    6%     3931     1% /db2/db2ae1
    /dev/lvae1saptemp   20971520  20967584    1%       12     1%
    /db2/AE1/saptemp1
    /dev/lvdb2db2as   10485760  10483504    1%        4     1% /db2/db2as
    /dev/lvae1db2dump   10485760  10470600    1%        8     1%
    /db2/AE1/db2dump
    scsae1:/export/usr/sap/trans   20971520  20967592    1%       16     1%
    /usr/sap/trans
    scsae1:/export/sapmnt/AE1   12582912   9886168   22%     1529     1%
    /sapmnt/AE1
    10.241.13.54:/software2 1755152384 1154051696   35%    62702     1%
    /software2
    For the database version is 9.1 , so I installed the db2 software in
    /db2/db2ae1/v9 , and db2 client software in /opt/IBM/db2/V9.1  (for DI)
    on sapaix01,  db2 client software in /opt/IBM/db2/V9.1  (I installed the
    db software with virtual hostname dbae1 not sapaix01 )
    sapaix02
    Filesystem    512-blocks      Free %Used    Iused %Iused Mounted on
    /dev/hd4         6291456   4915592   22%     2790     1% /
    /dev/hd2        13107200   6177120   53%    73643    10% /usr
    /dev/hd9var     13107200  12857456    2%     1311     1% /var
    /dev/hd3        21495808  16955192   22%     3283     1% /tmp
    /dev/fwdump       786432    785656    1%        4     1%
    /var/adm/ras/platform
    /dev/hd1         1048576   1046848    1%      105     1% /home
    /proc                  -         -    -         -     -  /proc
    /dev/hd10opt     4194304   2197776   48%     9002     4% /opt
    /dev/lvusrsapae1   20971520  20966872    1%       47     1% /usr/sap/AE1
    /dev/lvae1ascs01   10485760  10243360    3%       86     1%
    /usr/sap/AE1/ASCS01
    /dev/lvae1scs00   20971520  20706584    2%       97     1%
    /usr/sap/AE1/SCS00
    /dev/lvsapmntae1   12582912   9886168   22%     1529     1%
    /export/sapmnt/AE1
    /dev/lvusrsaptrans   20971520  20967592    1%       16     1%
    /export/usr/sap/trans
    scsae1:/export/sapmnt/AE1   12582912   9886168   22%     1529     1%
    /sapmnt/AE1
    scsae1:/export/usr/sap/trans   20971520  20967592    1%       16     1%
    /usr/sap/trans
    10.241.13.54:/software2 1755152384 1154051696   35%    62702     1%
    /software2
    3. hosts file    the file is the same on sapaix01 and sapaix02
    10.241.13.121   dbae1
    10.241.13.125   scsae1
    10.10.11.1      sapaix01_boot1
    10.10.11.2      sapaix02_boot1
    10.10.10.1      sapaix01_boot2
    10.10.10.2      sapaix02_boot2
    10.241.13.71    sapaix01  sapaix01_per
    10.241.13.72     sapaix02 sapaix02_per
    4. the installation guide and error message  please check the attachment
    <<installation_and errorlog.zip>>
    5. I run  db2ilist command  nothing disppear
    I have another questions
    *      whether does DB2 9.1  support installation on the diffirence
    directory (default is /opt/IBM/db2/V9.1 my installation is
    /db2/db2ae1/V9)?
    *      Whether does DB2 9 installation has some relationship with
    hostname ?
    *       Why  db2ilist command result is nothing after I finished the
    DB instance installation ?
    trans.log 
    "trans.log" 143 lines, 14041 characters
    4 ETW000 R3trans version 6.14 (release 700 - 15.06.07 - 15:50:00).
    4 ETW000 unicode enabled version
    4 ETW000 ===============================================
    4 ETW000
    4 ETW000 date&time   : 10.03.2008 - 20:25:40
    4 ETW000 control file: <no ctrlfile>
    4 ETW000 R3trans was called as follows: R3trans -d
    4 ETW000  trace at level 2 opened for a given file pointer
    4 ETW000  [dev trc     ,00000]  Mon Mar 10 20:25:40 2008                              70  0.000070
    4 ETW000  [dev trc     ,00000]  db_con_init called                                    25  0.000095
    4 ETW000  [dev trc     ,00000]  create_con (con_name=R/3)                             42  0.000137
    4 ETW000  [dev trc     ,00000]  Loading DB library '/usr/sap/AE1/SYS/exe/run/dbdb6slib.o' ...
    4 ETW000                                                                              60  0.000197
    4 ETW000  [dev trc     ,00000]  load shared library (/usr/sap/AE1/SYS/exe/run/dbdb6slib.o), hdl 0
    4 ETW000                                                                            1018  0.001215
    4 ETW000  [dev trc     ,00000]  Library '/usr/sap/AE1/SYS/exe/run/dbdb6slib.o' loaded
    4 ETW000                                                                              39  0.001254
    4 ETW000  [dev trc     ,00000]  function DbSlExpFuns loaded from library /usr/sap/AE1/SYS/exe/run/dbdb6slib.o
    4 ETW000                                                                              43  0.001297
    4 ETW000  [dev trc     ,00000]  Version of '/usr/sap/AE1/SYS/exe/run/dbdb6slib.o' is "700.08", patchlevel (0.133)
    4 ETW000                                                                             282  0.001579
    4 ETW000  [dev trc     ,00000]  function dsql_db_init loaded from library /usr/sap/AE1/SYS/exe/run/dbdb6slib.o
    4 ETW000                                                                              42  0.001621
    4 ETW000  [dev trc     ,00000]  function dbdd_exp_funs loaded from library /usr/sap/AE1/SYS/exe/run/dbdb6slib.o
    4 ETW000                                                                              43  0.001664
    4 ETW000  [dev trc     ,00000]  New connection 0 created                              29  0.001693
    4 ETW000  [dev trc     ,00000]  0: name = R/3, con_id = -000000001 state = DISCONNECTED, perm = YES, reco = NO , timeout = 00
    0, con_max = 255, con_opt = 255, occ = NO
    4 ETW000                                                                              50  0.001743
    4 ETW000  [dev trc     ,00000]  db_con_connect (con_name=R/3)                         41  0.001784
    4 ETW000  [dev trc     ,00000]  find_con_by_name found the following connection for reuse:
    4 ETW000                                                                              40  0.001824
    4 ETW000  [dev trc     ,00000]  0: name = R/3, con_id = 000000000 state = DISCONNECTED, perm = YES, reco = NO , timeout = 000
    , con_max = 255, con_opt = 255, occ = NO
    4 ETW000                                                                              47  0.001871
    4 ETW000  [dev trc     ,00000]  DB2 library successfully loaded DB2 library '/db2/db2ae1/sqllib/lib64/libdb2.a(shr_64.o)' suc
    cessfully loaded
    4 ETW000                                                                            9175  0.011046
    4 ETW000  [dev trc     ,00000]  DB6 (DB2 UDB) UNICODE database interface 700.08 [opt]
    4 ETW000                                                                              42  0.011088
    4 ETW000  [dev trc     ,00000]  DB6 shared library (dbdb6slib) patchlevels            24  0.011112
    4 ETW000  [dev trc     ,00000]    (0.8) DB6: V8.2.2 optguidelines in OPEN SQL (note 150037)
    4 ETW000                                                                              42  0.011154
    4 ETW000  [dev trc     ,00000]    (0.8) Support of SDBUPDEXCL (note 847616)           25  0.011179
    4 ETW000  [dev trc     ,00000]    (0.9) DB6: use export file for dbdb6slib (note 835135)
    4 ETW000                                                                              40  0.011219
    4 ETW000  [dev trc     ,00000]    (0.9) DB6: Core in getAndBindSQLDA (note 833183)
    4 ETW000                                                                              39  0.011258
    4 ETW000  [dev trc     ,00000]    (0.10) DB6: link dbdb6slib.dll on windows with libdb6.obj (note 761159)
    4 ETW000                                                                              51  0.011309
    4 ETW000  [dev trc     ,00000]    (0.10) DB6: DUPLICATE_KEY on MERGE -> repeat (note 851474)
    4 ETW000                                                                              40  0.011349
    4 ETW000  [dev trc     ,00000]    (0.15) DB6: wrong CAST for short string ABAP type (note 861905)
    4 ETW000                                                                              40  0.011389
    4 ETW000  [dev trc     ,00000]    (0.17) DB6: special characters in sidadm passwd (note 865839)
    4 ETW000                                                                              40  0.011429
    4 ETW000  [dev trc     ,00000]    (0.21) DB6: no SAP_INFO comments (note 873889)
    4 ETW000                                                                              39  0.011468
    4 ETW000  [dev trc     ,00000]    (0.22) DB6: hints: get correlation names from view texts (note 868888)
    4 ETW000                                                                              41  0.011509
    4 ETW000  [dev trc     ,00000]    (0.23) DB6: hints: get correlation names from view texts (note 868888)
    4 ETW000                                                                              41  0.011550
    4 ETW000  [dev trc     ,00000]    (0.26) DB6: DB6_DBSL_CLP_COMMAND STRING_BAD_REF (note 883402)
    4 ETW000                                                                              40  0.011590
    4 ETW000  [dev trc     ,00000]    (0.27) DB6: activate value compression (note 886231)
    4 ETW000                                                                              40  0.011630
    4 ETW000  [dev trc     ,00000]    (0.28) DB6: optimization guidelines on views part 2 (note 868888)
    4 ETW000                                                                              40  0.011670
    4 ETW000  [dev trc     ,00000]    (0.30) DB6: no SQL trace for SQLCancel (note 892111)
    4 ETW000                                                                              40  0.011710
    4 ETW000  [dev trc     ,00000]    (0.33) DB6: append SAP_TA comment (note 873889)
    4 ETW000                                                                              39  0.011749
    4 ETW000  [dev trc     ,00000]    (0.34) DB6: activate value compression with quoted names (note 886231)
    4 ETW000                                                                              41  0.011790
    4 ETW000  [dev trc     ,00000]    (0.36) DB6: Repeat isolated DDL statements after SQL0911 (note 901338)
    4 ETW000                                                                              41  0.011831
    4 ETW000  [dev trc     ,00000]    (0.41) DB6: add V9 to list of supported DB2 releases (note 912386)
    4 ETW000                                                                              41  0.011872
    4 ETW000  [dev trc     ,00000]    (0.50) DB6: reread passwords for secondary connections (note 931742)
    4 ETW000                                                                              41  0.011913
    4 ETW000  [dev trc     ,00000]    (0.52) DB6: double quote table names in optguidelines (note 868888)
    4 ETW000                                                                              41  0.011954
    4 ETW000  [dev trc     ,00000]    (0.54) DB6: error handling in DBSL CLP (note 940260)
    4 ETW000                                                                              39  0.011993
    4 ETW000  [dev trc     ,00000]    (0.69) DB6: technical support of DB2 CLI driver (note 962892)
    4 ETW000                                                                              40  0.012033
    4 ETW000  [dev trc     ,00000]    (0.73) DB6: log table name on TRUNCATE failure (note 970743)
    4 ETW000                                                                              40  0.012073
    4 ETW000  [dev trc     ,00000]    (0.79) DB6: column type XML in index size calculation (note 982993)
    4 ETW000                                                                              41  0.012114
    4 ETW000  [dev trc     ,00000]    (0.82) DB6: CAST for SSTRING data types (note 989568)
    4 ETW000                                                                              47  0.012161
    4 ETW000  [dev trc     ,00000]    (0.86) DB6: long runtimes for R3szchk (note 1000847)
    4 ETW000                                                                              39  0.012200
    4 ETW000  [dev trc     ,00000]    (0.88) DB6: patch collection Dec 06 (note 1005574)
    4 ETW000                                                                              40  0.012240
    4 ETW000  [dev trc     ,00000]    (0.96) DB6: patch collection Jan 07 (note 1017852)
    4 ETW000                                                                              39  0.012279
    4 ETW000  [dev trc     ,00000]    (0.97) DB6: CLP commands with DB2 CLI Driver (note 1024102)
    4 ETW000                                                                              41  0.012320
    4 ETW000  [dev trc     ,00000]    (0.99) DB6: SUBSTITUTE VALUES with FAE statements (note 1028779)
    4 ETW000                                                                              41  0.012361
    4 ETW000  [dev trc     ,00000]    (0.107) DB6: patch collection Apr 07 (note 1047194)
    4 ETW000                                                                              39  0.012400
    4 ETW000  [dev trc     ,00000]    (0.110) DB6: SAP user names ending with non-ASCII char (note 1054555)
    4 ETW000                                                                              41  0.012441
    4 ETW000  [dev trc     ,00000]    (0.113) DB6: work process type in application snapshot (note 1059905)
    4 ETW000                                                                              41  0.012482
    4 ETW000  [dev trc     ,00000]    (0.114) DB6: connect using SAPDBHOST and DB2DB6_SVCENAME (note 1062049)
    4 ETW000                                                                              41  0.012523
    4 ETW000  [dev trc     ,00000]    (0.117) DB6: patch for execution of long DDL statements (note 1069658)
    4 ETW000                                                                              41  0.012564
    4 ETW000  [dev trc     ,00000]    (0.122) DB6: SNAPSHOT_TBS_CFG table function is deprecated (note 1077963)
    4 ETW000                                                                              41  0.012605
    4 ETW000  [dev trc     ,00000]    (0.123) DB6: CLP commands on Windows with V9.1 (note 1080149)
    4 ETW000                                                                              40  0.012645
    4 ETW000  [dev trc     ,00000]    (0.124) DB6: Set DB2CODEPAGE=819 for non-Unicode (note 1084400)
    4 ETW000                                                                              40  0.012685
    4 ETW000  [dev trc     ,00000]    (0.126) DB6: reuse optguidelines on FAE statements (note 1087375)
    4 ETW000                                                                              41  0.012726
    4 ETW000  [dev trc     ,00000]    (0.126) DB6: Enforce DB2CODEPAGE=819 for non-Unicode environments (note 1084400)
    4 ETW000                                                                              42  0.012768
    4 ETW000  [dev trc     ,00000]    (0.128) DB6: db6_free on invalid memory area (note 1092030)
    4 ETW000                                                                              40  0.012808
    4 ETW000  [dev trc     ,00000]    (0.133) DB6: statement cache enhancements (note 1101031)
    4 ETW000                                                                              40  0.012848
    4 ETW000  [dev trc     ,00000]  Supported features:                                   24  0.012872
    4 ETW000  [dev trc     ,00000]  ..retrieving configuration parameters                 24  0.012896
    4 ETW000  [dev trc     ,00000]  ..done                                               126  0.013022
    4 ETW000  [dev trc     ,00000]  Running with UTF-8 Unicode                            25  0.013047
    4 ETW000  [dev trc     ,00000]  *** ERROR in DB6Connect[dbdb6.c, 1640] CON = 0 (BEGIN)
    4 ETW000                                                                           67222  0.080269
    4 ETW000  [dev trc     ,00000]  &+     DbSlConnectDB6( SQLConnect ): [IBM][CLI Driver] SQL30082N  Security processing failed
    with reason "24" ("USERNAME
    4 ETW000                                                                              48  0.080317
    4 ETW000  [dev trc     ,00000]  &+     AND/OR PASSWORD INVALID").  SQLSTATE=08001
    4 ETW000                                                                              45  0.080362
    4 ETW000  [dev trc     ,00000]  &+
    4 ETW000                                                                              45  0.080407
    4 ETW000  [dev trc     ,00000]  &+
    4 ETW000                                                                              46  0.080453
    4 ETW000  [dev trc     ,00000]  &+
    4 ETW000                                                                              45  0.080498
    4 ETW000  [dev trc     ,00000]  *** ERROR in DB6Connect[dbdb6.c, 1640] (END)          26  0.080524
    4 ETW000  [dbdb6.c     ,00000]  *** ERROR => DbSlConnect to 'AE1' as 'sapae1' failed
    4 ETW000                                                                              71  0.080595
    2EETW169 no connect possible: "DBMS = DB6                              --- DB2DBDFT = 'AE1'"

    Hi,
    have you tried to connect on the command line (instead of using R3trans) ?
    db2 connect to AE1 user sapae1 using .....
    If this works and you have verified that the DB2DB6EKEY is set properly, use dscdb6up to update the password in the password file dscbd6.conf.
    Then try again to use R3trans to connect.
    Best regards,
      Jens

  • Wht is the tcode to include and report on the sap main screen?

    Hi all,
    What is the Tcode to include any program on sap main screen?
    like when we logon to the sap, it will display abap editor, etc.... i want to include one more item there, can anybody let me know how to do that?
    thanks

    I placed the cursor on desired node and select EDIT->INSERT MENU ENTRY->INSERT AS SUB NODE
    but it says node cannot be inserted at desired position.
    I tried with same level as well, but its not working.
    If i click on change nodes, its saying "changes nodes change be done through Enhancement ID"
    can suggestions?
    thanks

  • How can i add FICO module to the SAP Netweaver ABAP 7.02 trial version

    Dear Brothers
    I am a new learner of SAP and interested in learning FICO. As part of that I installed SAP Netweaver ABAP trial version and after the installation I had problem in Logging in but it was solved lately. Now I face an other challenge which I may share with u guys. After logging in I wanna start with a new company code creation for FICO but I cant find the Enterprise Structure for in SAP Reference IMG. Only I see the following structure
    SAP Customizing Implementation Guide
         Activate Business functions
         SAP Net weaver
         Cross-Application Components
         Financial Supply Chain Management
         Integration with Other my Sap.com components
    I expanded the tree structure but could not find the Enterprise Structure> Definition> Financial Accounting--> Define Company
    So is this because of missing FICO module if so how can I install that module for I can learn myself @ home. Kindly help me to fix this prob and hope to hear from the SAP experts around the world.
    W8ng for a reply have a gr8 day a head
    Thnx
    Cherian

    My problem is solved ,, thanx whoever looked at it :).
    the solution was that I downloaded and NSP license key but for an other version of the product.
    Thanx.

  • How can I access PDF-Reports outside the appliance?

    If I know the URL
    https://1.2.3.4/monitor/reports/system_statusto the HTML-Information, is it possible to get the same informations as a PDF "directly" without pressing the "Printable PDF"-Link to the commandjavascript:PrintReport()
    Or do you know another way to schedule such PDF-reports and mail it to my account?

    You can have scheduled reports that will send you the report in pdf.
    The http access you are talking about is the xml reports, these are very restricted in what you can see.
    However we do have a Reporting API that your local SE should be able to provide which means you can customise reports and get the information in .csv format.

  • How to Extract data and reports from the SAP BW warehouse

    Hi to All Guru's
    I am new to SAP BW. Can any one help me to know, How to Extract data and reports from SAP BW. Do we use any tools.  After Extracting the data from SAP BW how can we move all the data to Cognos.  It would be kind enough to provide me with any documentation or links.  Step by step procedure would be very much helpfull to me.
    Thanks
    Venu

    Hi Voodi
    Thanks for the quick response. I think Open hub is to extract the data from SAP BW, but what about sending this data into Cognos.  Can you please let me know in detail regarding answer. If possible send me any documentation or links regarding this.  Thanks for your concern.
    Venu

  • How can I create a Report with the Report Generation Toolkit?

    Hi,
    I have installed Labview Report Gerneration Tool for Microsoft Office Version 1.1 and now I want to use MS Office Report Express VI but it need the VI "Dflt Data Dir.vi". I don't have this on my computer, why? Where can I get this VI? Can somebody help me?
    thanks Labprog

    Hello Labprog
    This VI should be located in the file.llb in the folder
    ..\vi.lib\utility. Thus, it is not part of the report generation
    toolkit but of LabVIEW. I am not sure why you are missing that file on
    your PC, maybe you just did not find it because it is hidden in a LLB.
    Maybe this LLB is not part of your LabVIEW package (Base, FDS, PDS).
    Anyway, I'll attatch that little VI, hoping that this is the only one missing.
    Ingo Schumacher
    Systems Engineer Sound&VibrationNational Instruments Germany
    Attachments:
    Dflt Data Dir.vi ‏11 KB

  • Error when releasing a block in the SAP paging

    Hi,
    I am getting the following CCMS alert.
    Please help me understand of what can be the reason for the same

    The Sytem is ECC6.0 Production.
    The database is oracle 10g
    The OS is AIX 5.3
    Please help
    when a particular report is executed, we are getting this message
    Pls help

  • Can itune create inventory reports of the albums and Artists in my library?

    I want to create an album inventory report for my large itunes library which consists of only CDs I have purchased.  There are a couple of reasons for doing this.  The first is to share the report with my insurance company in case of a burglury and second is to have an inventory of what I already have in my library so I don't buy duplicates.  I have approximately 3000 CDs in total.
    Can anyone help me with this?

    With the music library open, File > Print > Song Listing (or Album Listing), and direct the output to a PDF file. 
    This will create a nice readable listing that you can store in a safe place.

Maybe you are looking for