‎2006 Dec 22 6:54 AM
Hi
I dont have much expeience in abap so any help is deeply appreciated.
This is what i am supposed to do.
someone please explain me step by step method as i how to ahieve this assuming that i am a beginner in sap abap.
also how can i see sap note number 86050
Create the screen area.
Double-click SAPLCJWB0205_CUSTSCR1_SAPLXCN10600 and then choose Fullscreen. The screen has been preconfigured by SAP. You can delete these fields and add new ones:
Choose Goto -> Dict./Program fields
Maintain the table/field name PROJ and select the fields to appear on the screen.
Generate the screen.
For detailed information, see SAP Note number 86050.
‎2006 Dec 24 10:38 PM
> Hi
> I dont have much expeience in abap so any help is
> deeply appreciated.
> This is what i am supposed to do.
> someone please explain me step by step method as i
> how to ahieve this assuming that i am a beginner in
> sap abap.
> also how can i see sap note number 86050
>
> Create the screen area.
> Double-click SAPLCJWB0205_CUSTSCR1_SAPLXCN10600 and
> then choose Fullscreen. The screen has been
> preconfigured by SAP. You can delete these fields and
> add new ones:
> Choose Goto -> Dict./Program fields
> Maintain the table/field name PROJ and select the
> fields to appear on the screen.
> Generate the screen.
> For detailed information, see SAP Note number 86050.
hi,
if u want to add new fields in the transaction,
First create a project in cmod and attach the enhancement CNEX0006 to the project.
1.go to se11 and in the PROJ table u will find ci_proj include , in this add ur custom fields.
2.go to se51 give SAPLXCN1 in the program name with screen number 0600 , create the subscreen and in the layout choose Dict./Program fields and drag and drop in the screen .
3. if u want to write any logic before the screen is displayed do it in PBO.
4. now in the function exit EXIT_SAPLCJWB_002 , go in the INCLUDE ZXCN1U11 and write this logic
move-corresponding sap_proj_imp to proj.
5.4. now in the function exit EXIT_SAPLCJWB_003 , go in the INCLUDE ZXCN1U12. and write this logic
move-corresponding proj to cnci_proj_exp.
Activate the project .
Regards
Syed
‎2006 Dec 24 10:38 PM
> Hi
> I dont have much expeience in abap so any help is
> deeply appreciated.
> This is what i am supposed to do.
> someone please explain me step by step method as i
> how to ahieve this assuming that i am a beginner in
> sap abap.
> also how can i see sap note number 86050
>
> Create the screen area.
> Double-click SAPLCJWB0205_CUSTSCR1_SAPLXCN10600 and
> then choose Fullscreen. The screen has been
> preconfigured by SAP. You can delete these fields and
> add new ones:
> Choose Goto -> Dict./Program fields
> Maintain the table/field name PROJ and select the
> fields to appear on the screen.
> Generate the screen.
> For detailed information, see SAP Note number 86050.
hi,
if u want to add new fields in the transaction,
First create a project in cmod and attach the enhancement CNEX0006 to the project.
1.go to se11 and in the PROJ table u will find ci_proj include , in this add ur custom fields.
2.go to se51 give SAPLXCN1 in the program name with screen number 0600 , create the subscreen and in the layout choose Dict./Program fields and drag and drop in the screen .
3. if u want to write any logic before the screen is displayed do it in PBO.
4. now in the function exit EXIT_SAPLCJWB_002 , go in the INCLUDE ZXCN1U11 and write this logic
move-corresponding sap_proj_imp to proj.
5.4. now in the function exit EXIT_SAPLCJWB_003 , go in the INCLUDE ZXCN1U12. and write this logic
move-corresponding proj to cnci_proj_exp.
Activate the project .
Regards
Syed