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

ignoring Billing Type

Former Member
0 Likes
564

Hi all,

I need to ignore the billing type ZAM3.

I have different billing types five to six, I want this program to ignore ZAM3 billing type. When I to show all billing type, I want ZAM3 not to be shown in my report as its not required anymore.

please assist.

bongani

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
527

Hi

Its very simple

If you want to ignore the billing type 'ZAM3' . Simply you write a condition in SELECT statement where class Billing type not equal to ZAM3.

So it will retreive all the records which are not of billing type ZAM3.

you can restrict this in where condition.

Hope its helpful .

Thanks

Lalitha.

4 REPLIES 4
Read only

Former Member
0 Likes
527

hi,

I think these billing types are user dfined.

well in that case delete the records from the internal table where billing type which is speicified..

is my understanding of ur problem is correct..??

pradeep

Read only

Former Member
0 Likes
527

Hai,

In your query, in 'Where' condition, put the condition, Billing type not equal to 'ZAM3'

Read only

Former Member
0 Likes
528

Hi

Its very simple

If you want to ignore the billing type 'ZAM3' . Simply you write a condition in SELECT statement where class Billing type not equal to ZAM3.

So it will retreive all the records which are not of billing type ZAM3.

you can restrict this in where condition.

Hope its helpful .

Thanks

Lalitha.

Read only

Former Member
0 Likes
527

Hii

You can do it by two ways,first you can put a condition with select statement like

Select .....where fkart <> 'ZAM3'.

or else you can exclude this billing type from selection screen.

regards

twinkal