How to use form design for both online and Offline Scenrio!

Hi All,
I have created the forms using WebDynpro context with ZCI layout for Online scenario.
There are some fields which need to be prefilled and are read only.. Header fields.
There is no interface structures created seperately but the interface is constructed through webdynpro context.
Now that I have to use the same for offline scenario, I don't see layout in SFP of form. I can create a structure for Importing fields but there is no Layout for mapping?
Do I need create seperate forms for this as I have some prefilled hedaer fields which I can't pass using download beacause there is no context design available for this?
Regards,
Srinivas

you could either create a separate form for your offline form using Data Dictionary interface or use the Data Dictionary interface for both of your forms.
You do have the option of creating your own XML file for your offline form - you may be able to copy the XML code out of your online interface, save it to a file and use that for your offline interface - i'm not 100% sure on this as I've never done that.

Similar Messages

  • I have two iphone one is iphone 5 and othere is iphone 4 . can i use same id for both ? And do i have to purchase the application again for iphone 4 which i have buyed for iphone 5.??

    i have two iphone one is iphone 5 and othere is iphone 4 . can i use same id for both ? And do i have to purchase the application again for iphone 4 which i have buyed for iphone 5.??

    You can use the same Apple ID for both phones, you would then be able to use the purchased Apps/Content on both phones without having to pay again.

  • How to install Laserjet M1217 for both wireless and network

    How to install an HP Laserjet Pro M1217nfw MFP on an XP system for both network and wireless capabilities?

    Hi,
    Are you talking about a mixture of wired and wireless ? If yes, please check your existing hardware and use the following manual to select one connection type then post back if having any porblem during the setup:
       http://h10032.www1.hp.com/ctg/Manual/c00389927.pdf
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • Any idea how you can safely use ONE computer for BOTH work and internet?

    I'm planning to set up a small music project studio, built around a powerbook, that I will be sharing with a friend of mine. My friend is going to use the computer for music AND heavy internet use, but I will only use it for music work (off-line).
    The thing is then that I am slightly worried about viruses, worms, spyware and similar unwanted stuff 'sneaking in' when the laptop is online. Even with firewall and anti-virus I guess there is always a risk.
    Any idea if there is a way of keeping things completely separate?
    How about if I had a bootable external hard drive for my work, with the Mac OS system on. Then when I'm working I could boot up from that drive (and use the computer off-line).
    Maybe we could even remove the internal hard drive from the powerbook (?), and use the powerbook with two external hard drives instead: One bootable drive for me and another bootable drive for my studio partner (and then only connect one hard drive at the time).
    Any idea if this would work well..? (I'm not sure if i.e. a virus could sneak in anyway, through the PRAM, L2 cache or the RAM or something similar) Or does anyone have any other suggestions...? Any ideas much appreciated. Thanks!

    Not too much worry with Macs, but get an Ethernet Router, skip Wireless, use strong Passwords.
    How about if I had a bootable external hard drive for my work, with the Mac OS system on. Then when I'm working I could boot up from that drive (and use the computer off-line).
    Excellent idea, especially if the heavy Net user doesn't have Admin rights.
    One bootable drive for me and another bootable drive for my studio partner (and then only connect one hard drive at the time).
    Just about foolproof! Just need 2 more drives for backup. Not sure why you'd want to remove the internal HD though.
    No Viruses yet in OSX land, in fact the only Malware I know about requires you to install it for itself!
    You'll be OK, that separate drives idea is pure genius.:-)
    Most don't need it on Macs, but here ya go on the Mac side...
    ClamXAV, free Virus scanner...
    http://www.clamxav.com/
    Little Snitch, stops/alerts outgoing stuff...
    http://www.obdev.at/products/littlesnitch/index.html
    HenWen/Snort combo, that is a free MAJOR Firewall...
    http://seiryu.home.comcast.net/henwen.html
    Then the venerable old Brickhoues/Flying Buttress Firewall...
    http://personalpages.tds.net/~brian_hill/downloads.html
    WaterRoof is a firewall management frontend with bandwidth tuning, NAT setup, port redirection, dynamic rules tracking, predefined rule sets, wizard, logs, statistics and other features.
    http://www.macupdate.com/info.php/id/23317
    Monitor net usage...
    http://mac.softpedia.com/get/Dashboard-Widgets/Information/Videotron-Internet-Us age-Monitor.shtml

  • Use 1 Library for both Mac and PC OS's?

    I have a pretty basic question about itunes. I am running a Mac Pro and bootcamp with Windows Vista on the other side. I have 3 seperate Hdds. One for Mac...One for PC...And one for audio files and pictures and other stuff.
    I did have my itunes music library on my Mac Hdd for when Im running OSX. Well i still do. But what I want to do is move my itunes library to the 3rd Hdd (non-bootable) and hopefully use it for both the Mac OSX and the PC Vista side. So instead of having the same library copied to 2 seperate Hdds for the 2 seperate OS's Ill have 1 itunes library and be able to access it from both Os's. I have Mac drive 7 installed so I know I can access the 3rd HFS+ comp drive from the PC OS.
    So how do I go about doing this right so I dont screw anything up?

    The easiest way to do this, I think, involves copying the Music folder from OS X to the new hard drive. Then delete the old Music folder from the OS X drive. Create an alias to the new Music folder, copy it to your home folder, and rename it to the same name as the folder you copied. (i.e. copy /Users/john/Music/iTunes to AUDIO/Music/iTunes, then create an alias to iTunes and copy it to /Users/john/Music. Rename the alias to iTunes.)
    Dealing with Windows is more difficult, as only Explorer follows shortcuts (NTFS doesn't support 'true' symlinks). I think you can set iTunes to read the AUDIO/Music/iTunes folder as its library folder in Edit > Preferences.
    Good luck.

  • How to use the API for DATE, MONTH  AND YEAR

    I would like to use the java api in .util.calender in the java api to get the date.
    How to implement the API for the "DATE","MONTH","YEAR" which are available provide by java?
    can someone give me in one complete code?

    From the Java Developers Almanac 1.4:
        Calendar cal = new GregorianCalendar();
        // Get the components of the date
        int era = cal.get(Calendar.ERA);               // 0=BC, 1=AD
        int year = cal.get(Calendar.YEAR);             // 2002
        int month = cal.get(Calendar.MONTH);           // 0=Jan, 1=Feb, ...
        int day = cal.get(Calendar.DAY_OF_MONTH);      // 1...
        int dayOfWeek = cal.get(Calendar.DAY_OF_WEEK); // 1=Sunday, 2=Monday, ...

  • How to do IDOC debugging for both inbound and outbound

    Hi
    can somebody please help me on how to debug the idoc both inbound and outbound in SAP PI.
    Regards
    Blue

    Hi,
    Yes, i have checked but did not get any satisfactory answer.
    here is the solution:
    Inbound:
    We19, Give the idoc #,
    click on the inbound functional module and select the radio button in the fore ground
    check the check box call in debug mode, this will enter in the functional module debugging.
    Outbound:
    Check BD73, give the idoc # and execute
    or
    RSNASTED program and set the breakpoint there
    is this correct, i have not tested/ checked yet.
    Regards
    Blue

  • How to use Classification Characteristics for project definition and WBS

    dear all:
    my step is below:
    1,  CT04, create "Characteristic"
    2,  CL02, create "Class". and class type is "14".
    3,  now how to customize to use the class in project definiton and WBS.
    Please explain me all the steps to be required.
    Thanks in advance!

    Hi
    Classification is only assigned for the network profile or in the activity.
    CJ20N  -
    > Extra ---> Classification --- > Classification
    Hope this will help you.
    Regds,
    Uddhab

  • PC & Mac Sharing 1 Monitor and KB Setup - How to use KB/Mouse for both?

    I am purchasing a Mac Mini to replace my personal computer. I have one monitor/KB/mouse setup shared between my work and personal PC, switched back and forth via a USB KVM switch (http://www.iogear.com/product/GCS632U/)
    I want to go with the Apple bluetooth mouse and keyboard with the purchase of my mac mini, but how can I make it so it will work with both my work PC (Windows XP Dell laptop docked) and my new mac mini?
    Should I purchase a USB bluetooth dongle and connect that to the mini KVM switch? Or should I just plug the USB dongle into my docked laptop and pair with both the mini and the PC (if pairing to both is even possible)?
    Thanks in advance.

    If both are on your intranet, try Synergy.
    I personally use the Wormhole.  You can drag between desktops.

  • How to use a object for both key figure and as a charcteristc

    Dear all,
    we have a requirement where in we have to use Version Field as a key figure and as well as a charecteristc.
    Regards
    venu

    Dear Mayank Gupta
    Thxs for ur reply
    We are creating a EBIDTA Report which is already developed in R/3 and these result will be stored in Z table.
    we have created a DSO which will store this Z table data.
    Now the req is we have a created a field called ZVersion which is there in the Key fields of DSO. ok
    But in report we want to use the condition TOP1 on the version. as the version is a not a key figure we cant create the Conditon on the characteristc.
    If we use version as a key figure then the records are summurised in DSO as u have to insert it in Data Field.
    we want to use version as a primary key.
    so how to go abt it?
    regards.
    venu

  • How to use one wallet for both infrastructure & midtier installations?

    I have a 10.1.2.0.2 Portal installation that also includes the metadata repository & other infrastructure components on the same server. I need to configure SSL throughout Portal and I have 1 server certificate that I installed in Oracle Wallet Manager in the infrastructure home. Can I use this same certificate for the midtier without installing it in the midtier Wallet Manager?
    Thanks,
    Denise

    From one Directory Server (ds1) generate CSR with the name ds.example.com in the request. Once you get the signed cert import it into the same server you generated CSR with. Then from ds1.example.com :
    scp -p <slapd install/instance path>/alias/* <account>@ds2.example.com:<slapd install/instance path>/alias/
    to copy the contents of the alias path to the same location on the other Directory Server. Make sure file permissions are the same.

  • Using one email for both husband and wife, how can we FaceTime each other

    My husband and I share an email account and Apple ID  How can we FaceTime each other since it seems to be based on our shared identity?  I am on a MacBook and he is on an iPad 2.

    have to use a different apple id.  sorry
    Peace, Clyde

  • Creating one design for both A4 and Letter Sizes

    Hi There!
    I'm new to the forum. I've been tasked with creating individual catalogue pages for a global company. Some divisions in the US use 'Letter' and here in the UK we use 'A4'.
    I was wondering if there's a way of creating a one page design - say in A4 - that when exported as PDF will print to both page sizes? I wondered if I could set the print settings in advance so the page automatically prints to fit page? Unfortunately haven't been able to find any advice on this.
    Any other suggestions would be very much appreciated.
    Hayley

    The answer is that the same page can be printed, scaled, in both formats, but it won't be pretty if you do it that way. In CS6 you can create an Alternate Layout in the same document so that you have both page sizes and can adjust the layout to fit the differnt shapes, then choose which to output. You can use Linked Stories so that you only need to edit one and the other will update.

  • How to use XML Gateway for Order Import and Item Import?

    Hello XML gurus,
    I'm working in Oracle Apps area and do not have much knowledge on XML or web programming. Currently in my project there is a need to use Order Import and Item Import using interface tables and XML Gateway. The items/orders information will be in the XML format from Siebel system, there will be no custom processing...just process the data as-is.
    I've read the XML Gateway user guide but did not understand much.
    Anyone with similar implementation experience?
    I'm looking for a step-by-step guide on what needs to be done in Oracle Apps side to populate the interface tables from XML file and call the import APIs?
    Your inputs, suggestions, tips are highly appreciated. :)
    Thx,
    Jags

    I have a similar requirement to automate the order import and was looking at XML Gateway. Please update if you were able to find more information.
    - Ayyappa

  • Siri using my name for both mine and my wife's iPhone 4s

    Whenever I set up my name on my iPhone with Siri it changes my wife's phone and vice versa.  Is there a way to stop this from happening?  We use 1 apple id because everything we have is on one iTunes account.

    you and your wife can have separate icloud accounts...  they are free
    Decide who keeps the original account, and the other person can set up a new icloud account on your iphone.  That way, you can still sync your contacts to the cloud and yall can have separate imessages to your own iphones. 
    this will not impact your itunes - because you can be linked to the same apple id on your itunes/app store but have a different apple id for icloud all on the same iphone

Maybe you are looking for