Re: Toggle in CJ20N Transaction
Hi Dwaraknandha I believe you should be doing something like this : loop at screen. if sap_display_only = 'X'.* You might want to check your screen fields here screen-input = 0. else....
View ArticleRe: Toggle in CJ20N Transaction
Hi Ram,I have done the same way as below. Not sure why it is not working..IF sap_display_only = 'X'. LOOP AT SCREEN. IF screen-input = 1. screen-input = 0. ENDIF. MODIFY SCREEN....
View ArticleRe: Toggle in CJ20N Transaction
Along with screen-input = 0 can you try screen-OUTPUT = '1'. CAn you check in the Screen-name variable if your custom fields are trigerred? RegardsRam
View ArticleRe: ADDR_UPDATE not working for personal addresses
With the ADRNR you should be having Address type too.... Pass that in the FM dynamically and check.( I am not logged in SAP and cannot verify) BR.
View ArticleRe: Short dump while updating User Status of a Project and corresponding WBS
Its still not working. I still get the same error during 2nd loop count. Please help.
View ArticleRe: Large file upload to SAP: GUI_UPLOAD vs. OPEN DATASET
Actually, in my case it's a heavy XML, not Excel. Does it matter or there is no any difference for OPEN DATASET?
View ArticleRe: Large file upload to SAP: GUI_UPLOAD vs. OPEN DATASET
Hi Mike, I haven't got any opportunity to upload XML but its should not make any difference for Open Dataset.I dug out this https://scn.sap.com/thread/830089. See if helps. If not ask here. BR.
View ArticleRe: Excel-Datei mit Daten in SAP ergänzen + Download
To english readers:I told him, to translate his question to english, so we all can discuss together with him and find a proper solution...
View ArticleRe: Language conflict
Ganesh, i want know how to added the field to output list in the TCODE LP21?? Thanks,Polanco93
View ArticleIdoc errors with status text.
Hello, I'm new to SAP and forum searches have not revealed what I'm looking for. What I need is a report of idoc errors that have occurred in the past two weeks with the Status Text. I don't care...
View ArticleRe: Excel-Datei mit Daten in SAP ergänzen + Download
how to complete an excel file (with formulae, formatting an variables) with data (dates) in SAP + download to c: problem:1. an excel file (statistik_master.xls) with formulae and formatting, as well as...
View Articlehow to complete an excel file (with formulae, formatting an variables) with...
problem:1. an excel file (statistik_master.xls) with formulae and formatting, as well as variables (e.g., $$$-001, $$$-002...) which should be complete from SAP was constructed in MS excel.2. Excel...
View ArticleRe: How to Fetch ausp-objek value based on the...
Hi Ravi, Is this Select successful ? SELECT werks ART_GRPfrom ZPUT_SITE_PRE_VNinto table it_site where werks in s_site and ART_GRP in s_artgrp. If yes, it means you have data in IT_SITE....
View ArticleRe: How to Fetch Data from Non SAP System without using any Middleware and...
Vipul, For your requirement you need to use ABAP Native SQL statements typically called as SAP ADBC connection. For reference check out this standard program ADBC_DEMO. Before that create an entry in...
View ArticleRe: How to convert ABAP_LIST output of (Submit exporting list to memory and...
Hi Kranthi, I have created classical report. Please find below code parameters: s_kunnr type kna1-kunnr, S_BUKRS TYPE KNB1-BUKRS. DATA: itab_list TYPE TABLE OF ABAPLIST.*...
View ArticleRe: ALV HTML interactive report
Hi, If I understood correctly, you need an interactive report which need to send a mail when user click on a field in alv. for that you can do it in ALV grid/ control with usercommand. In below example...
View ArticleHow is a table parameter in function modules used ?
Dear all, I am trying to use a table parameter for exporting multiple rows for output. I have done the logic in the code where at the end, I have my internal table with the results I want to show...
View ArticleRe: how to complete an excel file (with formulae, formatting an variables)...
Hi, Its doable. your abaper can do this thing for you. Those conversions and all can be done if they have some defined logic.
View ArticleHow to add amount of 2 records with same Key fields in an internal table?
Hi Experts,I have an requirement as follows.I have data with many fields many different Accounts in an Internal table with many records.Out of many fields i need to check only 5 fields and if...
View Article