Help urgent

HI ALL,
I WANT TO KNOW THE INPUT FILE STRUCTURE FOR THE BELOW PROGRAM.
ITS TRUELY URGENT.
*--Constant
CONSTANTS : c_maint(1)  value 'M'.
*data from the Excel is picked up into this internal table
DATA : BEGIN OF ITAB OCCURS 0,
     FIELD1(200),
     FIELD2(20),
     FIELD3(20),
     FIELD4(30),
     FIELD5(50),
     FIELD6(50),
     FIELD7(50),
     FIELD8(50),
     FIELD9(50),
     FIELD10(50),
     END OF ITAB.
Data:
       MESSTAB LIKE BDCMSGCOLL OCCURS 0 WITH HEADER LINE,
       E_GROUP_OPENED,
       P_BDCNM LIKE APQI-GROUPID VALUE 'TRA_ORD_ERRORS'.
*--Header information for sales order is stored in this table
DATA : BEGIN OF IVBAK,
     auart      like vbak-auart,       "Order type
     VBELN      LIKE VBAK-VBELN,       "Sales Order number
     VKORG      LIKE VBAK-VKORG,       "Sales Organisation
     VTWEG      LIKE VBAK-VTWEG,       "Distribution channel 10
     SPART      LIKE VBAK-SPART,       "Division 10
     SOLD_TO    LIKE KNA1-KUNNR,       "Sold to party
     SHIP_CONT  LIKE KNA1-NAME2,       "SHIP to contact
     SHIP_TO    LIKE KNA1-KUNNR,       "Ship to party
     INSTALL_TO LIKE KNA1-KUNNR,       "Install to party
     BILL_TO    LIKE KNA1-KUNNR,       "Bill to Party
     BILL_CONT  LIKE KNA1-NAME2,       "Bill to contact
     payer      like KNA1-kunnr,       "Payer
     SUBMI      LIKE VBAK-SUBMI,       "Collective number for RFQs
     ZTERM      LIKE VBKD-ZTERM,       "Payment terms
     BSTNK      LIKE VBAK-BSTNK,       "Purchase order number
     AUDAT(10),                        "Booking date
     bstdk(10),                        "PO Date
     SA         LIKE KNA1-KUNNR,       "Sales rep
     CE         LIKE KNA1-KUNNR,
     SR         LIKE KNA1-KUNNR,
     waerk      like VBAK-WAERK,
     belnr      like bkpf-belnr,       "FI Document
     desc(1),
   END OF IVBAK.
*---Item level data is stored in this table
DATA : BEGIN OF IVBAP OCCURS 0,
   POSNR   LIKE VBAP-POSNR,            "Item number in spread sheet
   MATNR   LIKE VBAP-MATNR,            "Material number
   ZMENG(14)   TYPE C ,                "Quantity
   VENDAT  LIKE VEDA-VENDDAT,          "Cycle end date
   MWERT1  LIKE RCTMS-MWERT,           "Relase number
   KBETR(15) TYPE C,                   "AMount
   WBS(24)  TYPE C,                    "WBS element
   text(1) type c,
  END OF IVBAP.
*--Use for call function to display message
DATA  BEGIN OF MSG OCCURS 0.
         INCLUDE STRUCTURE FIMSG.
DATA  END   OF MSG.
*--bdc table
DATA : BEGIN OF BDC_TAB OCCURS 0.
         INCLUDE STRUCTURE BDCDATA .
DATA : END OF BDC_TAB.
*--Capture the errors in the transaction
DATA : BEGIN OF ERR_MSG  OCCURS 100 .
         INCLUDE STRUCTURE BDCMSGCOLL .
DATA : END OF ERR_MSG.
DATA: BEGIN OF SUBSTRINGS OCCURS 10,
   LINE(72) TYPE C,
END OF SUBSTRINGS.
Table for splitting incoming line texts into multiple 72 char length
strings to be inserted in line long text field.
DATA: BEGIN OF line_texts OCCURS 10,
   line_no type i,
   seq_no type i,
   text(72) TYPE C,
END OF line_texts.
*--Function key Exclude table
DATA : BEGIN OF PFKEY OCCURS 2,
    FCODE(4),
   END OF PFKEY.
*--BDC loop  field declaration
DATA : MATERIAL(13)    VALUE 'VBAP-MATNR( )',
        QUANTITY(15)    VALUE 'RV45A-KWMENG( )',
        Item_cat(13)     VALUE 'VBAP-PSTYV( )',
        SELECTION(29)   VALUE 'RV45A-VBAP_SELKZ( )',
        BILL_DATE(13)   VALUE  'FPLT-AFDAT( )',
        BILL_QTY(13)    VALUE  'FPLT-FAKWR( )',
        COUNTE(1) TYPE N,
        INDEX(1)  TYPE N.
data tab_idx type i.
*--Flag and temerary variables
data: ERRORS,                         "Error message
       V_VBELN LIKE VBAK-VBELN.        "Document number hold
data: line_no type i.
data: seq_no  type i.
data: txt_fld(2040) type c.
*--File name
SELECTION-SCREEN BEGIN OF BLOCK BK1 WITH FRAME TITLE TEXT-001.
Sales Org
parameters: p_vkorg like vbak-vkorg obligatory.
*--File name
PARAMETERS : P_FILENM LIKE IBIPPARMS-PATH
               DEFAULT 'C:\MY document\FAM2.TXT' obligatory.
SELECTION-SCREEN END OF BLOCK BK1.
*--File name display
AT SELECTION-SCREEN ON VALUE-REQUEST FOR P_FILENM.
   CALL FUNCTION 'F4_FILENAME'
        IMPORTING
             FILE_NAME = P_FILENM
        EXCEPTIONS
             OTHERS    = 1.
*--User command
AT USER-COMMAND.
*--Display the documents when there is no error in updating sales order
*--Variable is set after the call transaction
   IF ERRORS = ' '.
*--Variable V_vbeln is set after the sales order updated from the error
*--Message table depending on the error message number
     SET PARAMETER ID 'AUN' FIELD V_VBELN.
     CASE SY-UCOMM.
       WHEN 'DISP'.
