HOW TO CREATE TEXTELEMENTS AUTOMATICALLY I WROTE PROG BUT GETTING ERROR?

DATA: ITAB TYPE TABLE OF STRING,
      WA_LINE TYPE STRING,
      LENGTH TYPE I,
      STRING1 TYPE STRING,
      T1 TYPE STRING VALUE 'TEXT-',
      RESULT TYPE STRING,
      KEY(3) TYPE N VALUE 001,
      IDX TYPE SY-TABIX,
      IT_STRING TYPE TABLE OF STRING,
      IDX1 TYPE SY-TABIX VALUE 2,
      WA_STRING TYPE STRING,
      LIN TYPE I,
      LIN1 TYPE I,
      FLAG(1) TYPE C.
DATA : TARGET_TEXTPOOL TYPE TABLE OF TEXTPOOL.
DATA : WA TYPE  TEXTPOOL.
*PROG = 'Z_TEXT1'.
PARAMETERS PROG TYPE C LENGTH 30.
READ REPORT PROG INTO ITAB.
LOOP AT ITAB INTO WA_LINE.
  IF WA_LINE IS NOT INITIAL.
    IDX = SY-TABIX.
    IF WA_LINE CS ''''.
      IF  WA_LINE NS 'WHEN' AND WA_LINE NS 'SET' AND WA_LINE NS 'SELECT'
        AND WA_LINE NS 'CHECK' AND WA_LINE NS '*.TXT' AND WA_LINE NS 'CALL'
        AND WA_LINE NS 'MESSAGE' AND WA_LINE NS 'DEFAULT'.
       SPLIT WA_LINE AT '''' INTO TABLE IT_STRING.
       DESCRIBE TABLE IT_STRING LINES LIN.
       LIN1 = LIN / 2.
       DO LIN1 TIMES.
        READ TABLE IT_STRING INTO WA_STRING INDEX IDX1.
        IF WA_STRING IS INITIAL.
          EXIT.
        ENDIF.
          LENGTH = STRLEN( WA_STRING ).
             IF LENGTH > 3.
        WA-ID = 'I'.
        WA-KEY = KEY.
        WA-ENTRY = WA_STRING.
        WA-LENGTH = LENGTH.
        APPEND WA TO TARGET_TEXTPOOL.
      INSERT TEXTPOOL PROG FROM TARGET_TEXTPOOL LANGUAGE SY-LANGU.
      INSERT REPORT PROG FROM itab.
        INSERT WA INTO TABLE
        CONCATENATE T1 KEY INTO RESULT.
        CONCATENATE '''' WA_STRING '''' INTO STRING1.
        REPLACE STRING1 IN WA_LINE WITH RESULT.
        MODIFY ITAB FROM WA_LINE INDEX IDX.
       INSERT TEXTPOOL PROG FROM TARGET_TEXTPOOL LANGUAGE 'E'.
        KEY = KEY + 1.
        IDX1 = IDX1 + 2.
  CLEAR WA_STRING.
  CLEAR STRING1.
  ENDIF.
      ENDDO.
          ENDIF.
        ENDIF.
    CLEAR WA_LINE.
  ENDIF.
  IDX1 = 2.
ENDLOOP.
loop at itab into wa_line.
  write:/ wa_line.
endloop.
   INSERT TEXTPOOL PROG FROM TARGET_TEXTPOOL LANGUAGE SY-LANGU.
       INSERT REPORT PROG FROM itab.
WRITE 'HI'...

hi guru,
i have written code but i am not able to display the TOTAL text at the end please verify the code.
*& Report  ZSALES_DISCOUNT
REPORT  ZSALES_DISCOUNT.
type-pools: slis.
tables: vbak,vbap.
SELECT-OPTIONS: so_vbeln for vbak-vbeln.
types: begin of ty_vbak,
       VBELN type vbak-vbeln,
       ERDAT type vbak-erdat,
       NETWR type vbak-netwr,
       WAERK type vbak-waerk,
       end of ty_vbak,
       begin of ty_vbap,
       vbeln type vbap-vbeln,
       POSNR  type vbap-posnr,
       KWMENG type vbap-KWMENG,
       VRKME TYPE VBAP-VRKME,
       NETWR type vbap-netwr,
       WAERK type  vbap-waerk,
       DISAMT type  vbap-netwr,
       end of ty_vbap.
