28 Şubat 2017 Salı

FLTP_CHAR_CONVERSION

data: input      type f,
        output(22) type c.
 
 
    input = '3.0000000000001098E-03'.

*first method
    write input to output exponent 0 decimals 18.

*second method
*    call function 'FLTP_CHAR_CONVERSION'
*      exporting
*        decim = 18
*        expon = 0
*        input = input
*        ivalu = 'X'     "abap_true'
**       MASKN = ' '
*      importing
*        flstr = output.
    write:/ output.

 

10 Şubat 2017 Cuma

Dynamic date selection in Variants

https://blogs.sap.com/2012/07/24/dynamic-date-selection-in-variants/

Create & Transport Standard Text (SO10)

CREATE & TRANSPORT STANDARD TEXT
STEP1: Create Standard Text:  T-Code SO10
Enter the Text Name and then click CREATE Push Button. A Text Screen will appear where you can maintain the Text and SAVE.
Capture.JPG
STEP 2: CREATE TRANSPORT REQUEST FOR TRANSPORTING THE TEXT
T-Code:- SE09
Capture.JPG
Click on CREATE
Capture.JPG
Create a Transport Request
Capture.JPG
Also need to change the Transport Request from Unclassified to Correction or Repair. For this select your transport request (BCDK906932) and then click on Request/Task on main menu à Change Type and then select the Correction.
Capture.JPG
Now you can see that from Unclassified the request type changed to Development/Correction.
Capture.JPG
STEP 3: Include the Text in Transport Request
T-Code:  SE38,  run program RSTXTRAN
Capture.JPG
Following Screen will appear, enter your Transport Request No. (note that the transport request no. of Sub-Object will be entered here and not the Main Object)
Capture.JPG
Following Screen will appear:
Capture.JPG
Deselect all Objects and Select your Objects only 
Capture.JPG
Press à ENTER
Your selected Objects will be shown
Capture.JPG
Click on Trsfr texts to corr. Push Buttons
Capture.JPG
Now you can Release and Import the Transport Request as usual.


https://blogs.sap.com/2012/08/06/create-transport-standard-text-so10/

23 Ağustos 2016 Salı

No default virus profile active or found. Please check the offical guide. ERROR

No default virus profile active or found. Please check the offical guide. hatası alıyorsanız,
/IWFND/VIRUS_SCAN işlem kodu ile Virus Scan Switched Off active duruma getirmelisiniz.

15 Temmuz 2016 Cuma

The server is refusing to process the request because the entity has an unsupported format

"The server is refusing to process the request because the entity has an unsupported format" hatasının çözümü için  Content-Type = ...;type=entry            "type=entry" eklemeniz gerekmekte.

var urlRead = "/createSet";
var headers = {
"X-Requested-With": "XMLHttpRequest",
"Accept": "application/atom+xml,application/atomsvc+xml,application/xml",
"Atom": "http://www.w3.org/2005/Atom",
"Content-Type": "application/atom+xml;type=entry",
"DataServiceVersion": "2.0"

};