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

Re: Formal error in table FKKOPK: Item numbering is inconsistent

$
0
0

Hi Abdul,

 

Kindly check if you are passing correct serial number.

I have faced same issue, but solved it by passing incremented opupk (Serial Number of Line Item) .

 

  DATA: lwa_vkk_doc_r402    TYPE isu21_vkk_doc_r402,

             lv_opupk                  TYPE opupk_kk.

 

lwa_vkk_doc_r402-n_fkkop-opupk = lv_opupk + 1. ... inside the loop


 

Thanks.


Issue in custom approval process

$
0
0

Hi,

 

I am trying to create an approval process on a standard business object (Sales Quote – Item level) by enhancing the BADI provided by SAP.

We create an Sales Quote -> save -> Submit (Submit for Approval)

When I submit for approval the BADI enhancement will trigger.

As per my validations (BADI script file), when the conditions are met then the transaction will be sent for approval for the concerned person with the return statement (return result ; ) holding the UUID.

When the conditions are not met then the return statement will not hold any value(UUID), then it is going for approval with the message “No Approver found; task unassigned” .

 

With reference to the below post I am working on this.

Custom Approval Rule on Standard Business Objec... | SCN

 

Can anyone please help me in resolving the issue.

 

Thanks In Advance.

 

Regards,

Pragathi.

Re: Save Model is not working with Custom R Component

$
0
0

cnrFunctionmodel<-function(dataFrame,ind,modelcnr,type)

{

output<-predict(modelcnr,data.frame(dataFrame[,ind]),type=type);

out<- cbind(dataFrame, output); return (list(result=out));

}

 

 

 

Change the function to:

cnrFunctionmodel<-function(dataFrame,modelcnr,type)

{

output<-predict(modelcnr,dataFrame,type=type);

out<- cbind(dataFrame, output); return (list(result=out));

}

 

The independent column is present in the scoring function, this was ok when working with versions before 2.3, but with the later versions the secondary function does not expect independent column ,.; and hence you are prompted the message "MODEL_PARAMS_CHECK_WARNING" .

 

Do the change and you should be good

Re: Message No. NR751

$
0
0

In VOV8 get value "No.range int.assgt." for sales document type.  In VN01 check whether an internal number range is assigned for it.

Re: Finding user exits while debugging

$
0
0

Instead ST05 I would use SAT (or SE30), so you can also find coding parts too and not only SQL parts.

Re: BODS Repository create Error on OracleDB

Re: SAPUI5 Navigate to picture in ABAP BSP-Application

Re: Slow process Dimension when using Member Formula.

$
0
0

Hi,

 

Here's the log of SM50 when I ran the process dimension.

It stuck 38 minutes on the job CL_UJHANA_MODEL_FORMULA_HELPERCP.

 

If I removed the Member Formula, then the process dimension took 2 minutes.

Process Dimension log in SM50.jpg


Re: Database Connector Error

$
0
0

Gerald, Can I get that driver? I have the same issue using the rocket driver.

Re: Create Report from MYSQL and c#

$
0
0

On the Overview tab on the left side there is a link to sample applications. I suggest first using the Report Designer to get familiar with the Designer before using the SDK.

 

Don

Re: EDITING PLAF TABLE

$
0
0

Hello,

 

For such changes you will have to create a LSMW or use Script Recording and Playback.

I recommend the Script, since you probably don´t have authorization to create and run LSMW: Script Recording & Playback for Dummies

 

Kind Regards,

Mariano

Re: HCI Data Services ATL Import Error

$
0
0

Hi Nagesh,

Please mark this Discussion with a Correct Answer (closes, but does not lock the Discussion) and Helpful Answer where appropriate. See http://scn.sap.com/community/support/blog/2013/04/03/how-to-close-a-discussion-and-why   Even if you discovered the solution without any outside contributions, it helps others to understand what the solution turned out to be. 

 

 

Do not use Assumed Answered as it confuses anyone looking for the specific answer.  If you dig into the Getting Started link (top right of each SCN page), you are only instructed to mark Helpful or Correct Answers to Discussion responses. 

 

 

