Quantcast
Channel: SCN : Popular Discussions - ABAP Connectivity
Viewing all 898 articles
Browse latest View live

Dump : GETWA_NOT_ASSIGNED in

$
0
0

Hi Team,

 

 

Category ABAP Programming Error
GETWA_NOT_ASSIGNED
ABAP Program SAPLKKBL, LKKBLF99

 

We found one SAP NOTE Note 1783865 - DBACockpit: Dump GETWA_NOT_ASSIGNED in segments (aggregated)

But basis team reverted back saying this SAP Note is valid for the DBA Cockpit on Oracle.

The note mentioned above is not applicable in the present scenario as we are running on DB2 presently.

 

 

Team any Solution or help ???

 

Regards,

Rahul


Rounding Function

$
0
0

I am bringing in external data and stuffing it directly into a table. The

external data has a price field that is 4 decimals and I am putting it into

a field that has only 2 decimal places. It seems that instead of rounding,

the last 2 places are being truncated. This is causing a small variance

when I compare the totals before and after the migration. What I need is a

rounding function that will put the correct value into the field?

IDOC status on 03 but not recieved on target system

$
0
0

Hi,

 

We are recieving inbound idoc from external system and processing Inbound IDOC on SAP system, after processing inbound idoc on SAP we are sending status outbound idoc to external system.

 

The above functionality was working fine before upgradation.

 

after upgradation we have recreated RFC (TCP/IP) connection, updated at port level and also configured the new SAP system details ( sid, Hostname, service programsname...) on external system correctly.

 

Now we are recieving inbound idoc from external system on upgraded system,after processing inbound idoc details on SAP system, generating outbound idoc from SAP and it reaching the outbound prot sucessfully on 03 status with green light.

 

But external system is not recieving the IDOC. How to find why idoc is not reaching external system even though it is sucessfully passed at outbound port level with green light status 03.

 

We have also checked the SM58 for TRFC entries but we didn't identified any entries on SM58. Please help us on this issue

 

 

Thanks,

Raju

step-by step procedure for INBOUND IDOC (VENDOR CREATE / CHANGE)

$
0
0

Hi ,

 

Can any body provide me the step-by-step procedure for Inbound IDOCS.

 

As i'm new to this i need the the clarification between Inbound & outbound idocs.

 

How can we differentiate both?

where to define outbound & where to define Inbound?

 

( If possible Please explain me the procedure for  Vendor Create through INBOUND IDOCS )

 

Thanks in advance..

IDOC Error Report

$
0
0

Dear All,

 

There is an requirement to generate IDOC error report.

 

Normally t.codes we02 / we05 are used to see the idoc errors.  I would like to know whether any transparent tables are available to see the error log.

 

More specially, I need to generate an report with IDOC Numer + Error Description as an output.

 

If any clues, please pass on the same.

 

Regards,

Ramki.

IDOCs in TRFC Queue

$
0
0

Hi,

 

We have a ALE scenario where we send IDOCs to other SAP system.

 

The IDOCs we send are sitting in TRFC queues, they are not sent to the target system. I checked all the ALE settings, they are fine. The processing mode is "Immediate".

 

When I go to SM58 I will find the entry for the transaction with status "Transaction Recorded". If I select the entry and press F6 (Execute LUW) the IDOC is sent to the target system and the queue becomes empty.

 

What I am missing? I dont want to go to SM58 everytime I post an IDOC. I am sure there will be some setting to process the IDOCs from the TRFC queue automatically. Can you please let me know that?

 

Regards,

Ravikanth

Read file into internal table using OPEN DATASET FOR INPUT

$
0
0

Hi

 

i want to save a internal table (simple structure) to a file on the application server using the OPEN DATASET x FOR OUTPUT IN TEXT MODE (...). I don't have a problem creating the file - so far so good.

Afterwards i want to load the same file into a internal table.

