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

Simoultaneous planned delivery time (MRP)

0
0

Dear Experts,

 

I would like to set my MRP for material purchases in order that I can have 2 different lead times, depending on the route (air/sea)

 

For instance, if MRP can supply enough material with 1kg or less, then it should take a shorter lead time for it would be air freight than if the minimum necessary was more than 1 kg. (Actual freight lead times= air 60 days, sea 90 days)

 

Best regards

Marco Aramini


Re: Excise invoice number range for Depot

0
0

Also excise object

What are the purposes of the number range objects  J_1IEXCLOC and J_1IDEPINV ? In which conditions 

1. either of the two, or  2. both the objects should be used?

Re: convert row store to column store table

0
0

Its possible with below SQL command to convert row table to column table.

 

ALTER TABLE <Schema Name>.<Table Name> COLUMN

 

Replace COLUMN with ROW to convert from column to row table.

Re: How to avoid data tab in webi report.

0
0

I mean data navigation pane left side of report. Actually data tab not in XIR3.

 

 

Regards,

Arjun

Re: Material variant with editable values

0
0

paul kohl,

 

Ya , as per my knowledge just using ECC its not possible to have functanility of make to stock with configurable material.

 

as i replied earlier , in the customizing transaction OPPS you can get  requirement class for this group. In the transaction OVZG you can check in the field "Cnfg." if for this requirement class a configuration is mandatory or a configuration is allowed (*).

 

Its as good as having custome rindependent functionality for PIR , not sure how it works and behave, as never did it myself.

 

Thanks

Ritesh

SAP Notes Management 10.0 Material

0
0

Dear SCN Members

 

I’m trying to get SAP configuration material about SAP Notes Management 10.0, but i can't find any SAP manual o SAP curses about this product

 

I only have SAP help material but it´s only help how to install the product

 

Do you know where I can get consultant configuration material about this product? or share information about it?

 

Regards

Ariel

Re: Create a dynamic search field

server crash - db connection broken

0
0

Hello,

 

We had cold system reset after which sap won't start. In startdb.log or when I try to start db manually with dbmcli error message is:

Error! Connection failed to node mynode for database SID:

connection broken

 

How can debug what's wrong with the db, where to start?

 

Best Regards,

Sasha


Re: Ranking on an olap connection

0
0

Hi Tammy,

 

I have similar situation.

 

I am working on a Query with 30 KF's and all have be restrict to TOP N based on a Character.

 

I have "Product Group" Hierarchy in Filter and in the Rows in "Product" and in my condition I have 'Product' as Char object reference for Top N.

 

While I am executing the Query, I am seeing just top 10, but all  the values in the Product.

 

Also, in the Design Studio I selected Option of 'Target Data Source' to get the TOP 10 Products based on my selection in "Product Hierarchy".

 

I am not getting expected result. Am i missing something here ?

 

Please help.

 

Regards,

Sonti.

Re: BWA Not available as a source in Explorer

0
0

Hi,

 

Please check below setting and then test:-

 

  1. Login to CMC
  2. Select Applications
  3. Select Explorer
  4. Select properties
  5. Add the following to Advanced
    configuration

    com.businessobjects.datadiscovery.dataprovider.trex.host=<hostname
    of your BWA
    system>
    com.businessobjects.datadiscovery.dataprovider.trex.port=<port
    number >       

    The port number shold be 3[Trex Instance
    number]16
    Example:  if your Trex Instance numer is 00 your port number should
    be 30016, if your instance number is 01 then the port should be 30116
    etc.


  6. Click Save and close
  7. Restart the Explorer servers.

Regards,

Pranay Sharma

Re: SUM 1.0 SP11.1: SAPJVM Update Error

0
0

As far as patches goes, things are checked from SDM repository.

So you can try to synchronize SDM with database and give it a try.

 

Divyanshu 

Re: Recommended retry for ENQUEUE process

0
0

Hi,

 

i think 30 table reads a min is no performance problem...

during migration we set alot enqueues. and we did without wait statement still the rest of the system worked fine.

 

regards

Stefan Seeburger

Re: Recommended retry for ENQUEUE process

0
0

The Lock table overflow can only occur if the locks are not getting released. Like if you have program where you are updating 1M records. If your program is like this:

  • Lock all 1M records
  • Process the records and update the table
  • Unlock all 1M records

In this instance, the lock table overflow can occur if the lock table can't hold 1M records.

 

When you implement the DO.. ENQUEUE.. ENDDO, the lock table overflow can't occur, if you implement it properly. It should be implemented like:

DO n times

  call ENQUEUE FM

  if sy-subrc eq 0.

    locked = 'x'

    EXIT

  else.

    WAIT UP TO 1 SECOND

  endif.

