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

Re: Define Business Transaction Variant

$
0
0

hi mgitur,

 

I have tried ur steps, and add new item category. Once i save the data then get back, system doesn't save as expected and no any error msg.

 

Do u have another solution?

 

Best regards!


Re: Custom logic for Replenishment

$
0
0

Experts,

 

My storage type seq is as below,

 

1 PICK (Fixed bin)

2 OFLO (Overflow)

 

I would like to fill multiple bins in overflow storage type in case there are no fixed bins left for filling replen qty & in case overflow bins are getting filled and still replen qty (HUs) are left.

 

Let me give similar example again,

 

Replen qty for storage type PICK is 2HUs. As per storage type seq. BADI gets called for storage type PICK first. There are no fixed bins which can accept 2 HUs. Standard code fetches the next storage type which is OFLO(Overflow). I have 2 overflow bins out of which 1 has the product filled already & has space for 1 more HU. Another bin is empty. I have to propose the bin with product filled first before empty bin. I do it & warehouse task gets created to fill 1 HU for this OFLO bin1. But since BADI is called only at storage type level, its not called again.. So i am not able to replenish the 2nd HU to overflow bin2.

 

Please let me know if my thread is not clear.

 

BR,
Aspire

Re: Facing ERROR at DTP

$
0
0

Hi,

 

all errrors are belongs to hexa decimcal places.

above errors not related to lower cases it becasue of hexa decimal places.

 

edit the all records in PSA then load it into target.

or

apply the field level routine for all fields where ever getting the issues

maintatin the RSKC setting with all special char.

 

Thanks,

Phani.

Re: How to pull new status profile in old sales orders.

$
0
0

Hi Dawood,

 

I want to get the new status profile determined in older orders(at item level) those orders created and having other status profile before creating a new status profile, here I want to apply the new status profile on older orders those having old other status profile.

 

BR

Re: WebService .net Engine XML structure returned as string or any?

$
0
0

Marko,

 

I think I got mixed up along this thread but now it's clear to me you are the creator of the web service and that the web service is hosted with a third party. It's good to know that changing the response type to base64binary worked.

 

Being the provider of the web service allows you to change the datatypes of its elements so that it can be consumed by clients without much problems. This will also be the case of some other provider that wishes to publish his own web service. He will build it in a way that people can consume it. If he wants to send a binary file or image he will most probably use base64binary as the datatype. Does this answer your question?

 

Regards,

Ricardo

Re: Using BI content infocubes

$
0
0

Hi Sofie,

 

In the majority of the implementations I see that Business Content InfoProviders are never used directly. Instead a copy is made to an object in the customer namespace (i.e. prefix A* - Z*). I consider that as the best practice. Which namespace and naming convention is dependent on the (enterprise) data warehouse architecture and naming convention standards.

 

You can even go a step further by using custom InfoObjects. In this context please have a look at my blog Generating Reporting InfoObjects based on Business Content - Part 1: Introduction. Here I present an alternative approach for using Business Content InfoObjects directly.

 

Best regards,

Sander

Re: How to pull new status profile in old sales orders.

$
0
0

Hi,

 

Please let me know if there is any process to update new status profile in old orders or any OSS note for this issue.

 

Thanks and Regards,
Venkat

Re: No authority to load data from source

$
0
0

Hi Rahul,

 

You can run this load with t/a ST01 to trace authorizations and find out what authorization is missing.

 

Regards,

Gersh


Re: Scrap Quantity in Production Order.

$
0
0

dear gurus,

can u please tell me where we find actual scrap quantity in production order

Re: Error while creating model classes, operation aborted in NWDS

$
0
0

Check if one or more RFC renamed, because NWDS not identify the name changes.


My problem was with one RFC that name change Zcrm_E005.... by Zcrm_E006...


Re: Unable to create RFC2 model

$
0
0

Check if one or more RFC renamed, because NWDS not identify the name changes.

 

 

My problem was with one RFC that name change Zcrm_E005.... by Zcrm_E006...

Re: JSON as default format

$
0
0

Hi Parag,

 

If you want response always in JSON format you can use JSONModel as below


var oLine_Model = new sap.ui.model.json.JSONModel();

 

 

See below example code

 

getOrderDetails: function(oEvent) {

  var oLine_Model = new sap.ui.model.json.JSONModel();

  //Make model global by setModel so that it can be accessed in other controllers also.

  sap.ui.getCore().setModel(oLine_Model, "Order_Model");

  //Navigate to other View

  this.router.navTo("order_details");

 

 

  }

 

 

And in Component.JS file you can define your Service setting like below

 

config: {

 

 

  viewType: "JS",

  viewPath: "view",

  targetControl: "<your app name>", //Name of Split App given in App.view.js file

  clearTarget: false,

  transition: "slide",

  "serviceConfig": {

  "name": "<your service name created in Gateway>",

  "serviceUrl": "/sap/opu/odata/sap/<your service name created in Gateway>/"

  }

 

 

  },

 

 

Just to Understand how this works :

Another way to get response in JSON you can have AJAX call as below

 

jQuery.ajax({

    url: "/path/to/data.json",  // for different servers cross-domain restrictions need to be handled

    dataType: "json",

    success: function(data, textStatus, jqXHR) { // callback called when data is received

        oModel.setData({data: data});            // fill the received data into the JSONModel

    },

    error: function(jqXHR, textStatus, errorThrown) {

        alert("error occurred");

    }

});

 

 

