‎2008 Dec 01 8:45 PM
Hi All,
Is there any sample program where we can create (Change and delete) a note in the services for object for sales order.
We have requitement where we need to develop a Z program which should have the functionality of changing or creating or deleting the Note from the services for object in sales order. the input parameter will be sales order.
Thanks.
Chindam.
‎2008 Dec 01 8:49 PM
Simply execute OAER transaction directly or call fm 'BDS_CALL_NAVIGATOR' in your Z report.
PS you should know the "class name" "class type" and object key
a®
‎2008 Dec 01 8:58 PM
thanks for your quick reponse,
Can you be move speciefic on how can i achive this or if you could give me some sample code.
Thanks.
‎2008 Dec 01 9:14 PM
I don't have any sample code
Please check how this fm called
CALL FUNCTION 'BDS_CALL_NAVIGATOR'
EXPORTING
classname = 'BUS2037' " Business object for sales order
classtype = 'BO'
OBJKEY = L_OBJKEY " Sales order Number
TABLES
EXCLUDING = i_excluding
EXCEPTIONS
INTERNAL_ERROR = 1
OTHERS = 2
a®
‎2008 Dec 01 9:41 PM
i tried with this FM but i am not able to create any NOTE for the sales order.
Is there any othere way to create change delete a NOTE from a sales order in the services for object. ( a button at the left of title bar)
thanks,
Chindam.
‎2009 Mar 20 3:17 PM