Quantcast
Channel: SCN: Message List
Viewing all 8594 articles
Browse latest View live

Re: Distribution Multiplier issue in APO

$
0
0

I dont know whether my question is not visible or people are confused with this. No response to my questions????


Re: Problem in Copying module pool program

$
0
0

Hi,

 

Go to SE80 workbench, Give your program name.

Right click on program name--->copy.

 

Provide your include names, then click OK.

 

Try to activate the program, it will work,

 

OR

 

If you still facing any problem then seach for the include name "GLOBALLY", then replace them

with your include names, It will surely work.

 

 

Reward if helpful.

HANA - Address of Business Partner can not be updated by DI-API-Object

$
0
0

Hello, everybody,

 

I do need help very urgent. My customer goes live with Business One HANA in two days and I got severe problems in importing master data by DI-API.

I managed to import all Business Partners. Now I would like to import the addresses by using the object oBusinessPartners and object Addresses.

 

When I test my code (vba) with SQL-Server everything is fine. All data are imported, no error-message. So the code has to be correct (it is not the first time, that I do such thing).

 

Using the code for HANA everything is fine only in the first step. That is to say, the objects got their correct values and I can update the Businesspartner without any error-message. The new address is created in the bp-masterdata.

 

The only thing is, that despite of the address-name all other data are not saved. The fields are simply empty.

Is there any difference between SQL-Server and HANA when using the di-api-objects?

 

I really do hope for fast and helpful answers.

Thank you very much in advance!!!

 

with kind regards,

Toby

 

my code is:

  Set GP = sapComp.GetBusinessObject(oBusinessPartners)
  blnupdate = GP.GetByKey(MyWsh.Cells(zeile, FieldColumn(HdrRange, "CardCode")))
  If blnupdate Then
 
   Set GPAdr = GP.Addresses
 
   Dim AdrCount As Long
   Dim AdrCurrLine As Long
   AdrCount = 0
   AdrCurrLine = -1
 
   For AdrCount = 0 To GP.Addresses.Count - 1
    GPAdr.SetCurrentLine (AdrCount)
    If GPAdr.AddressName = MyWsh.Cells(zeile, FieldColumn(HdrRange, "AddressName")) Then
     AdrCurrLine = AdrCount
    End If
   Next AdrCount
  
   If Not AdrCurrLine = -1 Then  
    GPAdr.SetCurrentLine (AdrCurrLine)
   End If
 
   With GPAdr
    If Not AdrCurrLine = -1 Then .Add
    .AddressName = ADR_AddressName(MyWsh.Cells(zeile, FieldColumn(HdrRange, "AddressName")))
    .Street = ADR_Street(MyWsh.Cells(zeile, FieldColumn(HdrRange, "Street")))
    .Block = ADR_Block(MyWsh.Cells(zeile, FieldColumn(HdrRange, "Block")))
    .ZipCode = ADR_ZipCode(MyWsh.Cells(zeile, FieldColumn(HdrRange, "ZipCode")))
    .City = ADR_City(MyWsh.Cells(zeile, FieldColumn(HdrRange, "City")))
    .County = ADR_County(MyWsh.Cells(zeile, FieldColumn(HdrRange, "County")))
    .Country = ADR_Country(MyWsh.Cells(zeile, FieldColumn(HdrRange, "Country")))
    .State = ADR_State(MyWsh.Cells(zeile, FieldColumn(HdrRange, "State")))
    .FederalTaxID = ADR_FederalTaxID(MyWsh.Cells(zeile, FieldColumn(HdrRange, "FederalTaxID")))
    .TaxCode = ADR_TaxCode(MyWsh.Cells(zeile, FieldColumn(HdrRange, "TaxCode")))
    .BuildingFloorRoom = ADR_BuildingFloorRoom(MyWsh.Cells(zeile, FieldColumn(HdrRange, "BuildingFloorRoom")))
    .AddressType = ADR_AddressType(MyWsh.Cells(zeile, FieldColumn(HdrRange, "AddressType")))
    .AddressName2 = ADR_AddressName2(MyWsh.Cells(zeile, FieldColumn(HdrRange, "AddressName2")))
    .AddressName3 = ADR_AddressName3(MyWsh.Cells(zeile, FieldColumn(HdrRange, "AddressName3")))
    .TypeOfAddress = ADR_TypeOfAddress(MyWsh.Cells(zeile, FieldColumn(HdrRange, "TypeOfAddress")))
    .StreetNo = ADR_StreetNo(MyWsh.Cells(zeile, FieldColumn(HdrRange, "StreetNo")))
   End With
 
  UDF:
  If GPAdr.UserFields.Fields.Count > 0 Then
   For uf = 0 To GPAdr.UserFields.Fields.Count - 1
    GPAdr.UserFields.Fields(uf).Value = UDF(GPAdr.UserFields.Fields(uf), MyWsh.Cells(zeile, FieldColumn(HdrRange, GPAdr.UserFields.Fields(uf).Name)))
   Next uf
  End If

 

   If MyWsh.Cells(zeile, FieldColumn(HdrRange, "Standard")) = "Y" Then
    With GP
     If GPAdr.AddressType = bo_BillTo Then
      GP.BilltoDefault = GPAdr.AddressName
     Else
      GP.ShipToDefault = GPAdr.AddressName
     End If
    End With
   End If
 
   lngRst = GP.Update
 
   If Not lngRst = 0 Then
    MyWsh.Cells(zeile, FieldColumn(HdrRange, "")) = SAPErrorHdl(False)
    ErrCount = ErrCount + 1
   End If
 
  End If

