No answer.
In this case, what would interest me is,
- do you ever hear about this issue or
- you know this difficulty but you do not have a solution for that yet?
Have a nice days.
Phuong.
No answer.
In this case, what would interest me is,
Have a nice days.
Phuong.
There is no item like "Business Suite 7i 2011" or "ERP 6.0 EHP6 ABAP" in SWPM 10 SP40. There is only a entry for JAVA.
Only SWPM 10 SP04 is the version that can be downloaded (Date 19.12.2013). The versions of SWPM for 7.0x and 7.1x have same menu entries.
Older versions of SWPM are not available.
How should I install ERP 6.0 EHP6?
Thanks for suggestions.
Regards Frank
I found some account difference in MB5L transaction for previous period, later I diagnosed that someone has posted MR21 documents in previous periods.
My question is how to verify that the difference showing in MB5L is because of MR21 only....? There is a lot of variance between MB5L difference and the MR21 total postings.
what are the other ways to find exact MB5L differences ?
Hi,
I need to create a QM notification but PP production order that is deleted will you please suggest me can my options?
Regards
i do not understand. What for i have get it sorted?
Would you publish any sample customizing?
Dear Expert
I have done configuration of Auto BRS MT940 Format but when i am trying to upload file in system it's not posting. System is creating spool request but neither posting any document nor showing any error. Transaction details are available in t.code SP02 but there is no record in FEBAN.
I also got below messages while uploading statement. I have cross checked configuration and it's seems correct.
( Please note -: I have also deactivated Message no. FB770 and FB772, but not useful)
Please suggest on this.Please let me know if any other information is required.
Thanks in advance
Screen Shot of SP02
hi
in sap system sap how many roles?
hi
in system sap each user having a business need access the role t.code.
that is practically the tcode in three modes. create. changing .display .
and any access to a single role and composite role and several plays.
but in giving any role to a user . there is a limit.
ایا جزوه اموزشی برای ساخت و ایجاد رول و هست .
Dear All,
We are installed MDM 7.1 with using DB2 database, but we are unable to connect to create/mount/unarchieve repository: Error message ….
We are gating ERROR “Unable to connect database”
Please give us proper solutions……
Thanks & regard,
Amit Chavan
To reiterate what the others have said, you will want to install ADS on a separate instance, as dual-stack is not supported anymore except for a few exceptions (e.g., Solution Manager).
That gives you some freedom, however. You don't have to exactly match your ADS version to your ECC version, but your ADS version should be at least as high as your ECC version. It can be higher.
So, if you're running ECC 6.0 without enhancement packs, that means you need to install a NetWeaver AS Java system of at least 7.00. 7.01 or 7.02 should also work.
By the way, there is a forum area on SDN that might be better for ADS questions: SAP Interactive Forms by Adobe.
Best regards,
Matt
Thanks Rahul for your reply. I also gone through note 968812.
My query is how to find direct GL posting to stock account
Also what is the impact of this difference in next period. Will it carry forward in next period or what?
How to remove the difference ?
Hi Raj
I think you should break down the transports into multiple transports. Such long run times would have adverse effects when you are doing to Production.
Regards
SOwmya
Hi Raj Kishor,
Did you check the TR logs? Have you checked SM21 logs for the release time stamp?
Cheers
Abhi
Normally we give Delivery Committed Date in CRM, based on this delivery happening,but system taking primary as First request delivery date in schedule tab, based on that date delivery date calculating, our requirement is system should calculate delivery based on delivery committed date.
System should calculate delivery based on delivery committed date.
Can any one help me plz regard.
JK
Hi Kathy,
I've solved this via ABAP and with a new inspection type 33 I set up. This inspection type was created with the origin 89.
Implement exit QPL10001, which is called when the 03 inspection lot is created by release of the production order.
i_qals to e_qals.
e_active = 'X'.
check i_qals-herkunft = '03'. "only for in-process inspection
function'Z_QM_CREATE_INSP_LOT'in BACKGROUND TASK
exporting
i_qals = i_qals.
The Z function code is:
z_qm_create_insp_lot.
*"----------------------------------------------------------------------
*"*"Interface local:
*" IMPORTING
*" VALUE(I_QALS) TYPE QALS
*"----------------------------------------------------------------------
data: ls_order_objs type bapi_pp_order_objects.
data: lt_comp typetableof bapi_order_component,
ls_comp type bapi_order_component.
data: l_aufnr_no_zero type aufnr.
data: ls_qals type qals.
data: ls_rmqed type rmqed.
data: out_subrc like sy-subrc,
out_qals like qals,
out_prueflos like qals-prueflos.
ls_order_objs-header = 'X'.
ls_order_objs-components = 'X'.
callfunction'BAPI_PRODORD_GET_DETAIL'
exporting
number = i_qals-aufnr
order_objects = ls_order_objs
tables
component = lt_comp.
loopat lt_comp into ls_comp where item_number ne0and movement_type eq'101'.
ls_rmqed-dbs_steuer = '01'.
ls_rmqed-dbs_flag = 'X'.
ls_rmqed-dbs_nochg = 'X'.
ls_rmqed-dbs_subrc = 'X'.
ls_qals-mandant = sy-mandt.
ls_qals-werk = i_qals-werk.
ls_qals-art = '33'.
ls_qals-herkunft = '89'.
ls_qals-matnr = ls_comp-material.
ls_qals-aufnr = i_qals-aufnr.
ls_qals-lmengeist = ls_comp-req_quan.
ls_qals-losmenge = ls_comp-req_quan.
ls_qals-gesstichpr = ls_comp-req_quan.
ls_qals-LMENGEPR = ls_comp-req_quan.
move i_qals-aufnr to l_aufnr_no_zero.
callfunction'CONVERSION_EXIT_ALPHA_OUTPUT'
exporting
input = l_aufnr_no_zero
importing
output = l_aufnr_no_zero.
callfunction'QPL1_INSPECTION_LOT_CREATE'
exporting
qals_imp = ls_qals
rmqed_imp = ls_rmqed
importing
e_prueflos = out_prueflos
e_qals = out_qals
subrc = out_subrc
.
if out_subrc isinitial.
out_qals-prueflos = out_prueflos.
out_qals-lmengeist = ls_comp-req_quan.
out_qals-losmenge = ls_comp-req_quan.
out_qals-gesstichpr = ls_comp-req_quan.
callfunction'QPL1_UPDATE_MEMORY'
exporting
i_qals = out_qals
i_updkz = 'I'
i_rmqed = ls_rmqed.
* I_DUMMY =
callfunction'QPL1_INSPECTION_LOTS_POSTING'
exporting
i_mode = ' '.
callfunction'BAPI_TRANSACTION_COMMIT'
exporting
wait = 'X'.
endif.
endloop.
the inspection lots for co-products are then created at the same time as the 03 inspection lot.
Don't forget that inspection plans must be set up for the co-products, as opposed to what happens to header material, where we create inspection operations in PP task list.
Best Regards,
DM
When I say Transportation Module I Mean SPRO > Logistics Execution > Transportation in SAP ERP ECC6.0
Ticketing System means to book online tickets and view schedule etc? We can use SD module for selling tickets but yes for Tickets reservation and flight schedule etc I have never seen such thing in ERP and I am sure you have searched everything on it. If you don't find any solution then you should contact SAP directly. They might have some solution for it.
Airline industry is world's biggest industry and how could SAP leave it orphan without releasing some industry specific solution
Did you search everything and didnt get anything?
Thank$
Hi,
I have been asked to configure Intrastat (tcode ENPA) to use Fiscal Periods (4-4-5 calendar) for reporting both arrivals and dispatches. I cannot work out how to do this as the programs seem to be configured to report on Calendar Month.
The business wish to do this so that they can reconcile their Intrastat to their VAT return. They have special allowance from HMRC to report VAT in Fiscal Periods rather than months. From reading the HRMC documentation this should be possible for Intrastat. However, I cannot see a way to do it in SAP.
I have searched SCN and there is no definitive answer to this question.
If anyone can help, I'd really appreciate it.
Thank you Sunny!
Everything is fine. I have found the entry for ERP60 EHP6.
Regards Frank