Program for conversion to character based in sap console.

Hi,
This is Urgent
We are using SAP console to connect between SAP to Mobile device.
For this some customised screens are to be designed.
As SAP Console is character based, and notmal SAp is GUI based.
how can we convert the sap screen designed using se51 or se38 to display using sap console char based.
Is there any program that convert this automatically.
Or are there any other transactions that help us code specifically for char based for SAP console.
Thanks

Hi all,
What is the significance of input field IM_DOC_URL in FM CV150_PRINT_DOC?
What value do we need to pass for this field?
Regards,
Sachin

Similar Messages

  • Best Practice for PDF print forms based on SAP standard

    Hi,
    I have copied the SAP standard PDF form F_D_INT_SCALE_00 to a Z form, and am using it in conjunction with the standard print program RFDZIS01_PDF.  However I need to output some additional fields that are not supplied by the print program / interface (for example Customer VAT number).
    What is the best practice for achieving this?  As far as I can see the only way is to take a copy of the standard print program and modify it to select the extra data, and modify the interface.  I never like taking copies of standard programs though for obvious reasons.
    If I had this requirement with a smartform it would be a simple case of embedding ABAP code into the Z smartform and leaving the print program alone, but unfortunately there is no provision for the non-PDF version of the Interest Letter to be sent by email.
    Thanks in advance,
    Vindaloo

    Thanks for your reply Robert.
    However I think you are referring to Smartforms when you mention Code Initialization and Global Data declarations.  I need to know the best way to modify copies of standard Adobe Print Forms.
    Regards,
    Vindaloo

  • Print program for outputting a Word Doc in SAP DMS

    Hi All,
    I have a requirement wherein I need to PRINT a MS Word Document linked to a Material Master using SAP DMS. I had searched the SDN and found that the FM CV150_PRINT_DOC has been used by some of you for similar purposes.
    Can anyone please describe how the FM can be used for the purpose mentioned above.
    Please also let me know if it is possible to create an OUTPUT TYPE to be associated with the print program that I shall create.
    Thanks in advance.
    With regards,
    Niharika

    Hi Bill,
    Thanks for the reply.
    Could you please describe in detail how OLE could be used for this? In case you have any sample code, kindly provide that.
    Thanks in advance.
    Warm regards,
    Niharika.

  • Program for conversation on 10.2.8

    I have 10.2.8 currently on my Mac, on my other computer I always used Skype or MSN to have voice conversations with others and now that I am in a different country, it would be very helpful. However, it needs at least 10.3 for both of these which I would like to hold off on for now.
    Is anyone familiar with a program that might allow conversation but that will work on OSX 10.2.8?
    Thanks in advance.
    l.g.b.d

    As far as I know, you can get the update to 10.4.3 Tiger by calling 1-800-MYAPPLE (the Apple Store) only IF you have a Combo, or Super drive (DVD-reading capability). If you do, you should use Disk Utility to repair permissions (if it exists under 10.2.8), then pay-for ($129+tax), get, and install Tiger using the Options-button / Archive and Install, Preserving User and Network Settings (assuming you have enough disk space, as it puts the old OS under a "Previous Systems" folder, which is non-bootable). Make sure that you get the salesperson to promise that they will deliver 10.4.3. Also confirm from them that you can go directly from 10.2.8 to 10.4.3 , which seems to be true from Tiger's Installation Booklet. The biggest change would be the "Journaled" file system introduced under OSs beyond 10.2.8, which renders the OS to be more stable. It also helps if you have maxed-out your RandomAccessMemory (RAM) -- I have 1024MB = 1GB!

  • Program for conversion please very urgent

    program to convert numberic to string like 356 to thre hundred and fifty six...and 1020 to to one thousand and twenty

    This one works for upto 4 digits
    import java.io.BufferedReader;
    import java.io.IOException;
    import java.io.InputStreamReader;
    public class DigitsToWords {
         public static void main(String[] args) throws IOException {
               BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
               String inDigits ;
               System.out.print("Enter some number: ") ;
               inDigits = in.readLine();
               String inWords = parseToWords(inDigits);
               System.out.println(inWords);
               in.close();
         public static String reverseString(String str) {
              String reverse = "";
              int length = str.length();
              for (int i = length-1; i >= 0; i--) {
                   reverse+= str.charAt(i);
              return reverse;
         public static String parseToWords(String inDigits) {
              String inWords = "";
              String reversed;
              String word = "";
              reversed = reverseString(inDigits);
              for (int i = 0; i < reversed.length(); i++) {
                   char digit = reversed.charAt(i);
                   if(i == 1) {
                        switch(digit) {
                             case '1':
                                  switch (reversed.charAt(i-1)) {
                                       case '0':
                                            word = "ten";
                                            break;
                                       case '1':
                                            word = "eleven";
                                            break;
                                       case '2':
                                            word = "twelve";
                                            break;
                                       case '3':
                                            word = "thirteen";
                                            break;
                                       case '4':
                                            word = "fourteen";
                                            break;
                                       case '5':
                                            word = "fifteen";
                                            break;
                                       case '6':
                                            word = "sixteen";
                                            break;
                                       case '7':
                                            word = "seventeen";
                                            break;
                                       case '8':
                                            word = "eighteen";
                                            break;
                                       case '9':
                                            word = "nineteen";
                                            break;
                                  break;
                             case '2':
                                  word = "twenty";
                                  break;
                             case '3':
                                  word = "thrity";
                                  break;
                             case '4':
                                  word = "fourty";
                                  break;
                             case '5':
                                  word = "fifty";
                                  break;
                             case '6':
                                  word = "sixty";
                                  break;
                             case '7':
                                  word = "seventy";
                                  break;
                             case '8':
                                  word = "eighty";
                                  break;
                             case '9':
                                  word = "ninty";
                                  break;
                   else {
                        switch(digit) {
                             case '1':
                                  word = "one";
                                  break;
                             case '2':
                                  word = "two";
                                  break;
                             case '3':
                                  word = "three";
                                  break;
                             case '4':
                                  word = "four";
                                  break;
                             case '5':
                                  word = "five";
                                  break;
                             case '6':
                                  word = "six";
                                  break;
                             case '7':
                                  word = "seven";
                                  break;
                             case '8':
                                  word = "eight";
                                  break;
                             case '9':
                                  word = "nine";
                                  break;
                   switch (i) {
                   case 2:
                        word += " hundred"     ;
                        break;
                   case 3:
                        word += " thousand"     ;
                        break;
                   default:
                        break;
                        inWords = word + " " + inWords;
              return inWords;
    }

  • Process for Conversion to IOS based AP

    Hi ,
    I have a 1131 Access point (AIR-LAP1131AG-N-K9) with me and I need to convert this into an IOS based standalone Access point.
    Could you please let me know the tool to convert this and the procedure to follow?
    Appreciate your help.
    Thanks
    Mikey

    Hi,
    Thanks for your reply. I have downloaded the tar image "c1130-k9w7-tar.124-21a.JY", but I cannot find the "Archive" command in the APs CLI.
    AP68ef.bd48.118c#archive ?
    % Unrecognized command
    Please let me know what Iam doing wrong here?
    Thanks
    Mikey

  • Writing Programs for Intel Mac?

    I am a writer of young adult fiction novels.
    I want to get a writing program for my new Intel based iMac.
    Should I spend $150 for Microsoft Word and get a bunch of other apps I don't use and won't need?
    Or, is there one, online, that is free or inexpensive that will allow me to write my stories and create readable files for other computers as well as PDFs?
    Best,
    Evan Jacobs
    www.anhedeniafilms.com

    Have you visited < www.puremac.com > ????
    They have classified links to finding everything you will need in the way of Macintosh software.
    There are SO VERY many companies that make wonderful desktop publishing programs you have never heard of.
    Or, better still, go to <www.mause.ca > and download some of the 2007 DoubleClick newsletters: look for reviews of DesktopPublisher Pro, Ready,Set,Go!, QuarkXPress 7, Swift Publisher, MLayout, RagTime & RagTime Solo, Mariner Write, and others. For a while they had a few reviews of excellent desktop publishing articles in every issue.
    Check them out !!!!!

  • Does SAP Provide any standard conversion program for Batch Managment activa

    Hi,
    An idea if SAP Provides any standard program to conversion of non batch managed material to batch managed material in a productive SAP Environment and close open documents,
    It would be great help if somebody can reply to these queries.
    Thanks in advance
    Regards
    Bijaya Pradhan

    Hi
    Use the same Driver program RIPROV00 which is used as Script driver program to fire the output from smartforms also
    Only thing is little bit you have to modify the program such that it triggers the smartform instead of Script.
    I think there is no smartform driver program for this IW21.
    see some standard SF driver program like RLE_DELNOTE and
    modify it and use it.
    <b>Reward points for useful Answers</b>
    Regards
    Anji

  • Conversion program for the open sales orders

    Hi ,
         How to proceed for writing a conversion program for open sales order ??
    Please share if 've any document or idea.
    LSMW object: 0090, Method: 0000
    Business Object : BUS2032, Method : CREATEFROMDAT2,
    Message Type: SALESORDER_CREATEFROMDAT2
    Basic Type: SALESORDER_CREATEFROMDAT202
    Regards,
    Jyoti Shankar

    Dear Saso,
    I think, instead using Report: VA05/ VA05N; its better to use Report: VL10C
    In this report, you will get all the Sales Orders along with Materials - relevant for open delivery, along with Open Qty. and various other options can be selected from "Change Layout - (Ctrlt+F8)".
    Best Regards,
    Amit
    Note: Don't maintain any Field-Entry (while executing the Report: VL10N; in order to list all Sales Orders. But, if you want to list Sales Orders based upon some criterias, maintain the Field-entries, as reqd.

  • Purpose of RSTXTRAN program for SAP-Script ?? ??

    Purpose of RSTXTRAN program for SAP-Script ?? ??
    when it is required to run that program ?

    Hi sarit,
    Purpose of RSTXTRAN program for SAP-Script Transfer of SAP script Texts to a Correction.
    The report RSTXTRAN allows a set of SAP script texts (or the text key) to be transferred to a correction or repair of the transport system. The name of the correction/repair can either be transferred as a report parameter, or the correction/repair can be selected later in a selection window. The text key can be qualified generically using the asterisk character (*).
    When the report has been executed, the list of selected texts appears. Individual texts can be deselected in this list. When the function "Continue" is executed, the final list of texts which are to be transferred is displayed. The transfer of texts to the correction/repair can now be activated by the appropriate function, and must be confirmed in a dialog box.The requirements for this as follows.
    There is a correction/repair in which the selected text keys can be entered, if it is not being processed. The report can only insert text keys in corrections or repairs, not however in transport requests. However, the objects contained in a correction can be transferred to a transport request with the correction and transport system transaction.
    It should also be noted that the report selects texts in the current client, but that the transport system generally exports texts from client 000.
    When the report has been executed,the output can be a list of the selected texts. Information about whether transfer to the correction/repair was possible is displayed for each text key.
    Reasons for failed transfer include
    o the correction/repair is currently being processed
    o the correction/repair does not exist
    For Example
    All German standard texts with the ID ST, whose names begin with SAPSCRIPT, are to be entered in the correction B20K009999. The report parameters are then assigned values as follows:
    o Correction: B20K009999
    o Text object: TEXT
    o Text name: SAPSCRIPT*
    Thanks,
    Usha

  • Driver program for the Dunning letter SAP Script

    Hello All,
    Can someone please tell me how to find the "Driver program for the Dunning letter SAP Script". I checked the Transaction OB96 but I dont find any Dunning scripts here i.e., the standard Dunning letter SAP Script F150_DUNN_01.
    Is there any Transaction like NACE of logistics for FI module to find the Driver programs. My requirement is to find the Driver program for the Dunning letter SAP Script and have a new Driver program instead of the standard SAP given driver program. Example is in transaction NACE we can change the driver program for Invoice like from RVADIN01 to ZRVADIN01.
    Thanks and Regards,
    SNK.

    Yes you can, using FIBF, change the FM associated with event 1720 like when SapScript is replaced with SmartForms. Look at [Define Dunning Forms (with SAP Smart Forms)|http://help.sap.com/saphelp_46c/helpdata/es/7d/c7a0a535e1d311ba4d0800060d888b/content.htm] for reference.
    But notice
    - PRINT_DUNNING_NOTICE call many FM of the same FG which share the same global data area.
    - During following upgrades of your system you will have to manage a copy of standard.
    Regards,
    Raymond

  • Sap standard report for customer trial balance based on business area wise

    hi experts,
                    Can any tell me is there any standard report for customer trial balance based on business area.

    hi,
    You can use this report.
    RFSLD00 Trial balance
    For Further Reference use the link.
    http://www.abapcode.info/2007/06/standard-sap-reports.html
    Regards
    Sumit AGarwal

  • The standard SAP data transfer program for vendors

    Hi Experts,
    Could u please tell me that wt is the program which is  <b>"the standard SAP data transfer program for vendors"</b>?
    could you plz tell me what exactly is it?
    and itz tcode..
    is it the "XK01" only or anything other?
    thnx
    Message was edited by: sey ni

    Hi,
    Pl use RFBIKR00 for Vendor Matser upload. Th eProgram documentation is very useful too.
    Regards,
    Suresh Datti

  • How to know print program for SAP Script

    Hi friends,
    how to know print program for SAP Script form name ?

    Hi ,
      You can use the following code changes in the layout & see..
    You have to create a program Z_BC460_EX4_HF for that..
    /:PERFORM GET_NAME IN PROGRAM Z_BC460_EX4_HF
    /:  USING &CUST&
    /:  CHANGING &NAME&
    /:ENDPERFORM.
    Dear &NAME&
    The ABAP routine could be defined as follows:
    IMPORTANT: The structure itcsy must be used for the parameters.
    REPORT Z_HENRIKF_SCRIPT_FORM .
      tables scustom.
      form get_name tables in_tab structure itcsy
                           out_tab structure itcsy.
      read table in_tab index 1.
      select single * from scustom
        where id = in_tab-value.
      if sy-subrc = 0.
        read table out_tab index 1.
        move scustom-name to out_tab-value.
        modify out_tab index sy-tabix.
      else.
        read table out_tab index 1.
        move 'No name' to out_tab-value.
        modify out_tab index sy-tabix.
      endif.
    You could also fill the ouput parameter table this way
       READ TABLE out_par WITH KEY 'NAME1'.
       out_par-value = l_name1.
       MODIFY out_par INDEX sy-tabix.
    endform.

  • Program PPBICO40 for conversion of planned orders to production order

    Hi,
    The program PPBICO40 is for conversion of planned orders to production orders in the background job.But while set up of variant it is asking me for peson who created error folder and recipient.I want to know the significance of these two fields and how these are useful.
    Please throw some light on this.
    Thanks in advance,
    Ravi

    Dear,
    PPBICO40 the non-convertible planned orders are put together in one batch input session and can be postprocessed with batch input tools. It is possible to create a separate error session for each MRP controller.
    Error folder for each MRP controller: creates a separate error folder for each MRP controller.
    Receive folder according to view: If the indicator is set, the error folder is not deleted after processing in batch input.
    Creator of the error folder: User who is entered as creator in the error folder .
    Send mail: Sends a mail to the respective MRP controllers during the creation of a batch input session. If the indicator 'Error folder per MRP controller' is not set, the mail is sent to 'Recipient (alternative)'.
    Express document: sends mail as an express document.
    Recipient (alternative): Recipient of the mail, if no recipient is specified in the material requirements planning master record of the MRP controller responsible .
    Hope clear to you.
    Regards,
    R.Brahmankar

Maybe you are looking for