data: w_vbak  type ty_vbak,
      it_vbak type table of ty_vbak,
      w_vbap  type ty_vbap,
      it_vbap type table of ty_vbap,
      w_fieldcat type slis_fieldcat_alv,
      i_fieldcat type slis_t_fieldcat_alv,
      w_fieldcat1 type slis_fieldcat_alv,
      i_fieldcat1 type slis_t_fieldcat_alv,
      w_slis_selfield type slis_selfield,
      user_command type SLIS_FORMNAME,
      W_IS_LAYOUT TYPE SLIS_LAYOUT_ALV,
      repid type sy-repid,
      V_LINES TYPE I,
      i_event TYPE slis_t_event,
      i_sort TYPE  slis_t_sortinfo_alv,
       wa_sort TYPE slis_sortinfo_alv.
W_FIELDCAT-COL_POS = '1'.
W_FIELDCAT-FIELDNAME = 'VBELN'.
W_FIELDCAT-OUTPUTLEN  = '20'.
W_FIELDCAT-SELTEXT_L  = 'SALES DOCUMENT NUMBER'.
APPEND W_FIELDCAT TO I_FIELDCAT.
CLEAR W_FIELDCAT.
W_FIELDCAT-COL_POS = '2'.
W_FIELDCAT-FIELDNAME = 'ERDAT'.
W_FIELDCAT-OUTPUTLEN  = '20'.
W_FIELDCAT-SELTEXT_L  = 'Date of Order Created'.
APPEND W_FIELDCAT TO I_FIELDCAT.
CLEAR W_FIELDCAT.
W_FIELDCAT-COL_POS = '3'.
W_FIELDCAT-FIELDNAME = 'NETWR'.
W_FIELDCAT-OUTPUTLEN  = '20'.
W_FIELDCAT-SELTEXT_L  = 'net value of sales order'.
APPEND W_FIELDCAT TO I_FIELDCAT.
CLEAR W_FIELDCAT.
w_FIELDCAT-COL_POS = '4'.
W_FIELDCAT-FIELDNAME = 'WAERK'.
W_FIELDCAT-OUTPUTLEN  = '20'.
W_FIELDCAT-SELTEXT_L  = 'net value currency'.
APPEND W_FIELDCAT TO I_FIELDCAT.
W_FIELDCAT1-COL_POS = '1'.
W_FIELDCAT1-FIELDNAME = 'VBELN'.
W_FIELDCAT1-OUTPUTLEN  = '20'.
W_FIELDCAT1-SELTEXT_L  = 'SALESORDER_NO'.
APPEND W_FIELDCAT1 TO I_FIELDCAT1.
CLEAR W_FIELDCAT1.
W_FIELDCAT1-COL_POS = '2'.
W_FIELDCAT1-FIELDNAME = 'POSNR'.
W_FIELDCAT1-OUTPUTLEN  = '20'.
W_FIELDCAT1-SELTEXT_L  = 'ITEMS'.
APPEND W_FIELDCAT1 TO I_FIELDCAT1.
CLEAR W_FIELDCAT1.
W_FIELDCAT1-COL_POS = '3'.
W_FIELDCAT1-FIELDNAME = 'KWMENG'.
W_FIELDCAT1-OUTPUTLEN  = '20'.
W_FIELDCAT1-SELTEXT_L  = 'NET_QUANTITY'.
W_FIELDCAT1-qfieldname =  'VRKME' .
W_FIELDCAT1-qtabname = 'VBAP' .
W_fieldcat1-datatype = 'QUAN'.
W_fieldcat1-do_sum = 'X'.
APPEND W_FIELDCAT1 TO I_FIELDCAT1.
CLEAR W_FIELDCAT1.
W_FIELDCAT1-COL_POS = '4'.
W_FIELDCAT1-FIELDNAME = 'VRKME'.
W_FIELDCAT1-OUTPUTLEN  = '20'.
W_FIELDCAT1-SELTEXT_L  = 'NET_QUANTITY'.
W_fieldcat1-datatype = 'UNIT'.
APPEND W_FIELDCAT1 TO I_FIELDCAT1.
CLEAR W_FIELDCAT1.
W_FIELDCAT1-COL_POS = '5'.
W_FIELDCAT1-FIELDNAME = 'NETWR'.
W_FIELDCAT1-OUTPUTLEN  = '20'.
W_FIELDCAT1-SELTEXT_L  = 'NET_AMT'.
W_FIELDCAT1-cfieldname = 'WAERK'.
W_FIELDCAT1-ctabname = 'VBAP'.
W_fieldcat1-datatype = 'CURR'.
W_fieldcat1-do_sum = 'X'.
APPEND W_FIELDCAT1 TO I_FIELDCAT1.
CLEAR W_FIELDCAT1.
W_FIELDCAT1-COL_POS = '6'.
W_FIELDCAT1-FIELDNAME = 'WAERK'.
W_FIELDCAT1-OUTPUTLEN  = '20'.
W_FIELDCAT1-SELTEXT_L  = 'CURRENCY'.
APPEND W_FIELDCAT1 TO I_FIELDCAT1.
CLEAR W_FIELDCAT1.
W_FIELDCAT1-COL_POS = '7'.
W_FIELDCAT1-tabname = 'IT_VBAP'.
W_FIELDCAT1-FIELDNAME = 'DISAMT'.
W_fieldcat1-do_sum = 'X'.
W_FIELDCAT1-OUTPUTLEN  = '20'.
W_FIELDCAT1-SELTEXT_L  = '30% DISCOUNT_AMT'.
W_FIELDCAT1-cfieldname = 'WAERK'.
W_FIELDCAT1-ctabname = 'VBAP'.
W_fieldcat1-datatype = 'CURR'.
APPEND W_FIELDCAT1 TO I_FIELDCAT1.
W_IS_LAYOUT-ZEBRA = 'X'.
W_IS_LAYOUT-NO_VLINE = 'X'.
W_IS_layout-no_input = 'X'.
W_IS_layout-colwidth_optimize = 'X'.
W_IS_layout-totals_text = 'Totals'(201).
START-OF-SELECTION.
  PERFORM SORT.
  PERFORM build_events.
