Quantcast
Channel: SCN: Message List - ABAP Development
Viewing all 10425 articles
Browse latest View live

Re: Tcode for Report painter

$
0
0

Hi,

Thanks Raymond and Tooshar for your help,i m planning to develop a zreport instade of report painter.

 

Tahnks

SAM

CLOSED.


Re: Updating ZTABLE in Remote System

$
0
0

Thanks paul, Your post helped it out

Re: RFC exporting parameters

$
0
0

Hi Megan,

 

Indeed it could work, already saw some FM that does in this way.

It would save you a reasonable amount of time, go ahead doing a test.

 

Edgar

SAP Query not working

$
0
0

Hi,

 

I am facing problem with SAP Query. My query is not working for one particular date. Its giving timeout error when i just give date as input. I tried executing it by giving some particular document as input, then its giving "no data" message but when i check the table data, there are some records for that input condition.

 

I debugged it, i found that the statement "FETCH NEXT CURSOR cursorname" is throwing sy-subrc eq 4. I couldn't understand the problem.

 

 

Any inputs will be very helpful.

 

 

Regards,

Mahidhar.

Re: table control not define

$
0
0

I'm sure you found this answer in the last six years. But for the record:

 

Make sure the TC in the screen element list is the same as the TC you defined in your program's data definitions.

Re: table controle not defined --> dump

$
0
0

Make sure the TC in the screen element list has the same name.

Need table and fields namely Gross salary, 80c break up and conveyance for form 24 report

$
0
0

SAP provides a standard report for form 24 in indian payroll i.e HINCF240. Requirement is to add 3 extra column fields namely Gross salary, 80c break up and conveyance. I need the table and field names for this 3 -fields so that new report can be executed...Plz help me in getting these 3 table with field names...

Temporary variants issue after system copy

$
0
0

Hi Experts,

 

I'm refering internal variants '&0000000000000' as temporary variants. These temporary variants are getting deleted after TEST system copy with PRD.

 

For example consider SWWDHEX job which is used to monitor missed workflow deadlines. When SWU3 is executed, job created with temporary variant '&000000000007' and was running successfully. After system copy, there are multiple released jobs for SWWDHEX and one of the released job giving error 'Variant &000000000007& does not exist'.

 

My question is, why these temporary variants are getting deleted and how multiple released jobs getting created?

 

Thanks in advance,

Siva Sankar


Re: How to know if a file is copied completely or on the way.

$
0
0

Hi Yuko,

 

A way to do that would be to add a verification digit/string at end of your file so first thing to be done would be to read content and check if it's there.

What kind of file you're handing, texts?

 

Regards,

Edgar

Report seelction screen

$
0
0

Hi All

 

I am creating a report which has sold-to  & ship to  as seelction screen options, So instead of creating two seelct options .

Is there any way where Depending on parnter type  the seelction screen can be dynamic.

FM "LVC_VARIANT_SELECT " raising exception wrong input for layout with filters

$
0
0

Hello All,

I have an issue while executing an ALV Report.The report is not working for Layout with filters.Function Module "LVC_VARIANT_SELECT" which raises an exception for wrong input.

 

the code is :

 

 

  CALL FUNCTION 'LVC_VARIANT_SELECT'

    EXPORTING

      i_dialog            = ' '

      i_user_specific     = c_char_x

      i_default           = l_flag

      it_default_fieldcat = <fs_t_fcat>

    IMPORTING

      et_fieldcat         = t_fieldcat

    CHANGING

      cs_variant          = wa_variant

    EXCEPTIONS

      wrong_input         = 1

      fc_not_complete     = 2

      not_found           = 3

      program_error       = 4

      data_missing        = 5

      OTHERS              = 6.

The error is due to the following code in FM:

 

 

if e_exit is initial.

    case l_subrc.

      when 0.

        if not it_data is requested and not lt_filter_lit is initial.

          raise wrong_input.

        endif.

 