The OPEN DATASET x FOR INPUT IN TEXT MODE (...) and the following READ DATASET x INTO y doean't accept the original structure as the input structure y.

Is there an easy way to "press" a input file line into a structure if the structure that was used to create the file is known?

 

Example:

 

1. Create file using the internal table it_data (structure ls_data):

 

OPEN DATASET file FOR OUTPUT IN TEXT MODE ENCODING DEFAULT.

 

LOOP AT it_data INTO ls_data.

 

TRANSFER ls_data TO file.

 

ENDLOOP.

 

2. Read the file into the table (NOT WORKING)

 

OPEN DATASET file FOR INPUT IN TEXT MODE ENCODING DEFAULT.

 

DO.

 

READ DATASET file INTO ls_data.   " NOT WORKING !!!

 

IF sy-subrc EQ 0.

   APPEND ls_data TO it_data.

ELSE.

   EXIT.

ENDIF.

 

ENDDO:

 

 

The second step is not working because only a string structure seems to be accepted to read a dataset into.

Does anybody know a easy way to read the file into the internal table?

 

Thank you

Manfred

how to use FM " TEXT_CONVERT_XLS_TO_SAP "

$
0
0

hi experts, i have got a few FM that are used for uploading data of Excel into SAP. But i am unable to

understand what value i need to pass to the parameters of listed Function Module.

Name of the Function Modules are :---

 

1) ALSM_EXCEL_TO_INTERNAL_TABLE

2) TEXT_CONVERT_XLS_TO_SAP


Dump : GETWA_NOT_ASSIGNED in

$
0
0

Hi Team,

 

 

Category ABAP Programming Error
GETWA_NOT_ASSIGNED
ABAP Program SAPLKKBL, LKKBLF99

 

We found one SAP NOTE Note 1783865 - DBACockpit: Dump GETWA_NOT_ASSIGNED in segments (aggregated)

But basis team reverted back saying this SAP Note is valid for the DBA Cockpit on Oracle.

The note mentioned above is not applicable in the present scenario as we are running on DB2 presently.

 

 

Team any Solution or help ???

 

Regards,

Rahul

Downloading Data to excel using GUI_DOWNLOAD

$
0
0

Hi Experts ,

 

I am trying to download the internal table data into excel using GUI_DOWNLOAD FM.

But the data is not coming properly into the excel.

My internal table is having some 10 rows but in excel all data is coming in a single row.

 

In file type I am using ASC

 

and X as field separator.

 

Please provide some inputs.

 

Thanks in advance.

 

Regards,

Rohit Garg

IDOC Types and their equivalent messages in EDIFACT and ANSI X12

$
0
0

Hi all, since I only have a list of messages in EDIFACT and ANSI X12 for release 4.6 B, I need to update the list from 6.0 version, but I don't have online support system to get it (OSS), it's note 104606 in OSS.

 

Can somebody give me a link to the full new updated list? Will surely give points with your helpful answers

 

Regards,

Stopping a batch Input session

$
0
0

Hi,

 

I need to stop a job which is being processed. Please tel me how do i acheive this.

 

I've tried SM37 & went for release but it says 'cannot be done because of the stattus it has'

 

I've also tried to stop the batch using the push button in Appl tool bar in SM37 but still i have the same message.

Sending and Receiving IDOC from SAP to Non SAP system

$
0
0

Hi Experts,

 

I want to send an IDOC from SAP to non SAP system and i want to receive the IDOC from Non SAP system.

now i am doing the ALE configuration through SALE.

i have completed :

1) Creating a logical system for SAP and Non SAP system

2) Assigning logical system to client for SAP system

3) create RFC destination to non SAP system

4) Define port and asssign to RFC destination

 

now when i go to generate partner profile : do i need to define two partner profiles?

if yes ,which partener type i should choose for SAP system and which partener type should i choose for non SAP system ?

 

Also when i create a distribution model view : do i need to create two new distribution model view ( one containing all the message type those are to be outbounded from SAP and other containing all the message types those are to be inbounded to SAP )?

 