*--Display sales order
         PERFORM DISPLAY_SALES_ORDER.
       WHEN 'CHAN'.
*--Change the sales order
         PERFORM CHANGE_SALES_ORDER.
     ENDCASE.
   ENDIF.
START-OF-SELECTION.
*--Initialis the messages
   CALL FUNCTION 'FI_MESSAGE_INIT'.
*--Perform the Excel file
   PERFORM UPLOAD_EXCEL_FILE.
   IF ERRORS = 'X'.
      message e000 with 'Error while uploading the input file'.
   ENDIF.
*--Update the header data from  first 3 rows
   PERFORM UPDATE_HEADER.
*--update  the item data and billing plan.
   PERFORM UPDATE_ITEMS.
*----Update bdc table
   PERFORM UPDATE_BDC.
*--Call transaction
   PERFORM CALL_VA01.
*&      Form  UPLOAD_EXCEL_FILE
Upload the data from excel file
FORM UPLOAD_EXCEL_FILE.
   data : v_filenm like RLGRAP-FILENAMe.
   clear v_filenm.
   move p_filenm to v_filenm.
*--uploade the excel file.
   CALL FUNCTION 'WS_UPLOAD'
        EXPORTING
             FILENAME            = v_FILENM
             FILETYPE            = 'DAT'
        TABLES
             DATA_TAB            = ITAB
        EXCEPTIONS
             CONVERSION_ERROR    = 1
             FILE_OPEN_ERROR     = 2
             FILE_READ_ERROR     = 3
             INVALID_TABLE_WIDTH = 4
             INVALID_TYPE        = 5
             NO_BATCH            = 6
             UNKNOWN_ERROR       = 7
             OTHERS              = 8.
   IF SY-SUBRC NE 0.
*--Fill messages
     PERFORM FILL_MSG USING 'ZZ' 'E' '920' P_FILENM SPACE SPACE SPACE.
*--Collect it
     PERFORM COLLECT_MSG.
     ERRORS = 'X'.
   ENDIF.
   read table itab index 1.
   if sy-subrc <> 0 or ( itab-field1 = space and itab-field2 = space and
                         itab-field3 = space and itab-field4 = space ).
     ERRORS = 'X'.
   endif.
ENDFORM.                              " UPLOAD_EXCEL_FILE
      FORM FILL_MSG                                                 *
This subroutine fills data into internal structure, MSG, which      *
stores relevant error message information.                          *
-->  MSGNO - Message no.                                           *
-->  MSGV1 - Message variable 1                                    *
-->  MSGV2 - Message variable 2                                    *
-->  MSGV3 - Message variable 3                                    *
-->  MSGV4 - Message variable 4                                    *
FORM FILL_MSG USING MSGID MSGTY MSGNO MSGV1 MSGV2 MSGV3 MSGV4.
   MSG-MSORT = '1'.
   MSG-MSGID = MSGID.
   MSG-MSGTY = MSGTY.
   MSG-MSGNO = MSGNO.
   MSG-MSGV1 = MSGV1.
   MSG-MSGV2 = MSGV2.
   MSG-MSGV3 = MSGV3.
   MSG-MSGV4 = MSGV4.
ENDFORM.
      FORM COLLECT_MSG                                              *
This subroutine logs all errors occur during the execution of       *
BDC                                                                 *
FORM COLLECT_MSG.
   CALL FUNCTION 'FI_MESSAGE_COLLECT'
        EXPORTING
             I_FIMSG       = MSG
        EXCEPTIONS
             MSGID_MISSING = 1
             MSGNO_MISSING = 2
             MSGTY_MISSING = 3
             OTHERS        = 4.
ENDFORM.
*&      Form  UPDATE_HEADER
Update the data at the header level of the sales order
FORM UPDATE_HEADER.
*--third line will be the header information
   READ TABLE ITAB INDEX 3.
   ivbak-auart    = 'OR'.
   IVBAK-VKORG    = p_vkorg.
   IVBAK-VTWEG    = '10'.
   IVBAK-SPART    = '10'.
   IVBAK-SOLD_TO  = ITAB-FIELD4.
   IVBAK-INSTALL_TO = ITAB-FIELD4.
   read table itab index 5.            "Booking date
   ivbak-audat   = itab-field10.
   IF IVBAK-AUDAT = SPACE.             "System date if book date = ' '.
     write sy-datum to IVBAK-AUDAT.
   ENDIF.
   read table itab index 7.            "PO Number
   write itab-field6 to ivbak-bstnk right-justified.
   IVBAK-BSTDK    = ITAB-FIELD10.
   read table itab index 11.                                "RFQ
   IVBAK-SUBMI    = ITAB-FIELD6.
   read table itab index 9.            "Bill to and Sales Rep
   IVBAK-BILL_TO  = ITAB-FIELD4.
   IVBAK-Payer    = IVBAK-BILL_TO.
   IVBAK-SA       = ITAB-FIELD6.
   IVBAK-CE       = ITAB-FIELD6.
   IVBAK-SR       = ITAB-FIELD6.
   read table itab index 15.           "Bill to contact
   concatenate itab-field3 itab-field4 into ivbak-bill_cont separated by
                                            space.
   read table itab index 16.           "Ship to
   IVBAK-SHIP_TO    = ITAB-FIELD4.
   read table itab index 21.           "Payment terms
   ivbak-zterm = itab-field10.
   read table itab index 23.
   concatenate itab-field3 itab-field4 into ivbak-ship_cont
             separated by space.      "Ship to contact
   iVBAK-WAERK    = itab-field10.
*--Get header text
   tab_idx = 26.
   READ TABLE ITAB index tab_idx.
   line_no = 0.
   seq_no = 0.
   while itab-field1 ns 'Training Line Item Information'.
     concatenate itab-field1 itab-field2 itab-field3
                 itab-field4 itab-field5 itab-field6 itab-field7
                 itab-field8 itab-field9 itab-field10
            into txt_fld SEPARATED by space.
     if txt_fld <> space.
       ivbak-desc = 'Y'.
       perform parse_text_n using txt_fld.
       loop at substrings.
         seq_no = seq_no + 1.
         line_texts-line_no = line_no.
         line_texts-seq_no = seq_no.
         line_texts-text = substrings-line.
         append line_texts.
       endloop.
       refresh substrings.
       clear txt_fld.
     endif.
     tab_idx = tab_idx + 1.
     read table itab index tab_idx.
   endwhile.
