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

BD64 IDOC Data Filters

$
0
0

Hi

I have a IDOC (message type J3AGRI) in the ALE Distribution Model and this is working fine.

But now I need to filter the IDOC - certain actions I do not want to send the IDOC.

but I cannot see the Data Filter that I can see on other IDOCS in BD64.

 

I have the field

 

BD64 - Already set up but I need to filter J3AGRI on MSGFN.

BD95 - done (field MSGFN was already there)

BD59 - done

MSGFN     E1J3AGC     3     MSGFN     0     3
MSGFN     E1J3AGE     2     MSGFN     0     3
MSGFN     E1J3GH1     1     MSGFN     0     3

 

Why can't I see the Data Filter option against my message type in BD64


Basic Idoc Type & message type

$
0
0

Hi,

 

1. I am a novice in IDOC. What is the exact difference between Basic Idoc Type & message type ?

 

Basic Idoc Type - DELVRY03

Message type - SHPCON

 

2. I know NACE is used configure an output type. But can you tell in simple terms as to what is an output type (and the different output types)

 

3.  What is the FM 'master_idoc_distribute' all about ? What can we achieve by debugging it ?

 

4. What does an entry in NAST signify ? Also  RSNAST00 is used for what ?

 

 

cc

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

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.

Basic Idoc Type & message type

$
0
0

Hi,

 

1. I am a novice in IDOC. What is the exact difference between Basic Idoc Type & message type ?

 

Basic Idoc Type - DELVRY03

Message type - SHPCON

 

2. I know NACE is used configure an output type. But can you tell in simple terms as to what is an output type (and the different output types)

 

3.  What is the FM 'master_idoc_distribute' all about ? What can we achieve by debugging it ?

 

4. What does an entry in NAST signify ? Also  RSNAST00 is used for what ?

 

 

cc

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..

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

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


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.

Basic Idoc Type & message type

$
0
0

Hi,

 

1. I am a novice in IDOC. What is the exact difference between Basic Idoc Type & message type ?

 

Basic Idoc Type - DELVRY03

Message type - SHPCON

 

2. I know NACE is used configure an output type. But can you tell in simple terms as to what is an output type (and the different output types)

 

3.  What is the FM 'master_idoc_distribute' all about ? What can we achieve by debugging it ?

 

4. What does an entry in NAST signify ? Also  RSNAST00 is used for what ?

 

 

cc

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

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..

tRFC error status

$
0
0

Dears,

 

I am getting the error "RfcAbort: get_idoc: file(IDOC TYPR) exist,..." at SM58 transaction and I can't find anything here about that message error.

 

I have checked the WE02 transaction and the Idoc was created, the RFC destination that the Idoc should be sent is working fine.

 

Testing the partner at IDOC transaction no problem was found.

 

The message error at SM58 is incomplete, is there any other transaction that I can check to clarify what would be happening?

 

Thanks for your attention.

 

Best Regards!

 

Anaer

Data upload Vendor Master Chinese character from Excel does not upload

$
0
0

Hi Gurus,

 

We are trying to upload Vendor Master from Excel sheet.

The Chinese characters in excel sheet is not getting uploaded.

After upload, we see in SAP as ????? for these Chinese character.

Could any one inform what setting I may need to change?

 

Thanks and Best Regards,

Mohan


LSMW for ZZFields

$
0
0

Hi all,

 

I am working on LSMW for customer and vendor master upload from legacy to SAP system using Standard Batch input.

 

I have ZZFields in KNB1 table,Is it possible to populate them in LSMW Standard batch input?

Or I have to go for other methods, like Batch Input Recording or BAPI or IDOC?

 

Please guide me for this issue, I appreciate your patience and time for the valuable input......

 

Thanks,

Mili.

Reg: LSMW Multiple line items of scale pricing in transaction VK11

$
0
0

Hi,

Iam using LSMW to upload price condition records(VK11)

 

Totally Iam having two records which i have split as 2 flat files.

one flat file with header details and another flat file with line items for scale quantity and scale pricing, something like below.

 

Header flat file

 

__ZPR3__

__cust1__

__Mat1__

__AUD__

__EA__

__100__

__10__

__ZPR3__

__cust2__

__Mat2__

__AUD__

__EA__

__300__

__10__

 

Line Item Flat file

 

__cust1__

__mat1__

__95__

__20__

__cust1__

__mat1__

__90__

__30__

__cust1__

__mat1__

__85__

__40__

__cust1__

__mat1__

__80__

__50__

__cust1__

__mat1__

__75__

__60__

__cust2__

__mat2__

__70__

__20__

__cust2__

__mat2__

__65__

__30__

__cust2__

__mat2__

__60__

__40__

 

When i do the step of Read Data in LSMW iam getting the data correctly.

 

in Display read data step i got the header data in yellow and its line item in blue.

 

In Convert data step iam gettin as

Transaction read = 2.

Records read = 11.

Transaction written = 2.

Record written = 9.

 

In Display Converted data step Iam getting every record as a higher level item (displayed in green)

In Create Batch Input Session step Iam getting the message as 1 batch Input folder with 9 transactions

Which is actually wrong because only two transaction only must be written.

I think i migh have problem in Convert data step but iam not sure, can anyone help me what should be done.

My requirement is to upload the two datas with multiple scale prices for transaction vk11.

Kindly Help.

 

 

Regards

Naveen

maintaining structure relationships in LSMW

$
0
0

Hi guys,

 

In creating project for uploading vendor master details from LSMW, i selected following fields while creating the structure-

bukrs,

ekorg,

ktokk,

name1,

name2,

sortl,

stras,

ort01,

pstlz,

land1,

spras.

 

now in the step of maintaining structure relationships a tree structure is there. How to decide which structure relationships are to be maintained? I am unable to understand the given table names and there descriptions in this section.

which user exit suitable for purchase order inbound idoc.

$
0
0

Hello experts,

 

which user exit suitable for purchase order inbound idoc.?

 

I am new to IDOCs and EXITS.

My requirement is

PI system sends IDOC to our SAP system.

IDOC type is PORDCR102

MESSAGE TYPE IS PORDCR1

 

before saving te purchase order our exit should trigger and modify some item data .

 

can u send sample code(reading segments) for that exit.

 

 

 

 

Regards,

Revanth.

how to add field in standard IDOC REQPCR

$
0
0

Dear Experts ,

could you please explain me step by step how to add a standard field(vendor N°) to a standard idoc (REQPCR ) .

 

thanks in advance .

 

regards ,

Viewing all 898 articles
Browse latest View live


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