SAP Reports / Programs

CREATE_PHON_STRING SAP ABAP Report - Phonetic Search Term







CREATE_PHON_STRING is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for You can use this report program to adjust phonetic search terms for business partners that contain errors as a result of the increase in the length of the see full standard documentation available for this report. Also check out the submitted Comments related to this SAP report and the details below to see which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC.

If you would like to execute this report or see the full code listing simply enter CREATE_PHON_STRING into the relevant SAP transactions such as SE38 or SE80


ABAP code to call this SAP report using the submit statement

This report can be called from another progam/report simply by using the ABAP SUBMIT statement, see below for example ABAP code snipts of how to do this.






SUBMIT CREATE_PHON_STRING. "Basic submit
SUBMIT CREATE_PHON_STRING AND RETURN. "Return to original report after report execution complete
SUBMIT CREATE_PHON_STRING VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


Selection Text: PART = D Business Partner
Selection Text: P_ALL = All Search Terms
Selection Text: P_INIT = Missing Search Terms
Selection Text: P_SEL = Selected Search Terms
Selection Text: P_TWEN = Old Length Exactly 20 Charact.
Title: Phonetic Search Term
Text Symbol: 001 = Generate Phonetic Search Term
Text Symbol: 002 = Generation is not possible because the following business partners are locked:
Text Symbol: 003 = Phonetic search term could not be generated for:


INCLUDES used within this REPORT CREATE_PHON_STRING

No INCLUDES are used within this REPORT code!


TABLES used within REPORT and the associated SELECT statement:





No SAP DATABASE tables are accessed within this REPORT code!


Function Modules used within report and the associated call statement:

FS01_PHONETSTRING_CREATE CALL FUNCTION 'FS01_PHONETSTRING_CREATE' EXPORTING i_mc_name1 = l_str_but000-mc_name1 i_mc_name2 = l_str_but000-mc_name2 IMPORTING e_phon_string = l_str_bp001-bp_sort.

FSBP_DB_BP001_EXECUTE CALL FUNCTION 'FSBP_DB_BP001_EXECUTE' TABLES n_bp001 = l_tab_bp001_new o_bp001 = l_tab_bp001_old.

BUPA_ENQUEUE call function 'BUPA_ENQUEUE' EXPORTING IV_PARTNER = l_str_bp001-partner * IV_PARTNER_GUID = * IV_CHECK_NOT_NUMBER = tables et_return = lt_return.

ENQUEUE_EBU_PARTNR * CALL FUNCTION 'ENQUEUE_EBU_PARTNR' * EXPORTING * partner = l_str_bp001-partner * EXCEPTIONS * foreign_lock = 1 * system_failure = 2 * OTHERS = 3.



Contribute (Add Comments)

Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.







The contribute/comments section below therefore offer's an opportunity for anyone to add additional information. This can be anything from useful hints, tips and screen shots to relevant SAP notes or anything else you feel is relevant to this report.

This will then be available for everyone to easily find by simply searching on the report name CREATE_PHON_STRING or its description.