ENDFORM.                              " UPDATE_HEADER
*&      Form  UPDATE_ITEMS
Update the item data into IVBAP and Billing plan bill_plan table
FORM UPDATE_ITEMS.
*--The item data start from line 5
   Do.
     tab_idx = tab_idx + 1.
     read table itab index tab_idx.
Item line column headings
     if ( itab-field1 = space and itab-field2 CS 'Course No.' and
      itab-field3 = 'Business Unit' and itab-field4 = 'WBS Element' ) or
        ( itab-field1 = space and itab-field2 = space and
          itab-field3 = space and itab-field4 = space ).
       continue.
     elseif itab-field1 co '0123456789 ' and itab-field2 <> space and
            itab-field4 <> space and itab-field10 co '0123456789.," '.
       perform fill_item_data.
     elseif itab-field7 <> 'Currency'.
       exit.                           "End of line items.
     ENDIF.
   ENDDO.
*--Rearrange the internal  tables
   DELETE IVBAP WHERE (  MATNR = '0' or matnr = ' ' ).
   SORT IVBAP BY POSNR.
ENDFORM.                              " UPDATE_ITEMS
*&      Form  UPDATE_BDC
Update the BDC table
FORM UPDATE_BDC.
*--Update header information
   PERFORM UPDATE_HEADER_INFO.
*--Update item information
   PERFORM UPDATE_ITEM_INFO.
*--Save document
   PERFORM SAVE_SALES_ORDER.
ENDFORM.                              " UPDATE_BDC
PERFORM DYNPRO USING :
       'X'   'SAPMV45A'         '0101',       "Initial screen
       ' '   'VBAK-AUART'       ivbak-auart,  "Order type ZVC
       ' '   'VBAK-VKORG'       IVBAK-VKORG,  "Sales organisation
       ' '   'VBAK-VTWEG'       IVBAK-VTWEG,  "Distribution channel
       ' '   'VBAK-SPART'       IVBAK-SPART,  "Division
       ' '   'BDC_OKCODE'       '=ENT2'.
     PERFORM DYNPRO USING:
        'X'   'SAPMV45A'         '4001',        "Overview screen
        ' '   'KUAGV-KUNNR'      IVBAK-SOLD_TO, "Sold to
        ' '   'VBKD-BSTKD'       IVBAK-BSTNK,   "Purchase order number
        ' '   'VBKD-BSTDK'       IVBAK-BSTDK,   "PO DATE
        ' '   'VBKD-ZTERM'       IVBAK-ZTERM,   "Payment terms
        ' '   'BDC_OKCODE'       'KBES'.
     PERFORM DYNPRO USING:
        'X'   'SAPMV45A'         '4002',       "Header business data
        ' '   'VBAK-SUBMI'       IVBAK-SUBMI,  "RFQ#
        ' '  'BDC_SUBSCR'        'SAPMV45A',
        ' '  'BDC_OKCODE'        '=T\01',
        'X'   'SAPMV45A'         '4002',
        ' '  'VBAK-AUDAT'        IVBAK-AUDAT,   "Document date
        ' '  'BDC_OKCODE'        '=T\10'.
  if not ivbak-waerk is initial.
    PERFORM DYNPRO USING :
        ' '   'VBAK-WAERK'       IVBAK-WAERK.  "Currency
  endif.
PERFORM DYNPRO USING :
     ' '   'BDC_OKCODE'       '/EBACK'.
PERFORM DYNPRO USING :
    ' '  'BDC_OKCODE'       '=BACK',
    'X'   'SAPMV45A'         '4001',     "Overview screen
    ' '  'BDC_OKCODE'        'ZSRS',     "Sales rep
    'X'  'SAPLZSSR'          '9000',     "Sales rep popup screen
    ' '  'SZORS-KUNNRSR(3)'  IVBAK-SR,   "Sales rep
    ' '  'BDC_OKCODE'        'CONT',
    'X'  'SAPMV45A'         '4001'.      "Overview screen
PERFORM DYNPRO USING :
    ' '   'BDC_OKCODE'       'KPAR',
    'X'   'SAPDV02P'         '6924',      "Header partnrs
    ' '   'RV02P-KUNDE(2)'   IVBAK-INSTALL_TO,  "Install-at party (IN)
    ' '   'RV02P-SELKZ(3)'   'X',
    ' '   'RV02P-KUNDE(3)'  IVBAK-BILL_to, "Bill to party
    ' '   'BDC_OKCODE'       '=S\PICK',
*Start Comment Lokesh
   'X'   'SAPDV02P'         '0644',
   ' '   'VBADR-NAME2'       IVBAK-bill_CONT,
*End Comment Lokesh
*Start Lokesh
    'X'   'SAPLV09C'         '5000',
    ' '   'ADDR1_DATA-NAME2'       IVBAK-bill_CONT,
*End Lokesh
Start venkatp
  ' '   'BDC_OKCODE'       '=BACK',
    ' '   'BDC_OKCODE'       'ENT1',
End venkatp
    'X'   'SAPDV02P'         '6924'. "Header partnrs
if not  IVBAK-payer is initial.
    PERFORM DYNPRO USING :
        ' '   'RV02P-KUNDE(4)'   IVBAK-payer.     "Payer   (BP)
  endif.
PERFORM DYNPRO USING :
       ' '   'RV02P-SELKZ(5)'   'X',
       ' '   'RV02P-KUNDE(5)'   IVBAK-SHIP_TO,   "Ship to party
       ' '   'BDC_OKCODE'       '=S\PICK',
*Start Comment Lokesh
      'X'   'SAPDV02P'         '0644',
      ' '   'VBADR-NAME2'       IVBAK-SHIP_CONT,
