Different views

hi experts,
we have 4 types of views.
1. database view
2.projection view
3.maintanance view
4.help view
i want to know the difference among them. can anyone plz help me to know abt individual view, and the difference among them. give me the data abt each view, n the difference among them.
thanks in advance for ur responce.

Different Types of Views
1. Database View
Creating a Database View Locate the document in its SAP Library structure
Procedure
1. Enter an explanatory short text in the field Short text.
You can for example find the view at a later time using this short text.
2. Define the tables to be included in the view in the Tables field of the Tables/Join conditions tab page.
Keep in mind that you can only include transparent tables in a database view.
3. Link the tables with
join conditions.
If there are suitable foreign keys between the tables, you should copy the join conditions from these foreign keys (see Structure link Foreign Key Relationships and Join Conditions).
Place the cursor on a table name and choose Relationships. All foreign keys to other tables defined for this table are displayed. Select the foreign keys and choose This graphic is explained in the accompanying textCopy. The join condition is now derived from the definitions in the foreign key.
If you only want to see the foreign key relationship existing between two tables, you must first select these two tables (click on the first column of the input area Tables) and then choose Relationships.
4. On the View fields tab page, select the fields that you want to copy to the view.
Choose Table fields. All the tables contained in the view are displayed in a dialog box. Select a table. All the fields contained in this table are displayed. You can copy fields by selecting them in the first column and choosing This graphic is explained in the accompanying textCopy.
You can also include an entire table in the view (see Includes in Database Views).
5. On the Selection conditions tab page, you can (optionally) formulate restrictions for the data records to be displayed with the view (see
Maintaining Selection Conditions for Views).
The selection conditions define the data records that can be selected with the view.
6. With Goto ® Technical settings, you can (optionally) maintain the technical settings of the database view.
You can define whether and how the database view should be buffered here. Proceed as for the technical settings of a table (see Structure link Maintaining Technical Settings). Note that only the settings for buffering can be maintained for database views.
7. On the Maintenance status tab page, select the
maintenance status of the database view.
If the view contains more than one table, the maintenance status read only cannot be altered.
8. Save your entries. You are asked to assign the view a development class.
You can change this development class later with Goto ® Object directory entry.
9. Choose This graphic is explained in the accompanying text.
Result
When a database view is activated, the corresponding view is also automatically created in the database if the base tables of the view were already created there.
At activation, a log is written; it can be displayed with Utilities ® Activation log. If errors or warnings occurring when the view was activated, they are displayed directly in the activation log.
If the base tables are not yet created in the database, this is recorded in the activation log. The view is nevertheless activated in the ABAP Dictionary. In this case you can create the relevant view on the database later with the database utility.
Other Options
Create documentation: You can create information about using the view with Goto
® Documentation. This documentation is also output for example when you print the view. Change data element of a view field: Select the Mod (Modify) column in the View fields tab page. The Data element field is now ready for input. You can enter a data element that refers to the same domain as the data element of the assigned table field here. Cancel the Mod flag if you want to use the data element of the assigned table field again.
Display view data: With Utilities
® Contents you can determine which data can be selected with the view. Display create statement: With Extras
® CREATE statement you can display how the view was created in the database. The statement that was executed when the version of the view currently being edited was created in the database is displayed. Check the definition of the view in the database: With Utilities
® Database object ® Check you can determine whether the definition of the view in the database is consistent with the active version of the view. With Utilities ® Database object ® Display you can display the definition of the view in the database. Check the runtime object of the view: With Utilities
® Runtime object ® Check you can determine whether the definition of the view in the ABAP Dictionary maintenance screen is identical to the specifications in the runtime object of the view. With Utilities ® Runtime object ® Display you can display the runtime object of the view.
2. Projection View
Creating Projection Views Locate the document in its SAP Library structure
Procedure
1. Enter an explanatory short text in the field Short text.
You can for example find the view at a later time using this short text.
2. Enter a table name in the field Base table.
A projection view always contains exactly one table.
3. Select the fields of the base table that you want to include in the view.
Choose Table fields. The fields of the table are now displayed in a dialog box. You can copy fields by selecting them in the first column and choosing This graphic is explained in the accompanying textCopy.
4. Save your entries.
You are asked to assign the view a development class. You can change this development class later with Goto ® Object directory entry.
5. Choose This graphic is explained in the accompanying text.
Result
The help view is activated. At activation, a log is written; it can be displayed with Utilities ® Activation log. If errors or warnings occurring when the view was activated, they are displayed directly in the activation log.
Other Options
Create documentation: You can create information about using the view with Goto
® Documentation. This documentation is output for example when you print the view. Change data element of a view field: Select column Mod (modification) for the particular view field. The Data element field is now ready for input. You can enter a data element that refers to the same domain as the data element of the assigned table field here. Cancel the Mod flag if you want to use the data element of the assigned table field again.
Change maintenance status: The
maintenance status determines how you can access the view data from ABAP programs (read only, read and change). Choose Extras ® Maintenance status. A dialog box appears in which you can select the maintenance status of the view. Check functions: With Utilities
® Runtime object ® Check you can determine whether the definition of the view in the ABAP Dictionary maintenance screen is identical to the specifications in the runtime object of the view. With Utilities ® Runtime object ® Display you can display the runtime object of the view.
3. Maintainence View
Maintenance View Locate the document in its SAP Library structure
Definition
Related data in several tables can be maintained together in a maintenance view.
Structure
A maintenance view has the samee key as its primary table. To ensure that the system can write the records inserted in a maintenance view correctly into the tables in the view, put all key fields of the primary table in a maintenance view.
Each entry in the primary table can have at most one dependent data record in the secondry table. The only exceptions are the text tables of tables in the view which have the additional key field Language. The system puts the logon language in the language field during the table maintenance. You cannot put the language field in the view explicitly.
You can maintain text table entries in other languages with the translation function in transaction SM30.
Caution
You must regenerate the maintenance dialog if you change the definition of a table/view with a generated maintenance dialog, e.g. add or remove fields, or change the maintenance attribute or a selection condition.
Maintenance Attributes
You can assign a maintenance attribute P to individual fields in the maintenance view definition in the Dictionary (SE11). It can be R (read only), H (hidden), or S (subset).
R (readonly)
A field flagged R is not ready for input by the user on the screen. When a new data record is created, it must be filled automatically in the background. To fill a field automatically in the background, create a routine for an event.
H (hidden)
A field flagged H is not displayed on the screen. This field must also be filled in the background by a routine at an event.
The system writes R and H fields to the database like all other fields when a new data record is saved.
S (subset)
A field flagged S restricts the work area.
The system only shows data records for which this subset field has the specified value. This restriction of the work area remains effective when you create new data records.
View Variant
You can define any number of view variants for an existing view. The view variants do not have their own generated maintenance dialogs, they use the base view. The view variants can differ from their base view by different selection conditions and a different field selection.
4. Help View
Creating Help Views Locate the document in its SAP Library structure
Procedure
1. Enter an explanatory short text in the field Short text.
You can for example find the view at a later time using this short text.
2. Enter the primary table of the view under Tables in the Tables/Join conditions tab page.
Only tables that are linked with the primary table (indirectly) with a foreign key can be included in the view.
3. Save your entries.
You are asked to assign the help view a development class. You can change this development class later with Extras ® Object directory entry.
4. If required, include more tables in the view. In a help view you can only include tables that are linked to one another with foreign keys.
Position the cursor on the primary table and choose Relationships. All existing foreign key relationships of the primary table are displayed. Select the foreign keys and choose This graphic is explained in the accompanying textCopy. The secondary table involved in such a foreign key is included in the view. The join conditions derived from the foreign keys (see Structure link Foreign Key Relationship and Join Condition) are displayed.
You can also include tables that are linked with a foreign key to one of the secondary tables already included. To do this, place the cursor on the secondary table and choose Relationships. Then proceed as described above.
For maintenance and help views, there are certain restrictions on the foreign keys with which the tables can be included in the view (see Restrictions for Maintenance and Help Views). The foreign keys violating these conditions are displayed at the end of the list under the header Relationships with unsuitable cardinality.
5. On the View fields tab page, select the fields that you want to copy to the view. The key fields of the primary table were automatically copied to the view as proposals.
Choose Table fields. All the tables contained in the view are listed in a dialog box. Select a table. The fields of the table are now displayed in a dialog box. Select the required fields in the first column and choose This graphic is explained in the accompanying textCopy.
6. On the Selection conditions tab page, you can (optionally) formulate restrictions for the data records to be displayed with the view (see
Maintaining Selection Conditions for Views).
The selection conditions define the data records that can be selected with the view.
7. Choose This graphic is explained in the accompanying text.
Result
The view is now activated. At activation, a log is written; it can be displayed with Utilities ® Activation log. If errors or warnings occurring when the view was activated, they are displayed directly in the activation log.
Other Options
Create documentation: You can create information about using the view with Goto
® Documentation. This documentation is output for example when you print the view. Change data element of a view field: Select column Mod (modification) for the view field. The Data element field is now ready for input. Enter the new data element there. You can enter a data element that refers to the same domain as the data element of the assigned table field here. Cancel the Mod flag if you want to use the data element of the assigned table field again.
Check functions: With Extras
® Runtime object ® Check you can determine whether the definition of the view in the ABAP Dictionary maintenance screen is identical to the definitions in the runtime object of the view. With Extras ® Runtime object ® Display you can display the runtime object of the view.
Regards,

