Hello,
May I know whether this issue is solved??
Because currently I am also facing the same scenario.
Regards,
Priyanka.
Hello,
May I know whether this issue is solved??
Because currently I am also facing the same scenario.
Regards,
Priyanka.
Dear all,
at spro, Production -> Material Requirements Planning -> Evaluation -> Define Screen Sequence for Header Details; checking SAP documentation we can find that a new screen can be created for MD04 header details and it can be added into the sequences.
I would like to know if anyone has implemented a new screen with customized fields.
I want to create new screen with two Z fields from MARA and I do not know if this is feasible or not using this functionality.
Otherwise, to add two new fields into MD04 header (just read only fields), what is the best option?
thanks in advance!
Hi Friends
The requirement is to move the sales org to the main screen. The field can be added below the partner number.
Is there any screen exit / Badi available to implement the requirement OR SAP note if it is not possible OR any other customization possible.
Kindly share your inputs.
Screenshot is attached.
Hi experts,
My goal is to create 2 custom subscreens in ME23N displaying custom fields added in EKKO and EKPO.
One will be shown on the header and another one on the Item detail.
Luckily, I had no problem to display these two subscreens.
But when I run ME23N, I see that the subscreen 1 is not filled with data in the header !
While the subscreen 2 in the item detail is filled with data.
Please can you help me solve that issue ?
All the best,
Younes
Background: For 'form exits' like MV45AFZZ and customer exits, at our project we are planning to use implicit enhancement to handle multiple simultaneous modification in order to avoid dependency between two developers modifying the code. However, there is a doubt that multiple implicit can lead to performance issues.
Question: Purely from technical point of view at run time,
a> is there any difference between explicit and implicit? Which is better?
b>What happens at code compilation time or how does these two behave at run time?
c>and are there any performance issues?
d>will it be better if we use kernel BADIs?
Hi Pratik,
Its always better to go with BADI as they have standard interface with SAP system. Also performance wise it will be more effective.
But there are instances where our BADI cannot suit the requirement, in those cases we have to switch to implicit and explicit enhancements.
With respect to implicit and explicit enhancements, its purely depends on your requirement on which will suit your requirement. try to understand the basic difference between the two, there are lot of answers for them in our SCN.
Performance is again depends on the way you code. To know more about code techniques, do some research. if you still need inputs on the same let us know.
Hope its serves your query.
Regards,
Satish
Hi you all, We have a requirement to make changes in Alert Mail from CCMS that is using SALO_EMAIL_IN_CASE_OF_ALERT. So to that, we have make a copy of this FM to a customize Function Group with name ZSALO_EMAIL_IN_CASE_OF_ALERT and make required changes. But now when we change standard FM (SALO_EMAIL_IN_CASE_OF_ALERT) to our customize FM (ZSALO_EMAIL_IN_CASE_OF_ALERT) in Method of RZ20 its stop triggering this FM. Can anyone give me a few pointers here? how to solve this problem. Regards, Anoop Kumar Rai
So you missed something in TRANSPORT_FROM_MODEL or TRANSPORT_TO_DYNP method, related to header, as I don't have a crystal ball on hand I can only suggest you check your code once more starting with those methods?
Regards,
Raymond
Hi, In SAP, there are Function Modules(FMs) to send emails.These FM's are very simple and self understandable. 1. SO_NEW_DOCUMENT_ATT_SEND_API1 - Mail without attachment. 2. SO_NEW_DOCUMENT_SEND_API1 - Mail with attachment. Try it.
if any other solution
other than what, you didn't post any solution only specs, what is your current solution?
BTE or workflow are suitable for your requirement, but which kind of answer do you expect?
Regards,
Raymond
Hi Raymond,
I mean to say it can be achieved by customized workflow. Can you tell me without workflow using BTE how this can be done.
Regards,
Anand
I want to download sap web ide local on my system but able to find can anyone tell me?
Using BTE 00001321 you can add you own FM with code to build/send the mail with a tool like CL_BCS.
NB: don't use commit in the FM or called object, as standard transaction will execute it later, this BTE is called just after the call of DEBI_WRITE_DOCUMENT in update task and before COMMI-WORK, DEQUEUE_ALL.
Regards,
Raymond
Hello All,
While using the standard program BCS_EXAMPLE_7 which is used to send mail with attachment, i get an error as "transmission failled with some return code BCS".
Requesting you to help me on clearing this error.
Regards,
Saranya
Could you please explain in detail about your error?
Regards,
Satish
Hi Satish,
The exact error message which am getting is "Error occurred during transmission -return code:<XERR_BCS> with message no:SO865". Resulting email not sent.
i have checked the final internal tables, recipient address passed whether it has data or not.
Regards,
Saranya
Hi Amar,
By using the below method, specify the attachment type as PDF or any other format which is required.
CALL METHOD obj_document->add_attachment
EXPORTING
i_attachment_type = 'PDF'
i_attachment_subject = 'subject'
i_attachment_size = size
i_att_content_hex = binary_content.
Hope it will be useful for u...
Regards,
Saranya
Are you able to send a mail with some attachment in SBWP, only then will this be Abap related, is there some record in SOST?
Regards,
Raymond