About application server flat files

I am comparing flat file with database table the flat file is in application server .flat fiel width is some 50000+records.I am executing the program it is continuously keep on executing i waited upto 5 hours still it is executing can u plz help me how to execute the report.

Hi Pranitha
  I guess it will be better if you can post your code to identify if the problem is with the code or with the database.
  Alternatively, you can do below steps to identify whatz happening in the background.
1. Go to Transaction SM50.
2. Select the process(check box) where your job is executing.
3. Use Menupath:  Program/Mode -> Program -> Debugging.
  By doing this it will open a new session in debugging mode of your current execution. Maybe by doing this it might help you identify if there are any problems like the index of the loop, no of records extracted from file, no of records from table...
  Hope the above info can lead you in resolving the problem.
Kind Regards
Eswar

Similar Messages

  • How to have a live feed from application server log file (realtime viewr )

    how to have a live feed from application server log file (realtime viewr for apps log files)
    hi , thank you for reading my post.
    is there any way to have a live feed of Application server log ?
    for example is there any application that can watch the log file and show the changes as new log items come in ?
    can some one with more experience help ?

    Your question would be more suited to the Developer Forums
    http://devforums.apple.com
    but anyway...
    My goal is to develop a web application that is able to run on iPhone too, to capture the audio and video content from its camera and mic.
    Web Apps running in Safari don't have access to the camera or mic hardware.
    Or I should built a native application distributed through Apple store?
    That is your only option, although such a system already exists:
    http://itunes.apple.com/us/app/ustream-live-broadcaster/id319362690?mt=8

  • Application Server Directory file attributes lists

    Hi,
    I'm searching for Funtion Module or Method to get Application Server Directory file lists with all attributes.
    1) FM 'SUBST_GET_FILE_LIST' is not getting midifued date and time.
    2) Method CL_GUI_FRONTEND_SERVICES-DIRECTORY_LIST_FILES is getting local directory files.
    I'm looking for standard way to get all attributes whatever we are seeing in AL11 transaction like Name, Length, Creator and last changed date and time stamp-
    ...Nandha

    Hi
    The fm SUBST_GET_FILE_LIST is right but you need to convert the date and time by your self, u can use this routine:
    PERFORM P6_TO_DATE_TIME_TZ(RSTR0400) USING FILE_LIST-MTIME
                                                     FILE_LIST-MOD_TIME
                                                     FILE_LIST-MOD_DATE.
    Max

  • Create application server moves files from i drive to c drive?

    Hello,
    my set up:
    windows 2003
    sql server 2008
    peopletools 8.51
    application FMSC 9.1
    PS Home on I:\TFS91
    While setting up a demo system for FMSC 9.1, I noticed that the application server and process schedulers are being created on the C: drive.
    This is strange because the PS Home are on the I: drive.
    I start PSADMIN from the I drive, but every time I create an application server on the I drive it copies the application server to the C: drive.
    Why is this happening?
    PeopleSoft Application Server Administration
    1) Administer a domain
    2) Create a domain
    3) Delete a domain
    4) Import domain configuration
    q) Quit
    Command to execute (1-4, q) : 2
    Please enter name of domain to create :FSDMO911
    Configuration templates:
    1) developer
    2) large
    3) medium
    4) small
    Select config template number: 3
    Creating domain...
    Copying application server configuration files...
    Copying to [C:\Documents and Settings\tuxadmin\ps
    t\pt\8.50\appserv\FSDMO911\psappsrv.cfg]
    Stripping Annotations...
    Copying [I:] to [C:\Documents and Settings\tuxadmin\ps
    t\pt\8.50\appserv\FSDMO911\psappsrv.cfx]
    Copying Jolt repository file...
    Domain created.
    Would you like to configure this domain now? (y/n) [y] :
    Quick-configure menu -- domain: FSDMO911
    Features Settings
    ========== ==========
    1) Pub/Sub Servers : No 15) DBNAME :[FSDMO911]
    2) Quick Server : No 16) DBTYPE :[MICROSFT]
    3) Query Servers : No 17) UserId :[QEDMO]
    4) Jolt : Yes 18) UserPswd :[QEDMO]
    5) Jolt Relay : No 19) DomainID :[TESTSERV]
    6) WSL : No 20) AddToPATH :[C:\mssql\Binn]
    7) PC Debugger : No 21) ConnectID :[people]
    8) Event Notification: Yes 22) ConnectPswd:[peop1e]
    9) MCF Servers : No 23) ServerName :[]
    10) Perf Collator : No 24) WSL Port :[7000]
    11) Analytic Servers : Yes 25) JSL Port :[9000]
    12) Domains Gateway : No 26) JRAD Port :[9100]
    Actions
    =========
    13) Load config as shown
    14) Custom configuration
    h) Help for this menu
    q) Return to previous menu
    Edited by: CLUTCH DBA on Feb 9, 2010 10:44 AM

    Note, if PS_CFG_HOME variable is not set, domains configuration files are going into the user path directory +%USERPROFILE%\psft\pt\<peopletools_version>+
    Nicolas.

  • Questions about application server architecture

    Hello guys,
    I have few questions about application server architecture�
    I have a task to build a server application which will do the following: Clients (special java clients) will connect to it and send some data for further processing on server side. Chunks of data will be relatively small but they will take a lot of time for processing (it is ok that it will be quite slow).
    Also server will run some sort of �database� where all clients� working data will be stored. So, in case a client loses its data he/she is always able to download it from the server.
    For me it seems, like server will consist of the following components:
    1. �Reception�. This part will be responsible for all client-communication procedures.
    2. �Data storage�. This part will simply store all clients� data and provide some API interface for clients through �reception� to manage it (add/get/delete and so on).
    3. �Processor�. Some sort of dummy-sophisticated module. It will take some input data from �data storage� when it receives order for this and process it. �Processor� will have two states: �busy� which means �processor� processing some data and �available� which means �processor� ready to process new data.
    4. �Manager�. This part will always check �data storage� for new data and �processor� for availability. When �processor� and new data are available �manager� will make an order for �processor� to take new data from �data storage� and process it.
    So, my question is the following: Which technology and approaches I should use to realize my plan?
    I think that I can make �reception� as a Session Bean, but I don�t know yet, what are the best for the rest, for example �manager� and �processor�. I was thinking about writing my own application server (and I can do it), but I would like to learn j2ee technologies, so I think it is a perfect chance for me (I read a lot about j2ee before I wrote this post, but all examples have only �account�-�bill�-�money transfer� I think it is quite far away from reality or I am doing something wrong ;-)!
    p.s. I am thinking about using JBoss as an Application Server. I tested it and wrote some tests. They work and run fast enough, so I like it. Moreover it has module architecture.
    Please, give me some advises and tips!
    Thank you in advance!

    1. �Reception�. This part will be responsible for all
    client-communication procedures.Session bean with remote interface.
    2. �Data storage�. This part will simply store all
    clients� data and provide some API interface for
    clients through �reception� to manage it
    (add/get/delete and so on).Session bean that will use entity beans or hibernate to work with persistant data.
    3. �Processor�. Some sort of dummy-sophisticated
    module.Use a message driven bean. Make Reception to enqueue a message when new data is available for processing. Processor will process the data and store the resut in database using Data Storage session bean.
    4. �Manager�. This part will always check �data
    storage� for new data and �processor� for
    availability. When �processor� and new data are
    available �manager� will make an order for
    �processor� to take new data from �data storage� and
    process it.It's redundand component, because application server will manage messages and processors.

  • Download files from application server - unknown file name

    Hello everybody,
    I am working on a report allowing users to download XML files from the application server. All these XML files are created by the SAP system and their names can be found in a table. I can simply use OPEN DATASET for these files, put all file content to a buffer and send them to the GUI with CALL METHOD cl_gui_frontend_services=>gui_download.
    The problem is now that some files are touched by an external document management system. These files are moved to another directory and timestamped. The first is no problem since the folder name is always the same and can be replaced before the OPEN DATASET statement. But additionally, the file gets a timestamp, when the filename was xyz.xml before, it now gets xyz.xml.01012008123456123456. As I cannot try all possible values (mircoseconds!), I need a way to search for the right filename on the application server. Is there a function module for this available?
    It can always be stated that the former name (xyz.xml) is still a unique prefix, so I don't have to worry that xyz.xml.* will return multiple files.
    Thanks in advance for any suggestions.
    Christoph

    HI!
    I copy the function GET_DIRECTORY_FILE. In the eyelash of tables create one structures:
    DIR_FILES           LIKE                  ZDIR_FILES
    The single structure has component NAME (char 250).
    I code of the function that I use is:
    FUNCTION zget_directory_file.
    ""Interfase local
    *"  IMPORTING
    *"     REFERENCE(NAME_OF_DIR) TYPE  CHAR120
    *"     REFERENCE(NAME_OF_FILE) TYPE  CHAR120 OPTIONAL
    *"     REFERENCE(SP_CS) TYPE  CHAR120 OPTIONAL
    *"  TABLES
    *"      DIR_FILES STRUCTURE  ZDIR_FILES
      DATA: a_dir_name TYPE  char120,
            a_generic_name TYPE  char120,
            a_must_cs TYPE  char120.
      a_dir_name      = name_of_dir.
      a_generic_name  = name_of_file.
      a_must_cs       = sp_cs.
      DATA: errcnt(2) TYPE p VALUE 0.
      IF a_dir_name IS INITIAL.
       MESSAGE e220.     " 'Place cursor on valid line !'.
      ENDIF.
      CALL 'C_DIR_READ_FINISH'             " just to be sure
          ID 'ERRNO'  FIELD file_list-errno
          ID 'ERRMSG' FIELD file_list-errmsg.
      CALL 'C_DIR_READ_START' ID 'DIR'    FIELD a_dir_name
                              ID 'FILE'   FIELD a_generic_name
                              ID 'ERRNO'  FIELD file-errno
                              ID 'ERRMSG' FIELD file-errmsg.
      IF sy-subrc <> 0.
        sy-subrc = 4.
        EXIT.
      ENDIF.
      file-dirname = a_dir_name.
      DO.
        CLEAR file.
        file-name = '*.zip'.
        CALL 'C_DIR_READ_NEXT'
          ID 'TYPE'   FIELD file-type
          ID 'NAME'   FIELD file-name
          ID 'LEN'    FIELD file-len
          ID 'OWNER'  FIELD file-owner
          ID 'MTIME'  FIELD file-mtime
          ID 'MODE'   FIELD file-mode
          ID 'ERRNO'  FIELD file-errno
          ID 'ERRMSG' FIELD file-errmsg.
        file-dirname = a_dir_name.
        MOVE sy-subrc TO file-subrc.
        CASE sy-subrc.
          WHEN 0.
            CLEAR: file-errno, file-errmsg.
            CASE file-type(1).
              WHEN 'F'.                 " normal file.
                PERFORM filename_useable USING file-name file-useable.
              WHEN 'f'.                 " normal file.
                PERFORM filename_useable USING file-name file-useable.
              WHEN OTHERS.              " directory, device, fifo, socket,...
                MOVE sap_no  TO file-useable.
            ENDCASE.
            IF file-len = 0.
              MOVE sap_no TO file-useable.
            ENDIF.
          WHEN 1.                     " end of directory
            EXIT.
          WHEN 4.                     " filename too long
            MOVE sap_no TO file-useable.
          WHEN OTHERS.
            ADD 1 TO errcnt.
            IF errcnt > 90.
              EXIT.
            ENDIF.
            IF sy-subrc = 5.
              MOVE: '???' TO file-type,
                    '???' TO file-owner,
                    '???' TO file-mode.
            ELSE.
            ULINE.
            WRITE: / 'C_DIR_READ_NEXT', 'SUBRC', SY-SUBRC.
            ENDIF.
            MOVE sap_no TO file-useable.
        ENDCASE.
       PERFORM p6_to_date_time_tz(rstr0400) USING file-mtime
                                                  file-mod_time
                                                  file-mod_date.
      * Does the filename contains the requested pattern?
      * Then store it, else forget it.
       MOVE-CORRESPONDING file TO file_list.
       APPEND file_list.
        MOVE file-name TO dir_files-name.
        APPEND dir_files.
       IF a_must_cs = no_cs.
         MOVE-CORRESPONDING file TO file_list.
         APPEND file_list.
       ELSE.
         IF file-name CS a_must_cs.
           MOVE-CORRESPONDING file TO file_list.
           APPEND file_list.
         ENDIF.
       ENDIF.
      ENDDO.
    ENDFUNCTION.
    *&      Form  filename_useable
          text
         -->A_NAME     text
         -->A_USEABLE  text
    FORM filename_useable USING a_name a_useable.
    *--================--
      DATA l_name(75).
      l_name = a_name.
      IF l_name(4) = 'core'.
        a_useable = sap_no.
      ELSE.
        a_useable = sap_yes.
      ENDIF.
    ENDFORM.                    "FILENAME_USEABLE
    With this I obtain all the archives XML of that route in a table
    DATA: zfiles LIKE STANDARD TABLE OF zdir_files WITH HEADER LINE.
    CALL FUNCTION 'ZGET_DIRECTORY_FILE'
      EXPORTING
        name_of_dir = dsn
      TABLES
        dir_files   = zfiles.
    IF sy-subrc = 0.
      LOOP AT zfiles .
        IF  zfiles-name+0(2) = 'O_' AND
            zfiles-name+2(3) = sy-mandt AND
            zfiles-name+5(1) = '_' AND
           zfiles-name+22(4) = '.xml'.
          file = zfiles-name.
    endloop.
    endif.
    I hope this helps you.
    Regards.

  • About application server

    Hi All,
    I created a log file in application server, but lot of dump created in the file(very big file).
    I am using Delete dataset <filename> ,but that file is not deleting.
    Please help me.

    check if sy-subrc = 0.
    after delete dataset statement.
    First you open dataset for input which will retun sy-subrc if the file exists.
    then proceed for delete dataset
    Regards
    Vasu

  • Hash coming after each character in application server xml file

    Hi All,
    I am stuck up in one issue wherein we need to transfer xml files to al11 and then dump these files from application server to a remote location.
    Since the SAP system is ECC6.0 I can safely use Simple transformations for conversion to XML format and then for transfer i have done OPEN DATASET IN BINARY MODE. I have checked for text mode in case of xml files is not working.
    Now the files coming in al11 have hash after each character. Please note hash is coming after each character and not each record. Though files when downloaded to presentations server or FTPed to remote location are coming fine but in al11 these seems to be weird.
    Here is an example of what i am getting in al11.
    ###<#?#x#m#l# #v#e#r#s#i#o#n#=#"#1#.#0#"# #e#n#c#o#d#i#n#g#=#"#u#t#f#-#1#6#"#?#>#
    #<#i#n#t#_#d#a#t#a#>#<#i#t#e#m#>#<#I#C#O#>#1#2#3#4#5#6#7#8#9#4#5#<#/#I#C#O#>#<#D#I#C#/#>#<#N#A#M#E#O#F#F#I#C#I#A#L#>#a#b#c#d#e#f#g#h#0#-#<#/#
    Could you please help in this regard to remove these unwanted characters.
    Thanks in advance for your inputs.
    ¬
    Shreya

    I think this is something special regarding UniCode(CodePage) and the defaultview in AL11.
    I made some tests - uploading data with CG3Z or OPEN Dataset.
    There are some differences between CG3Z and OPEN Dataset regarding unicode transformation.
    but this is still unknown for me, too.

  • I need information about Application Server Features

    I am looking for detailed information regarding what the Application Server offers and what are the possibilities, both Technichal and Business related. I have looked at the oracle web-site. But information seems to be scattered in multiple pdf and other documents. Is there a better source for the information?
    Thanks

    Hi,
    You can have a look at the Oracle Application Server Concepts 10g Release 2 (10.1.2) - it details the Technical & Business possibilities to a reasonable degree :-
    http://download-west.oracle.com/docs/cd/B14099_19/core.1012/b13994/toc.htm
    Regards,
    Sandeep

  • About Application Server problem.

    My Application Server has installed Win2003 .
    Do i must install windows terminal server on the Win2003 if i want to run window application?

    Yes, you would need to have Windows Terminal Services enabled on the server first.
    See:
    http://docs.sun.com/source/819-4309-10/en-us/wcp/gettingstarted/terminal_server_config.html
    for additional configurations

  • Setting Derby system property in Sun Application Server batch file

    Hi all,
    I am trying to set up a home directory for my Derby databases other than the default C:\Sun\AppServer\lib that is used when asadmin.bat runs.
    I have found in the derby documentation you can set the derby.system.home System Property using -Dderby.system.home="C:\databases" and I have tried to do this in the asadmin.bat file next to all the other system properties containing the -D option.
    But still no luck, when I load the server using asadmin and check the server log file I can tell the property is not being set. I can also tell its not being set because I can't ping my database connection in the admin console. Any ideas anyone?
    Much appreciated,
    Alman

    Here is what I tried.
    No jndiname works but when I leave the value empy I get the result (see end)
    Properties props = new Properties();
    props.put("java.naming.factory.initial", "com.sun.jndi.cosnaming.CNCtxFactory");
    props.put("java.naming.provider.url", "iiop://localhost:3700");
    InitialContext initialContext = new InitialContext(props);
    //queueConnectionFactory = (QueueConnectionFactory) initialContext.lookup( "jms/qschdinfact");
    //queue = (Queue)initialContext.lookup("jms/qschdin");
    Enumeration en = initialContext.listBindings("");
    while(en.hasMoreElements()) {
    Binding b =(Binding)en.nextElement();
    System.out.println(b);
    ServerObject: com.sun.corba.se.internal.iiop.CDRInputStream_1_0$1:com.sun.corba.se.internal.iiop.CDRInputStream_1_0
    intakefacade: com.sun.corba.se.internal.iiop.CDRInputStream_1_0$1:com.sun.corba.se.internal.iiop.CDRInputStream_1_0
    commonfacade: com.sun.corba.se.internal.iiop.CDRInputStream_1_0$1:com.sun.corba.se.internal.iiop.CDRInputStream_1_0
    J2EE_UNIQUE_VALUE_GEN: com.sun.corba.se.internal.iiop.CDRInputStream_1_0$1:com.sun.corba.se.internal.iiop.CDRInputStream_1_0
    trackfacade: com.sun.corba.se.internal.iiop.CDRInputStream_1_0$1:com.sun.corba.se.internal.iiop.CDRInputStream_1_0
    hsface: com.sun.corba.se.internal.iiop.CDRInputStream_1_0$1:com.sun.corba.se.internal.iiop.CDRInputStream_1_0
    DatabaseInformation: com.sun.corba.se.internal.iiop.CDRInputStream_1_0$1:com.sun.corba.se.internal.iiop.CDRInputStream_1_0
    Realm_Manager: com.sun.corba.se.internal.iiop.CDRInputStream_1_0$1:com.sun.corba.se.internal.iiop.CDRInputStream_1_0
    SerialContextProvider: com.sun.corba.se.internal.iiop.CDRInputStream_1_0$1:com.sun.corba.se.internal.iiop.CDRInputStream_1_0
    usergroups: com.sun.corba.se.internal.iiop.CDRInputStream_1_0$1:com.sun.corba.se.internal.iiop.CDRInputStream_1_0
    intakereporter: com.sun.corba.se.internal.iiop.CDRInputStream_1_0$1:com.sun.corba.se.internal.iiop.CDRInputStream_1_0
    Help please

  • Application server Excel file to Internal table

    Hi experts,
    I have an excel file on the App server.
    I need to upload it to internal tables.
    Pls let me knw how this can be done....
    Thanks in advance
    Note : Valid answers will be rewarded!!

    Gayathri,
    Try with below 2 methods.
    1.
      DATA : l_t_intern TYPE kcde_cells OCCURS 0 WITH HEADER LINE.
    DATA : l_f_index TYPE i.
    DATA : l_f_start_col TYPE i VALUE '1',
    l_f_start_row TYPE i VALUE '2',
    l_f_end_col TYPE i VALUE '38',
    l_f_end_row TYPE i VALUE '65536'.
    FIELD-SYMBOLS : <l_fs>.
    CALL FUNCTION 'KCD_EXCEL_OLE_TO_INT_CONVERT'
    EXPORTING
    filename = p_i_path
    i_begin_col = l_f_start_col
    i_begin_row = l_f_start_row
    i_end_col = l_f_end_col
    i_end_row = l_f_end_row
    TABLES
    intern = l_t_intern.
    Assign uploaded XL fields to the fields of the target internal table
    SORT l_t_intern BY row col .
    LOOP AT l_t_intern .
    MOVE l_t_intern-col TO l_f_index .
    ASSIGN COMPONENT l_f_index OF STRUCTURE g_t_upload TO <l_fs> .
    MOVE l_t_intern-value TO <l_fs> .
    AT END OF row .
    APPEND g_t_upload .
    ENDAT .
    ENDLOOP .
    ENDIF .
    2>
    code
    DATA: v_string TYPE string.
    DATA: v_hex TYPE x VALUE '09'.
    DATA: BEGIN OF itab OCCURS 0,
    matnr TYPE matnr,
    werks TYPE werks_d,
    END OF itab.
    OPEN DATASET '/tmp/test.xls' FOR INPUT.
    CHECK sy-subrc = 0.
    DO.
    READ DATASET '/tmp/test.xls' INTO v_string.
    IF sy-subrc 0.
    EXIT.
    ENDIF.
    SPLIT v_string AT v_hex INTO itab-matnr itab-werks.
    ENDDO.
    CLOSE DATASET '/tmp/test.xls'.
    Pls. reward if useful.....

  • About application server and database sever

    where does apllication server and database server located in a us client project
    Edited by: madhu sudhan on Feb 21, 2008 11:02 AM

    Interface: it is a program that performs communication with External system from SAP.
    There are two types of interfaces:
    1. Inbound Interface: External system sends the data to SAP
    2. Outbound Interface: SAP sends the data to External system.
    Let's take a scenario:
    There are two Systems SAP ERP and Seibel CRM
    Scenario1: Whenever an Order is created in Seibel CRM system it has to be transferred to SAP where the Order confirmation, Delivery and Billing will be performed. This can be enabled by using IDOC as inbound interface.
    Scenario2: Whenever a New customer is Created in SAP ERP this customer data has to be transferred to Seibel CRM using Outbound IDOC / RFC.
    Basically interfaces are implemented using RFC, BAPI, ALE/IDOC.
    INTERNALLY SAP IS 3-TIER ARCHITECTURE

  • How to edit flat file in application server

    Hi all,
    I have requirment of flat file load. User will update flat file and I need to upload data in cube. I am done with loading data from application server flat file to cube Now I want to know where this file will be stored so user can update the data .
    Do i need to store it some where in application sever only ? I checked my current file data but it's not in editable form.
    Please let me know your expert suggestion.
    Thanks.
    P.S. - Point will be provided as required.

    Neither user or you can not upload or edit the CSV files directly from the AL11(Application level directories).
    Using this Functional Module: ARCHIVFILE_CLIENT_TO_SERVER you can upload the file from your machine to AL11
    Note: you must have an authorization to execute this FM in PRD! otherwise you can follow the below procedure.
    (Or)
    As you data flow is from a flat file, you can ask your basis team to run a FTP program, so that when ever user give a new file every day, using the FTP program the latest file will upload into the AL11 directories. you can execute data using the Info package as usual  from AL11.
    Edited by: YJV on May 23, 2011 12:10 PM

  • Japanese character problem while downloading file to application server

    Hello All,
    We are facing a strange problem while downloading a file to application server when file contains japanese text.
    We are downloading vendor and customer information in a flat file format on application server. When the login language is EN program show ouput in a properly formatted manner.
    When the login language is JA (japanese) program does download file with customer vendor data. I can see the description is japanese language but the formatting is gone for a toss.
    We are facing similar issue with other programs downloading files on the application server.
    I am using OPEN DATASET........ENCODING DEFAULT. and working on unicode enabaled ECC 6.0 system
    Quick help appriciated.
    Thanks!

    Hi
    Sometimes this also happens because of your desktop setting.Make sure that your OS also supports the JAPANESSE language.
    Ask your technical support team to enable them in your desktop.
    Thanks & Regards
    Jyo

Maybe you are looking for

  • Scheduling a report in bi publisher

    Hi guys, I am new to BIP Can any one help me out in how to schedule a report through email in BI Publisher?? Regards, Sai

  • I want to connect a usb drive via adapter cable to...

    I want to connect a usb drive via adapter cable to my nokia C2-01.is this phone support usb otg feature as in nokia x2-00?if not then please recomend a method to connect a usb drive to this phone.. Solved! Go to Solution.

  • Intel Galileo and Bluetooth(Master)

    Hello Everyone, How would you go about bluetooth usage on the Galileo? I bought an Intel 6235 and I also bought and arudino bluetooth shield. For the bluetooth shield It seems though if you want to use it as a master it does not work.  Whenever I rea

  • Broken Hinges Compaq Presario C555nr Laptop

    I am sooo desperate! Can someone PLEASE tell me how to replace the above hinges? I was told it was not very difficult and I would find instructions here in pdf form. I have searched many hours and can't find it. Both hinges are now broken.  Thank you

  • 4.2 Theme 25 issue/help

    Hi all I am try to create multiple form on same page , I aligned all the region using grid alignment properties (create my own insert 's) everything works like a charm on desktop and smartphone but not on IPAD Region seem like cluttering into each ot