Similar Messages

  • OBIEE report based on same criteria but different view based on filter

    Hi,
    I am trying to create a report in OBIEE 11.1.1.5 where In the same report using the same criteria, I can have different views which applies different filter.
    Suppose, I have a report criteria as
    Dim1, Dim2, Measure1, Measure 2.
    I want to create two pivot view based on the same data.
    One view will be showing data Dim1="Value1". The other view is duplicate of this view but will show data Dim1="Value2".
    Is it possible in OBIEE?
    basically what I want is work on the same dataset but different representation and show them in the same report. Please share your opinion.
    Regards,
    Tanveer.

    Hi,
    You create a new dim dummy column in criteria and in presentation level create new pivot table view use this dummy dimension column and filter with dim1=value2.
    give updates on this.
    Mark if Helpful/correct.
    Thanks.

  • How can I use sysnonym to hide two different views?

    hi,
    My question is how can I use 2 different users to login and they point to different views. However, in the program level, the view name always stand for "Test_View".
    I try to meet the requirements and do the followings:
    Step 1: In user A account, it creates two different views and also grant select to User B and User C respectively.
    Step 2: Login User B and create public synonym called "Test_View".
    Step 3: Login User C and create public synonym called "Test_View".
    I encounter the problem in Step 3 which is public synonym called "Test_View" is already exist. So, anyone can tell me once login and it will depend on which view you can see on program level.
    Thanks
    Amy

    As 399811 told you, you have to create private synonyms.
    "CREATE SYNONYM ...." instead of "CREATE PUBLIC SYNONYM ...."
    the private synonym has to created in each user.
    Joel Pérez

  • How to separate different views and parts of a single line of business(LOB) universal app for windows 8.1 with many users.

    Hello am an intermediate Windows Phone/Store Developer. Am currently in the process of implementing a LOB app that will have three different types users, an admin, a student, a teacher . Depending on how a user logs in i would like certain pages to be exposed
    to them and the rest to be hidden. The app will also store data temporally on a local db then sync regularly to an azure database(Can the recent entity framework 7 that supports store/phone apps allow code first databases or are there features still not fully
    accessible in WinRT apps)...This i believe can handle but also kindly point me out to existing implemented resources/examples i will appreciate very much.
    What am finding problematic is how to consume different app data stored by various users logged in for these different views. Will i need an asp web api is it really necessary cause i want to avoid it cause i have about three months to do it. I do not want
    to create three different apps and one ASP Web AP,  i want one single app and an api if possible, i know windows usually sandboxes apps hence app to app communication will be hard if not impossible. So my question is, is it possible to implement different
    user session management with a login (Windows Live ID) which i can abstract various parts of the app from them depending on the users login id in the app. E.g How can an admin logged in the same app as the student have access rights to certain pages in the
    app that a student will not see. How do i route different users to certain pages and can isolated storage store these persisting as a setting.
    How can i know which login id belongs to which of the three users? How do i then assign different access to different controls of the app with their id,provide custom views routes,access right,session management. I think i can do these without an ASP Web
    API is It wise? Building pages in the apps is easy but i want users to see different views of the app instead of one standard app depending on there login id, how can the NAVIGATION URI be used here. How can azure and features like active directory,azure mobile
    services. I know i have repeated the same things over and over and these might be complex for a free advise but as a windows dev these is my one stop shop. Any one with a view on how to approach these kindly show me the best directions. Thanks guys in advance.

    I suggest you have a look at this sample.
    https://code.msdn.microsoft.com/windowsapps/ListView-Interaction-ac044c3c. MainPage provides the framework to hold the content. At runtime, we create the Scenario collections and then bind to control. This approach can help you determine the type of users
    and provide some appropriate pages at runtime.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place. Click HERE to participate
    the survey.

  • Project Web App (PWA)/Sharepoint 2013: is there any way to display two different views of the Project Center PWA web part to the same user in a site collection?

    i want some of my users to see all the projects in the Project Center at my top-level site, and those same users to see only the projects they own at a subsite level in Project Center. that way they could see an 'all project' view on the homepage and only
    their projects on their dashboard pages (which also have an instance of Project Center web part on them). i have searched and searched but cannot find a solution to this. is there any way to acheive this functionality? thanks in advance for your assistance!

    I have tried this in the past, but was not successful, as far as I can recall. Once you access the project center webpart in one page, the view will be retained regardless where you see it again. (until you apply a different view or clear your browser cache). 
    May be an easier solution is to display a 'report' on the home page with ALL projects (much easier to do), and use the Project Center webpart for the My projects view as it is easier to achieve via Project Server Security, than a report.
    Cheers,
    Prasanna Adavi, Project MVP
    Blog:
      Podcast:
       Twitter:   
    LinkedIn:
      

  • Different view of the same query between users

    Hi at all,
    I strongly hope you can help me.
    The problem that i have is that:
    I have a different view of a query inserted in a workbook respect the view of the same query that have other users.
    In particular I watch in my query 4 fixed characteristic of the query ( Cost center, order type , controlling area, fiscal variant ), below the free characteristic block  and before data table.
    Instead other user watch only 3 fixed characteristics ( Cost center, order type , controlling area ).
    This is a problem because in the workbook there is a macro that reads the data from a fixed raw. So that this macro doesn't' t work in my workbook.
    I would specify that the workbooks is called from rules and not from fevorites.
    Thank you very much for your attention!
    Bye
    Fabio

    Hi Erwan,
    i have the SAPGUI version 3500.8.044 and the item you describes :
    Bex menu ( Business explorer -> Change Query -> Change variable values )
    let me to change the values of input variables.
    The new layout query, after the input of the new values, has the same rows of the fixed query value ( fyscal variant too).
    Thank you for your answer..
    bye
    Fabio

  • Navto a different view in the same page

    Is it possible to use the navto command to jump to a different view in a page or poiting to a position in a scrollable frame?

    Yes, use decimals in your navto page number. For example, navto://myarticle#2.3 jumps to a place between page 3 and 4 in a smooth scrolling article.
    For examples, see DPS Tips > Advanced Overlays > Scrollable Frame Links.

  • Instantiating a form as different views and merging them at the end of the workflow.

    Hi,
    I have a big doubt in implementing one of the crucial part of our workflow design.It goes like this.
    1.we have a form which is mainly classified into five types and a total of 16 subforms.
    2.the five types in which the form is divided is based on the approver and the type. of requests.
    3.different views of the whole same form have to be sent to the five approvers.
    4.once the approvers approve the request,a wait point must be present in the workflow,where it will wait for all the views of the form (which are approved) and must merge them into one single pdf form ie., the original form.
    so the change in the views of the total form must be reflected in the main form at the end while it is merging.
    also all the views of the form are to be merged in to one for the sake of arhiving and rendering it to pdf.
    so my questions are..
    1.How to add multiple views of the main form (xdp) in the workflow separately as individual xdp templates(based on the five types i mentioned)?
    2.How to merge the form views again in to single form or how to make the changes reflect in the main from when changes are made in their views.?
    thank u..
    Raghava Kumar V.S.S.

    MOBILE PHONE (BIRMINGHAM) LIMITED
    BUY UNLOCKED BRAND NEW MOBILE PHONES AND LAPTOP,DIGITAL CAMERA,GAMES,PLASMA TV.They are brand new and sealed in an original company box with complete accessories and one year international warrantee.
    NOTE : Minimum Order : 3 unit and get 1 free
    Sample Order...1unit to 5units
    Bulk Minimum Order : 10unit and get Extra 3unit
    Shipping fees : free Shipping : FedEx, DHL or UPS
    Delivery Time : 38hrs/48hrs.
    MOBILE PHONE (BIRMINGHAM) LIMITED
    Address: 376 COVENTRY ROAD, SMALL HEATH, BIRMINGHAM, WEST
    MIDLANDS, B10 0XE
    +447024036361
    Contact Person :Thomas larry
    Sales Manager
    DO CONTACT US [email protected]
    DO CONTACT US [email protected]
    DO CONTACT US [email protected]
    Nokia Phone.
    Nokia N95..$2800USD
    Nokia N93..$250USD
    Nokia N92.$200USD
    Nokia N97...$280USD
    Nokia N96...$280USD
    Nokia N83.$175USD
    Nokia N91.$180USD
    Nokia N90.$170USD
    Nokia N70.$150USD
    Nokia N71.$155USD
    Nokia N72..$160USD
    Nokia N73..$165USD
    Nokia E90 COMMUNICATOR..$300USD
    Nokia 7360.$165USD
    Nokia 7380..$175USD
    Nokia 8800 sirrocco...$200usd
    Nokia 7370..$170USD
    Nokia 8800$140USD
    Nokia 8801.$145usd
    Nokia N80.$160USD
    Nokia 7710.$145USD
    Nokia 7610.$120usd
    Nokia 9300$145USD
    Nokia 9500$170USD
    NOKIA 6230 for........$130usd
    NOKIA 6230i for.......$140usd
    NOKIA 6260 For........$130usd
    NOKIA 9300 For........$130usd
    NOKIA 9500 For........$140usd
    NOKIA 7610 For........$150usd
    NOKIA 6680 For........$130usd
    NOKIA 6682 For........$140usd
    NOKIA 7650 For........$150usd
    NOKIA E60 for.........$150usd
    NOKIA E61 for.........$155usd
    NOKIA E70 for.........$160usd
    Motorola Phone
    Mitac MIO 8930$280usd
    Motorola razor v3$130usd
    Motorola razor v3 pink edition..$130usd
    Motorola v3X..$140usd
    Motorola MPX300.,$150usd
    Motorola V3i..$150usd
    Motorola L7$140USD
    plasma sony 32?'.$400usd
    MOTOROLA SLVR V8 For........$150usd
    MOTOROLA A1000 For...........$160usd
    MOTOROLA A1010 For...........$200usd
    MOTOROLA MPX 220 For........ $120usd
    MOTOROLA MPX 300 For........ $140usd
    Sony Ericsson w950i.........$170usd
    Sony Ericsson w900i.$140usd
    Sony Ericsson W800i.$135usd
    sony Ericsson w700..$130usd
    sony Ericsson w600i.$125usd
    sony Ericsson w300..$120usd
    sony Ericsson w950..$200usd
    Sony Ericsson p990i.$145usd
    Sony Ericsson m600i.$175usd
    sony Ericsson m600..$170usd
    Sony Ericsson p990..$140usd
    Sony Ericsson p910i.$125usd
    SONY ERICSSON K700i For......$130usd
    SONY ERICSSON k750i For......$140usd
    Sony Ericsson W810i For......$155usd
    Sony Ericsson S700i For......$140usd
    Sony Ericsson: Z1010 For.....$160usd
    SAMSUNG D600 For......$120usd
    SAMSUNG D720 For......$130usd
    SAMSUNG D730 For......$135usd
    SAMSUNG D800 FOR......$135usd
    SAMSUNG D820 For......$140usd
    SAMSUNG Z500 For......$150usd
    Apple iphones.................$200usd
    Apple ipods 80 GB............$180usd
    Apple ipods 60 GB............ $150usd
    PlayStation 3 20 GB.............$220USD
    Playstation 60 GB..................$250usd.
    i-mate jas ja and other.
    Treo 650 for. $150usd
    Treo 700 for. $180usd
    Sick kick for $140usd
    Side kick 2 for..$130usd
    Side kick 3 for..$150usd
    Eten m 500 for.. $100usd
    Dvx-pod for.. $50usd
    i-mate jas jar for. $160usd
    i-mate jam for.. $170usd
    i-mate k jam for.$180usd
    Eten m 500 for.. $150usd
    Treo 650$130usd
    Treo 600$120usd
    Treo 700w..$140usd
    Pioneer CDJ-1000MK3 ------------$900.00
    Pioneer DJ Effector - Red-----------$350.00
    Pioneer System Case (CA-CMX5).......$450.00
    Pioneer CDJ-800MK2 Digital Vinyl Turntable=--$520.00
    Pioneer Dual Rackmount CD Player--------$600.00
    Pioneer Pro DJ Mixer -------------$720.00
    Pioneer Rack mount pro DJ mixer---------$780.00
    Pioneer 96Khz / 24 bit digital mixer.-----$1,000.00
    Pioneer Flat Speakers (ea.)-------------$1,100.00
    Pioneer Professional DVD Turntable-------$2,000.00
    Pioneer Pro DJ 96Khz 24bit Mixer---------$2,200.00
    Pioneer Professional DVD Turntable------$2,220.00
    Pioneer Djm-800 4 Channel Dj Mixer W/midi---$1,000.00
    Pioneer DJM-400 Professional DJ Mixer------$300.50
    Pioneer Pro DJ DJM1000 Pioneer Top of the Line
    D---$2,100.95
    Pioneer DJM-1000 Professional Club DJ
    Mixer----$2,110.00
    Pioneer Super DJ mixer - Pioneer DJM909------$900.00
    Pioneer DJM-600-------------------------------$750.00
    Pioneer CDJ 800 MK II / DJM 600 CD DJ
    Package----$2,100.00
    Pioneer DJM-1000 Mixer--------------$2,200.00
    Pioneer Model: DJM-600K--------------$800.00
    Blackberry
    Brand new BlackBerry 8700r....$200
    Brand new Blackberry 8700c....$200
    Brand new Blackberry 8700g....$210
    Apple Iphone.....................for Just $400
    APPLE LAPTOPS.
    Apple NoteBook Laptop for just $550
    Apple Mac Book...for just $450
    Apple Mac Pro .....for just $500
    Apple Laptop 17inch for just....$400
    APPLE IBOOK 12" 1.33GHZ...............$350
    APPLE IBOOK 14" 1.42GHZ.....................$380
    APPLE IBOOK G4 1.33GHZ..................$370
    APPLE IBOOK G4 1.42GHZ....................$400
    APPLE G4 POWERBOOK 1.5GHZ SUPERDRIVE WITH 15
    INCHDISPLAY........$580
    APPLE G5 POWERMAC 2.0GHZ DESKTOP
    COMPUTER...................$620
    APPLE G4 POWERBOOK 1.5GHZ SUPERDRIVE WITH 17 INCH
    DISPLAY........$550
    All Toshiba laptops
    Toshiba Satellite PRO L10.. $320
    Toshiba M200 $500
    Toshiba R100 $450
    Toshiba Qosmio E10 $750
    Toshiba Satellite PRO L20.. $250
    Toshiba M100 $680
    Toshiba M300 $740
    Toshiba Portege A200. $320
    Toshiba Satellite L10 $330
    Toshiba Qosmio F20 $500
    *Dell Laptops
    Dell Latitude D600 $290
    Dell Latitude D500t.. $200
    Dell Inspiron 6000 $350
    Dell Latitude D505 $340
    Dell Latitude D610 $460
    Dell Latitude D510 $320
    Dell Inspiron 9300 $530
    Del Xps M2010..............................$400
    Del Xps M1710..................................$350
    Sony Laptops
    Sony VAIO VGN-T1 $680
    Sony VAIO VGN-FS315 $420
    Sony VAIO VGN-S3 $450
    Sony VAIO VGN-TX1.. $840
    Sony VAIO VGN-FS215 $310
    Sony VAIO VGN-S4 $470
    Sony VAIO PCG-K35.. $550
    Sony KDE-61XBR950 Television..3000usd
    Sony KDE-42XBR950 Television..1000usd
    Sony KDE-42XBR950 Television.1000usd
    Sony PFM-42X1/S Television.500usd
    Sony KDE-42XS955 Television..550usd
    Sony FWD-50PX1/S Television1200usd
    Sony KLV-32M1
    Television400usd
    SAMSUNG PLASMA TV
    SAMSUNG HPP3761 Plasma TV $610
    Samsung PPM42M5S Plasma Display $505
    Samsung SPP4251 Plasma TV $700
    Samsung PPM42M5H Plasma Display $550
    Samsung HPR4252 Plasma $680
    Samsung HPR4262 Plasma TV $450
    Samsung HPR4272 Plasma $560
    Samsung PPM50M5H Plasma Display $870
    Samsung HPR5052 Plasma $670
    Samsung HPR5072 Plasma $780
    Samsung HPP5581 Plasma TV $780
    Samsung PPM63H3Q Plasma Display $700
    Samsung HPR6372 Plasma $820
    PANASONICS TELEVISIONS
    Panasonic TH-42PD50U Television600usd
    Panasonic TH-42PX50U Television..1000usd
    Panasonic TH-50PX50U Television..1500usd
    Panasonic TH-42PWD6UY Television.500usd
    Panasonic TH-42PD25U/P Television400usd
    Panasonic TH-42PHD8UK Television450usd
    Panasonic TH-65PHD7UY Television..2500usd
    Pioneer PDP-5050HD Television.1000usd
    Panasonic TH-37PX50U Television.500usd
    Panasonic TH-42PX500U Television800usd
    HITACHI PLASMA TV
    Hitachi CMP4211u Plasma $850
    Hitachi CMP4212u Plasma $350
    Hitachi 42HDF52 Plasma HDTV $400
    Hitachi 42HDT52 Plasma TV $440
    Hitachi 55HDS52 Plasma HDTV $480
    Hitachi 55HDT52 Plasma TV $650
    Hitachi CMP-55HDM71 Plasma $420
    AOC ENVISION PLASMA TV
    AOC Envision A42W64 Plasma $400
    MAXENT PLASMA TV
    Maxent MX-42VM7 Plasma EDTV $370
    Maxent MX-50X2 Plasma $300
    NEC PLASMA TV
    NEC 42VP5 Plasma TV $400
    NEC 42VM5HA Plasma TV $470
    NEC 42VR5HA Plasma

  • How to upload different views of customer master data using LSMW-IDOC

    I need to upload customer master data  using LSMW Idoc method for my client. Now customer will have different views like main view, Sales data, Company code data, Partner function data etc. And except main data all other data can be multiple for each customer. We are going to upload data from tab delimited .TXT file. Should I propose different LSMW for upload different views for the customer from different .TXT files? or we can upload all the customer related data (like main view data and partner function data )from a single .TXT file. Kindly suggest which one in convenient and how we can prepare the data file in both cases.

    convinient is the method that you can handle.
    but as the guy who loads the data you have to load the data like they are available, like it is convinient for others to prepare the data.
    In general there is no problem to use an IDOC method to load a customer master with multiple comany codes and several sales orgs in one shot.
    the data can be in one source file, but need then to be maintained in a certain way
    Example1: all data in 1 structure
    GD1 - CC1 - SO1
    GD1 - CC2 - SO2
    GD1 - CC2 - SO3
    in this case the GD (general data) is redundand in each line which has different Company code data or different Sales Org data
    Example2: all data in 3 sturcures but one file
    GD1
    .CC1
    .CC2
    ..SO1
    ..SO2
    ..SO3
    Example3: data delivered in 3 files - you join the files in LSMW, they must have a common identifier like the old customer number in the beginning of each file
    FILE General data:
    GD1
    GD2
    GD3
    file Compamy code data:
    CC1
    CC2
    CC3
    file Sales org data:
    SO1
    SO2
    SO3
    LSMW is flexible and can handle each of this scenarios, are you flexible too?

  • I created a pdf form and then iported it to Forms Central for distribute. It is now loaded to my website and setup so a person clicks on the link to open the form. At this point they then have to go to upper right to open form using a different view. I wo

    I created a pdf form and then imported it to Forms Central for distribute. It is now loaded to my website and setup so a person clicks on the link to open the form. At this point they then have to go to upper right to open form using a different view. I would like the form to open directly in Adobe Reader form to make it easier to enter information. Thanks, Ike

    If you created it in Forms Central, you have to edit it there. I believe Forms Central is similar to LiveCycle Designer in that the form created is no longer able to be edited in Acrobat. I might be wrong, but that is my understanding. You add the submit button in Forms Central. Within Acrobat, you should be able to go to the forms menu and Manage Data to save the data to an Excel file. Others better with forms should be by to clarify things, but this should get you started. In the future you might find it better to post a forms question in the forms discussions.

  • Different View for same document library on a Wiki Page

    Hi,
    I am developing a Provided hosted app which have a functionality to create a document library with two Views. Also we need to show this document library in a wiki page with two different views.
    I am using CSOM (C#). I am able to create the document library and the two views programmatically. But when I add the document library in the wiki page the default view (All Documents) is shown for both the web parts. There is an hidden view created with
    the WebPartDefinition from the xml provided through code. 
    Through CSOM we are able make a View as default with the link below.
    http://sharepoint.stackexchange.com/questions/90433/add-document-library-xsltlistviewwebpart-using-csom-or-web-services
    In my case both the webparts will get the same view, where I need different view for same document library in a wiki page.
    Also I tried to update the web parts with the following code.
    string viewString = @"<View Name='{0}' MobileView='TRUE' Type='HTML' Url='/SitePages/Home.aspx' Level='1' BaseViewID='1' ContentTypeID='0x' ImageUrl='/_layouts/15/images/dlicon.png?rev=23' >
    <Query><Where><Eq><FieldRef Name='KeyDocument'/><Value Type='Boolean'>1</Value></Eq></Where></Query>
    <ViewFields><FieldRef Name='FileLeafRef'/><FieldRef Name='DocumentOwner'/><FieldRef Name='Modified'/>
    <FieldRef Name='_UIVersionString'/><FieldRef Name='Editor'/></ViewFields>
    <RowLimit Paged='TRUE'>30</RowLimit><JSLink>clienttemplates.js</JSLink><XslLink Default='TRUE'>main.xsl</XslLink>
    <Toolbar Type='Standard'/></View>";
    WebPartDefinition wpd = wpfound.FirstOrDefault();
    string formattedstring = String.Format(viewString, wpd.Id);
    wpd.WebPart.Properties["XmlDefinition"] = formattedstring;
    wpd.SaveWebPartChanges();
    web.Context.ExecuteQuery();
    I created two views (viewString) as shown above.
    The above code did not throw error, but it did not update the web part.
    Please advise how to move forward.

    Hi Samir,
    When we click outside of the list view webpart on a webpart page (or allitems.aspx page) with containing multiple webparts, the list view webpart will lose the focus, and the selected items will be deselected, this is by design.
    You can look at the following article with using the approach/workaround of Javascript to prevent the specified list view webpart from losing focus.
    http://sharepoint.stackexchange.com/questions/44360/list-view-loses-focus-when-additional-webpart-added-to-page
    //Set focus on our list web part
    var webPart = document.getElementById('WebPartWPQ1');
    WpClick({target: webPart});
    //Prevent it from losing focus
    SP.Ribbon.WebPartComponent.$3_1.deselectWebPartAndZone = function() { };
    Thanks
    Daniel Yang
    TechNet Community Support

  • [Solved] subtle wm launching terminal application in different view

    Hello I'm trying to launch a terminal application in a different view from the other terminal windows I added the following to subtle.rb:
    grab "S-W-i", "urxvt -e alsamixer"
    tag "chat" do
            match  "alsamixer"
            gravity :right
    end
    and I dunno, I just don't have a clue on what else I could need to do.
    Last edited by syltman (2011-06-02 10:17:29)

    Varg wrote:
    Try launching the grab with the name option for urxvt:
    urxvt -name centerim -e centerim
    Forgot to mention that in my previous post...
    Alright now centerim is only on one view however all other urxvt terminal also spawn in that view.
    Edit: solved it, should've just removed the :class urxvt thingy. Thanks!
    Last edited by syltman (2011-06-02 10:17:58)

  • I get 3 different views of a page

    hi I was interested in this product and decided to give it a try, but now I dont get how it works.
    I get 3 different views of my page, first is design view, second live preview, and the third is preview in a browser that is grately different.
    there is what I get:
    everything looks good in live but in browser everything is terrible what am I missing?
    here is mine hedder code and css:
    <?php ob_start();?>
    <!DOCTYPE html>
    <html class="html">
    <head>
      <title>Head</title>
      <!-- CSS -->
      <link rel="stylesheet" type="text/css" href="css/head_style.css"/>
      <!-- Other scripts -->
       </head>
    <body>
    <div id="header">
      <img src="images/3.jpg" >
      <ul id="menu">
        <li ><a href="index.php">            Home</a>
        </li>
         <li  ><a href="templates.php">            Templates</a>
         </li>
               <li  ><a href="blog.php">Blog</a>
         </li>
               <li  > <a href="about-us.php">            About us</a>
         </li>
        <li > <a href="support.php">            Support</a>
        </li>
         <li id="paskutinis" > <a href="support.php">            Support</a>
         </li>
      </ul>
    <p id="musetemplatespro" ><a href="index.php">MuseTemplatesPro.com</a></p>          
         <a id="cart" href="cart.php">Your Cart</a>
    </div>
    </body>
    </html>
    <?php ob_end_flush(); ?>
    CSS:
    <style>
    /** head **/
    #menu ul {list-style:none;
    position:absolute; 
    margin-left:0px;
    #menu li {
              float: left;
              width: 160px;
              background-color: #444444;
              text-align: center;
              border-right: 2px solid white;
              display: block;
              height: 30px;
              line-height: 30px;
              margin-top: 300px;
              list-style: none;
              margin-left: 0px;
    #menu li#paskutinis {
              float: left;
              width: 150px;
              background-color: #444444;
              text-align: center;
              border-right: 3px #444444;
              display: block;
              height: 30px;
              line-height: 30px;
              margin-top: 300px;
              list-style: none;
    #header {
              background-image: none;
              position: absolute;
              height: 250px;
              width: 960px;
              left: 100px;
              margin-top: 0px;
    #header img{
              position: absolute;
              left: 0px;
              top: 0px;
              width: 960px;
    #menu li ul li {
    float:none;
    width:150px;
    text-align:left;
    display:block;
    border-top:1px solid white;
    div#menu ul#menu_   {
    float:none;
    width:150px;
    text-align:left;
    padding-left:155px; 
    border-top:1px solid white;
    #menu ul#q   {
    position:absolute;
    top:0px;
    left:0;
    visibility:hidden;
    #menu li#q:hover ul {
    visibility:visible;
    #menu li:hover ul {visibility:visible;}
    #menu a {
              text-decoration: none;
              color: white;
              font-family: Helvetica, Arial, sans-serif;
              display: block;
    #menu  li:hover {background-color:maroon;}
    #menu {
              position: absolute;
              width: 960px;
              height: 30px;
              margin-top: 0px;
              left: -40px;
              top: -10px;
    #head
    margin-left:200px;
    width:923px;
    background-image: url('http://musetemplatespro.com/images/head.jpg');
    height: 300px;
    #head
    margin-left:200px;
    width:923px;
    background-image: url('http://musetemplatespro.com/images/head.jpg');
    height: 300px;
    a#cart
              position: absolute;
              margin-left: 1000px;
              margin-top: -55px;
              text-decoration: none;
              color: white;
              font-family: Helvetica, Arial, sans-serif;
              font-size: 25px;
              padding: 5px;
              border: 1px solid white;
              left: -180px;
              top: 296px;
    p#musetemplatespro
              margin-top: -1600x;
              margin-left: 65px;
              position: absolute;
              color: white;
              font-family: Helvetica, Arial, sans-serif;
              text-decoration: none;
              left: 25px;
              top: 19px;
    p#musetemplatespro a
    color:white;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 35px;
    text-decoration:none;
    </style>
    ul {
              left: 0px;

    Design View is just an approximation of how the page will appear minus any scripting. Never rely on it for anything more than a quick reference "click the element to select it" style interface.
    Live View is a "mostly there" version of a Webkit browser (Safari or Chrome). It's more accurate, but still doesn't give you everything.
    Preview in Browser is your page in an actual browser that is installed on your machine (not an emulation) and should be used to determine how your page will actually appear. The more browsers you preview in, the better. I test in IE10 (9, 8 and 7 in dev tools), Firefox, Chrome, Safari and Opera using PIB.
    Make sure to run your pages through the validator at http://validator.w3.org to catch any coding errors. HTML errors are one of the biggest causes of display problems between Design View, Live View and each individual browser and browser version.

  • Very urgent !! Doc. types & Doc. no ranges in different views in ECC 6.0

    Hello Experts,
    Can someone tell me the difference between
    Defining Document Types for Entry View
    Defining Document Types for Entry View in a Ledger
    Defining Document Types for General Ledger View?
    in ECC 6.0.
    Also should we assign different number ranges to same document type in different ledgers and different views?
    Any help in this regard will be duly rewarded and appreciated.
    Regards,
    Sriram
    null

    Sriram:
    Document type for Entry view is the scenario where you don't use the New GL functionality
    Document type for Entry view in one ledger is where you use only one ledger i.e., a leading ledger (and not non leading ledger)
    Document type for GL view is where you have completely implemented the new Gl functionality (i.e., ledger groups, leading ledger, non leading ledgers etc..)
    You do not have to maintain document types for all the views.
    If you are not using the new GL functionality you only need document types for entry view.
    You only need to maintain the number ranges according to how you have defined document types for a particular view.
    All the regular document types are already defined for entry view.
    The document types remain the same for new GL view as well.
    Vj
    Assign points if info helps

  • Data transfer across 2 different views in web dynpro ABAP

    hi all,
    can anyone please help me on how to transfer data across 2 different views in wd ABAP.
    i have made a view-1 and using another view-2 as a component which is displayed in the tab in view-1.
    i am required to fetch a value from the view-1's input field and use it for a further processing in the view-2.
    i want to use the value which is in the input field in the view1 as a primary key to get the whole record corresponding to that value and that complete record must be shown in my view2.
    the thing here is view1 and view2 are 2 different views.
    view1 has a tabstrip control.
    the view2 is embedded in a tab of that tabstrip as a used component because it was not possible for me to build the view in the tab as a whole.
    please help me out if anyone has done so?
    thanx in advance.

    Hi,
    If both the views are in the same comp, define the context node which holds the input field of view1 in the component controller. Then map this same context node into the context of view2. Then in the inbound plug of view 2, read the context, and fire your select statement based on the input value.
    Another way is, pass the input field from view 1 as a parameter when invoking the inbound plug of view2.
    Regards,
    Wenonah

  • Different views in PA20 (Display Personal Data)

    Hi,
    in our (IDES) system I have seen that different persons could have a different view in PA20 (Display Personal Data).
    For example one have a field 'First name' and a field 'Last name' and another have only one field full name.
    Could somebody explain this?
    Thanks and regards
    Patrick

    Hi Patric!
    This diferences may be exists because of ID of Country Group of this persons. Check if this persons contains the same MOLGA (Country Group).
    In others cases, this diferences was related with de relation of Pers. Area and Subarea at 0001 infotype.
    Regards!

Maybe you are looking for

  • How can I Setup my Email Account in Mavericks?

    The existing description on Apple support is not valid. There ist no possibility to setup the account manually to e.g. IMAP. Best regards

  • 6th generation Ipod nano not recognised in itunes

    When I plug my ipod into my laptop, it is recognised in my computer but not in itunes or as a device when trying to safely remove it. I tried plugging my 4th generation ipod nano into my laptop but again the same thing happens. I tried plugging it in

  • My cd/dvd drive keeps rejecting all cd/dvd.

    my cd/dvd drive keeps rejecting all cd/dvd.  it accepts it for about 5 seconds and then spits it out.  does anyone have any suggestions?

  • My toshiba fingerprint utility stopped working once I loaded the new firefox version 4

    I have a toshiba satellite pro laptop. it comes with a utility to use your fingerprint to enter password protected sites. when I go to a preregistered site a green bar used to show below the menu bar prompting me to scan my fingrprint to enter the si

  • How to read MetaStock  data?

    hi. dukes. i want to read MetaStcok data(i.e OHLC(Open High Low Close) parameter) i found a site that provide java api( jcob.jar ) to do the above thing; but i cant understand how it works. so if u have any suggestion or any better tutorials pls tell