‎2007 May 02 1:47 PM
Hi,
I have a situation here wherein I've the Message Type as COND_A and Basic IDoc Type as "COND_A02". Now, if I do not know the Function Module which is a Selection Program how to find the Function Module for the above mentioned config?
Thanks,
John.
‎2007 May 02 2:24 PM
Hi,
- Check Transaction NACE to see what applicatios you can use for different objects.
- Check transaction WE42 for all outbound process codes
- Check transaction WE41 for all inbound process codes.
regards
‎2007 May 02 2:24 PM
Hi,
- Check Transaction NACE to see what applicatios you can use for different objects.
- Check transaction WE42 for all outbound process codes
- Check transaction WE41 for all inbound process codes.
regards
‎2007 May 02 2:46 PM
‎2007 Jul 29 9:53 AM
hi
please help me how to write standard function module for outbound IDOC triggerring.
where we can upoad the function module name so that we trigger with TCODE WE19.
please help me out.
thanks
Ravikumar.
‎2007 Jul 31 5:23 AM
Hi Ravi,
Check the following steps.
1. If you are using an IDoc Extension, (ex: ZSHPMNT04 instead of ZSHPMNT04), you will have some Customer Exits which are implemented as Customer - Functions like this. Call Customer-Function '002'.
2. Check where exactly the data is being read into the Custom Segments (IDoc Extension) and write the Code there. A typical code can be as follows.
Loop at IDoc_Data.
Case IDoc_Data-Segnam.
When 'Z1EDK20'.
Logic to retrieve data from standard tables (VTTK).
Endcase.
EndLoop.
3. Or, if you are creating an entirely new Custom Function Module, Create it as follows.
Z_IDOC_OUTPUT_SHPMNT
Take IDOC_DATA TYPE EDIDD
IDOC_STATUS TYPE EDIDS
IDOC_CONTROL TYPE EDIDC
as import parameters.
After that , Loop at IDoc_Data.
Same logic can be adapted as above.
Reward Points if helpful.
Thanks,
Venkat.