Hi Sharma,
Use BAPI WS_DELIVERY_UPDATE, pass vbkok_wa-lifsk as space.
Thanks,
K Prabhu
Hi Sharma,
Use BAPI WS_DELIVERY_UPDATE, pass vbkok_wa-lifsk as space.
Thanks,
K Prabhu
Hello Venkat,
Check if this is useful,
https://help.sap.com/saphelp_nw70/helpdata/en/22/042551488911d189490000e829fbbd/content.htm
I understand you're talking about custom RFC's , Considering that all BAPI's are RFC enabled and have/uses table parameters. I don't see any issue in Custom one's.
Thanks,
K Prabhu
Thank you all, problem has been solved.
Best regards,
Andreas
Hi there,
I try to install trusted RFC connections between two Systems.
When I use SMT1 to make a trusted relationship and pick one destination, i get an error saying that there are not enaugh authorisations for creating it.
When I check the user on the rfc destination he has S_RFCACL (RFC_EQUSER=N), S_RFC_TT (ACTVT=01), S_ADMI_FCD with NADM and S_RFC for executing "RFC_TRUSTED_SYSTEM_SECURITY" on the other System with which I try to get trusted.
But still getting the error. Did I forget something?
Did a trace on the user, mentioned on the Destination an just get return code=0; S_ADMI_FCD=NADM.
I really don't know what to do, so thanks for your support.
Sorry for my bad english, I hope you guys understand my problem.
Thanks and with regards,
Yannick
Hello Ulrich,
Below code is working fine for creating folder in Unix/Linux environment. But not sure how to do that in Windows environment. Can you please explain how to achieve it ?
lv_command(9) | = 'mkdir -p '. | |
lv_command+9(55) = lv_pathextern. |
CALL 'SYSTEM' ID 'COMMAND' FIELD lv_command. |
Thanks,
Gaurav.
Hi Prabhu,
Was searching for this mechanism. Thanks.
Hi Yannick,
perhaps it is not the user maintained in the RFC destination, that has insufficient permissions, but the user who is trying to create the trust relationship. (Meaning: not enough permissions to use SMT1.)
Best Regards, Ulrich
Hi Gaurav,
'-p' is not supported on Windows (and not necessary, as the Windows mkdir command already creates non-existing parent directories automatically).
So just use 'mkdir '.
Best Regards, Ulrich
Hi Ulrich,
thanks for your response
i figured it out by myself, but you are right.
Me, the user trying to create this realationship, had not enaugh authorisations to do it in the partner system.
Thanks for your help and have a nice day.
Best regards,
Yannick
Hello,
i am stumbled over this report (RBDMIDOC_RETAIL) when i was looking for better performance of change prointer processing with RBDMIDOC. There is no Retail IS activated on our system. But the report is there, so i give it a shot. But i am getting a short dump. -> Function module "P_MASTERIDOC_CREATE_SMD_MATMAS" not found.
I would like to find out if the report does also work for normal MATMAS IDOCS (BASIS TYPE = MATMAS05). Or is it only useful for IDOC's of type ARTMAS ?
If it works for MATMAS, i could find out how to get this new function module...
Any help appreciated,
thx!
Hi Robert,
RBDMIDOC is the program that works right for change pointers. It works with MATMAS
Hi Ivan,
do you mean for testing purposes? Then you can use transaction WE19. Select one sample IDoc as a template (or just select the IDoc type and fill it with the values that you want), set the receiver port in the IDoc control record, so that it will be sent to your external system, and then you can click "Start Outbound Processing" and set the "repeat factor" to as many IDocs as you want to fire to the receiver...
Best Regards, Ulrich
Hello, Yes, we design the label in Label Matrix Powerpro printer and upload the ZPL code to SAP R/3 and send the ZPL code directly to printer for printing the labels. Now, I face problem with the True Type Fonts. Do I need to install any new fonts for Label Matrix. The thermal printer fonts provided are not suitable for designing and in case of modifying the existing labels where we have text already available, it is creating problems by not recognizing the fonts.
Thanks,
Thank you for posting Ulrich .
I need to do that because the project go live is near . In my case , there are about 15,000 purchases order to create idoc . Just purchase order, we have other type yet .
We are creating a program to do it with function " RV_MESSAGES_INSERT " to create register at NAST. I'll posting the results.
Hi everyone,
I fixed the problem mentioned above by granting me more authorisations on the partner system.
But now I got another Problem:
System1 and System2 are now trusted. On both sides new RFC Destinations got automatically created (TRUSTING@System1 & TRUSTING@System2).
I need to use the "old" destinations and I thought that I just need to switch those destiantions to "TRUSTED REALATIONSHOP = Yes" on the "Login & Security" Tab on the Destination in SM59.
But when I now want to test the connection by using the "authorisationcheck" it aborts by telling me: "Not authorized to Login at partner System".
It is definetly not an authorization Problem, because it didn't work when giving sap_all to the system user, defined on the RFC Destination.
Does anyone know what to do here?
Thanks alot and have a nice day,
Yannick
Hello,
if the printer allows the upload of a True Type font (e.g. via a memory card, which is inserted into the printer), then you can design the label to call this font by its name.
Then you can look at the label code to see whether the font calling command is fine (so the printer should correctly select the needed True Type font).
Best regards,
Laszlo
Hello Adinarayana,
Can you please help with your solution. We have a same requirement.
Thanks in Advance.
We use IDoc INVOIC02 to post some inbound supplier invoices via FI. Is there a way to use this IDoc to post FI cross-company code documents (supplier posting in company code A and offsetting expense in company code B)?
Category ABAP Programming Error
Runtime Errors CALL_FUNCTION_SEND_ERROR
ABAP Program SAPLRSR_XLS_RFC
Application Component BW-BEX-ET
Date and Time 12.04.2016 17:57:54
Short Text
"connection to partner 'GCPL-HO-DT-0272:65335' broken" (I/O error)
What happened?
CPIC-CALL: 'ThCMSEND' : cmRc=20 thRc=223#CPIC program connection ended (read
error)
An error occurred while making a Remote Function Call.
What can you do?
Note down which actions and inputs caused the error.
To process the problem further, contact you SAP system
administrator.
Using Transaction ST22 for ABAP Dump Analysis, you can look
at and manage termination messages, and you can also
keep them for a long time.
Hello Nikunj,
This dump is ofter related to a process which triggered a remote RFC to process a request and deliver some response.
Turns out that this remote processing took too much time (due to a huge selection criteria or some other situation), much longer than expected, and at the time it finished the original caller was no longer waiting for the results and so there was no one to deliver the them to.
This is a consequence of a problem, not the cause. You have to investigate why the processing on the remote RFC is taking so much time to complete.
Cheers,
Ian Segóbio.