Could you pls give the details about the Unicode conversion during Upgrade

Hi,
Can anyone give details about the Unicode conversion during SAP Upgradation fro 4.6C to ECC6.
Waiting for quick response
Best Regards,
Padhy

Hi,
These are the few points i gathered during my upgradation project.
Before starting any upgradation project, it is necessary to take up the back-up of the existing systems. As we are going to upgrade the entire system, we will be changing so many things and if something happens, without back-up, we will be in a trouble.
So it is advised to keep a back-up of the existing system.
Say for example we have the existing system E4B which is of Version 4.6C. Now we want to upgrade it to Version 4.7. Let us see how we can do it.
Version upgrades not only means that we need to run the new Version CD over the existing Version System but only involves some other thing.
Version Upgrade involves the following Steps.
Say we want to upgrade for Version 4.7 from Version 4.6, which is in the System E4B. Now we created one more system called as E1B in which the upgradation for Version 4.7 can be done.
• First copy the entire E4B system into the E1B System which is created for Version 4.7.
• Apply the Version 4.7 CD provided by SAP over the E1B System.
• Now check whether all the functionalities that was in E4B system works fine with E1B system also.
Thus the Version Upgrade involves two steps.
1. SAP Upgradation with the help of the CD
2. Manual Upgradation.
1. SAP Upgradation with the help of the CD
This is nothing but after taking the copy of the existing system into a new system, the upgradation CD from SAP is applied over the new system.
2. Manual Upgradation.
This Manual Upgradation involves
2.1 Upgradation of Standard Objects
2.1.1 SPAU Objects
2.1.2 SPDD Objects
2.2 Upgradation of Custom Objects.
Upgradation of Custom Objects can be placed under the following three categories.
Unicode Compliance
Retrofit
Upgrade
Please Find below some of the common Unicode Errors and their solutions
1. Error:
In case of Translate Error; ‘Dangerous use of Translate in Multilingual system.’
Correction:
To correct the Error occurring on TRANSLATE statement – use this additional statement before the Translate statement.
SET LOCALE LANGUAGE sy-langu.
This statement defines the Text Environment of all the programs & internal sessions in the language specified in the LANGUAGE KEY, which in this case is “sy-langu”, i.e. the log on language of the user.
2. Error:
In case of Open Dataset Error; ‘Encoding Addition must be included.’
Correction:
This Error occurs only when the MODE is TEXT.
To correct the Error occurring on OPEN DATASET statement – use this statement instead.
OPEN DATASET dataset_name FOR access IN TEXT MODE ENCODING DEFAULT.
Where: dataset_name – NAME OF THE DATASET.
Access – INPUT or OUTPUT or APPENDING or UPDATE.
DEFAULT - Corresponds to UTF-8 in UNICODE systems &
NON_UNICODE in NON-UNICODE systems.
3. Error:
In case of the usage of the Obsolete FM UPLOAD/DOWNLOAD or WS_UPLOAD/DOWNLOAD; ‘Function module UPLOAD is flagged as obsolete.’
Correction:
The FM GUI_DOWNLOAD/UPLOAD is used.
The variations to be made in the parameters of the FM:
1. Filename – It must be of STRING type.
2. Filetype – “DAT” is not used any longer, instead “ASC” is used.
3. Field Separator – The default value “SPACE” is used, incase for a TAB separated file “X” can be used.
4. Error:
In case of CURRENCY/UNIT Addition Error; ‘Use addition CURRENCY/UNIT when outputting.’
Correction:
The CURRENCY addition specifies the currency-dependant decimal places for the output of the data objects of type i or p. To obtain the currency-key, the field CURRKEY of the table TCURX is used. The system determines the number of the decimal places from the field CURRDEC of the selected CURRKEY.
To correct this error follow the following method:
WRITE: /3 'TOTAL',' ', TOTAL.
WRITE: /3 ‘TOTAL’,’ ‘, TOTAL CURRENCY ‘2’. --- Where ‘2’is the Currency Key for Getting 2 decimal places.
5. Error:
In case of TYPE X Error; ‘Variable must be of C, N, D, T or STRING type.’
Correction:
We need to change all the Type X (Hexadecimal) variables to Type C with their values unchanged.
So the method to be followed is:-
1. Load the definition of the class CL_ABAP_CONV_IN_CE or CL_ABAP_CHAR_UTILITIES.
2. Declare the variable as Type C, and use the method UCCP(‘XXXX’) of the class CL_ABAP_CONV_IN_CE where XXXX represents the 8-bit Hexadecimal value and incase the variable holds a Hex value for a Horizontal Tab , then the Attribute “HORIZONTAL_TAB” of the class CL_ABAP_CHAR_UTILITIES can be used directly instead of using the method UCCP.
E.g.:
i) *DATA: TAB TYPE X VALUE 09, “Tab character
CLASS: CL_ABAP_CHAR_UTILITIES DEFINITION LOAD.
DATA TAB TYPE C VALUE CL_ABAP_CHAR_UTILITIES=>HORIZONTAL_TAB.
ii) * DATA: CHAR TYPE X VALUE 160.
CLASS: CL_ABAP_CONV_IN_CE DEFINITION LOAD.
DATA CHAR TYPE C.
CHAR = CL_ABAP_CONV_IN_CE=>UCCP(‘00AO’).
(Here ‘00A0’ is the Hexadecimal equivalent of the decimal 160).
3. Incase the TYPE X Variable has a length more than 1, then an internal table must be created for the variable.
E.g.:
CLASS: CL_ABAP_CONV_IN_CE DEFINITION LOAD.
DATA : LF(2) TYPE X VALUE 'F5CD'.
DATA : BEGIN OF LF,
A1 TYPE C,
A2 TYPE C,
END OF LF.
LF-A1 = CL_ABAP_CONV_IN_CE=>UCCP('00F5').
LF-A2 = CL_ABAP_CONV_IN_CE=>UCCP('00CD').
6. Error:
In case of the Character “-“Error; ‘The Character “-“can’t appear in names in Unicode Programs.’
Correction:
The Character “-“(Hyphen) appearing in Variable names is replaced by the character “_” (Under Score) for Unicode/Upgrade Compliance.
E.g.:
*wk-belnr LIKE bkpf-belnr,
*wk-xblnr LIKE bkpf-xblnr,
*wk-date LIKE sy-datum,
*wk-wrbtr LIKE bseg-wrbtr,
*wk-name1 LIKE lfa1-name1,
*wk-voucher(8) TYPE c.
wk_belnr LIKE bkpf-belnr,
wk_xblnr LIKE bkpf-xblnr,
wk_date LIKE sy-datum,
wk_wrbtr LIKE bseg-wrbtr,
wk_name1 LIKE lfa1-name1,
wk_voucher(8) TYPE c.
7. Error:
In case of The SUBMIT-TO-SAP-SPOOL Error; ‘you should not use the statement SUBMIT-TO-SAP-SPOOL without the WITHOUT SPOOL DYNPRO addition. ‘
Correction:
1. Declare variables of type PRI_PARAMS, ARC_PARAMS, and a variable of TYPE C which would be used as a VALID FLAG.
2. Call the FM GET_PRINT_PARAMETERS:
CALL FUNCTION 'GET_PRINT_PARAMETERS'
EXPORTING
ARCHIVE_MODE = '3'
DESTINATION = P_DEST
IMMEDIATELY = 'X'
IMPORTING
OUT_ARCHIVE_PARAMETERS = archive_parameters
OUT_PARAMETERS = print_parameters
VALID = valid_flag
EXCEPTIONS
INVALID_PRINT_PARAMS = 2
OTHERS = 4
3. Use the SUBMIT-TO-SAP-SPOOL statement.
E.g.:
•     submit zrppt500
•     using selection-set 'AUTO3'
•     with res_no eq lo_rsnum
•     with sreserv in preserv
•     to sap-spool destination p_dest
•     immediately 'X'. "print immediate
DATA: print_parameters type pri_params,
archive_parameters type arc_params,
valid_flag(1) type c.
CALL FUNCTION 'GET_PRINT_PARAMETERS'
EXPORTING
ARCHIVE_MODE = '3'
DESTINATION = P_DEST
IMMEDIATELY = 'X'
IMPORTING
OUT_ARCHIVE_PARAMETERS = archive_parameters
OUT_PARAMETERS = print_parameters
VALID = valid_flag
EXCEPTIONS
INVALID_PRINT_PARAMS = 2
OTHERS = 4
Submit zrppt500
Using selection-set 'AUTO3'
With res_no eq lo_rsnum
with sreserv in preserv
to sap-spool
SPOOL PARAMETERS PRINT_PARAMETERS
ARCHIVE PARAMETERS ARCHIVE_PARAMETERS
WITHOUT SPOOL DYNPRO.
8. Error:
In case of Message Error; ‘Number of WITH fields and number of Place Holders are not same ‘.
Correction:
Split the statement after WITH into the same number as the place holder for that Message ID.
E.g.:
1. * MESSAGE E045.
MESSAGE E045 WITH '' ''.
2. in program ZIPI0801
•     Start of change for ECC6
•     message e398(00) with 'Could not find access sequence'
•     'for condition type:'
•     p_ptype.
message e398(00) with 'Could not find '
'access sequence'
'for condition type:'
p_ptype.
•     End of change made for ECC6
9. Error:
In case of Move between 2 different Structures; ‘The structures are not mutually convertible in a Unicode program.’
Correction:
Make both the Data Types compatible and then assign the contents.
E.g.:
The statement –“move retainage_text to temp_text.” Gives an error, where RETAINAGE_TEXT is an internal table and TEMP_TEXT is a string of length 200.
A Feasible solution for this is to specify from which position to which position of the string, the fields of RETAINAGE_TEXT should be assigned.
TEMP_TEXT+0(1) = RETAINAGE_TEXT-DQ1.
TEMP_TEXT+1(1) = RETAINAGE_TEXT-HEX.
TEMP_TEXT+2(20) = RETAINAGE_TEXT-FILLER1.
TEMP_TEXT+22(15) = RETAINAGE_TEXT-AMT_DUE.
TEMP_TEXT+37(8) = RETAINAGE_TEXT-TEXT.
TEMP_TEXT+45(10) = RETAINAGE_TEXT-DUE_DATE.
TEMP_TEXT+55(1) = RETAINAGE_TEXT-DQ2.
10. Error:
In case of ‘no description found’; ‘add a GUI title’.
Correction:
In this type of error gui title is generally missing so add a GUI title to the module pool.
11. Error:
In case of ‘writing internal or transparent table’
Correction:
Write individual fields.
E.g.:
WRITE: / EXT. --> EXT should be a character type field
WRITE: / EXT-ZZSTATE, EXT-LINE_NO, EXT-LINE_TXT, EXT-AMT, EXT-ZZSKUQTY.
12. Error:
In case of ‘combination reference table/field S541-UMMENGE does not exist’
Correction:
Was due to error in reference table S541. TABLE S541 has errors
1)”Foreign key S541- ZZMARKET (ZZMARKET AND KATR2 point to different domains)”
2)”Foreign key S541-ZZACQUIGRP (ZZACQUIGRP AND KATR8 point to different domains)”
Changed the domain of ZZMARKET (from ZMKCODE to ATTR2)
And that of ZMKCODE (from ZACCODE to ATTR8)
13. Error:
In case of ‘KEY does not exist’
Correction:
The reference table for field KBETR was KNOV earlier changed it to RV61A as KNOV was in turn referring to RV61A.
14. Error:
Incase of ‘WRITE’ statement, ‘Literals that take more than one line is not permitted in Unicode systems.’
Correction: To correct this error, we need to align the spaces accordingly so that the statement doesn’t go beyond the line.
15. Error:
Incase of Data statement, ‘The data type ZWFHTML can be enhanced in any way. After a structure enhancement, this assignment or parameter might be syntactically incorrect………..’
Correction: To correct this error, instead of “like” in the Data statement, use “type”.
16. Error:
Incase of DESCRIBE statement, ‘DESCRIBE can be used only with IN BYTE... Or IN CHARACTER mode in Unicode systems.’
Correction: To correct this error, use additional text, IN BYTE MODE / IN CHARACTER MODE along with this statement.
CHARACTER MODE is added when the data object is of flat/ character type.
BYTE MODE is added when the data object is a deep structure.
Syntax: DESCRIBE FIELD data_obj : LENGTH blen IN BYTE MODE,
LENGTH clen IN CHARACTER MODE.
Where blen and clen must be of type I.
17. Error:
Incase of DO-LOOP Error,’ In Do loop range addition needed‘
Correction:
An internal tables is declared and the two fields (VARYING field and NEXT field) were
Included inside the internal table
E.g.: In program SAPMZP02
DO 11 TIMES
•     VARYING STATION_STATE FROM STATION1 NEXT STATION2. “ECC6
CASE SYST-INDEX.
WHEN ‘1’
STATION_STATE = STATION1.
WHEN ‘2’
STATION_STATE = STATION2.
WHEN ‘3’
STATION_STATE = STATION3.
WHEN ‘4’
STATION_STATE = STATION4.
WHEN ‘5’
STATION_STATE = STATION5.
WHEN ‘6’
STATION_STATE = STATION6.
WHEN ‘7’
STATION_STATE = STATION7.
WHEN ‘8’
STATION_STATE = STATION8.
WHEN ‘9’
STATION_STATE = STATION9.
WHEN ‘10’
STATION_STATE = STATION10.
WHEN ‘11’
STATION_STATE = STATION11.
18. Error:
Incase of the parameter QUEUE-ID Error,’ QUEUE-ID’ is neither a parameter nor a select option in program rsbdcbtc.’
Correction:
The parameter in program rsbdcbtc is QUEUE_ID and so is changed in this program
E.g.: In program Z_CARRIER_EDI_INTERFACE
•     submit rsbdcbtc with queue-id = apqi-qid and return. "ECC6
•     The parameter name changed by replacing '-' with '_' as in program rsbdcbtc "ECC6
Submit rsbdcbtc with queue_id = apqi-qid and return. "ECC6
19. Error:
Incase of EPC Error,’ Field symbol <TOT_FLD> is not assigned to a field ‘.
Correction:
This error couldn't be rectified as the error occurs in a Standard SAP include- LSVIMF29.
The OS Note - 1036943 needs to be applied.
Error:
OPEN DATASET P_FILE FOR OUTPUT IN TEXT MODE.
Correct:
OPEN DATASET P_FILE FOR OUTPUT IN TEXT MODE ENCODING DEFAULT.
Error:
Constants : c_tab type x value '09' .
Correct:
Constants : c_tab type abap_char1 value cl_abap_char_utilities=>horizontal_tab .
Error:
Data : begin of output_options occurs 0 . Include structure ssfcompop.
Data : end of output_options .
Correct:
Data : output_options type standard table of ssfcompop with header line .
Error:
PARAMETERS : NAST TYPE NAST .
Correct:
PARAMETERS : NAST TYPE NAST NO-DISPLAY .
Replace WS_DOWNLOAD and WS_UPLOAD by
GUI_UPLOAD and GUI_DOWNLOAD and check the import and export parameter types , do the changes accordingly. Because FILENAME paramater type is different because of this it will give dump.
For issue during Issue using SO_NEW_DOCUMENT_ATT_SEND_API1 Function module, the solution is After this FM we should put COMMIT WORK.
Issue:
Moving data from one structure to another structure if those two structures are not compatible
Solution:
we should use move-corresponding or field by filed we need to move it.
If database structures are different in 4.6c and ECC6.0,
Then we should go with append structure concept.
While testing the report if it gives dump at Select query level or any database or view level,then just goto that table or view and goto the data base utility(se14) adjust the database. But make sure that selected radio button in se14 transaction should be activate and adjust database
Also Check this link.
http://help.sap.com/saphelp_nw04/helpdata/en/62/3f2cadb35311d5993800508b6b8b11/frameset.htm
Reward points if helpful.
Regards,
Ramya