SELECT VBELN ERDAT NETWR WAERK from VBAK into table It_vbak where vbeln in so_vbeln.
repid = SY-REPID.
CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
  EXPORTING
    I_CALLBACK_PROGRAM      = repid
    I_CALLBACK_USER_COMMAND = 'INTERACTIVE'
    IS_LAYOUT               = w_is_layout
    IT_FIELDCAT             = i_fieldcat
  TABLES
    T_OUTTAB                = it_vbak
  EXCEPTIONS
    PROGRAM_ERROR           = 1
    OTHERS                  = 2.
*&      Form  INTERACTIVE
      text
     -->R_UCOMM      text
     -->RS_SELFIELD  text
FORM INTERACTIVE USING R_UCOMM LIKE SY-UCOMM
RS_SELFIELD TYPE SLIS_SELFIELD.
  IF RS_SELFIELD-FIELDNAME = 'VBELN'.
    DATA: TEMP_VBELN TYPE VBAK-VBELN,
          total TYPE STRING,
          subtot_text TYPE slis_subtot_text.
    CASE R_UCOMM.
      WHEN '&IC1'.
        CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
          EXPORTING
            INPUT  = RS_SELFIELD-VALUE
          IMPORTING
            OUTPUT = TEMP_VBELN.
        TEMP_VBELN = RS_SELFIELD-VALUE.
        SELECT VBELN POSNR KWMENG VRKME NETWR WAERK INTO CORRESPONDING FIELDS OF TABLE IT_VBAP
        FROM VBAP WHERE VBELN = TEMP_VBELN.
        IF sy-subrc = 0.
          SORT IT_VBAP BY VBELN POSNR KWMENG .
        ENDIF.
        LOOP AT IT_VBAP INTO W_VBAP .
          W_VBAP-DISAMT = ( ( W_VBAP-NETWR  / 100 ) * 30 ).
          W_VBAP-DISAMT = W_VBAP-NETWR - W_VBAP-DISAMT.
          MODIFY TABLE IT_VBAP FROM W_VBAP.
        ENDLOOP.
       PERFORM SORT.
       PERFORM EVENT.
       PERFORM SUBTOTAL_TEXT CHANGING subtot_text.
        CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
          EXPORTING
            I_CALLBACK_PROGRAM = REPID
            IS_LAYOUT          = w_is_layout
            IT_FIELDCAT        = I_FIELDCAT1
            it_events          = i_event
            i_default          = 'X'
          TABLES
            T_OUTTAB           = IT_VBAP
          EXCEPTIONS
            PROGRAM_ERROR      = 1
            OTHERS             = 2.
    ENDCASE.
  ENDIF.
