Shared Top Border

Enterprise Resource
Planning Portal

 

Advertise | Founder BLOG

ERPGenie.COM ABAP Tips and Tricks Database

THE ultimate
ERP website

 

Forums | Vote for us |

Google    Other Search Options

Home arrow Tips and Tricks arrow ABAP Reports
ABAP Reports
Extract the Production Order System Status Table PDF Print E-mail
User Rating: / 2
Written by Anon.   
Thursday, 10 May 2007

tables: aufk                     "Order master data
           jest,                     "Object status
           tj02t.                   "Status Description

*  Order Status - To Retrieve & Filter
select stat from jest
               where objnr = aufk-objnr  " objnr means object no
                   and stat in ('I0012', 'I0045', 'I0074', 'I0076')
                   and inact ne 'X'        "Flag: Status inactive
               order by stat.

select single * from tj02t
                where istat = jest-stat
                    and spras = 'E'.

 
How can we run abap program from command line PDF Print E-mail
User Rating: / 1
Written by Tom Demuyt   
Wednesday, 09 May 2007

Is it possible to run abap program from commnad prompt like DOS on windows or unix command line?

Yes. But in my experience it is not advised, use it as a last resort (because of lack of time or lack of technical expertise to write C or java or .NET code )

If yes, what's the command RFC command syntax?
Read more...
 
Write output inside a window PDF Print E-mail
User Rating: / 0
Written by Kevin Wilson   
Friday, 04 May 2007
AT LINE-SELECTION.

    SELECT * FROM KNA1 WHERE KUNNR = GV_KUNNR.
              WINDOW STARTING AT 05 10
              ENDING AT 50 20.
         WRITE: KNA1-KUNNR.
    ENDSELECT.

 
Explanation of program checks in the ABAP editor. PDF Print E-mail
User Rating: / 1
Written by Sven   
Friday, 27 April 2007

Program Checks: The system checks ABAP programs statically when you create them and dynamically when they are running.

Read more...
 
How do I protect certain field on selection screen. PDF Print E-mail
User Rating: / 0
Written by Anon.   
Thursday, 12 April 2007
(This is to make the field output only)
parameter: p_parm1(2) default 'MY'.

at selection-screen output.
  loop at screen.                
    if screen-name = 'P_PARM1'. 
      screen-output = 1.         
      modify screen.             
      exit.                      
    endif.                       
  endloop.   

 
How do I add a selection screen parameter to get a local file name with pull down? PDF Print E-mail
User Rating: / 0
Written by Anon.   
Wednesday, 11 April 2007

parameters: p_infile like ibipparms-path default 'C:\'.

* Executes the pull-down to search C:\ drive for input file 
at selection-screen on value-request for p_infile. 
  call function 'F4_FILENAME'          "allows user to select path/file 
       exporting 
            program_name  = syst-repid 
            dynpro_number = syst-dynnr 
            field_name    = 'p_infile' 
       importing 
            file_name     = p_infile. 
  if sy-subrc ne 0. 
    write: / 'Error'. 
  endif.

 
Naming convention suggestions PDF Print E-mail
User Rating: / 0
Written by Anon.   
Thursday, 15 March 2007
The following is a suggestion of possible naming standards for your ABAP environment:
Read more...
 
Using Index tables to improve performance PDF Print E-mail
User Rating: / 3
Written by Anon.   
Wednesday, 14 March 2007
Review and evaluate the use of alternate index tables before creating indexes on any existing SAP transaction tables. Matchcode tables for example M_VMVAB, M_VMVAC or matchcode views for example M_VMVAA, M_VMVAE also allow efficient data access.
Read more...
 
Subquery performance tips PDF Print E-mail
User Rating: / 0
Written by Anon.   
Tuesday, 13 March 2007
A subquery is a SELECT command within another SELECT, specified in the WHERE condition, that checks whether data from a database table or view meets certain conditions.  Subqueries are available as of SAP Release 4.0.  In addition, subqueries can be used in UPDATE and DELETE statements as well.
Read more...
 
Data Retrieval bypassing SAP DB buffer PDF Print E-mail
User Rating: / 1
Written by Anon.   
Tuesday, 13 March 2007
Some extensions / versions of the SELECT statement don't support usage of SAPs internal database buffer.  This causes additional unnecessary database accesses.
Read more...
 
Accessing data in Packages PDF Print E-mail
User Rating: / 0
Written by Anon.   
Tuesday, 13 March 2007
Selectct, delete and Insert Statement described...
Read more...
 
Performance guidelines on Indices PDF Print E-mail
User Rating: / 0
Written by Anon.   
Tuesday, 13 March 2007
An index will not be used if the following operators are present on the indexed fields in your WHERE clause:
  • NOT or NE or <>
  • LIKE ‘%pattern’
  • IS NULL
  • IS NOT NULL
  • NOT IN
Read more...
 
Select using FOR ALL ENTRIES (FAEI) PDF Print E-mail
User Rating: / 1
Written by Anon.   
Sunday, 11 March 2007

This version of the SELECT statement was the only way to join tables until SAP release 3.0E.  It is recommended that the SQL JOIN be used.  However, this is an alternate method of joining tables that may be used in some circumstances.  Remember, SQL JOIN doesn’t utilize the SAP internal database buffer.

Read more...
 
Guidelines for usage of INDICES PDF Print E-mail
User Rating: / 0
Written by Anon.   
Saturday, 10 March 2007

Custom reports often summarize data extracted from large volume tables.  If the SQL statement used to extract the data from the large volume table is designed to use the table's primary index or a secondary index performance will dramatically.  The developer should check all SQL statements and attempt to conform to the available indexes.

Read more...
 
ABAP Performance DOs and DON'Ts PDF Print E-mail
User Rating: / 2
Written by Anon.   
Saturday, 10 March 2007
Read more...
 
<< Start < Prev 1 2 3 4 5 6 Next > End >>

Results 31 - 45 of 82

Google Search

Google Ads

Shared Bottom Border

Contact Us | Polls | Add URL | Contribute | Privacy | Terms | Feedback

Discussion Forum | BLOG | Consultants: Post your resume | Companies: Advertise on ERPGenie.COM | Post Job
Financials Consultant | Consultant Review | Gallia Consulting | Supply Chain Project | SAP Financials Forum
GenieHoldings.COM, Inc. | Genie Press | WorkflowGenie | ESAGenie | ERPTopSites | ABAP Tips and Tricks | SAP Solutions Database

EDIGenie | Searching Survivor