Again submitting item position setting problem....

Dear Apex communities;
I have submitted this problem many time but I have not gotten any reply.
Please resolve my little problem; I want to set apex item which created in form condition not in tabular form; but I want to set these item's position as I desire.
Please tell me its simple solution in steps.
Thanks in advance that reply will be in my favour.
Shahab Ahmed Khan
[email protected]

Hello Shahab,
I doubt if you "submitted this problem many time but I have not gotten any reply" because your user handle (which you should update to show your real name) shows only two posts... ;-)
You can set the position of an item not the same way you can do in something like Oracle Forms, but you have to play around with the Page Item Properties like
Begin on New Line
Begin on New Field
Rowspan
Colspan
and apart from that you can set any HTML Element property ...
Try the above options and if it's not successful please describe (or draw) what you try to achieve.
Greetings,
Roel
http://roelhartman.blogspot.com/
http://www.bloggingaboutoracle.org/
http://www.logica.com/
You can award this reply to your question by marking it as either Helpful or Correct ;-)

Similar Messages

  • I cannot run You Tube Videos on my Apple Macbook Air MD760HN/B with OS X 10.9.4. the video window displays a message " An error occurred, Please try again later." Learn more. The screen is black with this message. There appears to be some setting problem?

    Macbook Air MD 760HN/B with OS X 10.9.4
    4 GB RAM, 1.4 Ghz intel Core i5
    Problem 1
    I.     On Youtube whenever I try to play a video, I get a message on a black screen "An Error Occurred, Please Try Again later. Learn More."
    2.   I think it is some setting problem, being a new mac user, I am unable to sort it out.
    Problem 2.
    How to select more than one file in a folder to copy or delete. like it can be done in Windows with shift Click together.
    if one has to select say, file 25 to file 37 in a folder with 75 files. select all (command A) works but I cannot select few continuous files.

    Macbook Air MD 760HN/B with OS X 10.9.4
    4 GB RAM, 1.4 Ghz intel Core i5
    Problem 1
    I.     On Youtube whenever I try to play a video, I get a message on a black screen "An Error Occurred, Please Try Again later. Learn More."
    2.   I think it is some setting problem, being a new mac user, I am unable to sort it out.
    Problem 2.
    How to select more than one file in a folder to copy or delete. like it can be done in Windows with shift Click together.
    if one has to select say, file 25 to file 37 in a folder with 75 files. select all (command A) works but I cannot select few continuous files.

  • [svn:osmf:] 14871: Fixing anchoring 'right' and 'bottom' properties not being applied on items that don't have a width/ height and position set.

    Revision: 14871
    Revision: 14871
    Author:   [email protected]
    Date:     2010-03-19 01:05:54 -0700 (Fri, 19 Mar 2010)
    Log Message:
    Fixing anchoring 'right' and 'bottom' properties not being applied on items that don't have a width/height and position set.
    Modified Paths:
        osmf/trunk/framework/OSMF/org/osmf/layout/LayoutRenderer.as

    If you're just doing it in a back and forth or spiral fashion, you don't need to check whether a square's been filled in. You just go from a start point to an end point. Those points and the squares in between are determined by simple arithmetic.
    If you're doing it randomly, I wouldn't use the GUI elements themselves. I'd have, for example, and array of booleans that tells whether each square has been filled in.

  • HT201303 MGwFL7jgk9 Please check problem my account  I want refund all item because i gift again all item medthod vie print gift my self and all item

    I gift app for friend Order mgwl7jgk9 my friends can' t receive email gift app. Please check problem my account.
    I want refund all item because i gift again all item method vie print gift my self and all item

    You are NOT addressing Apple here at all.
    AGAIN:
    We are all itunes users just like you.
    We can check nothing.
    You need to contact itunes support.
    http://www.apple.com/support/contact/"

  • Item positioning

    Hi,
    how can I control item positioning? For example I would like to display html region in the middle of the screen and text area in this region above other items in the same region?
    Is there any possibility to control them with html?
    Thanks

    Hi Costas,
    i know this issue.
    the problem here is that usually the item moves when you have it on the "right" side on the form.
    the best is to place your added item on the left side of the form, than it will not move.
    thats the workaround iam doing ...
    or you catch the resize event and set the position again.
    regards
    David

  • Adding item positions with reference to contract in sales order

    Hi all,
    I would be very grateful if some of you could help on this:
    I have a requirement to add lines with reference to a contract while the user is creating or modificating it via VA01 or VA02. The logic flow will be as follows:
    if the user enters a new item position with reference to a contract, and the qty entered exceeds the qty in the position selected of the contract, we have to skip the standard error message and try to spli the quantities in several positions with the same material in the contract.
    As an example:
    the contract 000000000001 has 5 lines:
    line     material       qty
    01       mat1           100
    02       mat1           50
    03       mat1           50
    04       mat2           n/a
    05       mat2           n/a
    if the user picks up the line 02 of the contract to create a new line in the sales order, and enters 180 as qty, the sap standard will raise an error, saying the qty has exceeded the contract qty. Ok, we have to skip that error (maybe could we set it as a warning??) and 'split' the qty as follows:
    in the sales orders, 3 lines will be created automatically
    line    material     qty
         mat1         100
         mat1         50
         mat1         30
    and of course, the released quantities in the contract must be updated: i.e the contract should be as follows:
    line     material       available qty
    01       mat1           0
    02       mat1           0
    03       mat1           20
    Any ideas? : )
    What i've done by the moment is to check is that 'split' is possible, in userexit_save_document. If not (e.g. if the user enters 220 for mat1 in the previous example), a custom error will appear. If it is possible, then the sales order will be created (only with the line the uswer entered) and I will trigger somehow a FM processed in background to modify the sales order.
    my question now is: how can i add lines to the created sales order, making reference to some contract lines?
    I've seen BAPI BAPI_SALESORDER_CREATEFROMDAT2 is used to create a document with reference, but can i use it to MODIFY an existing sales order?
    any help would be greatly appreciated.
    thanks a lot for your help.
    regards.

    Hello,
    there's a function module called 'BAPI_SALESORDER_CHANGE', which could change a sales order. The problem could be,that these BAPI's enque the salesorder. So if you start them in background via an userexit, you have to be sure that the salesorder is updated and dequeued by posting.
    An other way could be to use the exit 'userexit_check_vbap' in MV45AFZB. It's called after creating a new position or changing a position. All existing positions at that time in a internal table 'XVBAP', which you could change. (But be carefull, that you don't create an endless loop !).  
    The check about the contract quantity is in a form routine called 'vbep-wmeng_pruefen_folgebeleg(sapfv45e)'.
    Have a look into the form 'vbap_pruefen_ende' in FV45PFAP_VBAP_PRUEFEN_ENDE. There's the whole thing done including the call of the userexit.
    Regards Wolfgang

  • When i want to install windows7 on my snow leopard(10.6.4) with boot camp assistant,said that you must update your mac,i do this and try to install windows7 again but i have this problem again?what can i do?

    when i want to install windows7 on my snow leopard(10.6.4) with boot camp assistant,said that you must update your mac,i do this and try to install windows7 again but i have this problem again?what can i do?

    Graham Giles wrote:
    Have you seen this type of problem before? I think it could be a serious issue for anyone in a similar position.
    No; but then, I've not had occasion to use TDM. I've been using firerwire drives for over 10 years, both FW400 and FW800, with no issues except a bit of instability using a B&W G3 machine.
    TDM should be safe. Using cautious, manual copying of files from the Target machine to the Host machine should not result in unexpected loss of files or damage to the Target drive's directories. It should behave exactly the same as if it were an external (to the Host) firewire drive.
    •  I don't suppose there is anything I can do to 'put back' lost items from a separate Time Machine drive which has an up to date backup on it.
    There is probably a way to do that - seems to me that's one of the reasons for a Time Machine volume.
    On the other hand, if the Time Machine volume is rigidly linked to the now-absent OS on the original drive, there may be no way to effectively access the files in the TM archive.
    I know that using a cloned drive would work well in this instance.
    I have no experience with Time Machine, so perhaps someone who has will chime in with suggestions.
    With the machine in TDM with the other machine, have you tried running Disk Utility to see if you can effect repairs to the drive?

  • SRM - R3 item position mapping

    Hi all experts,
    the question is quite tricky; basically I have a report that, given a Purchase Order Number, must get the PO from SRM AND from the backend and do a comparison at item granularity.
    From the SRM side, the task is quite simple; I can use the BBP_PD_PO_GETDETAIL FM to retrieve all the data I need about the PO.
    The problem is: how to get a mapping (R3 <---> SRM)  for every single item position ?
    Thanks in advance

    Hi Federico,
    well the question is quite complex, in the sense that you must take into account eventual customizations that are strictly related to you SAP installation.
    Anyway... in my case: a PO have a "quite" standard header, so I assume I can skip the mapping process for this item; I just considered that only the PO number is sufficient to retrieve the order from both backend and SRM.
    How: in SRM --> BBP_PD_PO_GETDETAIL.
    In R3 --> BAPI_PO_GETDETAIL.
    My question was about items mapping so here's the solution I found... First of all; in my R3 and SRM system I can have 3 kind of items, say:
    - material items;
    - service items, that can be organized in hierarchies, so:
      - a father in a hierarchy;
      - a son in the hierarchy.
    I did as follows; I simply translated the R3 PO into SRM-like data structure, in order to work on the same fields. Then I simply proceeded with some mapping rule that, I must remember, are valid in my system, it's not an absolute mapping that works anywhere. In particular: my SRM system is really old and doesn't support natively service hierarchies, so that it has been implemented in a "custom" way. Anyway...
    Looping of the SRM_item table:
    How to see it's a material item? Field PRODUCT_TYPE is set to '01'.
    How to find the related R3 item? READ TABLE R3_item with key: PRODUCT_TYPE = '01' and SRM_item-EXT_DEM_SUBPOSID = R3_item-ZZXNUMBER.
    (here ZZXNUMBER is a custom field; in my system it represents the ordering number of the item in the purchase order... It's related anyway to the kind of item we're considering).
    Quite the same thing for a father in a service hierarchy:
    How to see it's a service item (father)? Field PRODUCT_TYPE is set to '02' and ITM_TYPE = 'HIER'.
    How to find the related R3 item? READ TABLE R3_item with key: PRODUCT_TYPE = '02' and SRM_item-ITM_TYPE = 'HIER'  and EXT_DEM_SUBPOSID = R3_item-ZZXNUMBER.
    (here ZZXNUMBER is a custom field; in my system it represents the ordering number of the item in the purchase order... It's related anyway to the kind of item we're considering).
    Quite complex mapping for a child in a service hierarchy... A child in my SRM system can be seen as an item which has PRODUCT-TYPE = '02' and ITM_TYPE = BLANK. There's however any way to map it directly to the corrispective R3 item... Moreover, my specs tell that not all the SRM items in a PO MUST be present in the corrispective R3 PO... this is indeed, a report to allineate both sys.
    This is a schema in pseudo-code:
    - if the SRM_item considered is a child...
    - find the father of the hierarchy in which the SRM_item is involved;
    - find the corrispective element in R3_item set;
    - go for an exact mapping using the mapping-between-position based on the fields ZZXNUMBER.
    Well, I know it is quite complex, also because of the fact these systems are really customized. Maybe the code that follows can help you understanding what I've done.
    Bye,
    Matteo
    LOOP AT srm_item INTO wa_srm_item.
        CLEAR wa_rowmap. " maptable that keeps index from the SRM_item and corrisp. ITM_item
        wa_rowmap-index_SRM = sy-tabix.
    * consider item position type
        IF wa_srm_item-PRODUCT_TYPE EQ '01'.
    * case 1: material
          READ TABLE r3_item INTO wa_r3_item WITH KEY PRODUCT_TYPE = '01' zzxnum = wa_srm_item-ext_dem_subposid.
          if sy-subrc = 0.
            wa_rowmap-index_R3 = sy-tabix.
          else. "if no pos. is found, it isn't present in R3 -> must be cancelled in SRM
            wa_rowmap-index_R3 = SPACE.
          endif.
        ELSEIF wa_srm_item-PRODUCT_TYPE EQ '02' AND wa_srm_item-ITM_TYPE EQ 'HIER'.
    * case 2: father in a service hierarchy
          READ TABLE r3_item INTO wa_r3_item WITH KEY PRODUCT_TYPE = '02' zzxnum = wa_srm_item-ext_dem_subposid.
          if sy-subrc = 0.
            wa_rowmap-index_R3 = sy-tabix.
          else. "if no pos. is found, it isn't present in R3 -> must be cancelled in SRM
            wa_rowmap-index_R3 = SPACE.
          endif.
        ELSEIF wa_srm_item-PRODUCT_TYPE EQ '02' AND wa_srm_item-ITM_TYPE EQ SPACE.
    * case 3: son in a service hierarchy
    *   look for the father in SRM
          READ TABLE srm_item INTO wa_srm_father WITH KEY NUMBER_INT = wa_srm_item-ZZXHIER ITM_TYPE = 'HIER'. "child refers to the corrisp. father thru the number_int field
    *   look for the father in R3
          READ TABLE r3_item INTO wa_r3_father WITH KEY PRODUCT_TYPE = '02' ITM_TYPE = 'HIER' ZZXNUM = wa_srm_father-ext_dem_subposid.
          if sy-subrc <> 0. "father's not on R3 anymore -> the son will not be on R3 too
            wa_rowmap-index_R3 = SPACE.
          else.
    *   go for the service item thru the father.
            READ TABLE r3_item INTO wa_r3_item WITH KEY ZZXHPOS = wa_r3_father-NUMBER_INT ZZXNUM = wa_srm_item-ZZXNUM.
            if sy-subrc = 0.
              wa_rowmap-index_R3 = sy-tabix.
            else. "the service item is not on R3 anymore
              wa_rowmap-index_R3 = SPACE.
            endif.
          ENDIF.
        ENDIF.
        APPEND wa_rowmap TO tbl_SRMmapR3.
      ENDLOOP.

  • How to get submitted items' content during a DecisionPoint in a Subscriber ?

    Hi!
    (If this is not the right msdn forum for my question, thx in advance to redirect me to the correct one ;)
    I have to develop "server side event handlers" for TFS (kind of server-side "Check-in Policies" which may not be disabled/skipped by the developers and which do not require distribution/maintenance on thousands of workstations).
    Concretely, I am going to implement Subscribers (inheriting from Microsoft.TeamFoundation.Framework.Server.ISubscriber)
    In some of those Subscribers, I have to decide to accept or reject the "check-in" based on the submitted items' content. 
    Concretely, it will result in something like the code bellow. My current issue is that I am only able to retrieve the server name of the submitted item, not its content. Do you know if there is a shelveset available with the submitted item, streams readable
    server side, a list with the objects in the notification's argument, a "temporary" file in source control ? Or do I have to read the file in the developers' local workspace (I have indeed the workspace name and machine name) ?
    I did debug my code server side (in TFS) but didn't find anything (obvious) in  notificationEventArgs' subtree :/
    class ServerSidePolicy : ISubscriber
        public EventNotificationStatus ProcessEvent(TeamFoundationRequestContext requestContext,
                                            NotificationType notificationType,
                                            object notificationEventArgs,
                                            out int statusCode,
                                            out string statusMessage,
                                            out ExceptionPropertyCollection properties)
            EventNotificationStatus response = EventNotificationStatus.ActionApproved;
            properties = new ExceptionPropertyCollection();
            statusMessage = String.Empty;
            statusCode = 0;
            // If this is a Check-in notification
            if (notificationEventArgs is CheckinNotification)
                // If this is a Decision point
                if (notificationType == NotificationType.DecisionPoint)
                    CheckinNotification args = notificationEventArgs as CheckinNotification;
                    foreach (var submittedItem in args.SubmittedItems)
                        if (!MyValidate(submittedItem))
                            statusMessage = string.Format("{0} is not valid.", submittedItem);
                            response = EventNotificationStatus.ActionDenied;
                            properties.Set("Violated Rule", "Item's content not valid");
                            statusCode = -1;
                            break;
            return response;
        private bool MyValidate(string item)
    Really, thx a lot of any info! I didn't find anything in the msdn either :(
    PS.: Is there anyone who knows where I could find more information/documenation on the class {Microsoft.TeamFoundation.VersionControl.Server.PendingItemDbPagingManager}. This is the type of the SubmittedItems... I sounds like an object to access the
    content of those SubmittedItems... However, I did explore it without any interesting finding.

    Hello Valéry,
    Thanks for your post.
    Based on your description it seems that you would like to use TFS API to get the content of these checked in files programmatically.
    You can use the following code to get all the pending changes in your workspace:
    public
    static void GetItem()
    NetworkCredential cre =
    new NetworkCredential("userName","password","domain");
    TfsTeamProjectCollection tfs = new TfsTeamProjectCollection(new Uri("http://serverName:8080/tfs/CollectionName"), cre);
    VersionControlServer versionControl =(VersionControlServer)tfs.GetService(typeof(VersionControlServer));
    var workspace = vcs.GetWorkspace("WorkspaceName",
    "WorkspaceOwner");
    var changes=workspace.GetPendingChanges();
    foreach (var change
    in changes)
    var item= vcs.GetItem(change.ServerItem);
    Thanks.
    Vicky Song [MSFT]
    MSDN Community Support | Feedback to us
    Get or Request Code Sample from Microsoft
    Please remember to mark the replies as answers if they help and unmark them if they provide no help.

  • MIRO cannot changing amounts at item position.

    Hi,
    I'm trying to change amount in MIRO at item level.
    System allows this only for the first item position. The second position has the amount in grey so that
    I cannot perform the change of amounts at item level.
    Before a similar problem happened to tax code.
    Help
    Best regards

    pls take a look that while doing miro at extreme right position there is a term LAYOUT just opposite to where u input the PO/Scheduling aggrement.
    there at LAYOUT choose ALL INFORMATION.
    regards,
    indranil

  • Reflection function is not working, unable to click on it at all. Need help! Setting problem?

    Hi all, I seek for your kind expertise advise on my Keynote. Once I've chosen a slide to open, any type of slide at all, my Reflection button or function is unable to be clicked on to perform that function. However, Shadow function facing no problem.
    I can see the Reflection button but it's blurred like not allowing me to click on it at all. Is this cause by some software problem? Or setting problem? iWork has just being installed.
    Appreciate your expert advice and help!

    Thanks Kelly... That's very helpful. Appreciate that very much!
    By the way, if I may ask further, do you know how to how to make the animation like Steve Jobs did during his presentation on Ipad or Ipad2 where the "word" will drop from top onto the centre of the slide with effect or sort of like smoke or dust floating off and dissolved at both sides of the "word"?
    Will be more than grateful to be hear from again! Cheers and thanks again.

  • The last time you opened OpenOffice, it unexpectedly quit while reopening windows. Do you want to try to reopen its windows again? i have a problem with open office, if I press reopen, nothing happened  ans i see always this information on my mac? what ca

    The last time you opened OpenOffice, it unexpectedly quit while reopening windows. Do you want to try to reopen its windows again? i have a problem with open office, if I press reopen, nothing happened  ans i see always this information on my mac? what can I do?

    Please follow these directions to delete the Mail "sandbox" folders. In OS X 10.9 there are two sandboxes, while in 10.8 there is only one. If you're running a version older than 10.8, this comment isn't applicable.
    Back up all data.
    Triple-click anywhere in the line below on this page to select it:
    ~/Library/Containers/com.apple.mail
    Right-click or control-click the highlighted line and select
    Services ▹ Reveal
    from the contextual menu.* A Finder window should open with a folder named "com.apple.mail" selected. If it does, move the selected folder — not just its contents — to the Desktop. Leave the Finder window open for now.
    Log out and log back in. Launch Mail and test. If the problem is resolved, you may have to recreate some of your Mail settings. You can then delete the folder you moved and close the Finder window. If you still have the problem, quit Mail again and put the folder back where it was, overwriting the one that may have been created in its place. Repeat with this line:
    ~/Library/Containers/com.apple.MailServiceAgent
    Caution: If you change any of the contents of the sandbox, but leave the folder itself in place, Mail may crash or not launch at all. Deleting the whole sandbox will cause it to be rebuilt automatically.
    *If you don't see the contextual menu item, copy the selected text to the Clipboard by pressing the key combination  command-C. In the Finder, select
    Go ▹ Go to Folder...
    from the menu bar, paste into the box that opens (command-V). You won't see what you pasted because a line break is included. Press return.

  • MIRO trx adding item position

    Hi,
    how adding in MIRO an item position for unplanned costs?
    I woul like giving to users the possibility to post the above costs
    in <b>two ways simultaneously</b>:
    -Unplanned delivery costs are distributed among the invoice items;
    -Unplanned delivery costs are posted to a separate general ledger.
    Is this possible or not? If not, is possible doing that with a specific FI trx?
    Best regards

    Hey,
    Sorry about the delayed reply. I had trouble accessing my r/3 systems.
    First understand the "Other Unplanned Expenses" and "Unplanned Delivery Costs" are two different things treated differently by LIV. The only thing you CANNOT do simultaneously is the distribution of "Unplanned Delivery Costs" to invoice item (PO ref tab) and to Seperate G/L account. But you can post other costs simultaneously with PO line items in PO ref tab. Simulate the posting and make sure Debit/Credit Balance is ZERO.
    In IMG, you can set this at "Configure How Unplanned Delivery Costs Are Posted" activity under LIV-->Incoming Invoice (read the IMG documentation). This setting is Per CoCd.
    <u><b>For "Other Unplanned Expenses":</b></u>
    If you want to add additional invoice line you can add in the G/L tab. For example some misc expense to a cost center.
    <u><b>For "Unplanned Delivery Costs":</b></u>
    1.First enter the Unplanned Delivery Costs in the "Details" tab of the Invoice Header
    2. Maintain Account Determination (OBYC) for TE Key UPF (for Unplanned Delivery Costs). Find out from FI people what the G/L account they want affected in this case.
    Let me if this helped further.  

  • Email Setting Problems

    I updated to iOS4 last week and had to end up doing a full reset of my Touch. I tried to set up my email account again and I'm having problems. It is an IMAP account, set up exactly as my Macbook settings are. Yet my iPod is now pulling email off the server and deleting it from the server before my Macbook can download it. I never had this issue before and I've not changed anything from how I set it up previously. The only thing I can figure is that there is a setting on the iPod now that wasn't there before that I need to set correctly. Not being particularly savvy in this area, I'm at a loss. But I've missed several important emails because my iPod is at home, downloading my email and deleting it while I'm at work! Any ideas on what to check? Thanks!

    There is no option to do that if it's an IMAP account. And for some reason, IMAP the only option that will work with the server, even though my email server says it works with both. When I try to make the account a POP account, the iPod never connects to the server.
    I did just find out there's an option in iTunes under info to sync email accounts, which I just tried. That seemed to work, but I'm unsure how it will work in the long run. I synced it with my personal email on my work iMac, but the music library is synced to my MacBook at home. Will that matter? I've never tried to do the email account that way before.

  • HT4623 International Missed calls on 4s do not show 00s before the number, which creates the problem of call back. Is it a Tecnical fault or a Setting problem?

    International Missed Calls on my i phone 4s do not reflect 00s which creates a problem of a Call Back. Is it a Tecnical inadequacy or a Setting problem?

    It has righted itself. I am not sure how. But I turned off the Powerbook. And on the MacBook Air, I made sure to change the MAC number to the MacBook Air one.
    I restarted the MacBook Air. Now, the internet radio is working well, no rebuffering the stream every ten seconds.
    And when I turned on the Powerbook and tried the internet this time, I could not get connected.
    I think the bad internet connection on the MacBook Air was due to the fact that the internet was being shared by two computers. Funnily enough, the internet was OK on the Powerbook but was not good on the MacBook Air when I did that.
    So, it didn't turn out to be a MacBook Air problem but an internet provider problem.
    I will keep my fingers crossed that the MacBook Air internet connection keeps working fine.
    I think it's possible to use the internet on both computers simultaneously but the quality of the connection is poor on the MacBook Air when I do that. And when I turn off one of the computers, it is not possible to share an internet connection when I turn that computer back on again. I have to set up the MAC number of that computer again on the nespot site for it to access the internet. But if I do that, the internet quality on the MBA suffers.