Thanks, Mike (Moderator)

SAP Technology RIG

Re: Rule in pay Slip

Re: Search for "not checked" checkbox

$
0
0

Tom,

 

I quickly debugged, and the magic appears to be happening in the interaction layer :-(.

If you set a break in CL_BUPA_IL_SEARCH_SERVICE, you can see that in method CONVERT_SELECTION_PARAM, the y/n is converted to X or space.

 

As the parameter was already available in the search criteria with a value, this now results in parameter I EQ ' '... Making it an explicit parameter for the query.

 

My bets would be on adding the 'is not', and keeping the parameter itself as it was.

Changing the handling of the interaction layer concerning AET fields doesn't sound like a good plan :-(.

 

Regards,

Pieter

Re: BI 4.1 SP6 - random instance failure

$
0
0

You probably need to look at the log files for the Webi Processing and Job servers to get more information - WIS 30270 is a "generic" error that comes up when the system doesn't know what the error really is.

 

Also, "Object could not be scheduled within the specified time interval" generally means that you don't have the capacity in the Job Server for the number of Webi schedules that you're trying to run and you have some long-running reports.  I would go to the properties of the Adaptive Job Server, scroll down to find the Web Intelligence Job Server, and increase the number of concurrent jobs to 10.  You might also have to add a Web Intelligence Processing Server to the system to support his, but only if you have enough RAM to handle another one.

 

-Dell


Re: SUM1SP16P2: EHP8 Upg Stoppage at MAIN_SHDIMP/SUBMOD_SHDDEL2/PSCRGEN_DROP_SHD_TABLE_EX

$
0
0

Opened OSS message and SAP Support assisted us with this. Despite the fact there are errors in the SQL files, you cannot simply edit those as they have a CRC. If you do edit the files manually the SUM process will not use them, because they will fail the CRC.

 

Issue is resolved.

CA/VA in DRI report

$
0
0

Hello,

 

I would like to announce, it was released the changes on report RPCSSRP0 to comply with the new Social Security validations regarding CA/VA adjustments. You can find those changes in the following note:

 

2288783 - RPCSSRP0: Adaptations to comply to new Social Security validations

 

Best regards
Germán Meyer

Re: Different data binding in detail view

$
0
0

Normally you would use an attachPatternMatched event listener on your routes which would call a function to set the binding.  If you generate a master detail template in Web IDE you should find an example in the detail controller.

 

Regards,

Jamie

SAP - Technology RIG

Re: Strange Error in PA

$
0
0

Hi Rasoul, the version you give us is the SAP HANA Studio one, we need the one of the SAP HANA system; screenshot to follow.

 

Thanks & regards

 

Antoine

Re: SOAP Input Adapter - configuration

$
0
0

Hi Robert,

we have port set to 9090.

 

Thank you for your information.

 

I accidentaly used tutorial for ESP SP04 but we have SP11. I'm trying to set Discovering Schema and Creating a Mapping File for the SOAP Adapter. Here is link to tutorial: http://help.sap.com/Download/Multimedia/zip-esp_51sp11/esp_developer_guide.pdf I'm using WebserviceX.NET :: XML Web Services solution provider&lt;/title&gt; &lt;META HTTP-EQUIV=&quot;Content-Language&quot; … for getting WSDL file. This is my adapter config:

I got this error:

04-01-2016 16:50:59.351 ERROR [main] (SOAPTransporter.getTables) Unable to get discovery tables

java.lang.Exception: Failed to generate stub classes from all available URLs.

    at com.sap.esp.adapter.ws.soap.transporter.SOAPTransporter.generateStubs(SOAPTransporter.java:133)

    at com.sap.esp.adapter.ws.soap.transporter.SOAPTransporter.getTables(SOAPTransporter.java:538)

    at com.sap.esp.adapter.ws.soap.Discoverer.discover(Discoverer.java:44)

    at com.sap.esp.adapter.ws.soap.Discoverer.main(Discoverer.java:145)

 

Do you know what can be a problem?

 

Thank you

Jan

Viewing all 8594 articles
Browse latest View live




Latest Images