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

Re: sapscript: & (Z)& removing leading zeros not work

$
0
0

Hi,

you can use this syntax:

 

For example

&EKKO-LIFNR(Z)&

 

Regards

Ivan


Re: About T.code S_ALR_87006482

$
0
0

Hi Pradeep,

 

I thought the Tcode S_ALR_87006482 acts to change view MRP Controllers. Over view.

It is updated table T024D.

 

Thanks

Sahoo

Re: Short dump program names as output

$
0
0

hi Azeem,

 

yes of course you r right short dumps occur when exception cannot handled.

 

but if we execute using SUBMIT command is navigate to other programs out put screen

so is there any chance to find out whether certain called program is going to short dump or not ?

Authorization restriction for a user for ME55

$
0
0

Hello Experts,

I have to give authorization of tcode ME55 : Collective Purchase requisition release to one of our users.

Now the condition is that he will not be able to see the PRs for Raw materials.

I tried creating Transaction variant via SHD0 but for ME55 its not working, I dont know why ?

So is there a way to do this ??

Re: item text for RFQ not copied in correct language from material master PO text

$
0
0

ok. checked copying rules for RFQ item text, but did not find any language specific setting. Can you please bit elaborate?

 

Thanks,

Rick

Strange problem with Batch Input F-30

$
0
0

I'm facing a really strange problem. I have a batch input on mode N for F-30 that gave me an error,the message is:

F5 263 S The difference is too large for clearing

00 344 S No batch input data for screen SAPDF05X 3100

 

But I switched to mode E or mode A,this batch input is succeed,everythins is OK.

 

I check out batch input record in SM35,then click Process button,the same case.

 

Have anyone faced this kind of problem?

Thanks in advance for any help.

Re: Urgent! Need help--Strange problem with Batch Input F-30

$
0
0

Dear Jack,

 

Can you specify what are "all the items" please? I am using a BDC program based on FB05. I receive the same message "F5 263 S The difference is too large for clearing" and it stops the BDC program every time. When I choose BDC mode "A", this message is displayed as type 'S', so I can proceed. However when I choose mode "N", the log shows this message is type 'E' and causes BDC failure. I would appreciate your kind help.

 

Best,

Arwen

Re: SE16N , number of hits = 1 ,depends on size of table ?

$
0
0

Hi purnand,

 

Buffering is never active for CDPOS or CDHDR.....


Re: FTP subcommand: Server reports error in FM

$
0
0

Hello,

 

I do not know the exact reason for that but you can find out by checking these points in your program.

 

First of all, are you setting the 'handle' import parameter with the same value that is exported from the FM 'FTP_CONNECT' ?

If so, is the folder (the path that you want to put that file in) really exist on the FTP server? Can you look it up on using FileZilla or any other FTP client program that you are using?

And also you should set character_mode parameter as 'X' in most cases. Have you done that?

 

I hope one of these questions will help you.

 

Regards,

Arman.

Can TMG events be used when a table is updated programmatically?

$
0
0

Hi,

 

I have a program that updates a custom table programmatically. I want to update all fields except the sequence field of this table. I want to increment the sequence field automatically as and when a record is entered using TMG of a table. Is that possible? I have tried this and when I debug it doesn't go to my TMG event sub-routine at all. I have put a break-point in that routine and its not stopping.

Re: Implementation of WDA classes for SC creation SRM 7.0

Re: Adding Company code on ABAP Webdynpro Screen in Limit Shopping Cart in SRM 7.0

Re: need help on multiple pf-status

$
0
0

Hi kishore ,

 

When you create TMG from SE11 it will automatically create screen and pf-status with your requrement .i think you dont ned to enter manually.

Re: How can I export a table from a function module

$
0
0

Hi Luis,

 

  For exporting the internal table you need to create an table type in SE11.

 

Go to SE11, select 'Data Type' radio button, and enter any name and create.

From the Type Popup box select 'Table Type'. Ex: ZITAB

 

In the Line Type, give your database table name. Save and activate.

 

Go to SE37 to create function module.

In the Export tab, create an parameter with associated type as your table type name i.e ZITAB.

Re: how to remote login using ABAP code

$
0
0

Use RFC, makes no sense reimplementing 99% what is already there. Theoretically you could build a web application, say with BSP, but you would still end up implementing 99% of what already exists and you would have considerable trouble using the values in your classic dynpro that were fetched by the web application. Back to the drawing table...


Re: How to use/implement CL_TABLECONTROL

$
0
0

hi ABAPER's,

 

     Any one know how to use this Class CL_TABLECONTROL

Please send me the Code

 

     Also send me some other Class example for table control

 

 

 

Regards

 

Karthikeyan

Re: reg : class for creating table control

$
0
0

hi ABAPER's,

 

     Any one know how to use this Class CL_TABLECONTROL

Please send me the Code

 

     Also send me some other Class example for table control

 

 

 

Regards

 

Karthikeyan

Re: Convert a base64Binary file to PDF

$
0
0

Hello

Have a look what i did to convert base64 to PDF

 

  DATA: fic_binario TYPE xstring.  DATA: string_binario TYPE string.

 DATA: BEGIN OF lines OCCURS 100,
        tdline TYPE string.  DATA: END OF lines.    CALL FUNCTION 'SSFC_BASE64_DECODE'    EXPORTING      b64data = twebpdf    " contains the file on base64    IMPORTING      bindata = fic_binario.    string_binario = fic_binario.   DATA: li_contents         TYPE TABLE OF sdokcntbin,        lw_contents         TYPE sdokcntbin,        l_file_length       TYPE i,        l_flag              TYPE c,        l_off               TYPE i,        l_len               TYPE i.   TRY.    l_len = XSTRLEN( fic_binario ).    l_file_length = l_len.     WHILE l_flag IS INITIAL.       IF l_len LE 1022.        lw_contents-line = fic_binario+l_off(l_len).        l_flag = 'X'.      ELSE.        lw_contents-line = fic_binario+l_off(1022).        l_off = l_off + 1022.        l_len = l_len - 1022.      ENDIF.       APPEND lw_contents TO li_contents.     ENDWHILE.

 

li_contents is the table on PDF.

 

Regards

ABAP Outbound Proxy

$
0
0

Hi Experts,

 

I am trying to create a outbound ABAP proxy program for po change. What are the steps that a PI developer needs to do from his/her perspective and what are the steps that a ABAP developer needs to do from his/her perspective? I went through many online documents which was confusing me a lot. Appreciate if someone could send me the detail steps.

 

 

Thanks,

 

Nani

g_editor->get_text_as_r3table - not working second time around

$
0
0

I have created a table and each rown on the table has a button that will create long text field for notes.

 

I am using g_editor->get_text_as_r3table to retrieve data from the long-text field.  The first time processing, I am able to retrieve the data and save it.  The second time processing (for the next table row), the data is not retrieved.  I have attached a file with the code that I am using.

Viewing all 10425 articles
Browse latest View live


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