Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

code conversion to link

Former Member
0 Likes
440

Hi

I am trying to copy the code from the below link into abap editor I am alway getting syntax error may be due to wrong conversion from web page to abap editor/notepad/textpad. Can some one give the code that is working in abap editor.

http://wiki.sdn.sap.com/wiki/display/stage/DynamicReportforPricingConditionsMasterData

1 ACCEPTED SOLUTION
Read only

uwe_schieferstein
Active Contributor
0 Likes
405

Hello

I have added the syntax-free ABAP coding to the Wiki posting

[Dynamic Report for Pricing Conditions Master Data|http://wiki.sdn.sap.com/wiki/display/stage/DynamicReportforPricingConditionsMasterData]

One critical assumption was the naming of the field-symbols. Using the names as shown below I was able to run the report on our development system but I could not get any ALV output due to missing condition records.

If you can verify that my assumption was correct I (and many others, too) would appreciate if you confirm this within this thread and the Wiki posting.


FIELD-SYMBOLS :  <gt_tab> TYPE STANDARD TABLE,
                 <gs_row> TYPE ANY,
                 <gd_fld> TYPE ANY.

Regards

Uwe

2 REPLIES 2
Read only

ThomasZloch
Active Contributor
0 Likes
405

Did you try solving this yourself? What is the syntax error?

Thomas

Read only

uwe_schieferstein
Active Contributor
0 Likes
406

Hello

I have added the syntax-free ABAP coding to the Wiki posting

[Dynamic Report for Pricing Conditions Master Data|http://wiki.sdn.sap.com/wiki/display/stage/DynamicReportforPricingConditionsMasterData]

One critical assumption was the naming of the field-symbols. Using the names as shown below I was able to run the report on our development system but I could not get any ALV output due to missing condition records.

If you can verify that my assumption was correct I (and many others, too) would appreciate if you confirm this within this thread and the Wiki posting.


FIELD-SYMBOLS :  <gt_tab> TYPE STANDARD TABLE,
                 <gs_row> TYPE ANY,
                 <gd_fld> TYPE ANY.

Regards

Uwe