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

Re: XML structure

$
0
0

Hi Eitan ,

 

My status = '0' is not at the beginning irrespective of its position..

 

Thanks,

Darshan


Re: BAPI for Posting Vendor Down Payment (F-48)!

$
0
0

Ya.. I tried that too. But it  is not considering the values I'm passing

Re: Clicking "Blank Report" menu in Crystal report crash the application

Re: Building a logic to get data from a table

$
0
0

There is already a custom report in place and the report runs fast when I select from the BP and CA but when I added the "Invoice Number" the report takes a very long time in the aging report to return with the selection. I used SE11 to see what the Primary Key is for the tables. XBLNR isn't the primary key in the DFKKOP table so it'll take too long to run the report so I cam trying to see how I can speed up the selection process. When I am in DFKKOP in SE11 using the invoice number "XBLNR" in the table it takes a long time to get the data but when I input the BP "GPART" it returns the data very quick. The end users wants to be able to select from the Invoice Number because when the customer is paying for their utility bill they only use the Invoice Number and it takes the cashier longer trying to look for their account.

 

2016-03-20_1-26-36.jpg

Re: calling AL11 transaction inside a report program

$
0
0

In the PAI module in your module pool program, check the value of the Function code for the button and enter the code

 

IF FCODE = X.

Call transaction AL11.

ENDIF.

Dimension Context refresh

$
0
0

Hi BPC Experts,

I've got one challenge.


In my workbook, i've got two sheets for example:

1- Sales (Sales Model)

2- PNL (PNL model)

 

(The user have access multiple Entitys, and the entity dimension is secure in both model in same level)

 

When I create my BPF, I have to select only one MODEL for example, I select the SALES.

after whole configurations.

when the user  open through BPF the EPM template

it shows SALES the correct entity selected based in BPF Contaxt

but the PNL it is showing one another (where the EPM is saved, or randmomwise)

 

How can I solve this? maybe in BPF is missing something..

 

(I've got one workaround, in PNL sheet, set the Entity as Page axis Shared, and use the formula from Sales, it's works), but I would like to know if there is a standard solution for this.

 

Thanks

Regards,

Re: YTD and MTD Daywise Based on Calmonth Input

$
0
0

Hi,

 

First, remove any TIME CHAR in your FILTER tab..


For the MTD column, put your CALMONTH inside it, then filter it with the variable you are using for the USER INPUT CALMONTH..

 

 

For the YTD column, is it always from January 1 up to current date? Or January 1 up to CALMONTH entered by user?

 

If the former, you may use the standard variable 0I_CMY01 for CALMONTH to get the YTD..

 

For other variables you may refer here..

 

Standard Variables in BEX related to Time Charcteristics

 

Regards,

Loed

Re: Building a logic to get data from a table

$
0
0

DFKKP is not a database table in SE11. Is it a structure that gets filled during a transaction.

In which document are you running your code? Can you explain the requirement?


Re: BW Modeling Perspective in HANA Studio

Re: Mail text missing in workflow after transporting request

Re: Workflow PR Release - Same Approver on Multiple Levels

$
0
0

I have implemented a workflow just as described by Anjan and it works great.

At every level you check if one of the agents has already approved it and if so then auto-approve it.

SAP UI5 call SAP consume webwervice

$
0
0

hi all,

i create webservice in the sap system.i call the soapui and webservice working fine.i want to call this webservice from sapui5 page,(after convert to apk,ipa application)....

can you help me please ?

1-webservice wsdl url

qmlist.jpg

2-soapui call the webservice work fine

e2.PNG

 

3-call the from sapui5 page not working.

$.ajax({  url: "http://host:8024/sap/bc/srt/wsdl/srvc_0050568C36051ED5BBC34D5DE35A22CE/wsdl11/allinone/ws_policy/document?sap-client=500",    type: "GET",  dataType: "xml", //""json",//"     data: "ARBPL=65-MEK",    contentType: "text/xml", //"application/atom+xml",//"text/xml", //"application/json",//"text/xml; charset=\"utf-8\"",  success: jQuery.proxy(function(data, textStatus) {  console.log("data" + data);     }, this),  error: jQuery.proxy(function(data, status, error) {  console.log("hata oluştuERROR");
  }, this)  });

4-i try to add soap syntax but not working

create_request:function (value1){     var request =      '<soapenv:Envelope xmlns:soapenv='+     '"http://schemas.xmlsoap.org/soap/envelope/"'+     'xmlns:urn='+     '"urn:sap-com:document:sap:rfc:functions">'+   '<soapenv:Header/>'+   '<soapenv:Body>'+      '<urn:ZQM_GET_LIST>'+         '<ARBPL>65-MEK</ARBPL>'+         '<QMLIST>'+            '<item>'+               '<QMNUM></QMNUM>'+               '<QMDAT></QMDAT>'+               '<QMTXT></QMTXT>'+            '</item>'+         '</QMLIST>'+      '</urn:ZQM_GET_LIST>'+   '</soapenv:Body>'+
'</soapenv:Envelope>';     return request;
}