Similar Messages

  • Can you please explain in detail about the T-Code SM59

    Can you please explain in detail about the T-Code SM59

    Hi Raja,
    detailed explanation is already available over help.sap.com.
    For your ready reference check below links
    http://help.sap.com/saphelp_spm21_bw/helpdata/en/57/898009a859493a8bce56caaf0f8e13/frameset.htm
    http://help.sap.com/saphelp_webas610/helpdata/en/da/11df3a9b10355ae10000000a11405a/frameset.htm
    http://help.sap.com/saphelp_snc70/helpdata/en/3f/7ffb40ef74f923e10000000a155106/frameset.htm
    Regards
    Jitender

  • I forgot the answers I wrote that I opened the account and I can not do all sorts of things into account because it I can give you all the details about the accountant to believe me

    I forgot the answers I wrote that I opened the account and I can not do all sorts of things into account because it
    I can give you all the details of the account to believe me
    Please help me
    It's my account [email protected]

    Click here and request assistance.
    (75545)

  • Please any one can give me the details about the fi-co extraction

    if any one have a screen shots on this.please send it to my id:[email protected] will give the points

    Hi Welcome to SDN world,
    The Following are the some links where you can find out some information about FI extractions.
    http://help.sap.com/saphelp_nw04/helpdata/en/af/16533bbb15b762e10000000a114084/frameset.htm
    Re: Which tables for LO and FI...
    http://help.sap.com/bp_biv335/BI_EN/html/BW/FinancialAccounting.htm
    And one small suggestion, SDN is the world where you can explore & learn yourself. We are not at all greedy about this POINTS.
      "i will give the points"
    We are not expecting this any more.
    My intention is to highligh the  Spirit of SDN. Sorry if i am hurting. you can contact me if you have any doubts.
    [email protected]
    Wish you best of luck....

  • Anyone can explain the details about the tcode MMBE

    Dear All,
    When running in the tcode MMBE, we may seen many different kind of stock status under different column, for example consgt. ordered, stck..(plnt) and so on..
    My question is that i would like to understand which are the steps, order types, or movement types will impact to the stock status showing in the MMBE?
    Thank you very much.
    Regards
    CW

    Hi
    MMBE alwasy shows current stock
    It shows you differnt stock type
    suppose while doing MIGO my stock type is quality and qunatity 10 ,then in MMBE it will shows stock under quality stock type not unrestricted if you issue stock its will reduse stock
    we cannot say its alwasy related to movement type 101 OR 201
    suppose material is not stockable and consumable ,then you wont get stock in MMBE
    Regards
    Kailas Ugale

  • What are the details about the TLS option in the Mail.app and the com.apple.idms.appleid.prd....... certificate found as an option there?

    I first looked TLS up on wikipedia, and found that it is a newer, more secure technology than SSL... apparently adding an extra layer of security by preventing email from sitting on a server somewhere enroute to its address??  I guess I don't understand...  Is TLS like digitally signing your email whereas SSL is a encryption technology?  Where did this certificate come from that shows up in the Mail.app preference pane?  Is it given to you along with your Apple Id now?  It is available for my gmail, iCloud, and yahoo email accounts on Mail.app preferences but not Exchange.  I've tested it out, and my email seems to working as normal...
    I would really appreciate some help!  I am just curious and I an ametuer at all this.  I've taken a lot of interest in privacy and security issues...  Many thanks!

    I first looked TLS up on wikipedia, and found that it is a newer, more secure technology than SSL... apparently adding an extra layer of security by preventing email from sitting on a server somewhere enroute to its address??  I guess I don't understand...  Is TLS like digitally signing your email whereas SSL is a encryption technology?  Where did this certificate come from that shows up in the Mail.app preference pane?  Is it given to you along with your Apple Id now?  It is available for my gmail, iCloud, and yahoo email accounts on Mail.app preferences but not Exchange.  I've tested it out, and my email seems to working as normal...
    I would really appreciate some help!  I am just curious and I an ametuer at all this.  I've taken a lot of interest in privacy and security issues...  Many thanks!

  • Details about the seminar

    I want the details about the persons who are conducting the seminars from NI and also the recent tables of the NI seminars.

    NI Seminars happens worldwide. Maybe you could try to be a bit more specific.
    LabVIEW Champion . Do more with less code and in less time .

  • Details about the JMS Producers/Consumers

    Hi All,
    I am new to weblogic server.
    We are using weblogic server 11g .
    I need clarification on JMS.
    We configured a JMS to send the reports from application deployed from weblogic server( oN Windows) to another weblogic server(On OEL) in FMW. But the data flow not occurred properly.I want to check following points .
    1)All producers and consumers details for ths JMS servers
    2)To get the details about the messgae sent by producer and who is the consumers for the same.
    3)To verify whether the JMS transfered the all messages to consumer or anythng dailed.
    4)If messages were failed then details about the failure message.
    5)How to verify the producer and the corresponding consumers are valid
    6)Can i check the details from both the producer and consumer servers.
    Thanks in advance.

    Please see the announcement post at the top of this forum. It points to getting started information and various useful doc links.
    Regards,
    Tom

  • Could you pls answer this

    What all the thing should be used in order to improve the performance and what all the thing should be avoided ?
    Explain abt control brk statement ?
    Could you pls give me clear explanation for CHECK,EXIT,STOP ?
    In real time, what is the steps which is used for transfer data - BDC
    whether call transaction,session method pls explain it
    And also explain about the include statement used in BDC
    Could you pls answer this

    Hi
    All this AT NEW, AT FIRST, AT END OF and AT LAST are called control break statements of Internal tables and are used to calculate the TOTALS based on sertain key fields in that internal table
    FIrst to use these statements the ITAB has to be sorted by the key fields on whcih you need the SUM of the fields.
    Some time you will get * when moving data from this int table to other table using these commands
    so you have to use
    READ TABLE ITAB INDEX SY-TABIX in AT..ENDAT..if you are using other fields between them
    DATA: sflight_tab TYPE SORTED TABLE OF sflight
                      WITH UNIQUE KEY carrid connid fldate,
          sflight_wa  LIKE LINE OF sflight_tab.
    SELECT *
           FROM sflight
           INTO TABLE sflight_tab.
    sort sflight by carrid connid.
    LOOP AT sflight_tab INTO sflight_wa.
      AT NEW connid.
        WRITE: / sflight_wa-carrid,
                 sflight_wa-connid.
        ULINE.
      ENDAT.
      WRITE: / sflight_wa-fldate,
               sflight_wa-seatsocc.
      AT END OF connid.
        SUM.
        ULINE.
        WRITE: / 'Sum',
                  sflight_wa-seatsocc UNDER sflight_wa-seatsocc.
        SKIP.
      ENDAT.
      AT END OF carrid.
        SUM.
        ULINE.
        WRITE: / 'Carrier Sum',
                  sflight_wa-seatsocc UNDER sflight_wa-seatsocc.
        NEW-PAGE.
      ENDAT.
      AT LAST.
        SUM.
        WRITE: / 'Overall Sum',
                  sflight_wa-seatsocc UNDER sflight_wa-seatsocc.
      ENDAT.
    ENDLOOP.
    BDC
    BDC:
    Batch Data Communication (BDC) is the process of transferring data from one SAP System to another SAP system or from a non-SAP system to SAP System.
    Features :
    BDC is an automatic procedure.
    This method is used to transfer large amount of data that is available in electronic medium.
    BDC can be used primarily when installing the SAP system and when transferring data from a legacy system (external system).
    BDC uses normal transaction codes to transfer data.
    Types of BDC :
    CLASSICAL BATCH INPUT (Session Method)
    CALL TRANSACTION
    BATCH INPUT METHOD:
    This method is also called as ‘CLASSICAL METHOD’.
    Features:
    Asynchronous processing.
    Synchronous Processing in database update.
    Transfer data for more than one transaction.
    Batch input processing log will be generated.
    During processing, no transaction is started until the previous transaction has been written to the database.
    CALL TRANSACTION METHOD :
    This is another method to transfer data from the legacy system.
    Features:
    Synchronous processing. The system performs a database commit immediately before and after the CALL TRANSACTION USING statement.
    Updating the database can be either synchronous or asynchronous. The program specifies the update type.
    Transfer data for a single transaction.
    Transfers data for a sequence of dialog screens.
    No batch input processing log is generated.
    Differences between Call Transaction and Sessions Method:
    Session method.
    1) synchronous processing.
    2) can tranfer large amount of data.
    3) processing is slower.
    4) error log is created
    5) data is not updated until session is processed.
    6) generally used for back ground jobs.
    7) at atime we can update to more than one screens.
    Call transaction.
    1) asynchronous processing
    2) can transfer small amount of data
    3) processing is faster.
    4) errors need to be handled explicitly
    5) data is updated automatically
    6) for background n fore ground jobs.
    7) at atime we can update to a single screen.
    For BDC:
    http://myweb.dal.ca/hchinni/sap/bdc_home.htm
    https://www.sdn.sap.com/irj/sdn/wiki?path=/display/home/bdc&
    http://www.sap-img.com/abap/learning-bdc-programming.htm
    http://www.sapdevelopment.co.uk/bdc/bdchome.htm
    http://www.sap-img.com/abap/difference-between-batch-input-and-call-transaction-in-bdc.htm
    http://help.sap.com/saphelp_47x200/helpdata/en/69/c250684ba111d189750000e8322d00/frameset.htm
    http://www.sapbrain.com/TUTORIALS/TECHNICAL/BDC_tutorial.html
    Check these link:
    http://www.sap-img.com/abap/difference-between-batch-input-and-call-transaction-in-bdc.htm
    http://www.sap-img.com/abap/question-about-bdc-program.htm
    http://www.itcserver.com/blog/2006/06/30/batch-input-vs-call-transaction/
    http://www.planetsap.com/bdc_main_page.htm
    call Transaction or session method ?
    Regards
    anji

  • Could you please give me the method to draw Line Graph in detail?

    Could you please give me the method to draw Line Graph in detail?

    Hi,
    First update your username instead of using that number.
    and also provide full information like
    Apex version
    Database version
    I am giving you one link related to charts,
    http://dgielis.blogspot.in/2011/02/apex-4-bug-series-type-bar-line-marker.html
    Hope this will helps you
    Thanks and Regards
    Jitendra

  • I want to learn SD , Could you pls send me the Reference Book names.

    Hi All,
    I want to learn SD , Could you pls send me the Reference Book names.
    and i heard about materials like Billing , Pricing , Shipping - Which material should i study first to understand baisc flow.
    Thanks in Advance.
    Regards,
    Nithi.

    Hi ,
    Instaed of a book i will refer you the help files of SAP .
    You can get there files at http://help.sap.com/
    An for SD the link is http://help.sap.com/saphelp_47x200/helpdata/en/92/df293581dc1f79e10000009b38f889/frameset.htm
    These files will help you a lot .
    even today also SD gurus take help from these files only.
    Regards

  • Could you pls help on  use exits   before  saving  the contract .

    i want to check the limitatin  before  saving the contract  in sap banking.
    for  contract creation  tcode is  FN1V or FNV1.
    Could you pls tell me the   use exits  if knows  anybody
    advance thanks.

    Hi Diva,
    use this exit.
    EXIT_SAPLFVDA_002
    if this is not suitable for u r req then go to SMOD press f4 then click on Information systems give FVVD in package then press enter.there u will get no of enhancement. search for u r rlant.
    Thanks

  • Could you pls explain the "Get-Acl C:/Windows | fl" output?

    Could you pls explain the "Get-Acl C:/Windows | fl" output? There are some nos. what are those indicate?
    PS C:\> Get-Acl C:/Windows | fl
    Path : Microsoft.PowerShell.Core\FileSystem::C:\Windows
    Owner : NT SERVICE\TrustedInstaller
    Group : NT SERVICE\TrustedInstaller
    Access : CREATOR OWNER Allow 268435456
    NT AUTHORITY\SYSTEM Allow 268435456
    NT AUTHORITY\SYSTEM Allow Modify, Synchronize
    BUILTIN\Administrators Allow 268435456
    BUILTIN\Administrators Allow Modify, Synchronize
    BUILTIN\Users Allow -1610612736
    BUILTIN\Users Allow ReadAndExecute, Synchronize
    NT SERVICE\TrustedInstaller Allow 268435456
    NT SERVICE\TrustedInstaller Allow FullControl
    Audit :
    Sddl : O:S-1-5-80-956008885-3418522649-1831038044-1853292631-2271478464G:S-1-5-80-956008885-3418522649-1831038044-185
    3292631-2271478464D:PAI(A;OICIIO;GA;;;CO)(A;OICIIO;GA;;;SY)(A;;0x1301bf;;;SY)(A;OICIIO;GA;;;BA)(A;;0x1301bf;;;
    BA)(A;OICIIO;GXGR;;;BU)(A;;0x1200a9;;;BU)(A;CIIO;GA;;;S-1-5-80-956008885-3418522649-1831038044-1853292631-2271
    478464)(A;;FA;;;S-1-5-80-956008885-3418522649-1831038044-1853292631-2271478464)
    AliahMurfy

    Those numbers are
    generic access rights.
    The string representation of the access rights come from the FileSystemRights enumeration. Generic rights aren't included in that enumeration, so they show up as the numeric value. You can look up the generic mappings for lots of different objects on MSDN.
    The 3.0 beta of
    my access control module will translate generic access rights for lots of different objects, including files and folders. Here is a screenshot showing the generic rights being translated for a registry key (HKLM:\SOFTWARE) and a folder (C:\Windows):
    The helper function that does the translation is temporarily accessible in the beta version. It is called New-AdaptedAcl. You can play around with it to get a better idea of what's going on (but this command will be private before the final 3.0 version is
    released). Here's a screenshot of the helper function in action (the first command does no translation, it just gives a string representation of the numeric access mask; the second command does translation, but it doesn't merge similar ACEs with each other):

  • Could you show me the detail of the MacBook Air md226x/a? And why is the model number different with another Air?

    could you show me the detail of the MacBook Air md226x/a? And why is the model number different with another Air?

    Search for MD226x/a on Google.

  • HT204023 Hey guys I am having a problem. Could you guys give some suggestion? I can connect personal hotspot from iPad 5 to iPhone 5s via Bluetooth  but the wifi doesn't recognize and can't connect. USB and Bluetooth sharing of hotspot is okay but wifi do

    Hey guys I am having a problem. Could you guys give some suggestion? I can connect personal hotspot from iPad 5 to iPhone 5s via Bluetooth  but the wifi doesn't recognize and can't connect. USB and Bluetooth sharing of hotspot is okay but wifi doesn't

    troubleshooting hotspot http://support.apple.com/kb/TS2756