Enddo.

if locked = 'x'

  call DEQUEUE FM

  call BAPI to update

else

  error handling, lock not applied

endif.

 

If you should put the loop time and wait second, in configurable table say TVARVC so it can be controlled easily.

 

In this instance, you would always have only 1 entry in your lock table, When you try to lock it again using the ENQUEUE FM and if it fails, there is an existing lock entry. if it succeed, you would have a new lock entry.

 

Regards,
Naimesh Patel

Re: LRAW upload/download

0
0

You beat me to it!  Yes, the ABAP Documentation and the class documentation for the locator and stream classes have examples as well.

Re: csv input adapter - read rows with different # of columns

0
0

Hello,

 

The CSV Input Adapter expects to find a fixed number of fields.  If you attach the input adapter to a stream/window with 3 fields, it will always try to read three fields.  You can have missing data and this will be read into a column as a NULL value but the delimiters must still be there.  For example:

1,1,1

2,2,2

3,3,3

4,,4

5,5,5

 

CREATE INPUT WINDOW inWindow SCHEMA (c1 integer, c2 integer, c3 integer) PRIMARY KEY (c1);

 

ATTACH INPUT ADAPTER File_Hadoop_CSV_Input2 TYPE toolkit_file_csv_input TO inWindow PROPERTIES csvExpectStreamNameOpcode = FALSE ,

  dir = 'c:/temp' ,

  file = 'test.csv' ,

  csvDelimiter = ',' ;

 

A workaround you might consider is reading an entire line from your file into a stream with a single string column.  The trick is that you have to choose a character for the column delimiter that you are certain will never show up in your data.  Than once you have read that line into a stream, you can use the string functions to parse out the columns as needed:

 

CREATE INPUT STREAM csv_instream SCHEMA (

  log_line_message string

);

 

// Choose a character that is certain to never show up in the data in order to read the entire line

// from the CSV file into a single column

ATTACH INPUT ADAPTER File_Hadoop_CSV_Input1 TYPE toolkit_file_csv_input TO csv_instream PROPERTIES

  csvExpectStreamNameOpcode = FALSE ,

  dir = 'C:/temp' ,

  file = 'error_log' ,

  csvDelimiter = '@' ;

 

 

// Parse out the individual columns

CREATE OUTPUT STREAM csv_outstream SCHEMA (

  log_datetime timestamp ,

  debug_level string ,

  host string ,

  message string ) AS SELECT

  to_timestamp(substr(CI.log_line_message, 1, 24), 'DY MON DD HH24:MI:SS YYYY') as log_datetime,

  substr(CI.log_line_message, patindex(CI.log_line_message, '[', 2)+1, (patindex(CI.log_line_message, ']', 2) - patindex(CI.log_line_message, '[', 2))-1) AS debug_level,

  replace(substr(CI.log_line_message, patindex(CI.log_line_message, '[', 3)+1, (patindex(CI.log_line_message, ']', 3) - patindex(CI.log_line_message, '[', 3))-1), 'client ', '') AS host,

  substr(CI.log_line_message, patindex(CI.log_line_message, ']', 3)+1, 500) AS message

  FROM csv_instream CI

  WHERE CI.log_line_message IS NOT NULL;

 

Thanks,

Neal


Re: run in background

0
0

thank u,

 

example of application server is that?

 

Re: Any experience downgrading LM-Service component?

0
0

We will try to do this telling the client the best way to go is to do an update to their actual system so probably they will want to share the cost so the consulting company won´t loose much and client will get a better system.

Hopefully everybody will be happy enough.

 

Thanks a lot Divanshu

Re: ORA-01017: invalid username/password; logon denied quality system refresh from production

Re: Urgent: Newly configured system doesn't show up in Maintenance Optimizer

0
0

Follow this:

Run Transaction Solman_Workcenter.

Select the Solution Manager Administration tab.

Click Solutions.

Either.

Create a new Solution to add the logical component, or add it to an existing solution.

If a new solution...

Click on New.

Give the solution a name.

Set the Solution Data settings.

Now the Solution exists.

Select an existing solution that you want the System to be placed (can be the new one).

Add the Logical Component to the Solution.

If the system is other than Type Production then...

Go to change edit mode.

Right click on the SID, and select “Put in Solution” the cell the SID is in will turn green.

Save.

 

Divyanshu

FIND Last Purchase Order of specific materials

0
0

Hello Gurus,

 

I wonder if someone can help to find the last purchase order created of certain materiales, which tables Do i have to search for?

 

 

thanks for the help.

 


Viewing all 8594 articles
Browse latest View live




Latest Images