Short dump when select a variant

August 29, 2010 by admin · Leave a Comment
Filed under: ABAP Objects, SAP - ABAP, SAP Solutions 

In the production or process order information system, an ABAP runtime error occurs when you select a variant during the IMPORT of the “P_FCTPAR” object. The problem occurs after an upgrade of Release 4.6. Due to a program error, XPRA, which is responsible for the conversion of variants, is not executed.

Read more

Viewed 2213 times by 572 viewers

How to set image width?

June 27, 2009 by admin · Leave a Comment
Filed under: ABAP Objects 

I’m using this method but image never stay in container size in screen. Always appears horizontal and vertical scrools bar.

Bellow, Method SET_WIDTH does not work:
Read more

Viewed 1250 times by 450 viewers

Dynamic table of object references possible?

June 27, 2009 by admin · Leave a Comment
Filed under: ABAP Objects 

How can I create a dynamically typed table of object references, based on the name of the reference type (which could be an interface)?
Read more

Viewed 1222 times by 460 viewers

ABAP Syntax Error

June 27, 2009 by admin · Leave a Comment
Filed under: ABAP Objects 

I’m getting a syntax error in the following code at last line saying ‘Statement is not accessible’. What wrong in the ABAP code?
Read more

Viewed 1247 times by 448 viewers

ABAP/4 Tuning Checklist (Cont.)

June 25, 2009 by admin · Leave a Comment
Filed under: SAP - ABAP 

Internal Table Processing:

Are internal tables processed using READ TABLE itab WITH KEY … BINARY SEARCH technique ?

Change table accesses to use BINARY SEARCH method. Note that this is ONLY possible if the table is sorted by the access key! Add a SORT if not already there.

Is a semi-sequential scan of a large, sorted internal table being performed by a LOOP AT … WHERE, or LOOP AT … with CHECK statements to continue/terminate the loop ?

Use a READ TABLE with BINARY SEARCH to retrieve first record in the sequence matching the lookup keys, then LOOP AT … FROM SY- TABIX + 1 until one of the key field values changes; this way you get only the records you need, rather than reading up to the starting point

Read more

Viewed 825 times by 384 viewers

Page 1 of 2 1 2

SAP Solution Database