You can put below line in Component.JS once and use the object name to setModel.

var oLine_Model = new sap.ui.model.json.JSONModel(); --> in Component.JS


sap.ui.getCore().setModel(oLine_Model, "Order_Model"); --> In your code

 

 

 

If you are running service dirlectly from SEGW then you have to provide $format=JSON in Query string then only you will get response in JSON format.

 

But in code you can use above suggested things to get response in JSON format always.

 

 

Hope this will help you.

 

Thanks-

Abhishek

Error while executing PAL

$
0
0

Hello Experts,

 

When I try to execute

 

CALL SYS.AFLLANG_WRAPPER_PROCEDURE_DROP('SYSTEM', 'PAL_LOGISTICR_PROC');

or

CALL SYS.AFLLANG_WRAPPER_PROCEDURE_CREATE('AFLPAL', 'ACCURACYMEASURES', 'SYSTEM', PAL_FORECASTACCURACYMEASURES_PROC',PAL_FORECASTACCURACYMEASURES_DATA_TBL);

 

I get an error

 

Could not execute 'CALL SYS.AFLLANG_WRAPPER_PROCEDURE_DROP('SYSTEM', 'PAL_FORECASTACCURACYMEASURES_PROC')' in 3.828 seconds .

SAP DBTech JDBC: [2048]: column store error: search table error:  [2620] executor: plan operation failed;CalculationNode ($$DUMMY$$) -> operation (CustomLOp):Compilation failed; CompileServerNotFoundException: No details;

 

Can you please guide me how to resolve it?

 

Thank you.

The reversing entries were not generated in FIFO valuation.

$
0
0

Hi experts.

I would like to ask you about  FIFO.

 

We are now preparing for switchover from old system to SAP.

As part of it , we created stocks as a test, and run FIFO valuation by using MRF3 and MRF1.

However MRF1 was somehow terminated in progress, and went back to the initial screen before running.

I confirmed the journal entries generated by the FIFO in FBL3N, but reversing entries which also were supposed to be generated in the 1st day of the next month of the target month of FIFO were not generated .

I thought the most conceivable cause of this phenomenon is that we have not run FIFO valuation in previous period.

Let's say the stocks for certain material was created in January and February, and I did not run FIFO (although it is supposed to be run).

Then I opened new posting period(March), run FIFO valuation this time, and what is written in the title was happened.

 

Could that be the cause of the above phenomenon ?

I would like you to teach me why reversing entries were not generated.

 

Any help is welcome.

 

Best regards.

Takeshi.

Re: BAPI_MATERIAL_SAVEDATA

$
0
0

It should update two tables.

Do you have any error?

On my client system the following fields should also be filled:

WA_HEADDATA-matl_type

WA_HEADDATA-ind_sector


Re: Is there a max size for a blob?

$
0
0

Hi Tim;

 

  Sorry for the memory switch digression but the thought there was that maybe your Blob size limitation (way before the 2G limit) was because your PB Application was running out of usable memory when running as a 32 bit application. Especially,  since you mentioned "threads" - so I assume that you are running a multi-threaded application.

 

  If that is truly the case and you are running up against the 2G application memory space limitation then the following things might help you work around this issue:

 

1) You can try either mechanism that Bruce or I mentioned to raise the usable memory to 3G - but, in my experience doing this, many applications can become really unstable when running in this mode. However, it might be worth a try and see what happens in your case.

 

2) You could consider upgrading to PB 12.6 where Classic application .EXE's can now be compiled to 64bits.

 

3) The key with my applications is that I release large storage ASAP. In the case of your application using Blobs, I would code the following (if you already haven't) ... for example:

Blob   lblb_null

Blob   lblb_data

Long  ll_len

SetNull (lblb_null)

ll_len = FileReadEx (li_FileNo, lblb_data)

<blob processing>

lblb_data  = lblb_null

 

4) Make sure that you destroy any Classes ASAP that you no longer need.

 

5) Never use Auto Instantiated Classes as do not release their memory until the application is closing.

 

6) Try using the GarbageCollect ( ) commands after each processing loop

 

7) Always clean-up your DW Controls or DS's as follows to also release DWO's memory.

DS.Reset ()

DS.DataObject = ""

Destroy DS

 

HTH

Regards ... Chris

Re: Provisional enteries at month end or year end

$
0
0

Hi Vikas

 

There are other movement type that allow you to use Valuated GR block stock, these movement types are 107 and 109


107 movement, accounting document will be generated after 107 movement.  This will updte the inventory value.  But inventory will not be updated in terms of quantity.  At the time of 109 movement, no accounting document is generated.

Re: Hi All,

$
0
0

Hi Ajay,

 

I am talking about BW related issue. BW version is 7.3.regarding the workflow the failed process is a dtp loading to dso.

 

regards

mithun.

Can I change the position of the filter button?

$
0
0

Dear,

 

List view always add new line to show filter button when I set the checkbox "Allow filter" checked. Can I change the position of the filter button?

As the picture,I want three buttons in one line,how can I do?

2015-10-14 9-19-35.jpg

Best regards,

Xin

Re: Hi All

Viewing all 8594 articles
Browse latest View live




Latest Images