How can I delete Z.SAPB18.8_MyPO object from B1iSN 8.8

Dear All,
I have created only one object type (apart from the B1iSN default one)
Ex: For the Purchase Order object (LocalObjectId = 22) I defined only one B1iSN object type.
but I have the same error message "Sender SysId, Sender ObjectType or Sender payload is missing".
suppose If by mistake I create two B1iSN object types for the same B1 object (same local object id)
how can I delete one object from those two objects.
Thanks and Regards,
Anvar

Hi Anvar,
Z-objects always have priority against standard objects.
=>  if you have more Z-objects for the same local object ID, it's always the latest created object
If you created an Z-object, please make sure, that the BIUs can handle this object.
All default integration scenarios need to be adjusted or copied to support the newly created z object.
If you want to delete your newly created object, go to SAP B1iSN Tools -> Repository Tools -> Entities - Remove:
Select your Entity Type (e.g. Object Type) and your Entity Instance (e.g. Z.SAPB18.8_MyPO) and press button Delete Entity.
B1iSN gives you information, if there're constraints (e.g. Publication Object or object is used in an active integration scenario) and the object can't be deleted.
Best regards
Bastian

Similar Messages

  • How can I delete  my credit card info from itunes?

    How can I delete  my credit card info from itunes?

    Changing Account Information  >  http://support.apple.com/kb/HT1918
    If necessary...
    Contact iTunes Customer Service and request assistance
    Use this Link  >  Apple  Support  iTunes Store  Contact

  • Re:How can we delete the concurrent node entry from the FND_NODE table

    HI ,
    11.5.10.2 on Oracle Solaris on SPARC (64-bit) .
    How can we delete the concurrent node entry from the FND_NODES table without running Autoconfig.
    Currently we are having 3 nodes RAC and we are deciding to remove one node from the RAC and all 3 nodes are registered as concurrent node with application but concurrent manager is running only on one node.
    Lot of the custom configuration we did it at application web tire level. If we run the Autoconfig at that time we need to redo those changes again that we are trying to avoid.
    Regards .

    we are trying to avoid to run FND_CLONE.setup_clean because it will delete all the nodes entries from the FND_NODES.If those entries are invalid then they should be deleted.
    Running AutoConfig after purging the table will populate it with the correct entries.
    In order to populate the nodes entries again we need to run autoconfig and it will change the server id in fnd_nodes and then we need to redo the ADI client configuration on users PC and redo all the changes that we made in jserv and webserver.For ADI Clients, you should use the correct server ids which will be populated in the table for you once you run AutoConfig.
    For jserv configuration, you can refer to (Customizing an AutoConfig Environment [ID 270519.1]) to make the preserve all your custom setup/configuration after running AutoConfig.
    If there any custom script to delete only one node from the fnd_node so that we don't need to run autoconfig after that, then I really appreciate.No.
    Thanks,
    Hussein

  • How can i delete an old apple id from my ipad running ios 5

    how can i delete an old apple id from my ipad, its the 1st version running ios 5.1.1

    To remove the apple id from the device, go to Settings>icloud>delete account. NOTE: this will only remove the account from the iPad. It will not delete the account.
    I hope this helps
    -Ethan7988

  • HT204053 how can i delete my old icloud account from my iphone

    how can i delete my old icloud account from my iphone

    Go to https//appleid.apple.com, click Manage my Apple ID and sign in with your current iCloud ID.  Tap edit next to the primary email account, tap Edit, change it back to your old email address and save the change.  Then edit the name of the account to change it back to your old email address.  You can now use your current password to turn off Find My iPhone on your device, even though it prompts you for the password for your old account ID. Then go to Settings>iCloud, tap Delete Account and choose Delete from My iDevice when prompted (your iCloud data will still be in iCloud).  Next, go back to https//appleid.apple.com and change your primary email address and iCloud ID name back to the way it was.  Now you can go to Settings>iCloud and sign in with your current iCloud ID and password.

  • How can I delete my photos in streaming from iCloud?

    How can I delete my photos in streaming from iCloud? Thank you.

    Look, there are a million threads on this already. 
    The facts are:
    1) you can't delete individuals photos from Photostream. Simple as that.
    2) if you want to delete all the photos, then switch PS off on all your devices (including iPhoto), go to iCloud.com, click on your name, go to advanced settings and reset PS.  They will be gone from all your devices and iCloud.
    3) switch PS back on in all the same devices.
    Let's hope this is sorted out in the near future.

  • How can I fill a table of objects from cursor with select * bulk collect???

    Hi All, I have a TYPE as OBJECT
    create or replace type dept2_o as object (
    deptno NUMBER(2),
    dname VARCHAR2(14),
    loc VARCHAR2(13));
    I can fill a table of objects from cursor with out select * bulk collect...., row by row
    declare
    TYPE dept2_t IS TABLE of dept2_o;
    dept_o_tab dept2_t:=dept2_t();
    i integer;
    begin
    i:=0;
    dept_o_tab.extend(20);
    for rec in (select * from dept) loop
    i:=i+1;
    dept_o_tab(i):=dept2_o(
    deptno => rec.deptno,
    dname => rec.dname,
    loc =>rec.loc
    end loop;
    for k IN 1..i loop
    dbms_output.put_line(dept_o_tab(k).deptno||' '||dept_o_tab(k).dname||' '||dept_o_tab(k).loc);
    end loop;
    end;
    RESULT
    10 ACCOUNTING NEW YORK
    20 RESEARCH DALLAS
    30 SALES CHICAGO
    40 OPERATIONS BOSTON
    But I can't fill a table of objects from cursor with select * bulk collect construction ...
    declare
    TYPE dept2_t IS TABLE of dept2_o;
    dept_o_tab dept2_t:=dept2_t();
    begin
    dept_o_tab.extend(20);
    select * bulk collect into dept_o_tab from dept;
    end;
    RESULT
    ORA-06550: line 6, column 39;
    PL/SQL: ORA-00947: not enough values ....
    How can I fill a table of objects from cursor with select * bulk collect???

    create or replace type dept_ot as object (
    deptno NUMBER(2),
    dname VARCHAR2(14),
    loc VARCHAR2(13));
    create table dept
    (deptno number
    ,dname varchar2(14)
    ,loc varchar2(13)
    insert into dept values (10, 'x', 'xx');
    insert into dept values (20, 'y', 'yy');
    insert into dept values (30, 'z', 'zz');
    select dept_ot (deptno, dname, loc)
      from dept
    create type dept_nt is table of dept_ot
    declare
       l_depts dept_nt;
    begin
       select dept_ot (deptno, dname, loc)
         bulk collect
         into l_depts
         from dept
       for i in l_depts.first .. l_depts.last
       loop
          dbms_output.put_line (l_depts(i).deptno);
          dbms_output.put_line (l_depts(i).dname);
          dbms_output.put_line (l_depts(i).loc);    
       end loop;
    end;
    /

  • HT201616 how can i delete the u 2 album from my iphone 4s?

    how can i delete the u 2 album from my iphone 4s?

    See below.
    Remove iTunes gift album "Songs of Innocence" from your iTunes music library and purchases - Apple Support

  • How can I delete a bad app completely from my iPad mini in order to re-download it as though I never had it?

    How can I delete a bad app completely from my iPad mini in order to re-download it as though I never had it?

    Yes, it will now always show that you purchased it, but with it deleted from ipad, when yu click the icon to download again, it will download the latest versioon available from the app store.
    You cannot delete what is in the app store. nor can you erase your previous history of purchasing the app.

  • How can I delete a "stuck" outgoing email from my iphone4s?

    How can I delete a "stuck" outgoing email from my aol mail on my iphone4s?  I believe it's "stuck" and not sending because the attached files were too large.  Nothing I've tried to send after that is going out, just waiting in queu.  Thank you!

    I think it's finally timed out.....

  • Please, help!!!!! How can i delete Angry birds not only from my device (iPhone 4), but from my iTunes account,too? I am a new user.

    I am a new user of iPhone 4. I have problems with "Angry birds". I heard that i can fix the problem by deleting the application. So, the question is : How can i delete the game not only from my device, but from my iTunes account,too? Please, help!!!

    You can just tap and hold any icon to put into Edit mode.  There you can delete.
    Or you can just tell iTunes not to sync it.
    To remove from iTunes just click on it in list and press delete.

  • How can I delete all of my contacts from my iphone? I have updated my contact list in Outlook, and need to re-import that "clean" list.

    How can I delete all of my contacts from my iphone? I have updated my contact list in Outlook, and need to re-import that "clean" list.

    There is a checkbox on the 'info' tab in iTunes that will allow you to overwrite the address book on the phone with the one from the computer on the next sync.

  • How can I delete ALL photos at once from iPad 1 (OS 5.1.1) ?

    How can I delete ALL photos at once from iPad 1 (OS 5.1.1) ?

    Weird but I can't see "Photos & Camera" in "Settings / / General / usage".
    It's werid because I have pictures on the iPad.
    I'm thinknig to complete delete everything and restore system.
    Any other suggestions ?

  • How can I delete time machine back up from my computer hard drive

    How can I delete time machine back up from my computer hard drive?

    How to Delete a Time Machine Backup - YouTube
    If you want to remove an entire Time Machine backup on a backup drive, then the easiest way to do that is to erase the backup drive using Disk Utility. However, this will delete everything on the disk:
    Drive Erase Snow Leopard and Earlier
    1. Boot from your OS X Installer Disc. After the installer loads select your language and click on the Continue button.  When the menu bar appears select Disk Utility from the Utilities menu.
    If you are preparing an external or a non-startup drive, then open Disk Utility in your Utilities folder.
    2. After DU loads select the volume you wish to format from the left side list. Click on the Erase tab in the DU main window.
    3. Set the format type to Mac OS Extended (Journaled.) Click on the Erase button and wait until the process has completed.

  • How can I delete previously itunes synched photos from my ipad 3 now that I use the cloud instead of synching via mac/itunes?

    how can I delete previously itunes synched photos from my ipad 3 now that I use the cloud instead of synching via mac/itunes?

    You will need to connect your iPad to your computer, and on the Photos tab de-select those folders that you no longer want on the iPad - they can't be deleted directly on the iPad. If you no longer want any synced photos on your iPad then you can select and sync just an empty folder.

Maybe you are looking for