Maybe you are looking for

  • My iMac will not boot up properly

    After installing the latest Mountain Lion update a few days ago, on boot-up I get the start-up chime and the pale grey screen, then I get the cursor top left corner. This then turns into the revolving rainbow disc, and that's it - it's stuck, althoug

  • Aperture won't put photos in Photostream

    I am suddently unable to use Aperture to upload pictures to a Photostream. I have a photostream that I am trying to add to that has just under 300 pictures.  I select the pictures I want, click the "Share" Icon, and then nothing happens.  I select th

  • Why can't I drag images from Finder to Design View Dreamweaver CC?

    Hey Guys, I'm using OS X Mavericks (10.9) and Adobe DW CC For some reason in both CC and CS6 I can no-longer drag files from Finder (Mac OS X's Explorer) into the design view ( for eg: adding images to a table cell ), the browse button doesn't work p

  • Stuck with a horrible phone

    I started a contract with Verizon on the 25th of June, and was told I had two weeks to return the device for an exchange. My Droid 2 is constantly freezing, rebooting, and will stop recieving calls and texts. So when I show up 2 weeks later, they tel

  • Double dot in file from mail sender channel

    Dear All, I have a volatile problem in mail channel with receiving xml file as attachment. The flow is: Mail with attached XML file (ORDER05 in xml format) --> XI  --> Idoc Sometime, may be for one percent of mails, mapping receives from channel doub