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

Re: user databse log segemnt filling up when no active transaction present

$
0
0

Hi Mark,

 

Same here mark

Please note that Source and target databases both are running on ASE version of 15.7.

The log full issue was not present in ASE 15.5(earlier production system..now we migrated to 15.7 completely) as truncate log on checkpoint was enable for this databases. We are not making this DB option enable in 15.7 as it's a production environment..

1.Are you having problems with the log filling up in ASE 15.5? [yes or no] ---> 15.5 version system is not live currently so it doesn't matter.

2.Are you having problems with the log filling up in ASE 15.7? [yes or no] --> Yes

3.3a - if the database is a primary database (PDB) in a replication configuration, is there a matching record in syslogshold? ---> Yes

3b.This databases are getting replicated to the target server(databases which is shown in syslogshold)

So that is the reason i think entry for this databases in syslogshold is a valid.

3c.if the database is not part of a replication configuration, is there a matching record in syslogshold?----> No such records for db which is not part of replication is present in syslogshold.

3d - when the log is 80% full (or any appreciable amount below 100% full), does 'dump tran /to_file' or 'dump tran w/ truncate_only' clear the log? --> No, both of the above two dump tran option was not successful to clear the log.

 

3e - Is the log 80% full, or (near) 100% full, when you say that 'dump tran w/no_log' is the only command that clears the log? -Yes

3f - Once you've issued 'dump tran w/no_log', does log space usage drop back to/near 0%?  alternatively, what does 'sp_helpsegment logsegment' show after running 'dump tran w/no_log'

---> I didn't remember the exact values, but yes the log space usages values was less than 3-4 %.

 

Let me know if any more information is needed from my end .


Re: Can we assign Parcel of Land in Rental Object ?

$
0
0

Dear Budi,

 

Seems to be standard config will not allow us to link it to RO.What is the requirment on this point ?

 

Because we have an option to link the parcel of land to Contract type directly for finacial postings where rental objet is not mandatory to do contracts for parcel of Land.

 

Regards,

Rao

Lock/Unlock Storage Type

$
0
0

Hi Gurus,

 

How we can lock/unlock storage type in ewm during putaway/picking ?

 

In wm we can do it using ls06/ls07/ls08.

 

Do we have any transaction code in ewm for the same.

 

Thanks,

Srinivas

Re: Export data from Formatted Text Edit to PDF

$
0
0

Hi Arshid,

 

I am following your solution and stuck in displaying the data is adobe forms.

 

When I am calling the SSF_ABAP_SERVICE,

  • Program is returning the error as CALL_C_FUNCTION_NOT_FOUND
  • Alternatively I called a function module SSFC_BASE64_ENCODE to perform the encoding

 

PS: Browser issue in copy pasting the code, so attached the screenshot. Please click on the image for a clear view.

 

Snapshot of the code:

code.JPG

 

Runtime data of the variables:


runtime data.JPG

 

In Adobe forms:

  • Created an import parameter in the interface to receive the encoded value (lv_base64)
  • Inserted a Textfield and set the property to RichText and done the data binding to the variable.
  • Provided script is copied to form:ready of the Text field. Run At: Client

 

Data Printed on the Adobe form is encoded base64 text and not Hello


Can you please guide on what was wrong?

 

Regards,

Mugu

How to find the open STO Outbound delivery ( GRN pending )

$
0
0

Please help me to find the open outbond delivery, while creating the STO PGI

 

i have searched with MB5T it shows only PO. but not showing delivery number.

 

also tried ML06O No open delivery found

 

can any one explain how to find this open outbond delivery.

 

 

 

 

 

Thanks

 

Pratik

Re: Column heading uses only short flag in alv tree display

$
0
0

Hi,

 

Try setting the below fields in fieldcatlog, if you are using LVC (otherwise ddictxt):

 

COLDDICTXT = 'L'.  "For long text (In case of medium, pass 'M')

SELDDICTXT = 'L'

POS deployment

$
0
0

Hello Experts,

 

Currently we have SAP ERP configured for Logistics and shipment.

We want to deploy SAP POS.

 

Please help me out from the point of view of purchase of hardware and software for deploying SAP POS.

 

Thanks

Harsh

CKMDUVREC - While creating BDC recording, fields in screen two (0100) are not captured

$
0
0

Hi,

 

I had tried creating a BDC recording for transaction: CKMDUVREC but the fields in screen two (i.e., screen 0100) are not captured while recording.

 

Please let me know any option is available to capture these fields for creating an upload program.

 

Fields: POS_OK, MENGE, MEINS

 

