How do you know which fields are mandatory while uploading PO using BAPI.

How do you know which fields are mandatory while uploading PO data using BAPI. in a structure how do you know which fields are mandatory.
and also, where how do you check that, the BAPI function module is executed.
Thanks in Advance.
Naveen.

hi
hope it will help you.
Reward if help.
REPORT zpo_bapi_purchord_tej.
DATA DECLARATIONS *
TYPE-POOLS slis.
TYPES: BEGIN OF ty_table,
v_legacy(8),
vendor TYPE bapimepoheader-vendor,
purch_org TYPE bapimepoheader-purch_org,
pur_group TYPE bapimepoheader-pur_group,
material TYPE bapimepoitem-material,
quantity(13),
delivery_date TYPE bapimeposchedule-delivery_date,
net_price(23),
plant TYPE bapimepoitem-plant,
END OF ty_table.
TYPES: BEGIN OF ty_alv,
v_legs(8),
success(10),
v_legf(8),
END OF ty_alv.
TYPES: BEGIN OF ty_alv1,
v_legf1(8),
v_msg(500),
END OF ty_alv1.
*-----Work area declarations.
DATA: x_table TYPE ty_table,
x_header TYPE bapimepoheader,
x_headerx TYPE bapimepoheaderx,
x_item TYPE bapimepoitem,
x_itemx TYPE bapimepoitemx,
x_sched TYPE bapimeposchedule,
x_schedx TYPE bapimeposchedulx,
x_commatable(255),
x_alv TYPE ty_alv,
x_alv1 TYPE ty_alv1,
x_alv2 TYPE ty_alv1.
*-----Internal table declarations.
DATA: it_table TYPE TABLE OF ty_table,
it_commatable LIKE TABLE OF x_commatable,
it_item TYPE TABLE OF bapimepoitem,
it_itemx TYPE TABLE OF bapimepoitemx,
it_sched TYPE TABLE OF bapimeposchedule,
it_schedx TYPE TABLE OF bapimeposchedulx,
it_alv TYPE TABLE OF ty_alv,
it_alv1 TYPE TABLE OF ty_alv1,
it_alv2 TYPE TABLE OF ty_alv1.
DATA: po_number TYPE bapimepoheader-po_number,
x_return TYPE bapiret2,
it_return TYPE TABLE OF bapiret2,
v_file TYPE string,
v_temp(8),
v_succsount TYPE i VALUE 0,
v_failcount TYPE i VALUE 0,
v_total TYPE i.
DATA: v_temp1(5) TYPE n VALUE 0.
DATA: x_event TYPE slis_t_event,
x_fieldcat TYPE slis_t_fieldcat_alv,
x_list_header TYPE slis_t_listheader,
x_event1 LIKE LINE OF x_event,
x_layout1 TYPE slis_layout_alv,
x_variant1 TYPE disvariant,
x_repid2 LIKE sy-repid.
DATA : it_fieldcat TYPE TABLE OF slis_t_fieldcat_alv.
SELECTION-SCREEN *
SELECTION-SCREEN BEGIN OF BLOCK v_b1 WITH FRAME.
*-----To fetch the flat file.
PARAMETERS: p_file TYPE rlgrap-filename.
SELECTION-SCREEN END OF BLOCK v_b1.
AT SELECTION-SCREEN *
AT SELECTION-SCREEN.
IF p_file IS INITIAL.
MESSAGE text-001 TYPE 'E'.
ENDIF.
AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_file.
*-----To use F4 help to find file path.
CALL FUNCTION 'F4_FILENAME'
EXPORTING
program_name = syst-cprog
dynpro_number = syst-dynnr
IMPORTING
file_name = p_file.
v_file = p_file.
START-OF-SELECTION *
START-OF-SELECTION.
PERFORM gui_upload.
LOOP AT it_table INTO x_table.
PERFORM header_details.
v_temp = x_table-v_legacy.
LOOP AT it_table INTO x_table WHERE v_legacy = v_temp.
PERFORM lineitem.
PERFORM schedule.
ENDLOOP.
DELETE it_table WHERE v_legacy = v_temp.
PERFORM bapicall.
MOVE po_number TO x_alv-success.
APPEND x_alv TO it_alv.
CLEAR x_alv.
*-----To clear the item details in internal table after the operation for a header.
REFRESH: it_item,
it_itemx,
it_sched,
it_schedx.
CLEAR: v_temp1.
ENDLOOP.
v_total = v_succsount + v_failcount.
PERFORM display_alv.
FORM GUI_UPLOAD *
FORM gui_upload .
CALL FUNCTION 'GUI_UPLOAD'
EXPORTING
filename = v_file
filetype = 'ASC'
TABLES
data_tab = it_commatable
EXCEPTIONS
file_open_error = 1
file_read_error = 2
no_batch = 3
gui_refuse_filetransfer = 4
invalid_type = 5
no_authority = 6
unknown_error = 7
bad_data_format = 8
header_not_allowed = 9
separator_not_allowed = 10
header_too_long = 11
unknown_dp_error = 12
access_denied = 13
dp_out_of_memory = 14
disk_full = 15
dp_timeout = 16
OTHERS = 17
IF sy-subrc = 0.
*-----To fetch the comma seperated flat file into an internal table.
LOOP AT it_commatable INTO x_commatable.
IF x_commatable IS NOT INITIAL.
SPLIT x_commatable AT ',' INTO
x_table-v_legacy
x_table-vendor
x_table-purch_org
x_table-pur_group
x_table-material
x_table-quantity
x_table-delivery_date
x_table-net_price
x_table-plant.
APPEND x_table TO it_table.
ENDIF.
CLEAR x_table.
ENDLOOP.
ENDIF.
ENDFORM. " gui_upload
FORM HEADER_DETAILS *
FORM header_details .
MOVE 'NB' TO x_header-doc_type.
CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
EXPORTING
input = x_table-vendor
IMPORTING
output = x_table-vendor
MOVE x_table-vendor TO x_header-vendor.
MOVE x_table-purch_org TO x_header-purch_org.
MOVE x_table-pur_group TO x_header-pur_group.
x_headerx-doc_type = 'X'.
x_headerx-vendor = 'X'.
x_headerx-purch_org = 'X'.
x_headerx-pur_group = 'X'.
ENDFORM. " header_details
FORM LINEITEM *
FORM lineitem .
v_temp1 = v_temp1 + 10.
CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
EXPORTING
input = v_temp1
IMPORTING
output = v_temp1.
MOVE v_temp1 TO x_item-po_item.
CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
EXPORTING
input = x_table-material
IMPORTING
output = x_table-material.
MOVE x_table-material TO x_item-material.
MOVE x_table-quantity TO x_item-quantity.
MOVE x_table-net_price TO x_item-net_price.
MOVE x_table-plant TO x_item-plant.
x_itemx-po_item = v_temp1.
x_itemx-material = 'X'.
x_itemx-quantity = 'X'.
x_itemx-net_price = 'X'.
x_itemx-plant = 'X'.
APPEND x_item TO it_item.
APPEND x_itemx TO it_itemx.
CLEAR: x_item, x_itemx.
ENDFORM. " lineitem1
FORM SCHEDULE *
FORM schedule .
MOVE x_table-delivery_date TO x_sched-delivery_date.
MOVE v_temp1 TO x_sched-po_item.
x_schedx-delivery_date = 'X'.
x_schedx-po_item = v_temp1.
APPEND x_sched TO it_sched.
APPEND x_schedx TO it_schedx.
CLEAR: x_sched, x_schedx.
ENDFORM. " schedule
FORM BAPICALL *
FORM bapicall .
CALL FUNCTION 'BAPI_PO_CREATE1'
EXPORTING
poheader = x_header
poheaderx = x_headerx
IMPORTING
exppurchaseorder = po_number
TABLES
return = it_return
poitem = it_item
poitemx = it_itemx
poschedule = it_sched
poschedulex = it_schedx.
IF po_number IS NOT INITIAL.
v_succsount = v_succsount + 1.
MOVE x_table-v_legacy TO x_alv-v_legs.
CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.
ELSE.
v_failcount = v_failcount + 1.
MOVE x_table-v_legacy TO x_alv-v_legf.
MOVE x_table-v_legacy TO x_alv1-v_legf1.
LOOP AT it_return INTO x_return.
IF x_alv1-v_msg IS INITIAL.
MOVE x_return-message TO x_alv1-v_msg.
ELSE.
CONCATENATE x_alv1-v_msg x_return-message INTO x_alv1-v_msg SEPARATED BY space.
ENDIF.
ENDLOOP.
APPEND x_alv1 TO it_alv1.
CLEAR x_alv1.
ENDIF.
ENDFORM. " bapicall
FORM DISPLAY_ALV *
FORM display_alv .
PERFORM x_list_header.
PERFORM build_fieldcat CHANGING x_fieldcat.
x_repid2 = sy-repid.
x_event1-name = 'TOP_OF_PAGE'.
x_event1-form = 'TOP_OF_PAGE'.
APPEND x_event1 TO x_event.
CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
EXPORTING
i_callback_program = x_repid2
is_layout = x_layout1
it_fieldcat = x_fieldcat
i_callback_user_command = 'USER_COMMAND'
i_callback_top_of_page = 'TOP_OF_PAGE'
i_save = 'A'
is_variant = x_variant1
it_events = x_event
TABLES
t_outtab = it_alv
EXCEPTIONS
program_error = 1
OTHERS = 2.
IF sy-subrc <> 0.
MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
ENDIF.
ENDFORM. " display_master_data
FORM USER_COMMAND *
FORM user_command USING ucomm LIKE sy-ucomm selfield
TYPE slis_selfield.
READ TABLE it_alv INTO x_alv INDEX selfield-tabindex.
CLEAR : x_alv2,it_alv2[].
LOOP AT it_alv1 INTO x_alv1 WHERE v_legf1 = x_alv-v_legf.
x_alv2 = x_alv1.
APPEND x_alv2 TO it_alv2 .
ENDLOOP.
DATA : it_fieldcat TYPE slis_t_fieldcat_alv.
DATA : x3_fieldcat LIKE LINE OF it_fieldcat.
CLEAR : x3_fieldcat,it_fieldcat[].
CLEAR x3_fieldcat.
x3_fieldcat-col_pos = '1'.
x3_fieldcat-fieldname = 'V_LEGF1'.
x3_fieldcat-reptext_ddic = text-111.
x3_fieldcat-ref_tabname = 'IT_ALV2'.
APPEND x3_fieldcat TO it_fieldcat.
CLEAR x3_fieldcat.
CLEAR x3_fieldcat.
x3_fieldcat-col_pos = '1'.
x3_fieldcat-fieldname = 'V_MSG'.
x3_fieldcat-reptext_ddic = text-112.
x3_fieldcat-ref_tabname = 'IT_ALV2'.
APPEND x3_fieldcat TO it_fieldcat.
CLEAR x3_fieldcat.
x_layout1-colwidth_optimize = 'X'.
x_layout1-zebra = 'X'.
IF it_alv2[] IS NOT INITIAL.
CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
EXPORTING
i_callback_program = x_repid2
is_layout = x_layout1
it_fieldcat = it_fieldcat
i_save = 'A'
i_callback_top_of_page = 'TOP'
is_variant = x_variant1
it_events = x_event
TABLES
t_outtab = it_alv2
EXCEPTIONS
program_error = 1
OTHERS = 2.
ENDIF.
ENDFORM.
FORM USER_COMMAND *
FORM top.
CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
EXPORTING
it_list_commentary = 'Commentry'.
ENDFORM.
FORM BUILD_FIELDCAT *
FORM build_fieldcat CHANGING et_fieldcat TYPE slis_t_fieldcat_alv.
DATA: x1_fieldcat TYPE slis_fieldcat_alv.
CLEAR x1_fieldcat.
x1_fieldcat-col_pos = '1'.
x1_fieldcat-fieldname = 'V_LEGS'.
x1_fieldcat-reptext_ddic = text-108.
x1_fieldcat-ref_tabname = 'IT_ALV'.
APPEND x1_fieldcat TO et_fieldcat.
CLEAR x1_fieldcat.
x1_fieldcat-col_pos = '2'.
x1_fieldcat-fieldname = 'SUCCESS'.
x1_fieldcat-key = 'X'.
x1_fieldcat-reptext_ddic = text-109.
x1_fieldcat-ref_tabname = 'IT_ALV'.
APPEND x1_fieldcat TO et_fieldcat.
CLEAR x1_fieldcat.
x1_fieldcat-col_pos = '3'.
x1_fieldcat-fieldname = 'V_LEGF'.
x1_fieldcat-key = 'X'.
x1_fieldcat-reptext_ddic = text-110.
x1_fieldcat-ref_tabname = 'IT_ALV'.
APPEND x1_fieldcat TO et_fieldcat.
CLEAR x1_fieldcat.
ENDFORM. " build_fieldcat
FORM BUILD_LIST_HEADER *
FORM x_list_header.
DATA: x_list_header1 TYPE slis_listheader.
*-----List Header: type H
CLEAR x_list_header1 .
x_list_header1-typ = 'H'.
x_list_header1-info = text-105.
APPEND x_list_header1 TO x_list_header.
*-----List Key: type S
x_list_header1-typ = 'S'.
x_list_header1-key = text-106.
x_list_header1-info = v_total.
APPEND x_list_header1 TO x_list_header.
*-----List Key: Type S
CLEAR x_list_header1 .
x_list_header1-typ = 'S'.
x_list_header1-key = text-107.
x_list_header1-info = v_succsount.
APPEND x_list_header1 TO x_list_header.
ENDFORM. " build_list_header
FORM TOP_OF_PAGE *
FORM top_of_page.
CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
EXPORTING
it_list_commentary = x_list_header.
ENDFORM. " TOP_OF_PAGE

