2008 Mar 27 8:53 PM
hi
Our client is working on SAP 4.6 C with SPlevel < 50 along with IS AUTO 4.0 and looking to implement the Warranty module. Tcode-owty used as a part of warranty configuration does not open all the relevant nodes or a blank screen is displayed underneath or related to this node.
You r advise would be highly appreciated and solicited on whether or not we need to add any SP to the existing one to have all the nodes opening without showing blank screen.
Thanks in advance.
Regards,
2008 Apr 01 9:31 AM
To get the OWTY->General Settings,atleast one entry should be
present in the table CWTY000.We support only from the detailed screen
onwards.To get a first entry,you should add an entry in the table
table through a program.
Try creating a Zprogram and make an entry in the table CWTY000 like the
sample given below and execute it.
Report ZSAP_TEST.
Data: ls_cwty000 type cwty000.
ls_cwty000-mandt = sy-mandt.
modify cwty000 from ls_cwty000.
Thereafter you should be able to create more entries.
see sap note 1039665 as well ..Reward some points if it helps
2008 Apr 01 9:31 AM
To get the OWTY->General Settings,atleast one entry should be
present in the table CWTY000.We support only from the detailed screen
onwards.To get a first entry,you should add an entry in the table
table through a program.
Try creating a Zprogram and make an entry in the table CWTY000 like the
sample given below and execute it.
Report ZSAP_TEST.
Data: ls_cwty000 type cwty000.
ls_cwty000-mandt = sy-mandt.
modify cwty000 from ls_cwty000.
Thereafter you should be able to create more entries.
see sap note 1039665 as well ..Reward some points if it helps
2010 Dec 22 9:03 AM