Thanks,

Neenu Jose


Re: Activating Datasource: More than three fields are over 255 characters long

Re: how to delete transaction data in model by abap code or logic script

$
0
0

And by the way, if you perform Light optimization with zero elimination both positive and negative record will disappear!

Re: Mass updation of work orders with BOMs

$
0
0

Hi Amol,

 

Thank you for information.

 

But use is not ready to run extra transaction. User wants work orders to be updated in background as soon as BOM/task list changed.

 

Please suggest in this case.

 

Thank you.

 

Regards,\

Mayur

Re: How to supress pop-up while executing bapi

$
0
0

In fact, I've read the threads mentioned by Sanjay Kumar, and saw that their contents was not so explicit/not all correct, it's why I posted what I considered was correct. You can see I'm not talking about a copy of the standard BAPI. If the popup is a standard message (MESSAGE TYPE 'I'), do handle the error_message exception of the standard BAPI, as Pranay Patel suggests. For more information, please read the ABAP documentation of this special exception.

.

DS 1.6 Client - SAP UI5m mode - how to use setChartType()

$
0
0

Hi all,

 

I'm just starting with SAPUI5m in Design Studio Client and I've stumbled upon simple problem - I want to change Info Chart Type on a button, from column to stacked on a BUTTON_5:

 

if(T1_CHRT_MAIN.getChartType() == InfoChartType.INFO_STACKED_COLUMN){

  T1_CHRT_MAIN.setChartType(ChartType.VERTICAL_BAR);

  BUTTON_5.setText("Stacked Chart");

}

else{

  T1_CHRT_MAIN.setChartType(ChartType.VERTICAL_STACKED_BAR);

  BUTTON_5.setText("Column Chart");

}

 

Clicking on that button throws this error:

"The passed value is not valid for enumeration "InfoChartType". Examples of valid values: "InfoChartType.INFO_BAR" or ""INFO_BAR"""

 

When I try to put like:

T1_CHRT_MAIN.setChartType(InfoChartType.INFO_COLUMN), it reports:

The passed value is not valid for enumeration "ChartType"


Unfortunately I don't have access to SDK, only Client to play with...


Any help would be very much appreciated!

Thank you!

Re: Adding fields in Standard ALV Display for IW38 /39 T-code

$
0
0

Yes, it's possible. Don't include this field in screen enhancement.

payment amount - missing in T.code TS01

$
0
0

Dear sap expert

 

While creating  the new  transaction of Bonds(securities) , after entering the nominal amount and Price(%) , system did not automatically  populating the payment amount , i have to enter the amount manually, i was expecting from system , it should take the default  same value as Nominal amount

 

ab.JPG

regards

sourabh muthreja


Re: Decimal data type in BO

$
0
0

Hi Joe,

 

I also faced the same problem and found another way to do it in Custom BO , for that you need to define an  new element in BO to which String Value can be assigned.

Then use "Round to String" function in the ABSL code to restrict decimal place length and assign

the same to the new field defined in BO.

 

Regards,

Deepak

Re: UI5 Table Binding

$
0
0

Hi,

 

You are missing to set the aggregation path in the  VIEW.

 

<Table id="Travel" items="/dataSet" >  //dataSet is the entitySet of the Odata service


and if you don't have entitySet in the service (means service is not ODATA service) than you can do below in the controller after calling the service.


var table = view1.byId("Travel");

oModel.read("/get_Travel_details", null, [ "$filter=REINR eq '"

  + path1.REINR + "' and SEQ eq '" + path1.REINR + "'" ], false,

  function(data, response) {

 

json1 = new sap.ui.model.json.JSONModel();

json1.setData({dataSet:data});

  table.setModel(json1);

 

}


Cheers

Viplove

Re: webi report keep refreshing

$
0
0

Hi Deepthi

 

We will not any  error... report keep on running and end up with session time out after one hour.

 

Generally that report should run in 7-8 minutes, as in database also same query will run less than 7 minutes.

 

Regards,

Ganesha

Re: Theme_Name parameter of NWNC_CFG

$
0
0

HI,

 

Please help me if you have found path : /sap/public/icmandir/its/ls/themes/sap_tradeshow_plus/ls/ls_ie6.css

 

Thanks

Re: SPROXY does not shows ESR objects although RFC destination SAP_PROXY_ESR is maintained in SM59

$
0
0

Yes, you should maintain PIAPPLUSR in the RFC destination, then only sproxy transaction can retrieve the ESR content.

 

regards,

Harish

Viewing all 3495 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>