*End Comment Lokesh
*Start Lokesh
    'X'   'SAPLV09C'         '5000',
    ' '   'ADDR1_DATA-NAME2'       IVBAK-SHIP_CONT,
*End Lokesh
Start venkatp
  ' '   'BDC_OKCODE'       '=BACK',
    ' '   'BDC_OKCODE'       'ENT1',
End venkatp
       'X'   'SAPDV02P'          '6924',        "Header partnrs
       ' '   'BDC_OKCODE'        '=S\BACK',
       'X'   'SAPMV45A'         '4001'.        "Overview screen
       IF IVBAK-DESC <> SPACE.
*-Long text.
          PERFORM DYNPRO USING :
            ' '   'BDC_OKCODE'       'KTEX',
            'X'   'SAPMV45A'         '4002',
            ' '   'RTEXT-SPRAS(3)'   'EN',
            ' '   'RTEXT-SELKZ(3)'   'X',
            ' '   'BDC_OKCODE'       '/2',
            'X'     'SAPLSTXX'       '1100'.
       perform input_long_texts using 0.
       PERFORM DYNPRO USING :
            'X'   'SAPMV45A'         '4002',
            ' '   'BDC_OKCODE'       '=BACK'.
       PERFORM DYNPRO USING :
            'X'   'SAPMV45A'         '4001'.
endif.
PERFORM DYNPRO USING :
      ' '  MATERIAL               IVBAP-MATNR,   "Material number
      ' '  QUANTITY               IVBAP-ZMENG,   "Quantityt
      ' '  ITEM_CAT               'ZOR5'.        "item category
     IF IVBAK-AUART = 'OR'.
       PERFORM DYNPRO USING :
        ' '  'BDC_OKCODE'           '=ENT1',        "Material Config
        'X'  'SAPLCEI0'             '0109',        "Config screen
        ' '  'RCTMS-MNAME(1)'       'RELEASE',     "Release
        ' '  'RCTMS-MWERT(1)'       IVBAP-MWERT1,  "Release #
        ' '  'BDC_OKCODE'           '=BACK'.
    ENDIF.
   Chages Lokesh Ecc 5.0
     PERFORM DYNPRO USING :
      'X'  'SAPMV45A'             '4001',        "Overview screen
      ' '  SELECTION               'X',
     ' '  'BDC_OKCODE'           'PKON',       "Material Pricing screen
      ' '  'BDC_OKCODE'           'PKAU',       "Material Pricing screen
      'X'  'SAPMV45A'             '4003',
      ' '  'BDC_OKCODE'           'PEIN',       "Material Pricing screen
      ' '  'BDC_OKCODE'           'T\06',       "Material Pricing screen
      'X'  'SAPMV45A'             '5003',        "Overview screen
     'X'  'SAPMV61A'             '6200',
      ' '  'BDC_OKCODE'           'V69A_KOAN',       "Add new pricing
     'X'  'SAPMV61A'             '6200',       "Material pricing screen
      'X'  'SAPMV45A'             '5003',        "Overview screen
     'X'  'SAPLV69A'             '6201',       "Material pricing screen
      ' '  'KOMV-KSCHL(02)'       'ZPR0',       "Condition type
      ' '  'KOMV-KBETR(02)'       IVBAP-KBETR.  "Condition Amount
     IF IVBAK-AUART = 'OR'.
       PERFORM DYNPRO USING :
        ' '  'BDC_SUBSCR'           'SAPMV45A',     "Account Assignment
        ' '  'BDC_OKCODE'           '=T\07',
        'X'  'SAPMV45A'             '4003',
        ' '  'BDC_OKCODE'           '=BACK',
        'X'  'SAPLKACB'             '0002',
        ' '  'COBL-PS_PSP_PNR'      IVBAP-WBS,
        ' '  'BDC_OKCODE'           '=ENTE'.
    else.
       PERFORM DYNPRO USING :
           ' '  'BDC_OKCODE'        '=BACK'.
    ENDIF.
Input long texts
     PERFORM DYNPRO USING :
      'X'  'SAPMV45A'             '4001',"Overview screen
      ' '   SELECTION             'X',
      ' '  'BDC_OKCODE'           '=PTEX',
     'X'  'SAPMV45A'              '4003',
     ' '   'RTEXT-SPRAS(2)'       'EN',
     ' '   'RTEXT-SELKZ(2)'       'X',
     ' '   'BDC_OKCODE'           '/2',
    'X'  'SAPLSTXX'               '1100'.
     perform parse_text_n using ivbap-text. "Load header texts
     perform input_long_texts using ivbap-posnr.
    PERFORM DYNPRO USING :
    'X'  'SAPMV45A'           '4003',
    ' '  'BDC_OKCODE'         '=BACK',
    'X'  'SAPMV45A'           '4001'.
  ENDLOOP.

HI
There are following 10 fields .
FIELD1(200),
FIELD2(20),
FIELD3(20),
FIELD4(30),
FIELD5(50),
FIELD6(50),
FIELD7(50),
FIELD8(50),
FIELD9(50),
FIELD10(50),
FIELD1(200), means its a filed with 200 characters.
Reward if helpful