ENDFORM.                    "INTERACTIVE
*&      Form  sub_populate_sort
      text
FORM SORT .
  wa_sort-spos = '01' .
  wa_sort-fieldname = 'VBELN'.
  wa_sort-tabname = 'IT_VBAP'.
  wa_sort-up = 'X'.
  wa_sort-subtot = 'X'.
  APPEND wa_sort TO i_sort .
  CLEAR wa_sort.
ENDFORM.                    "sub_populate_sort
*&      Form  sub_get_event
      text
FORM build_events.
  CONSTANTS : c_formname_subtotal_text TYPE slis_formname VALUE
'SUBTOTAL_TEXT'.
  DATA: l_s_event TYPE slis_alv_event.
  CALL FUNCTION 'REUSE_ALV_EVENTS_GET'
    EXPORTING
      i_list_type     = 0
    IMPORTING
      et_events       = i_event
    EXCEPTIONS
      list_type_wrong = 1
      OTHERS          = 2.
Subtotal
  READ TABLE i_event  INTO l_s_event
                    WITH KEY name = slis_ev_subtotal_text.
  IF sy-subrc = 0.
    MOVE c_formname_subtotal_text TO l_s_event-form.
    append l_s_event to i_event.
   MODIFY i_event FROM l_s_event INDEX sy-tabix.
  ENDIF.
ENDFORM.                    " sub_get_event
*&      Form  SUBTOTAL_TEXT
      text
     -->P_TOTAL        text
     -->P_SUBTOT_TEXT  text
FORM c_formname_subtotal_text CHANGING P_TOTAL TYPE ANY
                      p_subtot_text TYPE slis_subtot_text.
  IF p_subtot_text-criteria = 'VEBLN'.
    p_subtot_text-display_text_for_subtotal
    = 'TOTAL'(001).
  ENDIF.
ENDFORM.                    "subtotal_text

