Re: Creating directory on application server (OS independent)
You could create your own (or list sap own) external command per system type to create directory, remember that even the syntax of the full path of a file can change depending on system (/ vs \) and...
View Articleworkflow task creation?
dear abapers, <link to blocked site removed by moderator> after creating task step do we need to create send mail step or not? Moderator message: please do more research before posting. Message...
View ArticleRe: how to build the where clause dynamically
Hi Mohanarangan, The field symbol should be typed like a line of the table, for example... DATA itab TYPE STANDARD TABLE OF abc. FIELD-SYMBOLS <itab_line> TYPE abc. Cheers,Amy
View Articlecustom tab?
hi abapers, To add custom tab for any transaction how do we know that which one is better option , enhanceing standard code with spiral symbol,badi's or user exits's? how to choose better option for...
View ArticleRe: JSON PARSER
Funny, Horst Keller just recently created a small blog in his personal space: ABAP and JSON Maybe this is of any help. Thomas
View Articlestatement not highlighted new ABAP editor
Hello, I have 3 statements in new ABAP editor FIELD-SYMBOLS: <fs_xvbap> TYPEvbapvb. FIELD-SYMBOLS: <fs_xvbap> TYPE ANYTABLE. FIELD-SYMBOLS: <fs_xvbap> TYPE STANDARD TABLE of...
View ArticleRe: statement not highlighted new ABAP editor
Hi, If you use the ABAP Editor's check tool (Ctrl+F2) to check your syntax, it will indicate two problems: You have assigned all three field symbols the same name.The compiler won't accept TYPE...
View ArticleRe: statement not highlighted new ABAP editor
Thank you Amy. 1) Actually, just for example i gave these 3 statements, Sorry for confusion, actually, in my prog. i gave 3 different names for the 3 differnt FSs 2) Not sure, why am not getting...
View ArticleRe: Creating directory on application server (OS independent)
Is this a temporary folder or needed permanently.
View ArticleRe: BAPI_MATERIAL_SAVEREPLICA always tries to create and then change
I too have noticed that the BAPI_MATERIAL_SAVEREPLICA executes an MM01 first and then an MM02 even if UPD is passed in the parameters. It seems to me that this is just the way it works.You can debug...
View ArticleRe: Table values not getting displayed
I just modified your code a little and it gives the values appropriately: TYPES: BEGIN OF zst, "changed this to dictionary types lang TYPE spras, title TYPE ad_title, title_medi...
View ArticleRe: BAPI to make Vendor Invoice using Asset Number
Hi,For F-43 program name is SAPMF05A.U can use BAPI_ACC_DOCUMENT_POST with posting key 31-invoice,40-debit entry.For further help follow thishttp://scn.sap.com/thread/851693Hope it helps. ThanksGourav.
View ArticleRe: Table values not getting displayed
Hi, In your code, title is in small letter just change to capital 'TITLE' and check your same code. regards, zafar
View ArticleRe: sap scripts
Hi Anand, Please check dis link "How can I print logos in SAPscripts?" http://wiki.sdn.sap.com/wiki/display/ABAP/SAPscript#SAPscript-HowcanIprintlogosinSAPscripts%3F Regard'sSmruti .
View ArticleRe: BAPI to make Vendor Invoice using Asset Number
BAPI_ACC_DOCUMENT_POST can post asset line items since Note 643232 - General BAPIs do not generate asset line items, also check if Note 1503626 - Error message RW602 when posting asset using BAPI is...
View ArticleRe: Article lock issue in bdc
As you get the lock error you should be able to identify the lock required. So instead of a single WAIT statement, use a call of the related ENQUEUE FM with _WAIT option set, and once every required...
View ArticleRe: sap scripts
Hi anand, You will not be able to view the logo in print preview for sap scripts. Please take the printout and see, you should be able to see it. Have you changed the name of the script in NACE and...
View ArticleRe: DYNP_COMPRESS_ILLEGAL_VALUE running CV04N
Check if during the last upgrade the screen was regenerated/translated in every installed language (SE51 dynpro menu screen generate, SE63) . Then call the screen in German, then in English, and if it...
View ArticleRe: back ground jod getting cancelled-database error
hi Edgar, below is the code & taking too much of time.. SELECT lifnr banks bankl bankn FROM lfbk INTO CORRESPONDING...
View Article