Maybe you are looking for

  • Spry accordion browser compatability issues

    I am building my first site and was in the process of checking each page for browser compatability. this certain page has spry accordians and I have some error messages that I don't understand. The first one says Line 48 has 2 errors in SpryAccordian

  • Flash Video Encoder - Sizing Video

    Hello I have an uncompressed video at 720x486. I need to encode it to Flash video at 640x480. When I import it into Flash Video Encoder, I use the custom settings to output a 640x480 movie at 30fps and 550kbps using the VP6 codec. Flash video outputs

  • Consuming Third party website into ADF application

    Hi, We have a tabbed layout in our ADF application with following four tabs viz. Home, About Us, Contact Us and Search As per one of the use case We want to show the default google search page when ever user clicks the 'Search' tab Is it possible in

  • Code of Conduct - Saving was canceled , error key: RFC_ERROR_SYSTEM_FAILURE

    Hi all, we configured all kinds of ESS scenarions in EP 7.0 Portal. I get an error, when I try to to this in the Portal: ESS --> Corporate Information --> Code of Conduct --> then I check the "I accept..." Button and click on review. Now, when I clic

  • Retrieving songs from ipod shuffle... Help!

    I have an ipod shuffle that was linked to my home computer's itunes. I loaded it with tunes (some that I bought from itunes). My computer crashed and I had to re-initialize the whole hard drive. (I did not have the songs backed up. Stupid, I know!) N