Similar Messages

  • Creating custom activity( DSC service)..but  getting errors while starting  service in workbench

    Hi ,
    I have some hands on   developing the  process. So I started creating one custom activity.
    I created one activity  which takes  inputs and gives a string after some  calculation. But program requires some additional jar  files which are  included as  lib folder in  my  java  project.
    I exported java project as jar  file and installed successfully in  the workbench. But while starting the component .. getting error like  ::
    Caused by: java.lang.ClassNotFoundException: No ClassLoaders found for: net.fortuna.ical4j.model.Date
    at org.jboss.mx.loading.LoadMgr3.beginLoadTask(LoadMgr3.java:212)
    at org.jboss.mx.loading.RepositoryClassLoader.loadClassImpl(RepositoryClassLoader.java:514)
    at org.jboss.mx.loading.RepositoryClassLoader.loadClass(RepositoryClassLoader.java:408)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at org.ungoverned.moduleloader.ModuleClassLoader.findClass(ModuleClassLoader.java:291)
    at org.ungoverned.moduleloader.ModuleClassLoader.loadClass(ModuleClassLoader.java:164)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClassInternal(Unknown Source)
    ... 117 more
    Please find full description of  the error in the attachment. Hope LC  is   not taking  added jars in the  lib.
    Because of this error i am not able to go forward.
    Do I need to add/include the  necessary   jars into LC ? .
    Please guide me  how to resolve this error.
    Waiting  for your answer.
    Thanks
    Praveen

    Putting the jar in the appserver's lib folder is one way to have the class found at runtime, but not all sites will allow you to do this because you just made it available to everything running on the appserver.  Plus, now as you move your dsc around from test to staging to production, you have to remember to move the jar as well.
    The alternative is to include the jar in your DSC and reference it in the classpath node in the component.xml file.
    Just checkout how the distributed DSCs do it (adobe-remoteevents-dsc shows 2 jars in the root of the package and both are referenced in the component.xml's classpath.
    Jon

  • Trying to create a VM using reserved IP but getting error "Must specify MediaLocation or set a current storage account using Set-AzureSubscription"

    I have created a reserved Ip and wanted to create a VM using the reserved IP. I had also created  aimage of existing Vm to create the new VM and I have used command on Windows Powershell as mentioned below.
    New-AzureVMConfig
    -Name
    "Amazon-10eBay-1" -InstanceSize
    “Small” -ImageName
    “Amazon-10-Image” | Add-AzureProvisioningConfig
    -Windows -AdminUsername
    “Akash” -Password “Stoneindia11” |
    New-AzureVM
    -ServiceName
    "Amazon-10eBay-1" -ReservedIPName
    "ResIPamazon10eBay1" -Location
    "West US"
    But its showing error "Must specify MediaLocation or set a current storage account using Set-AzureSubscription".
    I have been trying to create this Vm from many days but not able to create one. Please help

    Hello,
    Microsoft Azure forums are over here:
    https://social.msdn.microsoft.com/forums/azure/en-US/home
    Karl
    When you see answers and helpful posts, please click Vote As Helpful, Propose As Answer, and/or Mark As Answer.
    My Blog: Unlock PowerShell
    My Book:
    Windows PowerShell 2.0 Bible
    My E-mail: -join ('6F6C646B61726C406F75746C6F6F6B2E636F6D'-split'(?<=\G.{2})'|%{if($_){[char][int]"0x$_"}})

  • Can someone tell me how to create accounting entries with the account status as error

    Hi,
    Can someone tell me how to create accounting entries with the
    account status as error?
    Thanks!!
    Danny

    It's call fixed/static background, and it is NOT directly support by iweb, you will need post processing either in html or javascript.
    Varkgirl (you need to search the previous forum) and I did it since iweb1:
    try Safari, and scroll: http://www.geocities.com/[email protected]/Links.html
    invisible link? roddy, fishing for info again?

  • I am using report generation toolkit 1.1 with Labview 7.0 and Office 2003 profession​al. The create new report VI opens Excel but throws error (-21471672​62- from automation open VI) when I try to open MS word. please help...

    I am using report generation toolkit 1.1 with Labview 7.0 and Office 2003 professional. The create new report VI opens Excel but throws error (-2147167262- from automation open VI) when I try to open MS word. please help...

    Hi Leo22,
    Does this error occur if you use any of the example programs that come shipped with LabVIEW? I would try opening one of the examples that write data to Word and see if those give you an error. Also, have you tried just putting down a New Report.VI and change the report type to Word? If this simple vi (that's all you need to open Word) breaks, I would check to see if there are any instances of Word still open. Check the task manager to see if any word processes are still open. There should not be a problem accessing Word 2003 from LabVIEW 7.0. If neither of these solutions work, please give some more detail about your application and we can research further. Thanks!
    Jeremy L.
    National Instruments
    Jeremy L.
    National Instruments

  • Bought new Mac Retina; how do I get CS 5 on it; bought external hard drive but get error msg 15?

    Bought new Mac Retina; how do I get CS 5 on it; bought external hard drive but get error msg 15?

    Hi there,
    I was able to format the Toshiba hard drive on my old Mac and copy the Adobe Suite onto it. I followed instructions to format the hard drive to the Retina Mac through Disk Utility, but I still can see the external drive on the new Mac.
    Any suggestions…?
    Susan Babin

  • I'm trying to sync my Iphone to get some new music but getting error message 'itunes was unable to load data class info'.  How do I fix it (my husband's 2 devices work fine on the PC)

    I'm trying to sync my Iphone to get some new music but getting error message 'itunes was unable to load data class info'.  How do I fix it (my husband's 2 devices work fine on the PC).  It's driving me mental and has stopped me putting anything new on for months.  Help!!!

    http://support.apple.com/kb/TS2690

  • How to create an automatically increment column in Oracle DB Table?

    Hi To All
    Here I am trying to create a table in Oracle that creates an automatically increment column in Oracle DB Table. i searched almost all Forums.(Even in Oracle). They are saying that, that logic u must implement in Java Code.(*Takes Maximum no from table, add +1 to it, and store it back again)*. apart from this, while creating an table in Oracle, is there any facility like MySQL Database? please help me. Thanks in advance.

    Hi BalusC
    Thanks for Your Response and clue. with that, i succeeded in my application. Thank you very much. here i am giving you the details which i did.
    1. I Created a table named orders in Oracle like this.
       CREATE TABLE ORDERS (ORDER_ID NUMBER, CUSTOMER_ID NUMBER, ISBN NUMBER,
                                   DESCRIPTION NCHAR(5));
                       2. I created one sequence in Oracle like    CREATE SEQUENCE SEQ01 INCREMENT BY 1 START WITH 1000     3. Then i have written jdbc program like this
    import java.sql.Connection;
    import java.sql.DriverManager;
    import java.sql.PreparedStatement;
    import java.sql.ResultSet;
    public class SequenceTest {
         public static void main(String[] args)throws Exception{
              try {
              Class.forName("oracle.jdbc.driver.OracleDriver");
              Connection con=DriverManager.getConnection("jdbc:oracle:thin:@192.168.1.135:1521:orcl","scott","tiger");
              String cols[] = {"ORDER_ID", "DESCRIPTION"};
              PreparedStatement pstmt = con.prepareStatement("INSERT INTO ORDERS (ORDER_ID, CUSTOMER_ID, ISBN,DESCRIPTION) VALUES            (SEQ01.NEXTVAL, 104, 966431505,?)", cols);
              pstmt.setString(1,"Desc3");          
              pstmt.executeUpdate();
              ResultSet rs=pstmt.getGeneratedKeys();     
                    System.out.println("---- One Row Inserted ----");
              } catch (Exception e) {
                   System.out.println("---- Failed Due To "+e);               
       4. When i ran above program 5 times, i got the following Data into my Oracle Table (select * from orders)
      ORDER_ID CUSTOMER_ID       ISBN DESCR
          1000         101  966431502 Desc0
          1001         102  966431503 Desc1
          1002         103  966431504 Desc2
          1003         104  966431505 Desc3
          1004         104  966431505 Desc3
          1005         105  966431506 Desc4
    6 rows selected.
      But i dont know how to do this type of program with out using prepared statements. i tried, and i got exception *"Missing Expression"* .
    Once again Thank You very much for your clue.

  • How to create an automatic decrypt file

    Hi,
    I try to create an automatic decrypt file, that 's mean :
    I want to send to a user a jar that wrappe the application (which decrypt) and the file parameter.
    The user must need only to enter a password to launch the application for decrypting the file.
    Is it possible with java.
    Many thanks for your help.
    Lokmane.

    Make a text file containing the line:
    Main-Class: myMain
    Where you replace myMain with the name of your program. (Full package name if you need it. ie mypackage.myMain)
    then execute the command
    jar -cfm prog.jar textfile *.class
    or
    jar -cfm prog.jar textfile package/
    if your program is packaged. You must be above the package directory to do the second one.

  • How to  create PR automatically by sales order?

    Dear experts,
    I want to create PR automatically with sales order, and then create delivery from this sales order, and goods issue. I know third party order, however it can't create delivery.
    thanks
    Lance

    Hi,
    Go to VOV7 T code,
    You will find one check box Create PO automatic. Check that.
    It will create automatically PO.
    Hope this will help.
    Reward Point if helpful.
    Thanks,
    Raja

  • I have cc2014 and I want to bridge to DAZ Studio .duf file.  In PS I choose File Automate DAZ Studio 3d bridge - get error message "could not complete DAZ Studio 3D Bridge command because of program error".  What's going on.

    I get error message when trying to open DAZ Studio 3D bridge in PS 2014 from the File and Automate Menu.
    Error reads "could not complete DAZ Studio 3D Bridge command because of program error?"
    According to User Documentation  I should get a dialog box which allows me to click on "Launch DAZ Studio"
    Why is there a problem?

    You have something messed in with your Photoshop or OS install.  You need to troubleshoot that first.
    BOILERPLATE TEXT:
    If you give complete and detailed information about your setup and the issue at hand, such as your platform (Mac or Win), exact versions of your OS, of Photoshop and of Bridge, machine specs, such as total installed RAM, scratch file HDs, video card specs, what troubleshooting steps you have taken so far, what error message(s) you receive, if having issues opening raw files also the exact camera make and model that generated them, etc., someone may be able to help you.
    A screen shot could be very helpful too.
    Please read this FAQ for advice on how to ask your questions correctly for quicker and better answers:
    http://forums.adobe.com/thread/419981?tstart=0
    Thanks!

  • While creating Bulk Schedule/Shipment @O4F1, I am getting error massage like...

    Hi IS OIL expertise,
    While creating Bulk Schedule/Shipment @O4F1 on Document tab after mentioning delivery document number  I am getting error massage like below mentioned; 
    Missing entry: Table toigs1, Argument AP01, TU,
    (Message no. O9690)
    Could anyone please suggest on this.
    Thanks
    Chandra

    Hi,
    Are you doing an Inter Company Sales scenario. Please check SAP notes-1757301 & 98359. ALthough the note refers to Load confirmation & Delivery Confirmation, but the issue is similar. You may contact SAP thru OSS for your issue.

  • How to create an automatic email when a new announcement is created

    Hi,
    In Sharepoint 2013, how can I configure it to automatically send an email to all users when a new announcement is created?
    Regards,
    Stephen.

    You have 2 options
    #1 You can set Alerts at the announcement list level as shown below. In the send alerts to users you can add your user emails or distribution list email and choose email as delivery method. You can choose to
    send Announcements on various actions that are there on the form. This is simple way. This send email the out of the box style. You cannot change that.
    #2 The other option is to use SharePoint Designer and set a workflow on changes and send mail. You can customize the look and feel of it there.
    Srini Sistla Twitter: @srinisistla Blog: http://blog.srinisistla.com

  • How to Create Task Automatically based on Sales Stage?

    If an Opportunity's Sales Stage is changed from 'X' to "Y',then I want to create the Task for an Agent automatically by the System.How can we achive it?Could you please elaborate steps that we need to this (If customisation,how ca we do it?)
    Thanks in Advance
    Raju.

    First U have to crate Extended View Object to your actual View obj.
    Now take Page with Panel  Splitter ,on First facet drag View obj as table and on second Facet Drag Extended View Obj as table.On page loading U have delete all rows from Extended View object.And then u have write bean code on button click to get current select rows from above view objct,and for Filter rows from Second View obj according to selection of rows from first view obj...

  • Oracle 11g R1: How to create indexes automatically in tablespaces?

    Hello,
    Obviously, due to maintenance and performance reasons it is better to put indexes in own tablespaces, separated from the data.
    I would like to know now whether there is a way under Oracle 11g R1 to create every index automatically in a tablespace?..or the indexes can only be created manually?
    Unfortunately i wasn't able to find any hint in the documentation or by googlin' it.
    Thanks in advance.
    Regards,
    Lars

    Hi Lars
    I wouldn't be quite so sure having a separate tablespace just for indexes is better for either performance or maintenance reasons if I were you ...
    For your enjoyment, some reasons why this simply is not true:
    http://richardfoote.wordpress.com/2008/04/16/separate-indexes-from-tables-some-thoughts-part-i-everything-in-its-right-place/
    http://richardfoote.wordpress.com/2008/04/18/separate-indexes-from-tables-some-thoughts-part-ii-there-there/
    http://richardfoote.wordpress.com/2008/04/28/indexes-in-their-own-tablespace-availabilty-advantages-is-there-anybody-out-there/
    http://richardfoote.wordpress.com/2008/05/02/indexes-in-their-own-tablespace-recoverability-advantages-get-back/
    Cheers
    Richard Foote
    http://richardfoote.wordpress.com/

Maybe you are looking for

  • How to specify the file path while doing bdc recording

    hi guys, using recording we specify transaction code where we enter all the details for the screen after that we get the recording program .....i have a doubt where can we specify the path for uploading a program from a local pc.......if possible can

  • Workbook refresh displays key instead of text

    Hi, We are on NW2004S rampup. Our support pack level for Quality environment is 7. When we execute the workbook in management cockpit in transaction UMM_PRES, the calendar month is displayed as text. When we refresh workbooks, the calendar month chan

  • Not able to start database Oracle 11g on Linux Server

    Hi I am using Oracle 11g database. I have successfully installed it on my linux server (Oracle Linux 4). When i am trying to access database through url "https://localhost.localdomain:1158/em". Browser is throwing some error that SSL port is not enab

  • Inter Company Purchase Orders for Asset Acquistion

    Hi Everyone, I need your expert help on the following business situation. My client has 2 company codes. Now the fixed assets have to be transferred from one company code to another by means of purchase orders being created by acquiring company. Can

  • Applications constantly quitting unexpectedly and not responding

    Lately, my computer has been having quite a bunch of issues. One of the major ones is applications constantly crashing and quitting unexpectedly. For example, when I want to go edit a video with iMovie, I have to literally reopen it 5 times just so t