Similar Messages

  • Username and password- Need help urgently!

    Hi
    1) First of all, i have received an email stating that my account under Removed personal information to comply withCommunity GuidelinesandTerms and Conditions of Use.
    is being banned as there is multiple obsence post. I need to clarify that i have never used my account to post in BBM forum before. Even if i did, is when i need help urgently for my BBM application. Currently i am holding 4 bbms now. Have never came across this issue. Pls check and advise
    2) I urgently need to setup my email accounts. But this time round, when i logged in, they required for my email id and password. And yes my email id is Removed personal information to comply withCommunity GuidelinesandTerms and Conditions of Use. all the while for the past 4 years. I am unable to log in. I tried all kinds of password but unable to log into my mobile settings
    Verfiy Blackberry ID
    This application requires u to verify ur blackberry id to continue.
    blackberry ID username:
    Removed personal information to comply withCommunity GuidelinesandTerms and Conditions of Use.
    password:
    I went to the forget password option, unfortunately as i have never retrieved my password before, i am unable to remember the security question as i did not use it for the past 4 years.
    Pls advise.
    Urgent and thanks

    Hi,
    I have been trying this technique for the past 4 days. It doesnt work no matter how i change the password at the link that u gave me. Even though it's being reset accordingly, i am still unable to log in the password at my mobile. i am 100% sure that i have entered the correct password at my mobile. ( verify blackberry id) . I want to setup new email accounts under "setup" . Upon me clicking " email accounts", it prompt for the one key password. I have never faced this issue before. I am very very sure that my password is correct. Pls advise as i need to add email accounts. Other programs are working fine without any password required being prompt. ie. blackberry world
    This is very very urgent to be resolved. Pls help.

  • PASSWORD FOR FLODERS  PLEAse  HELP URGENT

    HI ALL
    please tell me the method of implementing password
    provision for some folders/files in the system.
    it should ask for password authentification before
    opening when i click on the folder.
    please help urgent
    thanks
    belur

    Hi Swaroopba,
    It can be very well done thru Form based Authentication.
    For eg let me explain with respect to Tomcat.
    Go to
    $TOMCAT_HOME/webapps/examples/WEB-INF directory.
    Please add the following code in it.
    <security-constraint>
    <web-resource-collection>
    <web-resource-name>Protected Area </web-resource-name>
    <!-- Define the context URL's to be protected -->
    <url-pattern>/jsp/security/protected</url-pattern>
    </web-resource-collection>
    </security-constraint>
    Please add the following code in it. And you have to specify the roles for it.
    I hope this will be helpful for you.
    Or if you want it in an application, please let me know.
    Thanks
    Bakrudeen

  • Need help urgently with OS X and Windows 7

    I need help urgently.
    I installed Windows 7 on my macbook pro with OS X Lion. After installing Windows7, I accidently converted the basic volumes to dynamic volumes and now i can't even boot to OS X.
    Please help me how to recover my OS X Lion. If I have to delete Windows and bootcamp partitions, it is OK.
    I just want to get back my OS X bootable.
    Thanks

    thihaoo wrote:
    Sorry
    I can't even see the OS X partition when I hold down the "Option" key.
    I could see OS X and Windows partitions if I hold down Option key before changing the partitions to Dynamic partitions from Basic in Windows 7.
    Now can't see OS X partiton and only see Winodws partition but when I tried to boot onto Windows7 , I got BSOD and macbook pro restart.
    Please help
    The usual reason for the OSX partition to be invisible under these circumstances is that it has been trashed by Windows.
    Do you have a backup?

  • I want to buy an in-app purchase but i don`t remember my security questions and i cant access my recovery email either, what can i do? i have 100$ on my account and cant use it because of that problem, please help URGENT

    I want to buy an in-app purchase but i don`t remember my security questions and i cant access my recovery email either, what can i do? i have 100$ on my account and cant use it because of that problem, please help URGENT

    If you have a rescue email address on your account then you can use that - follow steps 1 to 5 half-way down this page will give you a reset link on your account : http://support.apple.com/kb/HT5312
    If you don't have a rescue email address (you won't be able to add one until you can answer your questions) then you will need to contact Support in your country to get the questions reset : http://support.apple.com/kb/HT5699

  • CSS Layout issue!! Help Urgent!!

    I am having a problem with creating a css layout, in the past i used tables and am trying to convert my sites for my customers. I have layed out the website using divs and css and it looks great until i put in the cosing of the menu bar. when i put in the coding for the menu bar suddenly the bar has a padding around it but i cannot find a padding that would change this in the css coding. I need this done asap! so please help. ill show my coding below:
    this is the div coding:
    <div id=Nav>
       <ul class="dropdown" id="Bar"; width: 879px" name="Bar">
             <li class="style16" style="width: 161px; height: 22px">
       <a href="default.html" style="width: 146px">Home</a></li>
             <li class="style10" style="width: 169px; height: 23px">
       <a href="about.html" style="width: 153px">About</a></li>
         <li class="" style="height: 31px; width: 175px; left: 0px; top: 0px">
       <a href="Equipment.html" class="style18">
       <div class="style10" style="width: 156px; height: 20px;">
        Equipment</div>
       </a> <ul class="sub_menu">
                <li><a href="compressor.html">Air Compressors</a></li>
                <li><a href="compactions.html">Compaction</a></li>                            
                <li><a href="concrete.html">Concrete Equipment</a></li>
                <li><a href="forklifts.html">Fork Lifts</a></li>
                <li><a href="generators.html">Generators</a></li>                            
                <li><a href="groundthawing.html">Ground Thawing</a></li>
                <li><a href="heaters.html">Heaters</a></li>
                <li><a href="scissorlifts.html">Scissor Lifts</a></li>                            
                <li><a href="boomlifts.html">Boom Lifts</a></li>
                <li><a href="lighttowes.html">Light Towers</a></li>
                <li><a href="misc.html">Misc.</a></li>                            
                <li><a href="dirtequipment.html">Dirt Equipment</a></li>
                <li><a href="powertools.html">Power Tools</a></li>
                <li><a href="pumps.html">Pumps | Saws | Welders</a></li>                              
                     </ul>
             </li>
             <li style="width: 165px"><a href="locations.html">
       <div class="style10" style="width: 154px">
        Locations</div>
       </a>
               </li>
                 <li style="width: 180px"><a href="contact.html">
       <div class="style16" style="height: 24px">
        Contact Us</div>
       </a>         </li>
            </ul>
      </div>
    This is the css coding:
    #wrapper {
    width: 880px;
    margin-right: auto;
    margin-left: auto;
    background-color: #f4f4f4;
    #Navigation {
    background-image: url(Images/NAvigation%20BAr.jpg);
    background-repeat: no-repeat;
    width: 880px;
    visibility: visible;
    height: 3-px;
    vertical-align: top;
    Nav {
    vertical-align: top;
    margin: 0px;
    padding: 0px;
    clear: both;
    height: 20px !important;
    #wrapper1 {
    width: 876px;
    margin-right: auto;
    margin-left: auto;
    color: #F4F4F4;
    /* IE10 Consumer Preview */
    background-image: -ms-linear-gradient(left, #716375 0%, #E8E8E8 100%);
    /* Mozilla Firefox */
    background-image: -moz-linear-gradient(left, #716375 0%, #E8E8E8 100%);
    /* Opera */
    background-image: -o-linear-gradient(left, #716375 0%, #E8E8E8 100%);
    /* Webkit (Safari/Chrome 10) */
    background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #716375), color-stop(1, #E8E8E8));
    /* Webkit (Chrome 11+) */
    background-image: -webkit-linear-gradient(left, #716375 0%, #E8E8E8 100%);
    /* W3C Markup, IE10 Release Preview */
    background-image: linear-gradient(to right, #716375 0%, #E8E8E8 100%);
    margin-bottom: auto;
    #Bar {
    background-repeat: no-repeat;
    width: 880px;
    height: 28pt;
    overflow: visible;
    background-image: url(Images/NAvigation%20BAr.jpg);
    position: relative;
    vertical-align: top;
    #container {
    width: 880px;
    color: #000;
    background-color: #EDEDED;
    dominant-baseline: 578px;
    /* IE10 Consumer Preview */
    background-image: -ms-linear-gradient(left, #716375 0%, #E8E8E8 100%);
    /* Mozilla Firefox */
    background-image: -moz-linear-gradient(left, #716375 0%, #E8E8E8 100%);
    /* Opera */
    background-image: -o-linear-gradient(left, #716375 0%, #E8E8E8 100%);
    /* Webkit (Safari/Chrome 10) */
    background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #716375), color-stop(1, #E8E8E8));
    /* Webkit (Chrome 11+) */
    background-image: -webkit-linear-gradient(left, #716375 0%, #E8E8E8 100%);
    /* W3C Markup, IE10 Release Preview */
    background-image: linear-gradient(to right, #716375 0%, #E8E8E8 100%);
    margin-bottom: auto;
    #content {
    float: left;
    color: #090;
    width: 580px;
    padding-right: 6px;
    background-color: #033;
    margin-top: 20px;
    .container {
    color: #000;
    background-color: #ff6;
    width: 876px;
    #expect {
    height: 164px;
    width: 294px;
    float: right;
    position: relative;
    background-color: #C90;
    margin-left: 582px;
    padding-top: 10px;
    #hours {
    float: left;
    height: 55px;
    width: 294px;
    line-height: 4px;
    word-spacing: normal;
    white-space: normal;
    display: inline;
    letter-spacing: normal;
    padding-top: 10px;
    font-size: 13pt;
    color: #000;
    margin-left: 586px;
    background-color: #F99;
    #footer {
    height: 76px;
    width: 880px;
    background-color: #CC0;
    clear: both;
    #cards {
    float: right;
    height: 31px;
    width: 294px;
    margin-left: 582px;
    padding-top: 10px;
    background-color: #F36;
    #contact {
    float: left;
    height: 328px;
    width: 293px;
    word-spacing: normal;
    white-space: normal;
    line-height: 1px;
    color: #000;
    display: inline;
    font-size: 14pt;
    background-color: #FFF;
    padding-top: 10px;
    margin-top: 20px;
    #header {
    background-image: url(Images/Proquip%20Logo/Proquip%20logo2.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    width: 885px;
    height: 126px;
    background-color: #000;
    margin-right: 2.5px;
    margin-left: 0px;
    #wrapper #container #contact p strong {
    color: #800000;
    font-size: 14pt;
    #wrapper #container #contact blockquote p a {
    color: #000;
    #wrapper #container #expect div {
    color: #900;
    font-size: 14pt;
    font-weight: bold;
    #wrapper #container #hours div {
    color: #900;
    font-size: 14pt;
    font-weight: bold;
    #box2 {
    background-image: url(Images/Option%201/Services/whitebox2.jpg);
    #box3 {
    background-image:url(Images/Option%201/Services/redbox2.jpg);
    background-repeat:no-repeat;
    background-position: center center;
    #gold {
    background-image:url(Images/Option%201/Logos/gold.gif);
    background-repeat:no-repeat;
    #white {
    background-image:url(Images/Option%201/ProQuip-Pics/box1.gif);
    background-repeat:no repeat;
    #forklift {
    background-image:url(Images/Option%201/ProQuip-Pics/34-01-4380.jpg);
    background-repeat:no-repeat;
    #scissorlift {
    background-image:url(Images/Option%201/ProQuip-Pics/jlg-scissor-lifts-21.jpg);
    background-repeat:no-repeat;
    /* Navigation Menu- Level one */
    ul {
    list-style: none
    ul.dropdown {
    font-size: 13pt;
    color: #000000;
    height: 25px;
    text-decoration: none !important;
    width: 860px;
    position: relative;
    vertical-align: top;
    ul#Bar.dropdown {
    width: 878px;
    position: relative;
    vertical-align: top;
    ul.dropdown li {
    font-weight: 600;
    float: left;
    zoom: 1;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13pt;
    display: block;
    width: 175px;
    color: #000000;
    top: 25px;
    text-decoration: none !important;
    text-align: center;
    ul.dropdown a:hover {
    color:#cc0000;
    ul.dropdown a:active {
    color: #000000;
    ul.dropdown li a {
    display: block;
    border-right: 1px solid#333;
    color: #000000;
    border-right-width: 1px;
    text-decoration: none !important;
    text-align: center;
    ul.dropdown li:last-child a {
    border-right:none; /* does not wotk in IE */
    text-decoration:none !important; } 
    ul.dropdown li.hover,
    ul.dropdown li.hover {
    color: #000000;
    position: relative;
    height: 28px;
    top: 0px;
    ul.dropdown li.hover a {
    color:#800000;
    /* Level Two Navigation */
    ul.dropdown ul {
    width: 180px;
    visibility: hidden;
    position: absolute;
    top: 100%;
    left: 36%;
    display: block;
    float: left;
    color: #000000;
    text-decoration: none !important;
    height: 25px;
    ul.dropdown ul li {
    font-weight: normal;
    color: #000000;
    border-bottom: 1px solid #ccc;
    float: left;
    border-bottom-color: #c0c0c0;
    border-bottom-style: groove;
    display: block;
    background-color: #dbdbdb;
    text-decoration:none !important;
    /* IE 6&7 needs inline block */
    ul.dropdown ul li a {
    border-right: none;
    display: inline-block;
    height: 18px;
    line-height: 16px;
    color: #000000;
    width: 100%;
    text-decoration: none !important;
    /* Level Three Navigation */
    ul.dropdown ul ul {
    top: 100%;
    color: #000000;
    text-decoration: none !important;
    ul.dropdown li:hover>ul {
    visibility: visible;
    color: #000000;
    top: 30px;
    text-decoration: none !important;

    I have the site using tables up and running, this is a website for a client so I cant make a test site using that domain would it be ok if I screen shot'ed the problem?
    Date: Thu, 24 Apr 2014 12:19:44 -0700
    From: [email protected]
    To: [email protected]
    Subject: CSS Layout issue!! Help Urgent!!
        Re: CSS Layout issue!! Help Urgent!!
        created by Jon Fritz II in Dreamweaver support forum - View the full discussion
    Well, you're not using position:absolute, so you've got a big thumbs up from a bunch of us for that.
    Is there any chance you could post a link to this page on your server? It's much easier to troubleshoot from a browser than it is to rebuild the page from code fragments.
    If you haven't gone live with the page yet, create a folder called TEST in your site and save copies of the page and css there. Upload TEST and post a link to it here. Once the problem is found/fixed, delete TEST from the server.
    You can also attempt to use Firefox or Chrome to find your issue by right clicking > Inspect Element. All CSS that affects a given element will be displayed with file name and line numbers there.
         Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/6327947#6327947
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/6327947#6327947
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/6327947#6327947. In the Actions box on the right, click the Stop Email Notifications link.
               Start a new discussion in Dreamweaver support forum at Adobe Community
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/thread/416458?tstart=0.

  • Please help URGENT : Chinese handwriting doesn't seem to work on Lion OSX. the handwriting trackpad appears but anything i write in Chinese doesn't appear in word, chrome,..... HELP PLEASE

    please help URGENT : Chinese handwriting doesn't seem to work on Lion OSX. the handwriting trackpad appears but anything i write in Chinese doesn't appear in word, chrome,..... HELP PLEASE
    And in system prefs/language and text/input languages, simplified chinese and traditional chinese are ticked as usual with handwriting options on !!!!

    Please search the forum for "chinese" to find the many other earlier posts about your issue, like
    https://discussions.apple.com/message/15746805#15746805

  • Help urgently needed, I have installed Logic Pro 9, since then my Final Cut Pro X keep freezing. Anyone what is wrong and how to solve it? I desperately need help on this. Thanks

    Help urgently needed, I have installed Logic Pro 9, since then my Final Cut Pro X keep freezing. Anyone what is wrong and how to solve it? I desperately need help on this. Apple support says I have to pay £85 for to help me. Thanks

    Just a word of advice. Never ever use the word "urgent" on this forum

  • Help Urgent please !!

    Hello, i've got an great problem:
    Ihave an frameset with 2 frames. these 2 frames should be loaded dynamicaly, that means i call the frameset
    frameset.html#NameOfTheRightFrame#Titleoftheframeset#browsertyp
    the extraction of the sendet data works without problems and under Internet Explorer i can call the right frame by document.FrameName.href. But under Netscape it doesn't work.
    Do anybody of you know how i could call an frame out of the frameste under netscape?????
    Thaknks
    J�rg

    Help Urgent please !!And the winner of this weeks Lest Perspicuous Subject Line - award goes to...
    "Help Urgent please !!"
    <applause/>
    While including all the magic words "help", "urgent", and "please", multiple exclamation marks and some mis-capitalization, and not describing the actual message at all, it's not perfect in style: "urgent" is not written in all caps and there are too few exclamation marks. But the fact that the body of the post itself is totally off-topic is an amendment to failing in these.
    To the actual question I'd answer: have you tried checking the javascript reference?

  • I bought an iphone 5 on 01 February 2013 from your store to use in Turkey. But the phone is sim-locked. What can I do now?  Please help urgently.

    I bought an iphone 5 from apple store in Geneva to use in Turkey. But it is sim-locked. What can I do now. Please help urgently.

    Return it to the store where you purchased & get your money back. Either that, or call the store. No one here can help you, as there is no one from Apple here.

  • Oaf customization....please help urgent !!!!!!!!!!!!!

    hi ,
    i have a requirement in my project where in i have to customize a standard page.
    i need to create a new region in the existing page (new EO,VO and region)
    for this i should download all the .xml and .class files from the server.tehse i can download to myclasses
    but i would like to know how to get the java files to myprojects.we will not get these from server.so how will i get the .java files coz i need the main CO.VO .java files.
    please do help.
    urgent
    thanks
    Ramya

    Hi Ramya,
    As stated above, you have to decompile those files. Oracle does not provide java source of controller, vo etc.
    However, previously some issues has been noticed with jad java decompiler.Moreover its command line tool.
    Another good decompiler is jd-gui which is gui based tool and overcomes some of probs of jad.
    You can refer this thread.
    Source java OAF code... when Oracle will release it?
    Abdul Wahid

  • Dead bb curve 8520 SOS need help urgently

    hi guys
    I am experiencing several major issues
    1) my phone had been resetting itself a lot lately without reason and randomly. I then downgraded the OS from 5 to 4 then it continued to do the same so I did the removal of the vendor.xml file in the folder of my win 64 bit computer then the blackberry desktop manager, the BBSAK and the computer cannot find my phone. All it does is flash the LED several times in red and wont even restart or show some evidence of life. I have tried everything please help urgently!!!!!

    Hi and Welcome to the Community!
    Please try this sequence...note that, throughout the entire 4h15m process, your BB must remain connected to a known-good wall charger (not PC USB):
    With the battery inside, connect your BB to the wall charger
    Leave it alone for 2 hours, no matter what the LED or the display does
    Remove the battery
    Wait 15 minutes
    Insert the battery
    Wait another 2 hours, no matter what the LED or the display does
    This has been known to "kick start" some BBs.
    It is also possible that your battery or BB has experienced a problem...to test, this sequence is needed:
    Obtain a known good and already fully charged additional battery...use it in your BB and see what happens
    Obtain access to a known good and identical BB...use your battery in it and see what happens
    The results of this will indicate if it's your BB or your battery that has the problem.
    Otherwise, please try this drastic method:
    KB27956 How to recover a BlackBerry smartphone from any state
    Good luck and let us know!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Please Help - Urgent

    Hi everyone, I�m having problems with Java Mail, I have just installed it along with the java activation framework, they are located in the following directories:
    JavaMail: C:\jdk1.3.1\lib\javamail-1_2[1]
    Java activation framework: C:\jdk1.3.1\lib\jaf1_0_1[1]
    I have the classpath set as: C:\jdk1.3.1\lib\mail.jar;C:\jdk1.3.1\lib\activation.jar
    When I try to compile the sample code provided with these packages, msgsend.java using Jbuilder 2 I get the following errors:
    Error (36): cannot access directory javax\mail.
    Error (37): cannot access directory javax\mail\internet.
    Error (209): class message not found in class msgsend.
    Error (210): class MessagingException not found in class msgsend
    Error (134): class Session not found in class msgsend
    Error (134): variable Session not found in class msgsend
    Error (139): class Message not found in class msgsend
    Error (139): class MimeMessage not found in class msgsend
    Error (141): class InternetAddress not found in class msgsend
    Error (145): cannot access class Message.RecipientType;neither class nor source found for Message.RecipientType.
    Error (146): Variable InternetAddress not found in class msgsend
    Error (148): cannot access class Message.RecipientType;neither class nor source found for Message.RecipientType.
    Error (149): Variable InternetAddress not found in class msgsend
    Error (151): cannot access class Message.RecipientType;neither class nor source found for Message.RecipientType.
    Error (152): Variable InternetAddress not found in class msgsend
    Error (162): Variable Transport not found in class msgsend
    Error (170): class Store not found in class msgsend
    Error (172): class URLName not found in class msgsend
    Error (172): class URLName not found in class msgsend
    Error (189): class Folder not found in class msgsend
    Error (195): Variable Folder not found in class msgsend
    Error (197): class Message not found in class msgsend
    Error (197): class Message not found in class msgsend
    If I try to use another Java package to compile it I get even more errors (52), I cannot compile it by using the Javac command line compiler, it just says �Bad command or file name�.
    Can anyone tell me Why this is happening and how I might be able to fix it please, I need to start learning Java Mail quickly but at the moment I can�t even begin to do this until I can understand how to get this sample code to work.
    Thanks Everyone
    Noel

    First of all... don't post with topics like "Please Help - Urgent". The topic is supposed to reflect what the question is about.
    Secondly... think for a second. If mail.jar is in C:\jdk1.3.1\lib\javamail-1_2[1]... why are you with your classpath saying that mail.jar is in C:\jdk1.3.1\lib ?
    You classpath is supposed to point directly at you jar-files.
    /Michael

  • How to download garageband old version? i mean version 1.0 to install it on iphone 4s with ios 6.0.1??? please help urgently, how to download garageband old version? i mean version 1.0 to install it on iphone 4s with ios 6.0.1??? please help urgently

    how to download garageband old version? i mean version 1.0 to install it on iphone 4s with ios 6.0.1??? please help urgently, how to download garageband old version? i mean version 1.0 to install it on iphone 4s with ios 6.0.1??? please help urgently

    I did this a few weeks ago to be sure it was going to work for a young person I was giving my ipod to.  Then I reset the information for her and now it will not load.  Very sad.  She is so talented and she really needs this.   Anyone know?

  • I received an iCloud backup notification on my ipad mini but tapping "OK" does not remove it and therefore I am unable to do any activity on my ipad mini. please help urgent.

    I received an iCloud backup notification on my ipad mini but tapping "OK" does not remove it and therefore I am unable to do any activity on my ipad mini. please help urgent.??

    Have you tried a reset ? Press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider if it appears), after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot.

  • Need help urgently, I upgraded my iPhone 4 with new OS 5, but at the last restore failed. Apple Customer Care helped me to resynch my phone with all that available in Library. I've got all back except my Contact no. Pls help guys, thnx

    Need help urgently, I upgraded my iPhone 4 with new OS 5, but at the last restore failed. Apple Customer Care helped me to resynch my phone with all that available in Library. I've got all back except my Contact no. Pls help guys, thnx Plz guys anyone can help plzz....I've lost all contact and I dont even have any secondary back up also...!!!

    If you've had it for less than a year, then it's still under warranty.  Take it to an Apple store or an authorized service facility.  See http://support.apple.com/kb/HT1434

Maybe you are looking for

  • Blackmagic Intensity Pro problem plackback on external LCD TV

    Hi there, Recently installed Intensity Pro card on my Mac Pro and trying to work on FCP6. I use a 1280x720 9 sec footage for testing but there's a problem to playback on a external LCD TV via HDMI cable. The playback on FCP canvas plays fine but the

  • How to edit text in design mode - i.e get an I cursor instead of arrow

    DW CS6 This is a very basic unclear on concept question. I normally work in code view and have no problems. Sometimes there is a large block of text within a paragraph which is in a div. I would like to correct a simple typo or insert some more text

  • Trouble getting into iTunes

    I have just bought a new laptop. I have downloaded iTunes but when I try to get into it I am given the following error message - 'The file iTunes library cannot be read because it was created by a newer version of iTunes'- Any ideas what I should do

  • After Effects 12.0 cannot drag and drop files into it?

    I'm simply trying to drag and drop files into the programs project files. Has worked in other ae versions, help?

  • Accesing methods from threads

    hi. Im trying to write a program that requires multithreading , I store each thread as an object in a vector to identify the thread because the threads are all initiated from the same class , heres the code: while(condition) { myThread thread = new m