Re: UWL - add columns and value

$
0
0

Hi Vinay,

Well there's a lot of "it depends" in that - especially depending what is already in your landscape.  Your best approach is to contact your SAP Total Quality Manager if you have on, or go to your local SAP sales team if you don't, explain your scenario and get them to check for you.

 

And yes it is possible to add/remove/move columns and attributes in both the BPM and Gateway Unified inboxes - on the organizing and personalizing your work items front I would rate it as a somewhat better than the UWL... there's a bit more power in using the UI5 than the old UWL XML.

Hope that helps

Jocelyn

Re: To Append Records at the begining of Excel.

$
0
0

Hello Priyesh,

 

The flag that you set doen't really works as per the SAP function module documantation.

Try to do following stpes :

 

  •     Create one more table of the same type,(say itab2)

            that contains your data to be downloaded.

  •     Append/Insert your header information that you need to be displayed at the begining.

            Fill itab with the header.

  •     Do as follow to append your previous table to new one.

    

           APPEND LINES OF itab1 TO itab2.


  • Now do pass itab2 to the FM, it will surely work.

 

 

 

 

 

 

Reward if helpful.

Re: Paragraph line breaks not showing

$
0
0

Thanks for getting back to me

SAP Crystal Reports Developer Version for Visual Studio 2012

HTML as below

<p>

Electrical services represent  Blah Blah

</p>

<p>

Text

</p>

storage_partition in SAP Hana

$
0
0

Hana experts:

I have a question about storage_partition. The commands used below are all from

http://help.sap.com/hana/SAP_HANA_LCM_Tools_Reference_Guide_en.pdf

 

Q1:  In the following syntax, storage_partition=22,33,44, 55, those numbers are just examples OR they have to be these discrete values?

 

<installation kit directory> # cat ~/Passwords.xml | ./hdbinst --batch

--addhosts=hana2:role=worker:storage_partition=22,hana3:role=worker:storage_part

ition=33,hana4:role=worker:storage_partition=44,hana5:role=standby:storage_par

tition=55

--sapmnt=/hana/shared ...

 

Q2:  On the same guide page 32, it says:

 

storage_partition [page 98]

Specifies the storage partition number, which is a logical role number assigned to non-shared storage

devices in a storage connector API. Standby hosts do not have a storage partition.

timeouts [page 99]

 

But we see storage_partition=55 for standby host hana5 in above command.

 

Q3: I believe that above storage_partition numbers are also put into global.ini so that each host knows where they are. Could you please confirm ?

 

Thanks in advance.

Re: Retrofit, Solman 7.1

$
0
0

Hello,

 

Any suggestions ?

 

Thanks,

Ankit


Re: Remove Auto Log Off for a specific user

$
0
0

What is the user type of this 1 user?

Re: Exception Handling - Picking

$
0
0

Hi Shravan


I hope best way to enhance the action which you have used for blocking.

Before blocking ,program will check open pick wt for same storage bin and cancel WT.


I hope this will work.


At the same time if you send screen shot of all exception  code we can check and get goof details.


