Max Titov IV @ TechSplice

The most beautiful music of all is the music of what happens.
  • Home
  • About
21 Jan 2011

SAP: ABAP: Subroutine does not exist – bug

Scenario: you’re editing your code and when you try to double click on a previously defined subroutine you get a popup stating that it doesn’t exist. You check and confirm that the subroutine is included, the report compiles and runs properly.

Resolution: to fix the problem do the following steps:

  1. Click Utilities
  2. Click Update Navigation Index

The report will be regenerated and your problem should be solved.

21 January, 2011 at 15:18 by maxtmax

Tags: abap, bugs, programming, sap
Posted in SAP/ABAP | No Comments »

16 Jan 2011

Adobe Flex: smooth out the images – scaleContent

When you’re dealing with a situation that requires the use of the following image settings:

width="100%"
height="100%"
scaleContent="true"
maintainAspectRatio="true"

You can find your self in a situation where the loaded content will result in a pixelated bitmap.  Simply add a complete event handler to your image component and update the contents of the event in the following way:

var lv_btmp:Bitmap = ((event.target as Image).content as Bitmap);
if ( lv_btmp != null )
lv_btmp.smoothing = true;

this will smooth out the image that you have loaded.

16 January, 2011 at 23:12 by maxtmax

Tags: adobe, Flex, programming
Posted in Flex | No Comments »

28 Dec 2010

SAP: the basics of smart forms

TR: SMARTFORMS – sap form builder – create and edit a smart form object

TR: SE63 – translate objects – can be used to translate smart form data to a different language

28 December, 2010 at 18:00 by maxtmax

Posted in SAP/ABAP | No Comments »

27 Dec 2010

SAP: transport SO10 text data

To transport text data follow these steps:

  1. Execute program RSTXTRAN
  2. Provide Text key and language
  3. Select desired text elements
  4. Click continue button [green checkbox]
  5. Click “Trsfr texts to corr.” button
  6. Create a new transport object and continue
27 December, 2010 at 22:59 by maxtmax

Posted in SAP/ABAP | No Comments »

14 Dec 2010

ABAP: link company code and controlling area

Quick way to find a controlling area derived from the company code is to use the following BAPI_CONTROLLINGAREA_FIND.  Examining further you will see that there is a reference to table TKA02 with parameters of company code and business area.

14 December, 2010 at 13:54 by maxtmax

Tags: programming, SAP/ABAP
Posted in SAP/ABAP | No Comments »

13 Dec 2010

ABAP: how to switch to a classic screen painter [4.6C]

Simple: select Utilities and navigate to the Screen Painter tab.   There you will see a check box corresponding to the desired action.

13 December, 2010 at 22:34 by maxtmax

Tags: abap, programming
Posted in SAP/ABAP | No Comments »

29 Nov 2010

FLEX: BlackBerry SDK basic compilation error [locale]

When I tried creating a new project with the BlackBerry sdk I ran in to the following error:

Description Resource Path Type Location
Unable to resolve resource bundle "collections" for locale "en_US".
Flex Problem Unknown

Although annoying I quickly found a solution:

  • Go to the Project Properties
  • Navigate to Flex Compiler
  • And type in the following line
-library-path+="C:\Program Files\Adobe\Adobe Flash Builder 4\sdks\
blackberry-tablet-sdk-0.9.0\frameworks\locale\en_US"
29 November, 2010 at 21:57 by maxtmax

Tags: configuration, Flex
Posted in Flex | No Comments »

28 Nov 2010

FLEX: convert HTML format to RichText

If you are working with rich text editors you will run in to a situation where you have to format an HTML string to RichText value.

Following code can accomplish this:

gc_ta_bio.textFlow =
TextConverter.importToFlow( "<h1>Your String</h1>,
TextConverter.TEXT_FIELD_HTML_FORMAT )

Where the MXML control will look something like this:

<s:RichEditableText id="gc_ta_bio" />
28 November, 2010 at 21:28 by maxtmax

Tags: actionscript, Flex, programming
Posted in Flex | No Comments »

28 Nov 2010

SAP: Enable substitution rule changes

If your substitute changes are not taking effect make sure that you have an entry in the GB01 table.  Once you mark down the column you want to change be sure to re-generate the programs. Here’s how you can do that.

28 November, 2010 at 14:50 by maxtmax

Tags: configuration, SAP/ABAP, tables
Posted in SAP/ABAP | No Comments »

27 Nov 2010

SAP: re-generate OBBH substitution rules

Sometimes its worth regenerating your substitution rules – to do this execute program RGUGBR00.

27 November, 2010 at 11:13 by maxtmax

Tags: configuration, sap
Posted in SAP/ABAP | No Comments »

« Older Entries
Newer Entries »
  • Subscribe using FeedBurner
  • Cloud Data

    abap adobe animation basic beautiful builder camera code configuration contribution design development digital engineering fix flash Flex function images interesting lesson new paypal Photography php problem problems program programmer programming review sap SAP/ABAP sdk setup soap software solution story system tables transaction transports user video

    WP Cumulus Flash tag cloud by Roy Tanck and Luke Morton requires Flash Player 9 or better.

  • My Links

    • Cooking
    • Gallery
    • Resume
  • Online Tools

    • Airline Ticket Search
    • Estimate Shipping Cost [from US]
    • Link your Blog
  • Software Engineering Blogs

    • Adam Goucher
    • Joel on Software
    • The Third Bit
    • Wide Awake Developers
  • Categories

    • Everyday stuff
    • Flex
    • Photography
    • SAP/ABAP
    • Short Stories
    • Software Engineering
    • Web Development
  • Gallery

    Roy Tanck's Flickr Widget requires Flash Player 9 or better.

Max Titov IV @ TechSplice is proudly powered by WordPress
Design & code by Jonk
Entries (RSS) and Comments (RSS).