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

Search help exit needed..........

Former Member
0 Likes
1,166

HI Gurus,

For the t-code CG36VEN , the report generation variant field is taking only 1 report type as 'IBD_MSDS'. it is assigned as constant in program SAPLC13G0 and in top include LC13G0TOP as

CONSTANTS: IC_REPTYPE_IBD_MSDS LIKE TCGL1-REPTYPE VALUE 'IBD_MSDS'.

now my requiremnt is to remove that default value IBD_MSDS.

is there any way to work out?

thanks

giri

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,127

Hi,

I am not sure if there is any other way other than to modify the standard sap code..

Thanks,

Naren

HI Gurus,

For the t-code CG36VEN , the report generation variant field is taking only 1 report type as 'IBD_MSDS'. it is assigned as constant in program SAPLC13G0 and in top include LC13G0TOP as

CONSTANTS: IC_REPTYPE_IBD_MSDS LIKE TCGL1-REPTYPE VALUE 'IBD_MSDS'.

now my requiremnt is to remove that default value IBD_MSDS.

is there any way to work out?

thanks

giri

10 REPLIES 10
Read only

Former Member
0 Likes
1,127

HI experts,

its urgent.... let me know... is there any chance to modify the top include?

thanks

Giri

Read only

Former Member
0 Likes
1,127

Hi,

How is the search help displayed..Is it done using PROCESS ON VALUE-REQUEST..event..

Thanks,

Naren

Read only

0 Likes
1,127

HI Naren,

yes,

Process on Value-Request.

FIELD RCGBVSEL-LDEPID MODULE D1010_VALREQ_LDEPID.

and in select statement ...

SELECT DISTINCT RECN LDEPID FROM ESTLP

INTO CORRESPONDING FIELDS OF ESTLP

WHERE LDEPID LIKE V_LDEPID

AND DELFLG = SPACE

<b>AND REPTYPE = IC_REPTYPE_IBD_MSDS</b>.

this IC_RECTYPE_IBD_MSDS has constant value IBD_MSDS...

thanks Giri

Read only

Former Member
0 Likes
1,128

Hi,

I am not sure if there is any other way other than to modify the standard sap code..

Thanks,

Naren

Read only

0 Likes
1,127

Naren,

How can we modify standard sap code?

what is the procedure to modify it?

Thanks

Giri

Read only

0 Likes
1,127

Hi

U have to run trx SE38 and press MODIFY icon, so:

- The system'll ask you the ACCESS KEY;

- U've to pick up it by registering the object in OSS: you have to have an OSS account to do it.

If you don't have it, you should ask a little help to your basis.

- After inserting the access key the program can be changed.

I believe you need only to change the select:

SELECT DISTINCT RECN LDEPID FROM ESTLP
      INTO CORRESPONDING FIELDS OF ESTLP
          WHERE LDEPID LIKE V_LDEPID
            AND DELFLG = SPACE
*           AND REPTYPE = IC_REPTYPE_IBD_MSDS. "<-----
            AND REPTYPE = <......>

Max

Read only

0 Likes
1,127

HI Max,

In top include the variable IC_REPTYPE_IBD_MSDS declared as constant with value IBD_MSDS.

Modify the top include is better or the select statement?

Is it possible with user exit to modify the top include or select statement?

Thanks

Giri.

Read only

0 Likes
1,127

Hi

If you need to update only the select, I believe it's better to change it and not the top include, because perhaps that constant is used in others programs.

If I understand you problem you want to change the way to do the select, so change it directly.

No! It's not possible.

Max

Read only

0 Likes
1,127

HI max,

My requirement is temporary purpose just to upload files in other report type.

Is it possible to copy the Standard program SAPLC13G0 and its function Pool C13G0 into Z program . So later can assign a t-code to the program and can upload the files with zprogram...

let me know how to copy a function pool with program into zprogram.

Thanks

Giri

Read only

Former Member
0 Likes
1,127

Hi,

Please follow steps mentioned by Max...To get the access key..

Then modify the code accordingly..

Thanks,

Naren