Hi Mohammad,
You can follow Priyanka answer from below thread.
Release Strategy - Purchase Order
Regards,
V Srinivasan
Hi Mohammad,
You can follow Priyanka answer from below thread.
Release Strategy - Purchase Order
Regards,
V Srinivasan
Hello,
I have the same problem as you. Someone know something about it?
kanyadhara, did yo solve this problem?
Thanks a lot
Hi Friends,
I'm using BADI's CUSTOMER_ADD_DATA and CUSTOMER_ADD_DATA_CS to access some append-fields that had been created at KNA1 table (Creating Screen-Exits).
Now, I need to access the data from VCKUN Table from the inside of one of this BADIs, Someone of you Gurus know how to do that?
Thank you for your attention.
I found a way!
I Can get de database data using FM SD_CCARD_READ and most important, I can get buffer data using FM SD_CCARD_COLLECT.
Hi Team,
As per my requirement I need to add Storage Location in the below path and it allow user to make changes storage location at all selected line item of Sales order. (functionality same as PLANT VA02->Edit->Fast change of....->Plant)
VA02->Edit->Fast change of....->Storage location
Thanks,
Ashok
In DME Administration and while checking the file in display mode, generally # is a delimiter used for differentiating fields if the delimiter used is a Tab space.. This wont be visible when you download the same file into your presentation server.
Thanks in advance.
Regards
Rajesh Chowdary Velaga
Use SFTRACE transaction to diagnose the error message.
Thanks in Advance.
Regards,
Rajesh
Can you check for menu exit in VA package in SMOD transaction.. and then create a project in CMOD if there is no project existing.
thanks in advance.
Regards
Rajesh Chowdary
Thanks for your response Rajesh.
I didn't find any menu exit in package VA, if you find any menu exits please let me know.
Thanks in advance.
Hi Swamy,
I'm facing the same issue but have resolved half. Actually its getting updated in the database table through ME21N. But in ME22n and ME23n, I'm not getting it back, custom fields are balnk.
SO, is there any additional code needs to write to fetch the data back from EKKO?
Kindly help!
Thanks,
Devinder
email: devinder.abap@gmail.com
Hello all,
Need help on how to deactivate the overwrite exit of a class method so that the original method only will get executed.
I don't want to delete the exit as I will need it again.
THanks in advance
Best regards,
Karthik
Hi all,
There are lots of background jobs in our system .I want to monitor all cancelled jobs and when a job gets cancelled,it should trigger a event and call another program which can send E-mail to me as a notice.I don't want to create a new program and schedule it in the background. I want to run the new program (which sends email notification) only when the job gets cancelled.
Help me with a different solution.
Will an enhancement code for ABORTED event help in this case ? If yes, how it should be done ?
Thanks in advance.
Regards,
Vishnu Prakash K
Hi,
you can use CCMS for that: CCMS cancelled job monitoring | SCN
Maybe this information about the Alert Monitor may also be helpful.
Regards,
Klaus
Hi,
Can you try by creating a switch
Hello Raymond ,
Thanks so much for that Exit pointer . Setting my Exit to start with U worked like a charm for me
Aham .
Hello Karthik,
Check the package of the Overwrite Exit. It is probably associated to a switch that is switched on.
If there is no switch assigned to the package, this is why it is always on
Then you have no other choice to create a business function with a switch (TA SFW2, SFW1).
If your package becomes a switchable package, you may have to revised what is included in this package, since all type of 'extensions' will be then switchable.
This means table appends, Domain fixed value appends, View appends, Extension indexes, switch BC sets, etc. These are repository objects that are switchable through their packages, as well as Enhancement Implementations, such as Overwrite Methods.
If you create Business function will most probably need to make it reversible (see Properties Tab in TA SFW2). This will allow you to switch it on and off for testing purposes, but be careful, once the switched-on Business function reaches production system, it is no longer possible to switch it off.
Usually, business functions can be made reversible if there is no possibility of data loss when they are switched off. This implies that physical tables do not contain switchable appends.
Switch Framework - SAP Library
Regards,
Pascale Boyer
SAP SFW IMS Support
Hi Siva,
can you please share the resolution ?
will that work for sales doc created through IDOC ?
Thanks.
Praveen.
Check the tableSpace on your system.
How did you solve it?
Hi all,
Its possible to make it with BTE below : (program SAPMF05L | source : MF05LFO0)
CALL FUNCTION 'OPEN_FI_PERFORM_00001420_P'
EXPORTING
I_BKPF = BKPF
I_BSEG = BSEG
I_AKTYP = T020-AKTYP
TABLES
T_NOINPUT = NOINPUTTAB
T_INVISIBLE = INVISIBLETAB
EXCEPTIONS
NOTHING_ACTIVE = 4
OTHERS = 8.
If you want to make XREF3 to noninput, you just input in table NOINPUTTAB the value BKPF-XREF3,
according the fields values on OB32 transaction. Also if you want to make this field invisible, you input in INVISIBLETAB table..
Implement BTE with FIBF transaction after creat the function modul like a sap sample SAMPLE_PROCESS_00001410.
Kind regards,
Le Baron Rouge.