Dear All,
I am facing the below error while scheduling the Bex Query based Webi report.
Error:RWI 00200
We are using BO XI 4.0 Sp05.
Please advise
Dear All,
I am facing the below error while scheduling the Bex Query based Webi report.
Error:RWI 00200
We are using BO XI 4.0 Sp05.
Please advise
Hello Lakshmipathi,
Thanks for the reply. If possible will you please send the step to configuration of the same?
Thanks & Regards,
Prashant Kunjir
Glad to know that..
Regards,
AL
Dear Experts,
while creating vendor master PAN number should be mandatory. where to do this.
Hi,
please search in Google or in our SCN - you will get document of LSMW Project recording Process
Thanking you
Mahesh
Hi,
From se71 click on change - Form - delete.
Regards-
Makarand
Hi Sunil,
This field is QMNAM field of Notification.
See the Notification integration part to your Order.
If it is the case then 2 possibilities.
1. Code written User-Exit QQMA0014 is forcing this field to be filled.
2. Req radio button selected in the OIAL spro configuration against field VIQMEL-QMNAM (picture)
Please check these.
Jogeswara Rao K
Hi Kavya,
Sorry i coudnt find a document, but definitely u can find it in google .
you can also watch the below video which explains the option 1 what i have explained above
http://www.youtube.com/watch?v=8TA5InXwBF0
to beprecise @12:51 they show case how to select the process chain in DS.
hope this helps..
Thanks & Regards
A.Dinesh
Hi,
yesterday I tried to add an external alias for an OData service (TC: SICF), but I always got an 500 error after calling the service:
500 SAP Internal Server Error
ERROR: URI-Verarbeitung - statischer Pfad in Konflikt mit URI (termination: RABAX_STATE)
Can someone help me solve this Problem?
Thanks a lot!
Stefan
Hello everyone,
I'm working on the Migration of our old B1iSN 8.8 scenarios to B1iSN 9.0.
The Scenario is the following: I have a SQL table with data and a separate control table where I store the date of the last run/data retrieval. My JDBC Inbound is triggered every day and the SQL Statement selects all new data between now and the last run.
In B1iSN 8.8. I've got one IDOC per row from the resultset. In the B1 9.0 outbound all rows are now withing one single IDOC.
How can I trigger that separate IDOCS are created!?
I've already tried the "Block Size" Setting. When I set it to "1" I get for two datasets two output IDOCS. However all data is in IDOC 1 and the second IDOC is empty. What is wrong here? How can I Access the data in the current block?
Currently I use a "for each" on the Result Set Rows . When I set the Block
Its depend on interest. If you are not interested in coding part, then you have to choose functional module..
There are many module are there which is coding free.
it will be good if you choose as per your interest.
in which field you had worked mostly as ABAP ?
I mean the requirement comes from which module?
As a business wise, which part you are interested?
Like as Procurement / Sales / requirement planning / Financial Accounting etc..
Regards
Hi Praveen,
as working with sap abap you must get enough exposure in basic modules like SD or MM, so why not you try with these options too, ok if you thinks about BI, BODS or HANA, remember HANA is a database related tool,
SAP BI : According to the standard definition of BI ,SAP BusinessObjects business intelligence (BI) solutions simplify data manipulation, allowing users to access, navigate, analyze, format, and share information across a corporate environment. The products allow a wide range of processes, from search and navigation to advanced analytics, enterprise query, reporting and analysis, dashboards and visualization, and information infrastructure management.
BODS : BODS is an ETL tool by SAP used for integration with all types of disparate systems, extracting data from them, transforming them into meaningful information and loading them into all types of systems.
SAP HANA : SAP HANA converges database and application platform capabilities in-memory to transform transactions, analytics, text analysis, predictive and spatial processing so businesses can operate in real-time
So, please search about these modules and see in which module you find yourself more explanatory in terms of understandings and manipulating, if you will judge yourself then i think it will be more fruitful to you in shaping your career and future.
Where is the tomcat cache that I can delete it?
Thanks.
Simon
Hi experts
Would you have any experience/best practice in designing for cycle count process for your clients?
By cycle count, I mean for frequent counting (daily) for specific item category / exceptional count request.
My client want to implement a cycle count process to minimize the effort for full stock take which happen around 3 times per year.
They are using SAP as the core system to keep track of inventory, and using external store system, so some considerations would be on, for example:
- whether the count variance or counted quantity shall be interfaced back to SAP
- whether SAP should be the source to initiate a stock count process or POS initiate
It would be very nice if you can share some best practice as in the process flow, system information flow, etc.
Best regards
Dominic
hi all,
I found the solution for above problem while going through Jose's Discussion on Creation of Addons for SAP Business One Studio( Creation of Addons for SAP Business One Studio )
it has been due to the argument parameter number pass to instantiate a instance of SAPbouiCOM.Framework.Application class...
it seem's the default index given when project creation is incorrect...
Many thanks to Jose Karlo Martinez and Edy Simon...
I have basic problems. I am not able to find right sample codes. I have two simple forms. When I click on the button of the form1, it creates new form2. But form2 is not able to find the grid on the form. Both forms are attached. I am using Visual Studio for SAP Business One.
Option Strict Off
Option Explicit On
Imports SAPbouiCOM.Framework
Namespace SBOAddonProject1
<FormAttribute("SBOAddonProject1.Form1", "Form1.b1f")>
Friend Class Form1
Inherits UserFormBase
Public Sub New()
End Sub
Public Overrides Sub OnInitializeComponent()
Me.Button0 = CType(Me.GetItem("Item_0").Specific, SAPbouiCOM.Button)
Me.Grid0 = CType(Me.GetItem("Item_1").Specific, SAPbouiCOM.Grid)
End Sub
Public Overrides Sub OnInitializeFormEvents()
End Sub
Private WithEvents Button0 As SAPbouiCOM.Button
Private Sub Button0_ClickBefore(sboObject As System.Object, pVal As SAPbouiCOM.SBOItemEventArg, ByRef BubbleEvent As System.Boolean) Handles Button0.ClickBefore
Dim frm As Form2
frm = New Form2()
frm.Show()
End Sub
Private WithEvents Grid0 As SAPbouiCOM.Grid
End Class
End Namespace
Option Strict Off
Option Explicit On
Imports SAPbouiCOM.Framework
Namespace SBOAddonProject1
<FormAttribute("SBOAddonProject1.Form2", "Form2.b1f")>
Friend Class Form2
Inherits UserFormBase
Public Sub New()
End Sub
Public Overrides Sub OnInitializeComponent()
Me.Grid0 = CType(Me.GetItem("Item_0").Specific, SAPbouiCOM.Grid)
End Sub
Public Overrides Sub OnInitializeFormEvents()
AddHandler LoadAfter, AddressOf Me.Form_LoadAfter
End Sub
Private WithEvents Grid0 As SAPbouiCOM.Grid
Private Sub Form_LoadAfter(pVal As SAPbouiCOM.SBOItemEventArg)
Dim frm As SAPbouiCOM.Form
frm = Application.SBO_Application.Forms.Item(1)
Dim dt As SAPbouiCOM.DataTable
Try
dt = frm.DataSources.DataTables.Item("dt1")
Catch ex As Exception
frm.DataSources.DataTables.Add("dt1")
dt = frm.DataSources.DataTables.Item("dt1")
dt.Columns.Add("Column1", SAPbouiCOM.BoFieldsType.ft_AlphaNumeric, 254)
dt.Columns.Add("Column2", SAPbouiCOM.BoFieldsType.ft_AlphaNumeric, 254)
dt.Columns.Add("Column3", SAPbouiCOM.BoFieldsType.ft_AlphaNumeric, 254)
End Try
dt.Rows.Add(1)
dt.SetValue("Column1", 0, "Value1 - row 1")
dt.SetValue("Column2", 0, "Value2 - row 1")
dt.SetValue("Column3", 0, "Value3 - row 1")
dt.Rows.Add(1)
dt.SetValue("Column1", 1, "Value1 - row 2")
dt.SetValue("Column2", 1, "Value2 - row 2")
dt.SetValue("Column3", 1, "Value3 - row 2")
Grid0.DataTable = dt
End Sub
End Class
End Namespac
Hi Rohan
From your trace, looks like the RFC connection is having some problem
Caused by: com.sap.aii.adapter.rfc.afcommunication.RfcAFWException: error while processing message to remote system:com.sap.aii.adapter.rfc.core.client.RfcClientException: resource error: could not get a client from JCO.Pool: com.sap.mw.jco.JCO$Exception: (106) JCO_ERROR_RESOURCE: Connection pool RfcClient[RFCLookUpGLTransactionsData]c63e54cc41083352af06556d6dd4d9d4 is exhausted. The current pool size limit (max connections) is 1 connections.
at com.sap.aii.adapter.rfc.afcommunication.from.FromAF.callClientChannel(FromAF.java:229)
at com.sap.aii.adapter.rfc.afcommunication.ejb.RfcAFBean.process(RfcAFBean.java:270)
Can you check your RFC receiver comm channel?
Rgds
Eng Swee
Hi Juan,
thanks but I saw that note and it didn't help.
Regards
Michele
Thanks Inrajit for your valuable time.
Will check and revert if found any issue.
Warm Regards,