Re: what is the way to generate a random number or serial wise number ?
Hi, Pls try this DATA : MYAMOUNT LIKE BBSEG-WRBTR. DO 5 TIMES. PERFORM GENERATE_RND.ENDDO. FORM GENERATE_RND.CALL FUNCTION 'RANDOM_AMOUNT' EXPORTING RND_MIN = '1' RND_MAX = '100'...
View ArticleRe: what is the way to generate a random number or serial wise number ?
CALL FUNCTION 'QF05_RANDOM_INTEGER'EXPORTING ran_int_max = 1000 ran_int_min = 1IMPORTING ran_int = numberEXCEPTIONS invalid_input = 1 OTHERS = 2.IF sy-subrc <> 0. MESSAGE ID sy-msgid TYPE...
View ArticleRe: How to delete a translation in a program/report (se38)?
Thank you all for your replies and proposed solutions. Sadly none of them solved my problem. I only noticed the problem because i translate reports with a external tool. Now i changed the original...
View ArticleRe: ABAP linear/nonlinear programming.
TYPES: BEGIN OF ty_values, count TYPE i, value1 TYPE i, multi1 TYPE i, value2 TYPE i, multi2 TYPE i, value3 TYPE i, multi3 TYPE i, result...
View ArticleRe: Inbound Idoc processing via file on app server
Hi John! you are using 'INVF' (FB01), going to work if you use 'INVL' (miro) Please reward if useful. hug, Davi Rocha.
View Articlemkpf-tcode2
Hello All, I have a Z program and I am using a bapi which is called BAPI_PRODORDCONF_GET_TT_PROP. I am giving shipping confirmation at this BAPI.There is no problem at tgis point.But when I check...
View ArticleRe: what is the way to generate a random number or serial wise number ?
Dear soumyasanto, I want to generate a serial wise number , should not repeat ever. is there any function module to generate this type of number. Thanks &...
View ArticleRe: ALV INTERACTION REPORT DOUBT
Check this code.. almost similar as your one. ************************************************************************ TYPE-POOLS...
View ArticleRe: what is the way to generate a random number or serial wise number ?
Dear Aneesh, I want to just generate a number that will stored in a table against the master information of the employee. This number should not repeat ever because i have only...
View ArticleRe: what is the way to generate a random number or serial wise number ?
use below classCL_ABAP_RANDOM RegardsSoumya
View ArticleProblem in hiding Bar code Scanned text in Modulepool Screen
Hi SDN's , i am facing a problem in modulepool screen for hiding a barcode scanned content after scnning......... My require ment is : i have a hardcopy prints invoices( In Encrypted format) with...
View ArticleRe: Problem in hiding Bar code Scanned text in Modulepool Screen
In the dynpro definition and PBO define the field as active, input, output and invisible. Like passwords field, user input will be masked by asterisks. Read documentation like Setting Attributes...
View ArticleRe: Dump in Transfer statement
Hello, follow my code............copy and execute my code..........compare with your code.....debug my code and your code also......try to find your mistake...... ThanksSabyasachi
View ArticleF4 and hotspot together for a field in ALV Grid
Hi All, I have a field for which I have given hotspot = 'X' and f4available = 'X'. Hotspot seems to be working fine but the F4 is not visible. All the coding required is in place. Is it possible to...
View ArticleRe: F4 and hotspot together for a field in ALV Grid
Hello, hotspot is a field hotspot(1) typec, in slis_fieldcat_alv_spec....................but i think there is no field named F4......... ThanksSAbyasachi
View Articledump for the program?
PARAMETERS: TAB_NAME LIKE SY-TNAME, "Table name TAB_COMP LIKE X031L-FIELDNAME, "Field name ANZAHL TYPE I DEFAULT 10. Number of linesFIELD-SYMBOLS: <WA> TYPE ANY,...
View ArticleRe: dump for the program?
Hi, In your code, I can't see anywhere a value being assigned to tab_comp. So, it would be blank. And, if you assign this blank value to <comp>, that will also contain a blank value.
View Articlemodule Pool : Table control
How can we create or show shadow in a row in table control for exampleFirst row should be gray in color and 2nd row in different color white and third one is gray color and 4th should be gray color ad...
View ArticleDisplay Project document Change log in Report output (from Solar02)
Hello Experts, We have a requirement where we need to create a report (with modified selection screen) which displays Project Document Change log (Hisotry) from Solar02. There is a tcode SOLAR_EVAL...
View ArticleRe: Dynamic Action
Hi Rakesh, Check out this thread. http://scn.sap.com/thread/1346355 Hope it helps! Cheers!
View Article