Re: How to call SOAP web service from server side java script(XSJS) ?

$
0
0

Hello Sudhir,

 

I am also trying same example for XSJS. In our case: We are trying to connect XSJS with SAP web service but it is not successful.

xsHttpDest:-

description = "Web Service";

host = "HostName";

port = Portno;

pathPrefix = "/sap/bc/srt/rfc/sap/";

proxyType = none;

proxyHost = "";

proxyPort = 0;

authType = none;

useSSL = false;

timeout = 0;

 

 

 

 

XSJS:-

 

 

dest = $.net.http.readDestination("XXX", "xshttpname");

var data ='<?xml version="1.0" encoding="utf-8"?>'+

'<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:Z_TEST_IOS="urn:sap-com:document:sap:soap:functions:mc-style" xmlns:n0="urn:sap-com:document:sap:rfc:functions" xsl:version="1.0">' +

'<soap:Body>' +

 

'</soap:Body>'+

'</soap:Envelope>';


var client = new $.net.http.Client();


var req = new $.web.WebRequest($.net.http.POST,"");  

 

req.contentType = "text/xml";
req.setBody(data);
client.request(req, dest);
var  response= client.getResponse();
var body = '';
if (response.body) {
      body = response.body.asString();
      $.response.setBody( " body---> " + body);

}

 


please suggest where it is wrong?

 

Thanks,

Pad

 



Re: What is the purpose of Selection and Hide Fields

$
0
0

Hi,

 

Selection - if you select the selection check box same fields are available at info package data selections.

 

Hide- if you use this option those fields are not available at BW side.

 

for the reconciliation comparing the ECC and BW data.

 

Thanks,

Phani.

Re: Most elegant way to check if select-option has a single value.

$
0
0

You can't get more elegant than a parameter. If you insist on having a single value select option, you deserve all the inelegance you get.


Re: Complete delivery on order level

$
0
0

Susan, these are my findings for your scenario. I've checked complete delivery required field in customer master and set partial delivery allowed to C which is only complete delivery allowed and the same has been proposed in sales order. In sales order i've 3 line items while delivery creation then i deleted 2 line items by remaining on VL01N screen and clicked on PGI to do it for single line item. System prompted a warning message at this time and the number is Message no. VL049 this is a standard behavior of the system which has been explained well in OSS Note 1895857 - Different behavior of message VL049. Now i've tried creating delivery in background and the system prompted an error message with the same Message no. VL049. I believe your requirement is somewhat similar to the below mentioned thread and for that you've to go for delivery group option. Please refer to the same and in case of any further assistance, please feel free to ask. Let me know if i missed something. Thanks.

 

Partial delivery for a sales order with two items-

Update Crystal Report Server 2008 V1 SP3

$
0
0

Hi

 

I'm trying to update an installation of 'Crystal Report Server 2008 V1 SP3' to latest SP, but for some reason I do not succeed. I have tried to download an install several different versions of Crystal Report Server 2008 V1 SP5, SP6 and SP7, but it always gives me an error with 'A higher version of this program is already installed'.

Then I tried to download and install 'BO XI 3.1 SP7', but then I have installed a lower version, which must be uninstalled before this installation.

 

Can anyone please tell me, which program I need to download and install, to get the latest SP to CRS 2008 V1 ??

 

Best regards

Claus

Re: How to change TEXT EDITOR in SMARTFORMS

$
0
0

Thank you ethan.

 

regards,

sudarshan.

Re: update new rules from new serc update

$
0
0

Dear krishna

 

According to my knowlegde: if you are buying content (as discussed in some parallel thread) you should get "additional information" like pdf files from content provider (e.g. SAP) etc. In these files you should get clear indication about next steps to be done (e.g. customizing set up etc.)

 

Part of the "documentation" should be a list of

a.) new rule sets

b.) changed rule setes

etc.

 

For:

 

also how Do i know which databse needs to be updated and replaced ?

 

I assume your refer to "mdb"- Same story as before. The SAP document  (if you use SAP content) should clearly indicate next steps etc.

 

C.B.

Re: Adapter Engine Cache : Multiple Entries

$
0
0

Hello Praveen,

 

The basis guys did the same and now we have only one entry there... but Im just wonderign why this happened?

 

- Du

Viewing all 8713 articles
Browse latest View live




Latest Images