I am not passing it_data to the Function Module  & I am unable to figure out the link between the Filter & this table.Any solution for this issue??

Re: Add new field in QA11

$
0
0

Hi,

 

Try with

Customer Exit :- QEVA0005 :- User subscreen for displaying add. data for usage decision

or

BADI :- QEVA_SUBSCREEN_1101 VE: BAdI Subscreen for Display of Data on Screen 1101

 

 

 

Thanks & Regrads

Bala Krishna

Adding new fields to FBL5N

$
0
0

Hi,

 

I am adding new invoice fields to FBL5N.

 

I have added fields to the report by adding fields to structure RFPOS & RFPOSX.

 

To populate values to these fields, I tried some BADIs and User Exits ( Package FREP, Enhancement F1040001) . But its not woking.

 

I would like to know if any existing badis or use exits exists, or only BTEs should be used

and also like to know which is the best option to use ( BADIs or BTEs and why?

 

 

Thanks & Regards,

Jack

Re: regarding loop passes

$
0
0

HI kumar,

                Yes,i agree with you.but,i had some doubt regarding it.so,after reading ,i came to know tat when control comes to main program ,it will point to current record only.and will not point to end of the record.correct me if i am wrong.

 

thanks for your replys.

How to change language only for address node in Thai for Smartform ?

$
0
0

Hi all.

          I have a requirement for Smartform in which I need to display only the address in Thai language. Remaining everything will be in English.

I used an address node for the same and tried with "Fixed Language for Country Indicator" and "Different Recipient Language" and made it to TH.

Also tried SET LOCALE LANGUAGE 'TH' for the same but still its coming in English.

How can I proceed with this..?


Re: Adding new fields to FBL5N

$
0
0

Hi jack,

 

U have to do in below way.

 

a. Add the news fields in structure RFPOS and RFPOSX by APPEND structure

b. Run the report RFPOSXEXTEND in order to update the structure RFPOSXEXT from RFPOSX

(this report has to be run in every enviroment, dev, test and prod)

 

c. Active the BTE 00001650 in order to create a fm as copy of SAMPLE_INTERFACE_00001650:

d. here insert the code you need to fill your new field.

e. Use trx FIBF to active the BTE, trx SE37 to create the new fm

 

********************************

The article [FI Enhancement Technique u2013 How-To-Guide on the Usage of Business Transaction Events (BTE)|http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/207835fb-0a01-0010-34b4-fef1240ba9b7]

If you don't know, please, see SAP Note 16466 - Customer name range for SAP objects, so, you will not have problems with the name of objects.

*********************************

 

Please check and let me know.

 

Thanks

Tarak

Re: Adding new fields to FBL5N

Re: BAPI : BAPI_CONTRACT_CREATE problem for conditions upload

$
0
0

Hi,

 

Why changing parameters also passing?.Did you check with lsmw bapi or idoc method.

 

Regards,

Madhu.

Re: Add new field in QA11

$
0
0

Hi Pabitra,

 

Check in below way.

 

This Enhancement is available,but will not provide the update of data, look at the documentation via transaction SMOD.

QEVA0005

 

This enhancement is not intended to be used to change the inspection lot data. If the subscreen contains fields that can be changed, these changes are not copied into the inspection lot.

The enhancement i provided is intended to manage AND update customer fields in QALS (structure CI_QALS)

QPL10004

 

This enhancement allows you to display or change additional data on the screens for the inspection lot transactions.

 

All fields in table QALS are available for display. You can only make limited changes to the customer-specific fields of the table enhancement CI_QALS (forms the basis of the table QALS).

 

Re: FM "LVC_VARIANT_SELECT " raising exception wrong input for layout with filters

$
0
0

Hi Deepthy,

 

Can you check the report BCALV_GRID_11.

 

Regards,

Madhu.

Viewing all 10425 articles
Browse latest View live


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