Similar Messages

  • How can I know which photos are in the library was used in each album I have created before.

    How can I know which photos are in the library was used in each album I have created before?
    I have many photos in the library folder of iPhoto, but actually I don't know which photos were used in my album.
    Is there any method to find this?
    Thanks.

    Album or Book?
    If Album you can find the ones not already used:
    File -> New Smart Album
    Album -> is not -> Any
    Regards
    TD

  • Can you have multiple Apple TV's in the same house and network? If so how do you know which one to pick from your Idevice?

    can you have multiple Apple TV's in the same house and network? If so how do you know which one to pick from your Idevice?

    Yes, there are even defaults for naming them, such as LivingRoom, Bedroom, etc, or you can even enter your own name with the remote for each AppleTV.

  • HT4914 How can you tell which songs are downloaded from the cloud on an ipad

    How can you tell which songs are downloaded on the iPad from the cloud?

    I know ipad albums are more like tagging photos rather than putting them in folders. I just have a nagging feeling I missed some pics and I have too many to try to go figure out one by one. I don't look at my photos from the camera roll, only from albums I tagged just because I imported photos from different sources and the dates and order is really messed up. I just want to know that I am viewing all the photos from like this vacation or that event and there's none I missed that are only in the camera roll.

  • How can I know which clients are connected to my network through express and which are connected through extreme?

    I have an airport express extending, through wireless, a network provided by an airport extreme. How can I know which clients are connected to my network through express and which are connected through extreme?
    Here you can see both routers:
    I would expect to some clients connected to the express, other than the extreme. And that's all I see: only the airport extreme appears as client of the airport express.
    Below, one can see the summary of the config for both routers.
    Would somebody explain it?
    Thanks,
    Marcelo
    Message was edited by: Marcelão

    please disregard this answer.
    Message was edited by: Marcelão

  • HT1918 how do you know what computers are authorized to use home share before i delete a computer

    how do you know what computers are authorzed to use an I tune account?

    Welcome to the Apple Community.
    There is no way to view a list of authorised computers. You can only tell a computer is authorised from that computer itself, from the store menu in iTunes.

  • I have apps on my iPhone that I want to delete but do not want them deleted from my iPad.  How do I know which ones are iPhone specific?

    In order to save using data when traveling I want to delete apps from my iPhone that I don't need.  However I do want these apps on my iPad and with the new IOS8.0.2 and Yosemite I think they are all now integrated so that if I delete from one device it is deleted from all and if I add to one device it is added to all.  Is this correct?
    1.  How can I tell which apps are specific to iPhone and which are specific to iPad?
    2.  How can I tell how much data is being used per app?
    3.  How can I tell if an app is running in the background?
    4.  When I turn off cellular data does that limit the app from functioning always or just restrict it to wi-fi?
    5.  Do I benefit from having Bluetooth on if I don't use a head phone or other device?
    6.  Is a Personal Hotspot more secure than using paid hotel wi-fi?

    Deleting on one device does not affect another device.
    You can delete the App's on the iPhone and nothing will happen to the ones on the iPad.
    1.  You don't need to.
    2.  Settings->Cellular->"Use Cellular Data For" will show the data usage for each App since the last statistics reset
    3.  Settings->General->Background App Refresh Will show which Apps are allowed to get data in the background
    4.  It restricts it to Wifi.  If the App requires internet access and Data is turned off, it will have to wait until the device is connected to a wifi network.
    5.  Nope, You just use up battery since the BT radio will continuously look for nearby BT devices.
    6.  The Personal Hotspot uses your cellular internet connection from your phone or other cellular device; whether you consider that secure or not I cannot say.  It also depends on what you are doing while connected to the Hotel's wifi. I would not do online banking while on vacation though.

  • How do you determine which apps are paid and which are free

    I am trying to perform some cleaning of my iPhone and want to delete some apps.  I know which ones to delete, and which ones to save, but never want to delete an app that I have paid for. 
    How can I tell, either on the phone itself, or within iTunes, which apps were paid for, and which were free?  They all show a purchased date in "get info" within iTunes, even apps that were free. I know some apps that I certainly paid .99 for, and some that I have paid much more than that.  I would never want to delete those.  How can I tell the difference?

    Ok, keep in mind, this is iTunes app store, not Desktop App Store, just so we are on the same page.  I have a purchase history that looks like this:
    http://dl.dropbox.com/u/340087/drops/01.02.12/this-f0-154400.png
    If I go to the app Store, locate the exact app in question, this is what I get:
    http://dl.dropbox.com/u/340087/drops/01.02.12/ss-2012.01.02-3.45.23.PM-57-154549 .png
    Compare that to an app I did made a purchase to, Geocacging, and it is different. As you can see, it tells me that I can download it again, for free, and this is in no way a free app, quite expensive compared to most 99 cent apps:
    http://dl.dropbox.com/u/340087/drops/01.02.12/ss-2012.01.02-3.46.56.PM-c4-154716 .png
    I am logged into lCloud as far as I know. Here is a screen shot from system prefs:
    http://dl.dropbox.com/u/340087/drops/01.02.12/ss-2012.01.02-3.49.06.PM-7d-154932 .png
    It says "sign out" which tells me I am logged in.
    I don't have an app within the apps section of itunes of the apps section of my phone when connectted by wireless of by usb cable.
    So unles I am completely mising your instructions, I believe this to be on Apple's end, and they are not recognixing that I have already downloaded this app and paid for it.  I am about to just download and pay for it again, it is only 3.99, so not a big deal, however, if this was a 100.00 GPA app or smilar, I would be a little upset.
    Thanks for all your help.

  • How do you tell which files are open in bridge cs5?

    In adobe bridge for CS2, open files in Photoshop show an icon in the lower right corner of the bridge thumnail. This is really helpful in sorting if you have a lot of files open. I can't figure out how to tell in bridge CS5 which files are open in photoshop. Is there a menu option that controls this??

    Thanks for the reply. This is a useful feature but not quite what I need.
    I am sorting through 2000 wedding photos. I have maybe 10 versions of the same shot open at a time. I edit, save, and close 2-3 of them. In CS2, I would go back to bridge and I could see the 7 files still open. I could quickly highlight and delete them. I'm trying to find a way to do something similar in CS5 bridge. Right now, I take the ones I'm going to delete and stack them all. But when I go back to bridge to delete them, I have to look at file numbers to see which ones are in the stack that I want to delete. This really slows my work flow. Any suggestions? Can I delete them directly from Photoshop?

  • In "Customize Toolbar", how do I know which icons are attached to specific extensions or add-ons?

    When I right-click on the main toolbar to customize it, the set of icons that are shown to me are numerous. I know this is due to the add-ons that I use. What I want to know is what icons go to which extensions? There are a lot of similar ones (like left and right arrows) that do quite different functions. Then there are others which aren't easily identifiable. Right now I do a trial-and-error process of adding an icon to the toolbar, testing it, deciding first, whether it did anything, and second whether I need it. But this is cumbersome. I didn't know if there was something on the back end or even another addon that would make this easier.
    Your help is much appreciated.
    Mick

    Deleting on one device does not affect another device.
    You can delete the App's on the iPhone and nothing will happen to the ones on the iPad.
    1.  You don't need to.
    2.  Settings->Cellular->"Use Cellular Data For" will show the data usage for each App since the last statistics reset
    3.  Settings->General->Background App Refresh Will show which Apps are allowed to get data in the background
    4.  It restricts it to Wifi.  If the App requires internet access and Data is turned off, it will have to wait until the device is connected to a wifi network.
    5.  Nope, You just use up battery since the BT radio will continuously look for nearby BT devices.
    6.  The Personal Hotspot uses your cellular internet connection from your phone or other cellular device; whether you consider that secure or not I cannot say.  It also depends on what you are doing while connected to the Hotel's wifi. I would not do online banking while on vacation though.

  • How do I know which plugins are needed

    Mozilla's newsletter has just prompted me to check my Firefox plugins. It found five that were up-to-date, all of which I recognise - sort of. I was surprised though that it found another 10 which it said were "unknown" and prompted me to "research". Some of these were pretty blue-chip, like McAfee SecurityCenter, and Google Update - some don't mean much to me. Four are "Real"Something.
    I guess I should get rid of those I don't need. My problem is - how do I know what I need? If I disable RealJukeBox, am I likely to find that something I use suddenly stops working? Clicking "Research" may tell me how to remove a plugin, but does not seem to tell me what it does and what uses it. (I think BBC iPlayer uses RealPlayer, so I probably should not remove that.)

    Find the ap in the App Store and tap on it to see more info. There will be a section with minimum system requirements.

  • How do you know which account is signed in on which computer

    Hi Guys, I'm trying to find out which accounts are signed into which computers, I may be being thick (definitely am) but how do you do it?

    Hi trunk,
    Open Creative cloud desktop app.
    Click on > Preferences > Account, You should be able to see your email.
    For more info refer : Sign out, Sign in | Creative Cloud Desktop app
    Thanks,
    Atul Saini

  • How do you know what programs are running?

    Is there any way to tell from the Dock which programs are running? In Tiger there use to be a little black arrow underneath the app. What's changed in Leopard?

    The default Leopard Dock indicators are a bit difficult to see with the light background and 3D glass effect. If you would like to have a different look then go to http://www.leoparddocks.com/ I'm using the "Revamped" design.

  • HT1420 how do I know which computers are authorized

    Looking for help on how to know how many computers have my Itunes account as the program says I am maxed out.

    Such information is not available.
    About De-authorizing Computers (contributed by user John Galt)
    You can de-authorize individual computers, but only by using those computers. The only other option is to "de-authorize all" from your iTunes account.
    Open iTunes on a computer
    From the Store menu, select "View my Account..."
    Sign in with your Apple ID and password.
    Under "Computer Authorizations" select "De-authorize All".
    Authorize each computer you still have, as you may require.
    You may only do this once per year.
    After you "de-authorize all" your authorized computers, re-authorize each one as required.
    Also, see iTunes Store- About authorization and deauthorization.

  • How do I know which iTunes area to use to transfer info from my old iPhone to my new iPhone? There are too many iTune areas specific for music or movies, etc. none specified for iPhone transfers.

    Which iTunes area do I access to transfer my info from my old iPhone to my new iPhone?  Music, movies, iU?  I don't see any specific for iPhone transfers.

    Thanks for your reply but maybe it would be helpful if you could elaborate a bit on that or maybe I was not clear enough in my question. What I need to do is NOT stop using icloud. But gather everything that is already stored in my old icloud account (X) and save it in my device (iphone, ipad etc) and then continue using icloud but with my new account (Y).
    In a scheme:
    "->" = "becomes"
    Step 1) data from X -> independent device data, and then the X account is removed from the device while the data stays.
    Step 2) account Y is added to the device.
    Step 2 continued) now the device has a. "the independent device data" that was drawn from the account X and b. the litte piece of data from Y that I have already created.
    Step 3) independent device data -> data in account Y (along with everything that is created from now on, and everything that has been stored there. The little piece mentioned above.) Everything should now be merged in Y. Merged in a "good" way. Not overwritten, not deleted etc. Nothing should be lost (old or new, from the device or from X or from Y).
    The last step is kind of optional. If the best I can get is having data associated to Y (future and past) AND "independent device data" that is so independent to the point that it cannot be added to my Y account since icloud recognizes and stores only data that is created after the account's addition to the device, then I can deal with that.
    I hope I cleared everything out.
    I need my notes and pages documents from my old icloud account to become independent device data and just stick to the device. And then, if possible, be uploaded to my new icloud account.