can ou please clarify the fundamentals of partner profile and distribution model view.

 

Thanks in advance.

Ashish

Get first and last date of month

$
0
0

Hi,

 

  Is there any function module to get first and last date of month for a entered date.

 

Please let me know.

 

 

Regards,

SP

step-by step procedure for INBOUND IDOC (VENDOR CREATE / CHANGE)

$
0
0

Hi ,

 

Can any body provide me the step-by-step procedure for Inbound IDOCS.

 

As i'm new to this i need the the clarification between Inbound & outbound idocs.

 

How can we differentiate both?

where to define outbound & where to define Inbound?

 

( If possible Please explain me the procedure for  Vendor Create through INBOUND IDOCS )

 

Thanks in advance..


Excel Attachment Send to Mail

$
0
0

HI,

 

I have a requirement , I have a report which is scheduled in background.

 

I need the report out put to be transferred as excel attachment to the list of Mail Ids

 

Request you to guide me.

 

Thank You,

 

Srinivas Chowdhary

Sending and Receiving IDOC from SAP to Non SAP system

$
0
0

Hi Experts,

 

I want to send an IDOC from SAP to non SAP system and i want to receive the IDOC from Non SAP system.

now i am doing the ALE configuration through SALE.

i have completed :

1) Creating a logical system for SAP and Non SAP system

2) Assigning logical system to client for SAP system

3) create RFC destination to non SAP system

4) Define port and asssign to RFC destination

 

now when i go to generate partner profile : do i need to define two partner profiles?

if yes ,which partener type i should choose for SAP system and which partener type should i choose for non SAP system ?

 

Also when i create a distribution model view : do i need to create two new distribution model view ( one containing all the message type those are to be outbounded from SAP and other containing all the message types those are to be inbounded to SAP )?

 

can ou please clarify the fundamentals of partner profile and distribution model view.

 

Thanks in advance.

Ashish

Get first and last date of month

$
0
0

Hi,

 

  Is there any function module to get first and last date of month for a entered date.

 

Please let me know.

 

 

Regards,

SP

Read file into internal table using OPEN DATASET FOR INPUT

$
0
0

Hi

 

i want to save a internal table (simple structure) to a file on the application server using the OPEN DATASET x FOR OUTPUT IN TEXT MODE (...). I don't have a problem creating the file - so far so good.

Afterwards i want to load the same file into a internal table.

The OPEN DATASET x FOR INPUT IN TEXT MODE (...) and the following READ DATASET x INTO y doean't accept the original structure as the input structure y.

Is there an easy way to "press" a input file line into a structure if the structure that was used to create the file is known?

 

Example:

 

1. Create file using the internal table it_data (structure ls_data):

 

OPEN DATASET file FOR OUTPUT IN TEXT MODE ENCODING DEFAULT.

 

LOOP AT it_data INTO ls_data.

 

TRANSFER ls_data TO file.

 

ENDLOOP.

 

2. Read the file into the table (NOT WORKING)

 

OPEN DATASET file FOR INPUT IN TEXT MODE ENCODING DEFAULT.

 

DO.

 

READ DATASET file INTO ls_data.   " NOT WORKING !!!

 

IF sy-subrc EQ 0.

   APPEND ls_data TO it_data.

ELSE.

   EXIT.

ENDIF.

 

ENDDO:

 

 

The second step is not working because only a string structure seems to be accepted to read a dataset into.

Does anybody know a easy way to read the file into the internal table?

 

Thank you

Manfred

what are change pointers

$
0
0

What are change pointers?

where do we process them,

where do we configure them

and what is its fuinctionality

 

please advice

 

Edited by: kittu reddy on Feb 11, 2008 5:02 AM

 

Edited by: kittu reddy on Feb 11, 2008 5:03 AM

Viewing all 898 articles
Browse latest View live


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