‎2008 Dec 15 4:40 AM
Hi GURU ,
Can any one please tell me , what data we have to pass in this BAPI -
BAPI_NETWORK_MAINTAIN .
If anyone have any test program , Please post here .
‎2008 Dec 15 4:48 AM
hi
you can find more about this BAPI in transaction SE37.type BAPI_NETWORK_* and you'll get d details
hope it helps
regards
Aakash Banga
‎2008 Dec 15 4:49 AM
‎2008 Dec 15 4:51 AM
Basically I am trying to do thats , But there have some problem .Thats why I want exactly what Parameter I have to pass in this BAPI to run sucessfully.
‎2008 Dec 15 4:51 AM
‎2008 Dec 15 4:53 AM
‎2008 Dec 17 6:09 AM
Hi Guru ,
Please Reply me .
I am trying with this . But it will give some Error .
i_method_project-objecttype = 'NETWORKRELATION' .
i_method_project-method = 'CREATE'.
i_method_project-objectkey = 'NF00000060012700100000006001270020'.
i_method_project-refnumber = '000001' .
APPEND i_method_project.
i_method_project-objecttype = ' ' .
i_method_project-method = 'SAVE'.
i_method_project-objectkey = ' '.
i_method_project-refnumber = ' ' .
APPEND i_method_project.
Index = 1
i_network-NETWORK = 000000600127
append i_network.
Index = 1
IRelation-NETWORK_ PREDECESSOR = 000000600127
IRelation-ACTIVITY_ PREDECESSOR = 0010
IRelation-NETWORK_ SUCCESSOR = 000000600127
IRelation-ACTIVITY_ SUCCESSOR =0020
IRelation-RELATION_ TYPE = NF
append IRelation.
I got one Error . -
E CN 770 Errors occurred during processing (see error log) .
Is there anything else I have to pass .
‎2008 Dec 17 6:23 AM
Hi,
Here is an example;
CALL FUNCTION 'BAPI_NETWORK_MAINTAIN'
IMPORTING
return = wa_return
TABLES
i_method_project = t_method_project
i_network = t_network
i_activity = t_activity
e_message_table = t_message_table.
where wa_return is of type TYPE bapireturn1,
t_method_project TYPE TABLE OF bapi_method_project WITH HEADER
LINE,
t_network TYPE TABLE OF bapi_network WITH HEADER LINE,
t_message_table TYPE TABLE OF bapi_meth_message WITH HEADER LINE,
t_activity TYPE TABLE OF bapi_network_activity WITH HEADER LINE,
‎2008 Dec 17 6:29 AM
Hi ,
I want to use thsi BAPI for relationship between activity .Thats why I have passed all these value , and I am getting this Error .Can you please tell me , I have to pass anything more .
‎2008 Dec 17 6:40 AM
Can you please tell whats the correct error message ur getting using SLG1 tcode by viewing the appln log
‎2008 Dec 17 8:44 AM
In SLG1 we can,t see my log ,,, After execution , It will not provide the Log no .So how Can I give u the error details .
‎2025 Sep 15 5:07 AM
hi, have your resolve this issue? i encountered the same error