regards

Suraj

Re: Space released during Orcale DB reorg..??

$
0
0

Hi Amit,


We donot have any data which we archieve. Thanks a lot for your response.

I am working on what you and Reagan has shared. Will come back in case

of any clarifications..thanks again..

 

Regards,

Re: SAP Business One Goods Issue Problem

$
0
0

Thanks for your update Gordon,

 

Please can you elaborate on why this is normal because i think if you buy goods at a certain price for example last month, the system should also issue the goods out at the same cost the following month.

 

Regards,

Folajimi

Re: Pass table(or array) to SAP web service from c# .net as input parameter

Re: PR /PO Created from PM Order not displayed in S_ALR_87013558

$
0
0

If you want to see the PO are linked to the WBS you can use transaction ME23N, use the WBS as a filter.

You can also use transaction CN41 to see the open value.

 

Regards,

Kevin Gois

Re: FINBASIS 736 Installation

$
0
0

When you create a stack file for the EHP installation there in an option called "Select Stack-Dependent Files" and under ABAP you have the option FINBASIS.

Have you checked it ?

 

Regards

RB


Re: Stock movement and negative quantity in TR Zone.

$
0
0

Hi Mukesh,

 

From Business perspective i am with you that we will have a scenario where we receive the material and store in SLoc(A) and system should allow to transfer the stock from SLoc(A) to SLoc(B). I was looking for the alternate solution and found that there is a T-Code in SAP QAC2 which allows you to transfer the stock from SLoc A to SLoc B when Inspection lot are active and automatically transfer all the relevant quant from SLoc A to SLoc B

So in my opinion you can perform the process in two step

1) Transfer the stock from SLoc(A) to SLoc(B) using QAC2 while inspection lot are still active

2) Perform QA decision using QA11

 

 

Quant before QAC2 (Stock in SLoc PR01)

 

QAC2 (Change of SLoc from PR01 to WM01)

System automatically creates and confirm the transfer order based on the customization for Movement type (In this case it picks Inventory MvT 323 and WM MvT 309)

 

Quant information after QAC2

The only con of this step is Inspection lot should be active and it is possible within the same stock category

 

as i mentioned earlier i am not much familiar with QM module however in last couple of days based on your query i have gone through few standard SAP document to understand QM module so thanks to you for helping me to increase my Knowledge base. As far as above solution are concern please get in touch with your QM consultant to re validate

 

Let me know if this helps

Re: Problem with the result view of Search page

$
0
0

Idealy it should not happen..can you please share the code written at get method. Lets have a look what is there.

Re: About Deal Finder and Influencer Map

$
0
0

Hello Thierry, Thank you for your valuable feedback; per your input, I have updated the Administrator Guide accordingly - for the time being, only in English, since the translation process into the other supported languages for SAP Cloud for Customer will take some time. Nonetheless, you can review the changed content on p. 303 of the updated guide, either on SAP Help Portal (see http://help.sap.com/cloud4customer) or in SAP Service Marketplace (see http://service.sap.com/cloud4customer). Best wishes, John-Christopher Thomas

PI 7.31 (single stack) posting RFC gives this error: RFC_ERROR_SYSTEM_FAILURE: Processing of change number CO-01234 cancelled (raised by system ECCHostXYZ)

$
0
0

I'm trying to determine if I am dealing with an RFC connection issue or just an error resulting from the RFC itself.


The error says "Processing of change number...cancelled (raised by...ECCHostXYZ)".


I thought this was a problem with my RFC config because it is labeled as "RFC_ERROR_SYSTEM_FAILURE".


However, when I google that specific message, it appears to be an error specific to change order creation.

 

Here’s my google search: http://goo.gl/ZhKsm3

 

Here is the error again:

 

RFC_ERROR_SYSTEM_FAILURE: Processing of change number CO-01234 cancelled (raised by system ED1|ecc-host-xyz)

 

When I check ST22, I see no RFC errors.

Re: OData Service for search functionality?

$
0
0

Hi Thomas,

 

Thank you and I really appreciate you help on this.

That's worked well, couple of additional questions

 

1. Is it possible to pass JSON as filter request?

2. Is it possible to call Stored Procedure in the service instead of calling Table or View?

 

Regards,

 

Dharmesh

Viewing all 8594 articles
Browse latest View live




Latest Images