Hi,
you can use this syntax:
For example
&EKKO-LIFNR(Z)&
Regards
Ivan
Hi,
you can use this syntax:
For example
&EKKO-LIFNR(Z)&
Regards
Ivan
Hi Pradeep,
I thought the Tcode S_ALR_87006482 acts to change view MRP Controllers. Over view.
It is updated table T024D.
Thanks
Sahoo
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 ?
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 ??
ok. checked copying rules for RFQ item text, but did not find any language specific setting. Can you please bit elaborate?
Thanks,
Rick
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.
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
Hi purnand,
Buffering is never active for CDPOS or CDHDR.....
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.
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.
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.
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.
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...
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
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
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
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
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.