Maybe you are looking for

  • How can I open an old file made with 2009 iWork'09?

    Some years ago I prepared a book using iWork'09 program. Two months ago the hard disk of my iMac didn't work anymore. I did the backup of my work before the beracking. My iMac war repaired and I tried to open my old work with iWork'09 but the program

  • I WANT TO SAVE MY ITUNES LIBRARY---- HELP!!!!!!!!

    Hi, i am planning to restore my computer and i was wondering what is the BEST way to save my itunes library so that it will be the same when i put it back on my newly restored computer. any suggestions? anything would be great. thanks a lot, Mitch K.

  • About procedure to commit after 1000 rows

    i have procedure and a cursor c1 is select emp table and insert into copy_emp table but i want to commit after 1000 record; with exception handling plz help me with example thanks

  • Portal 2 keeps crashing Mountain Lion

    At least, I think.  Any Ideas why? Late 2010 iMac, mountain lion Here's the error report: Interval Since Last Panic Report:  303004 sec Panics Since Last Report:          4 Anonymous UUID:                    1B20C633-2819-817B-DE3B-500CE7373349 Tue D

  • How do I make a sprite jump

    Hi everyone, I recently made a program that can move a sprite around but not jump. It seems that im lost on the logic behind writting a jump. My goal for the sprite is to make it jump off the ground and comback to it. However, my loop just stays stil