cancel
Showing results for 
Search instead for 
Did you mean: 

Confirmation & Invoice Radio buttons in Creating SC through template

Former Member
0 Kudos

Hi Friends,

We are using SRM 5.5 and ECC 6.0 as Backend.

I am trying to create the SC through SC-Full Functionality(Limit SC).

As per SAP std by default invoice only & Unknown radio buttons are selected, i made necessary changes in the template as Confirmation and invoice & known radio button to be selected by default and it's working fine.

When i create the tempate for SC the Confirmation and invoice radio button is getting selected by default,But when create the SC using the template created the settings for the radio buttons are getting back to the original position(ie invoice only & Unknown).

One more Question.

How to remove the unlimited check box in the Shopping cart screen.I tried through template but it's working properly for the first screen and again appearing in the next screen.

Please help me.

Thanks in advance.

__Suma.

Edited by: suma reddy on Oct 14, 2008 12:00 PM

Accepted Solutions (0)

Answers (1)

Answers (1)

former_member183819
Active Contributor
0 Kudos

Hi Suma

Hope you have done changes in 210 as well as 360 template

SAPLBBP_SC_UI_ITS

Check it out.

BR

Muthu

Former Member
0 Kudos

Hi Muthu,

Thanks for immediate reply,

I didn't do any changes in template 360 even though it's working fine when i am creating the template but why it's not happening when i create the SC through the same template.

Even i made the changes same as 210 in 360 issue not resolved.

Please let me know what are the changes to be made in the 360 template(send me if u have )

regards.,

Suma.

former_member183819
Active Contributor
0 Kudos

Hi Suma,

Which template did you do changes?

BR

Muthu

Former Member
0 Kudos

HI Muthu,

Initially i made the changes for SAPLBBP_SC_UI_ITS 210 & after ur reply i made the changes in SAPLBBP_SC_UI_ITS 360.( BBPSC01)

Let me know what are all the changes to be made in 360 template

--Suma.

Former Member
0 Kudos

Hi Suma,

This is the answer to your 2nd question. To remove the unlimited checkbox from the screen you can hide it using the BBP_UI_CONTROL_BADI.

Use the method BBP_SC_UI_CTRL to hide the unlimited checkbox.

Here is code example:

IF SY-DYNNR = '210'.

CASE IV_FIELDNAME.

WHEN 'GS_SCR_LIMIT-UNLIMITED'.

CV_INVISIBLE = 'X'.

CV_INPUT_READY = ' '.

ENDCASE.

ENDIF.

Similarly you can hide it on screen 360 if you want.

Thanks,

Pradeep

former_member183819
Active Contributor
0 Kudos

Hi

Pradeep smart Boy. Good pradeep. It is wonderful rather than messsing up with templates.

BR

Muthu

Former Member
0 Kudos

Thanks Pradeep & Muthu,

I will try to implement the mentioned BADI and i will let u know.

Thanks for Providing the immediate solutions.

--Suma.